commit 01f46f64331d662684987573720d7a61d5468e71 Author: The Server Date: Thu Jan 8 21:51:14 2015 +0000 start diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..2e62a4e --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +*.cpp diff=cpp +*.h diff=cpp diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..db1c967 --- /dev/null +++ b/.gitignore @@ -0,0 +1,44 @@ +*~ +## Generic ignorable patterns and files +.*.swp +*bak* +tags +*.vim +shooter.conf +*.orig +*.rej + +## Non-static Minetest directories +/bin/ +/src/ +/po/ +/util/ +/build/ +/builtin/ +/client/ +/locale/ +## /games/* +/cache/ +/textures/* +/doc/ +/fonts/ +/sounds/ +## /mods/* +/worlds/ +/world/ + +## Configuration/log files +## minetest.conf +debug.txt + +!.gitignore + +cmake +CMakeCache.txt +CMakeFiles +cmake_install.cmake +CMakeLists.txt +CPackConfig.cmake +CPackSourceConfig.cmake +install_manifest.txt +Makefile diff --git a/.mailmap b/.mailmap new file mode 100644 index 0000000..c487460 --- /dev/null +++ b/.mailmap @@ -0,0 +1,33 @@ +0gb.us <0gb.us@0gb.us> +Calinou +Perttu Ahola celeron55 +Perttu Ahola celeron55 +Craig Robbins +Diego Martínez +Ilya Zhuravlev +kwolekr +PilzAdam PilzAdam +PilzAdam Pilz Adam +PilzAdam PilzAdam +proller +proller +RealBadAngel +RealBadAngel +Selat +ShadowNinja ShadowNinja +Shen Zheyu arsdragonfly +Pavel Elagin elagin +Esteban I. Ruiz Moreno Esteban I. RM +manuel duarte manuel joaquim +manuel duarte sweetbomber +Diego Martínez kaeza +Diego Martínez Diego Martinez +Lord James Lord89James +BlockMen Block Men +sfan5 Sfan5 +DannyDark dannydark +Ilya Pavlov Ilya +Ilya Zhuravlev xyzz +sapier sapier +sapier sapier + diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4bce211 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: cpp +compiler: + - gcc + - clang +env: + - WINDOWS=32 + - WINDOWS=64 + - WINDOWS=no +before_install: ./util/travis/before_install.sh +script: ./util/travis/script.sh +notifications: + email: false +matrix: + fast_finish: true + exclude: + - env: WINDOWS=32 + compiler: clang + - env: WINDOWS=64 + compiler: clang diff --git a/HEAD b/HEAD new file mode 100644 index 0000000..cb089cd --- /dev/null +++ b/HEAD @@ -0,0 +1 @@ +ref: refs/heads/master diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..6857c6e --- /dev/null +++ b/README.txt @@ -0,0 +1,504 @@ +Minetest +======== + +An InfiniMiner/Minecraft inspired game. + +Copyright (c) 2010-2013 Perttu Ahola +and contributors (see source file comments and the version control log) + +In case you downloaded the source code: +--------------------------------------- +If you downloaded the Minetest Engine source code in which this file is +contained, you probably want to download the minetest_game project too: + https://github.com/minetest/minetest_game/ +See the README.txt in it. + +Further documentation +---------------------- +- Website: http://minetest.net/ +- Wiki: http://wiki.minetest.net/ +- Developer wiki: http://dev.minetest.net/ +- Forum: http://forum.minetest.net/ +- Github: https://github.com/minetest/minetest/ +- doc/ directory of source distribution + +This game is not finished +-------------------------- +- Don't expect it to work as well as a finished game will. +- Please report any bugs. When doing that, debug.txt is useful. + +Default Controls +----------------- +- WASD: move +- Space: jump/climb +- Shift: sneak/go down +- Q: drop itemstack (+ SHIFT for single item) +- I: inventory +- Mouse: turn/look +- Mouse left: dig/punch +- Mouse right: place/use +- Mouse wheel: select item +- T: chat +- 1-8: select item + +- Esc: pause menu (pauses only singleplayer game) +- R: Enable/Disable full range view +- +: Increase view range +- -: Decrease view range +- K: Enable/Disable fly (needs fly privilege) +- J: Enable/Disable fast (needs fast privilege) +- H: Enable/Disable noclip (needs noclip privilege) + +- F1: Hide/Show HUD +- F2: Hide/Show Chat +- F3: Disable/Enable Fog +- F4: Disable/Enable Camera update (Mapblocks are not updated anymore when disabled) +- F5: Toogle through debug info screens +- F6: Toogle through output data +- F7: Toggle through camera modes +- F10: Show/Hide console +- F12: Take screenshot + +- Settable in the configuration file, see the section below. + +Paths +------ +$bin - Compiled binaries +$share - Distributed read-only data +$user - User-created modifiable data + +Windows .zip / RUN_IN_PLACE source: +$bin = bin +$share = . +$user = . + +Linux installed: +$bin = /usr/bin +$share = /usr/share/minetest +$user = ~/.minetest + +OS X: +$bin = ? +$share = ? +$user = ~/Library/Application Support/minetest + +World directory +---------------- +- Worlds can be found as separate folders in: + $user/worlds/ + +Configuration file: +------------------- +- Default location: + $user/minetest.conf +- It is created by Minetest when it is ran the first time. +- A specific file can be specified on the command line: + --config + +Command-line options: +--------------------- +- Use --help + +Compiling on GNU/Linux: +----------------------- + +Install dependencies. Here's an example for Debian/Ubuntu: +$ apt-get install build-essential libirrlicht-dev cmake libbz2-dev libpng12-dev libjpeg8-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-gnutls-dev libfreetype6-dev + +Download source, extract (this is the URL to the latest of source repository, which might not work at all times): +$ wget https://github.com/minetest/minetest/tarball/master -O master.tar.gz +$ tar xf master.tar.gz +$ cd minetest-minetest-286edd4 (or similar) + +Download minetest_game (otherwise only the "Minimal development test" game is available) +$ cd games/ +$ wget https://github.com/minetest/minetest_game/tarball/master -O minetest_game.tar.gz +$ tar xf minetest_game.tar.gz +$ mv minetest-minetest_game-* minetest_game +$ cd .. + +Build a version that runs directly from the source directory: +$ cmake . -DRUN_IN_PLACE=1 +$ make -j2 + +Run it: +$ cd bin +$ ./minetest + +- Use cmake . -LH to see all CMake options and their current state +- If you want to install it system-wide (or are making a distribution package), you will want to use -DRUN_IN_PLACE=0 +- You can build a bare server or a bare client by specifying -DBUILD_CLIENT=0 or -DBUILD_SERVER=0 +- You can select between Release and Debug build by -DCMAKE_BUILD_TYPE= + - Debug build is slower, but gives much more useful output in a debugger +- If you build a bare server, you don't need to have Irrlicht installed. In that case use -DIRRLICHT_SOURCE_DIR=/the/irrlicht/source + +CMake options +------------- +General options: + +BUILD_CLIENT - Build Minetest client +BUILD_SERVER - Build Minetest server +CMAKE_BUILD_TYPE - Type of build (Release vs. Debug) + Release - Release build + Debug - Debug build + RelWithDebInfo - Release build with Debug information + MinSizeRel - Release build with -Os passed to compiler to make executable as small as possible +ENABLE_CURL - Build with cURL; Enables use of online mod repo, public serverlist and remote media fetching via http +ENABLE_FREETYPE - Build with Freetype2; Allows using TTF fonts +ENABLE_GETTEXT - Build with Gettext; Allows using translations +ENABLE_GLES - Search for Open GLES headers & libraries and use them +ENABLE_LEVELDB - Build with LevelDB; Enables use of LevelDB, which is much faster than SQLite, as map backend +ENABLE_REDIS - Build with libhiredis; Enables use of redis map backend +ENABLE_SOUND - Build with OpenAL, libogg & libvorbis; in-game Sounds +DISABLE_LUAJIT - Do not search for LuaJIT headers & library +RUN_IN_PLACE - Create a portable install (worlds, settings etc. in current directory) +USE_GPROF - Enable profiling using GProf +VERSION_EXTRA - Text to append to version (e.g. VERSION_EXTRA=foobar -> Minetest 0.4.9-foobar) + +Library specific options: + +BZIP2_INCLUDE_DIR - Linux only; directory where bzlib.h is located +BZIP2_LIBRARY - Linux only; path to libbz2.a/libbz2.so +CURL_DLL - Only if building with cURL on Windows; path to libcurl.dll +CURL_INCLUDE_DIR - Only if building with cURL; directory where curl.h is located +CURL_LIBRARY - Only if building with cURL; path to libcurl.a/libcurl.so/libcurl.lib +EGL_INCLUDE_DIR - Only if building with GLES; directory that contains egl.h +EGL_egl_LIBRARY - Only if building with GLES; path to libEGL.a/libEGL.so +FREETYPE_INCLUDE_DIR_freetype2 - Only if building with Freetype2; directory that contains an freetype directory with files such as ftimage.h in it +FREETYPE_INCLUDE_DIR_ft2build - Only if building with Freetype2; directory that contains ft2build.h +FREETYPE_LIBRARY - Only if building with Freetype2; path to libfreetype.a/libfreetype.so/freetype.lib +FREETYPE_DLL - Only if building with Freetype2 on Windows; path to libfreetype.dll +GETTEXT_DLL - Only when building with Gettext on Windows; path to libintl3.dll +GETTEXT_ICONV_DLL - Only when building with Gettext on Windows; path to libiconv2.dll +GETTEXT_INCLUDE_DIR - Only when building with Gettext; directory that contains iconv.h +GETTEXT_LIBRARY - Only when building with Gettext on Windows; path to libintl.dll.a +GETTEXT_MSGFMT - Only when building with Gettext; path to msgfmt/msgfmt.exe +IRRLICHT_DLL - path to Irrlicht.dll +IRRLICHT_INCLUDE_DIR - directory that contains IrrCompileConfig.h +IRRLICHT_LIBRARY - path to libIrrlicht.a/libIrrlicht.so/libIrrlicht.dll.a +LEVELDB_INCLUDE_DIR - Only when building with LevelDB; directory that contains db.h +LEVELDB_LIBRARY - Only when building with LevelDB; path to libleveldb.a/libleveldb.so/libleveldb.dll.a +LEVELDB_DLL - Only when building with LevelDB on Windows; path to libleveldb.dll +REDIS_INCLUDE_DIR - Only when building with redis support; directory that contains hiredis.h +REDIS_LIBRARY - Only when building with redis support; path to libhiredis.a/libhiredis.so +LUA_INCLUDE_DIR - Only if you want to use LuaJIT; directory where luajit.h is located +LUA_LIBRARY - Only if you want to use LuaJIT; path to libluajit.a/libluajit.so +MINGWM10_DLL - Only if compiling with MinGW; path to mingwm10.dll +OGG_DLL - Only if building with sound on Windows; path to libogg.dll +OGG_INCLUDE_DIR - Only if building with sound; directory that contains an ogg directory which contains ogg.h +OGG_LIBRARY - Only if building with sound; path to libogg.a/libogg.so/libogg.dll.a +OPENAL_DLL - Only if building with sound on Windows; path to OpenAL32.dll +OPENAL_INCLUDE_DIR - Only if building with sound; directory where al.h is located +OPENAL_LIBRARY - Only if building with sound; path to libopenal.a/libopenal.so/OpenAL32.lib +OPENGLES2_INCLUDE_DIR - Only if building with GLES; directory that contains gl2.h +OPENGLES2_gl_LIBRARY - Only if building with GLES; path to libGLESv2.a/libGLESv2.so +SQLITE3_INCLUDE_DIR - Only if you want to use SQLite from your OS; directory that contains sqlite3.h +SQLITE3_LIBRARY - Only if you want to use the SQLite from your OS; path to libsqlite3.a/libsqlite3.so +VORBISFILE_DLL - Only if building with sound on Windows; path to libvorbisfile-3.dll +VORBISFILE_LIBRARY - Only if building with sound; path to libvorbisfile.a/libvorbisfile.so/libvorbisfile.dll.a +VORBIS_DLL - Only if building with sound on Windows; path to libvorbis-0.dll +VORBIS_INCLUDE_DIR - Only if building with sound; directory that contains a directory vorbis with vorbisenc.h inside +VORBIS_LIBRARY - Only if building with sound; path to libvorbis.a/libvorbis.so/libvorbis.dll.a +XXF86VM_LIBRARY - Only on Linux; path to libXXf86vm.a/libXXf86vm.so +ZLIB_DLL - Only on Windows; path to zlib1.dll +ZLIBWAPI_DLL - Only on Windows; path to zlibwapi.dll +ZLIB_INCLUDE_DIR - directory where zlib.h is located +ZLIB_LIBRARY - path to libz.a/libz.so/zlibwapi.lib + +Compiling on Windows: +--------------------- +- This section is outdated. In addition to what is described here: + - In addition to minetest, you need to download minetest_game. + - If you wish to have sound support, you need libogg, libvorbis and libopenal + +- You need: + * CMake: + http://www.cmake.org/cmake/resources/software.html + * MinGW or Visual Studio + http://www.mingw.org/ + http://msdn.microsoft.com/en-us/vstudio/default + * Irrlicht SDK 1.7: + http://irrlicht.sourceforge.net/downloads.html + * Zlib headers (zlib125.zip) + http://www.winimage.com/zLibDll/index.html + * Zlib library (zlibwapi.lib and zlibwapi.dll from zlib125dll.zip): + http://www.winimage.com/zLibDll/index.html + * Optional: gettext library and tools: + http://gnuwin32.sourceforge.net/downlinks/gettext.php + - This is used for other UI languages. Feel free to leave it out. + * And, of course, Minetest: + http://minetest.net/download.php +- Steps: + - Select a directory called DIR hereafter in which you will operate. + - Make sure you have CMake and a compiler installed. + - Download all the other stuff to DIR and extract them into there. + ("extract here", not "extract to packagename/") + NOTE: zlib125dll.zip needs to be extracted into zlib125dll + - All those packages contain a nice base directory in them, which + should end up being the direct subdirectories of DIR. + - You will end up with a directory structure like this (+=dir, -=file): + ----------------- + + DIR + - zlib-1.2.5.tar.gz + - zlib125dll.zip + - irrlicht-1.7.1.zip + - 110214175330.zip (or whatever, this is the minetest source) + + zlib-1.2.5 + - zlib.h + + win32 + ... + + zlib125dll + - readme.txt + + dll32 + ... + + irrlicht-1.7.1 + + lib + + include + ... + + gettext (optional) + +bin + +include + +lib + + minetest + + src + + doc + - CMakeLists.txt + ... + ----------------- + - Start up the CMake GUI + - Select "Browse Source..." and select DIR/minetest + - Now, if using MSVC: + - Select "Browse Build..." and select DIR/minetest-build + - Else if using MinGW: + - Select "Browse Build..." and select DIR/minetest + - Select "Configure" + - Select your compiler + - It will warn about missing stuff, ignore that at this point. (later don't) + - Make sure the configuration is as follows + (note that the versions may differ for you): + ----------------- + BUILD_CLIENT [X] + BUILD_SERVER [ ] + CMAKE_BUILD_TYPE Release + CMAKE_INSTALL_PREFIX DIR/minetest-install + IRRLICHT_SOURCE_DIR DIR/irrlicht-1.7.1 + RUN_IN_PLACE [X] + WARN_ALL [ ] + ZLIB_DLL DIR/zlib125dll/dll32/zlibwapi.dll + ZLIB_INCLUDE_DIR DIR/zlib-1.2.5 + ZLIB_LIBRARIES DIR/zlib125dll/dll32/zlibwapi.lib + GETTEXT_BIN_DIR DIR/gettext/bin + GETTEXT_INCLUDE_DIR DIR/gettext/include + GETTEXT_LIBRARIES DIR/gettext/lib/intl.lib + GETTEXT_MSGFMT DIR/gettext/bin/msgfmt + ----------------- + - Hit "Configure" + - Hit "Configure" once again 8) + - If something is still coloured red, you have a problem. + - Hit "Generate" + If using MSVC: + - Open the generated minetest.sln + - The project defaults to the "Debug" configuration. Make very sure to + select "Release", unless you want to debug some stuff (it's slower + and might not even work at all) + - Build the ALL_BUILD project + - Build the INSTALL project + - You should now have a working game with the executable in + DIR/minetest-install/bin/minetest.exe + - Additionally you may create a zip package by building the PACKAGE + project. + If using MinGW: + - Using the command line, browse to the build directory and run 'make' + (or mingw32-make or whatever it happens to be) + - You may need to copy some of the downloaded DLLs into bin/, see what + running the produced executable tells you it doesn't have. + - You should now have a working game with the executable in + DIR/minetest/bin/minetest.exe + +Windows releases of minetest are built using a bat script like this: +-------------------------------------------------------------------- + +set sourcedir=%CD% +set installpath="C:\tmp\minetest_install" +set irrlichtpath="C:\tmp\irrlicht-1.7.2" + +set builddir=%sourcedir%\bvc10 +mkdir %builddir% +pushd %builddir% +cmake %sourcedir% -G "Visual Studio 10" -DIRRLICHT_SOURCE_DIR=%irrlichtpath% -DRUN_IN_PLACE=1 -DCMAKE_INSTALL_PREFIX=%installpath% +if %errorlevel% neq 0 goto fail +"C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" ALL_BUILD.vcxproj /p:Configuration=Release +if %errorlevel% neq 0 goto fail +"C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" INSTALL.vcxproj /p:Configuration=Release +if %errorlevel% neq 0 goto fail +"C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" PACKAGE.vcxproj /p:Configuration=Release +if %errorlevel% neq 0 goto fail +popd +echo Finished. +exit /b 0 + +:fail +popd +echo Failed. +exit /b 1 + +License of Minetest textures and sounds +--------------------------------------- + +This applies to textures and sounds contained in the main Minetest +distribution. + +Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) +http://creativecommons.org/licenses/by-sa/3.0/ + +Authors of media files +----------------------- +Everything not listed in here: +Copyright (C) 2010-2012 celeron55, Perttu Ahola + +BlockMen: + textures/base/pack/menuheader.png + +erlehmann: + misc/minetest-icon-24x24.png + misc/minetest-icon.ico + misc/minetest-icon.svg + textures/base/pack/logo.png + +License of Minetest source code +------------------------------- + +Minetest +Copyright (C) 2010-2013 celeron55, Perttu Ahola + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License along +with this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Irrlicht +--------------- + +This program uses the Irrlicht Engine. http://irrlicht.sourceforge.net/ + + The Irrlicht Engine License + +Copyright © 2002-2005 Nikolaus Gebhardt + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute +it freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you use + this software in a product, an acknowledgment in the product + documentation would be appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + 3. This notice may not be removed or altered from any source + distribution. + + +JThread +--------------- + +This program uses the JThread library. License for JThread follows: + +Copyright (c) 2000-2006 Jori Liesenborgs (jori.liesenborgs@gmail.com) + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. + +Lua +--------------- + +Lua is licensed under the terms of the MIT license reproduced below. +This means that Lua is free software and can be used for both academic +and commercial purposes at absolutely no cost. + +For details and rationale, see http://www.lua.org/license.html . + +Copyright (C) 1994-2008 Lua.org, PUC-Rio. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Fonts +--------------- + +DejaVu Sans Mono: + + Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. + Glyphs imported from Arev fonts are (c) Tavmjong Bah (see below) + +Bitstream Vera Fonts Copyright: + + Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is + a trademark of Bitstream, Inc. + +Arev Fonts Copyright: + + Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. + +Liberation Fonts Copyright: + + Copyright (c) 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc. + +DroidSansFallback: + + Copyright (C) 2008 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/config b/config new file mode 100644 index 0000000..07d359d --- /dev/null +++ b/config @@ -0,0 +1,4 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = true diff --git a/debug.log b/debug.log new file mode 100644 index 0000000..e2ce606 --- /dev/null +++ b/debug.log @@ -0,0 +1,8 @@ + + +------------- + Separator +------------- + +05:38:10: ERROR[main]: The following mods could not be found: "wardrobe" "worldedit_gui" "worldedit_infinity" +05:38:10: ERROR[main]: ERROR: An unhandled exception occurred: Crafting definition is missing a recipe (output="travelnet:travelnet") diff --git a/description b/description new file mode 100644 index 0000000..498b267 --- /dev/null +++ b/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/games/minetest_game/README.txt b/games/minetest_game/README.txt new file mode 100644 index 0000000..9456f81 --- /dev/null +++ b/games/minetest_game/README.txt @@ -0,0 +1,52 @@ +The main game for the Minetest game engine [minetest_game] +========================================================== + +To use this game with Minetest, insert this repository as + /games/minetest_game +in the Minetest Engine. + +The Minetest Engine can be found in: + https://github.com/minetest/minetest/ + +Compatibility +-------------- +The minetest_game github master HEAD is generally compatible with the github +master HEAD of minetest. + +Additionally, when the minetest engine is tagged to be a certain version (eg. +0.4.10), minetest_game is tagged with the version too. + +When stable releases are made, minetest_game is packaged and made available in + http://minetest.net/download.php +and in case the repository has grown too much, it may be reset. In that sense, +this is not a "real" git repository. (Package maintainers please note!) + +License of source code +---------------------- +Copyright (C) 2010-2012 celeron55, Perttu Ahola +See README.txt in each mod directory for information about other authors. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License along +with this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +License of media (textures and sounds) +-------------------------------------- +Copyright (C) 2010-2012 celeron55, Perttu Ahola +See README.txt in each mod directory for information about other authors. + +Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) +http://creativecommons.org/licenses/by-sa/3.0/ + +License of menu/header.png +Copyright (C) 2013 BlockMen CC BY-3.0 diff --git a/games/minetest_game/game.conf b/games/minetest_game/game.conf new file mode 100644 index 0000000..8b819bb --- /dev/null +++ b/games/minetest_game/game.conf @@ -0,0 +1 @@ +name = Minetest diff --git a/games/minetest_game/game_api.txt b/games/minetest_game/game_api.txt new file mode 100644 index 0000000..8123c01 --- /dev/null +++ b/games/minetest_game/game_api.txt @@ -0,0 +1,277 @@ +minetest_game API +====================== +GitHub Repo: https://github.com/minetest/minetest_game + +Introduction +------------ +The minetest_game gamemode offers multiple new possibilities in addition to Minetest's built-in API, allowing you to +add new plants to farming mod, buckets for new liquids, new stairs and custom panes. +For information on the Minetest API, visit https://github.com/minetest/minetest/blob/master/doc/lua_api.txt +Please note: + [XYZ] refers to a section the Minetest API + [#ABC] refers to a section in this document + ^ Explanation for line above + +Bucket API +---------- +The bucket API allows registering new types of buckets for non-default liquids. + + bucket.register_liquid( + "default:lava_source", -- Source node name + "default:lava_flowing", -- Flowing node name + "bucket:bucket_lava", -- Name to be used for bucket + "bucket_lava.png", -- Bucket texture (for wielditem and inventory_image) + "Lava Bucket" -- Bucket description + ) + +Doors API +--------- +The doors mod allows modders to register custom doors. + + doors.register_door(name, def) + ^ name: "Door name" + ^ def: See [#Door definition] + +#Door definition +---------------- +{ + description = "Door description", + inventory_image = "mod_door_inv.png", + groups = {group = 1}, + tiles_bottom: [Tile definition], + ^ the tiles of the bottom part of the door {front, side} + tiles_top: [Tile definition], + ^ the tiles of the bottom part of the door {front, side} + node_box_bottom = regular nodebox, see [Node boxes], OPTIONAL, + node_box_top = regular nodebox, see [Node boxes], OPTIONAL, + selection_box_bottom = regular nodebox, see [Node boxes], OPTIONAL, + selection_box_top = regular nodebox, see [Node boxes], OPTIONAL, + sound_open_door = sound play for open door, OPTIONAL, + sound_close_door = sound play for close door, OPTIONAL, + only_placer_can_open = true/false, + ^ If true, only placer can open the door (locked for others) +} + +Farming API +----------- +The farming API allows you to easily register plants and hoes. + +farming.register_hoe(name, hoe definition) + -> Register a new hoe, see [#hoe definition] + +farming.register_plant(name, Plant definition) + -> Register a new growing plant, see [#Plant definition] + +#Hoe Definition +--------------- +{ + description = "", -- Description for tooltip + inventory_image = "unknown_item.png", -- Image to be used as wield- and inventory image + max_uses = 30, -- Uses until destroyed + recipe = { -- Craft recipe + {"air", "air", "air"}, + {"", "group:stick"}, + {"", "group:stick"}, + } +} + +#Plant definition +----------------- +{ + description = "", -- Description of seed item + inventory_image = "unknown_item.png", -- Image to be used as seed's wield- and inventory image + steps = 8, -- How many steps the plant has to grow, until it can be harvested + ^ Always provide a plant texture for ech step, format: modname_plantname_i.png (i = stepnumber) + minlight = 13, -- Minimum light to grow + maxlight = LIGHT_MAX -- Maximum light to grow +} + +Stairs API +---------- +The stairs API lets you register stairs and slabs and ensures that they are registered the same way as those +delivered with minetest_game, to keep them compatible with other mods. + +stairs.register_stair(subname, recipeitem, groups, images, description, sounds) + -> Registers a stair. + -> subname: Basically the material name (e.g. cobble) used for the stair name. Nodename pattern: "stairs:stair_subname" + -> recipeitem: Item used in the craft recipe, e.g. "default:cobble" + -> groups: see [Known damage and digging time defining groups] + -> images: see [Tile definition] + -> description: used for the description field in the stair's definition + -> sounds: see [#Default sounds] + +stairs.register_slab(subname, recipeitem, groups, images, description, sounds) + -> Registers a slabs + -> subname: Basically the material name (e.g. cobble) used for the stair name. Nodename pattern: "stairs:stair_subname" + -> recipeitem: Item used in the craft recipe, e.g. "default:cobble" + -> groups: see [Known damage and digging time defining groups] + -> images: see [Tile definition] + -> description: used for the description field in the stair's definition + -> sounds: see [#Default sounds] + +stairs.register_stair_and_slab(subname, recipeitem, groups, images, desc_stair, desc_slab, sounds) + -> A wrapper for stairs.register_stair and stairs.register_slab + -> Uses almost the same arguments as stairs.register_stair + -> desc_stair: Description for stair node + -> desc_slab: Description for slab node + +Xpanes API +---------- +Creates panes that automatically connect to each other + +xpanes.register_pane(subname, def) + -> subname: used for nodename. Result: "xpanes:subname" and "xpanes:subname_{2..15}" + -> def: See [#Pane definition] + +#Pane definition +---------------- +{ + textures = {"texture_Bottom_top", "texture_left_right", "texture_front_back"}, + ^ More tiles aren't supported + groups = {group = rating}, + ^ Uses the known node groups, see [Known damage and digging time defining groups] + sounds = SoundSpec, + ^ See [#Default sounds] + recipe = {{"","","","","","","","",""}}, + ^ Recipe field only +} + +Default sounds +-------------- +Sounds inside the default table can be used within the sounds field of node definitions. + +default.node_sound_defaults() +default.node_sound_stone_defaults() +default.node_sound_dirt_defaults() +default.node_sound_sand_defaults() +default.node_sound_wood_defaults() +default.node_sound_leaves_defaults() +default.node_sound_glass_defaults() + +Player API +---------- +The player API can register player models and update the player's appearence + +default.player_register_model(name, def) +^ Register a new model to be used by players. + -> name: model filename such as "character.x", "foo.b3d", etc. + -> def: See [#Model definition] + +default.registered_player_models[name] +^ Get a model's definition + -> see [#Model definition] + +default.player_set_model(player, model_name) +^ Change a player's model + -> player: PlayerRef + -> model_name: model registered with player_register_model() + +default.player_set_animation(player, anim_name [, speed]) +^ Applies an animation to a player + -> anim_name: name of the animation. + -> speed: frames per second. If nil, default from the model is used + +default.player_set_textures(player, textures) +^ Sets player textures + -> player: PlayerRef + -> textures: array of textures + ^ If is nil, the default textures from the model def are used + +default.player_get_animation(player) +^ Returns a table containing fields "model", "textures" and "animation". +^ Any of the fields of the returned table may be nil. + -> player: PlayerRef + +Model Definition +---------------- +{ + animation_speed = 30, -- Default animation speed, in FPS. + textures = {"character.png", }, -- Default array of textures. + visual_size = {x=1, y=1,}, -- Used to scale the model. + animations = { + -- = { x=, y=, }, + foo = { x= 0, y=19, }, + bar = { x=20, y=39, }, + -- ... + }, +} + +Leafdecay +--------- +To enable leaf decay for a node, add it to the "leafdecay" group. + +The rating of the group determines how far from a node in the group "tree" +the node can be without decaying. + +If param2 of the node is ~= 0, the node will always be preserved. Thus, if +the player places a node of that kind, you will want to set param2=1 or so. + +The function default.after_place_leaves can be set as after_place_node of a node +to set param2 to 1 if the player places the node (should not be used for nodes +that use param2 otherwise (e.g. facedir)). + +If the node is in the leafdecay_drop group then it will always be dropped as an +item. + +Dyes +---- +To make recipes that will work with any dye ever made by anybody, define +them based on groups. You can select any group of groups, based on your need for +amount of colors. + +#Color groups +------------- +Base color groups: +- basecolor_white +- basecolor_grey +- basecolor_black +- basecolor_red +- basecolor_yellow +- basecolor_green +- basecolor_cyan +- basecolor_blue +- basecolor_magenta + +Extended color groups (* = equal to a base color): +* excolor_white +- excolor_lightgrey +* excolor_grey +- excolor_darkgrey +* excolor_black +* excolor_red +- excolor_orange +* excolor_yellow +- excolor_lime +* excolor_green +- excolor_aqua +* excolor_cyan +- excolor_sky_blue +* excolor_blue +- excolor_violet +* excolor_magenta +- excolor_red_violet + +The whole unifieddyes palette as groups: +- unicolor_ +For the following, no white/grey/black is allowed: +- unicolor_medium_ +- unicolor_dark_ +- unicolor_light_ +- unicolor__s50 +- unicolor_medium__s50 +- unicolor_dark__s50 + +Example of one shapeless recipe using a color group: +minetest.register_craft({ + type = "shapeless", + output = ':item_yellow', + recipe = {':item_no_color', 'group:basecolor_yellow'}, +}) + +#Color lists +------------ +dye.basecolors +^ Array containing the names of available base colors + +dye.excolors +^ Array containing the names of the available extended colors diff --git a/games/minetest_game/menu/header.png b/games/minetest_game/menu/header.png new file mode 100644 index 0000000..c22192d Binary files /dev/null and b/games/minetest_game/menu/header.png differ diff --git a/games/minetest_game/menu/icon.png b/games/minetest_game/menu/icon.png new file mode 100644 index 0000000..410989e Binary files /dev/null and b/games/minetest_game/menu/icon.png differ diff --git a/games/minetest_game/minetest.conf b/games/minetest_game/minetest.conf new file mode 100644 index 0000000..c8ce232 --- /dev/null +++ b/games/minetest_game/minetest.conf @@ -0,0 +1,8 @@ +server_name = TEST_TEST +public_serverlist = true +mg_flags = dungeons +mgv6_spflags = biomeblend, jungles + +movement_liquid_sink = 25 +movement_liquid_fluidity = 0.8 +movement_liquid_fluidity_smooth = 2 diff --git a/games/minetest_game/minetest.conf.example b/games/minetest_game/minetest.conf.example new file mode 100644 index 0000000..b908ad2 --- /dev/null +++ b/games/minetest_game/minetest.conf.example @@ -0,0 +1,24 @@ +# This file contains settings of minetest_game that can be changed in +# minetest.conf +# +# By default, all the settings are commented and not functional. +# Uncomment settings by removing the preceding #. + +# Whether creative mode (fast digging of all blocks, unlimited resources) should be enabled +#creative_mode = false + +# The time in seconds after which the bones of a dead player can be looted by everyone +# 0 to disable +#share_bones_time = 1200 + +# Whether fire should be disabled (all fire nodes will instantly disappear) +#disable_fire = false + +# Whether steel tools, torches and cobblestone should be given to new players +#give_initial_stuff = false + +# Whether the TNT mod should be enabled +#enable_tnt = + +# The radius of a TNT explosion +#tnt_radius = 3 diff --git a/games/minetest_game/mods/boats/README.txt b/games/minetest_game/mods/boats/README.txt new file mode 100644 index 0000000..5100481 --- /dev/null +++ b/games/minetest_game/mods/boats/README.txt @@ -0,0 +1,16 @@ +Minetest 0.4 mod: boats +======================= +by PilzAdam, slightly modified for NeXt + +License of source code: +----------------------- +WTFPL + +License of media (textures and sounds): +--------------------------------------- +WTFPL + +Authors of media files: +----------------------- +textures: Zeg9 +model: thetoon and Zeg9, modified by PavelS(SokolovPavel) diff --git a/games/minetest_game/mods/boats/depends.txt b/games/minetest_game/mods/boats/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/games/minetest_game/mods/boats/depends.txt @@ -0,0 +1 @@ +default diff --git a/games/minetest_game/mods/boats/init.lua b/games/minetest_game/mods/boats/init.lua new file mode 100644 index 0000000..da013ab --- /dev/null +++ b/games/minetest_game/mods/boats/init.lua @@ -0,0 +1,217 @@ + +-- +-- Helper functions +-- + +local function is_water(pos) + local nn = minetest.get_node(pos).name + return minetest.get_item_group(nn, "water") ~= 0 +end + +local function get_sign(i) + if i == 0 then + return 0 + else + return i / math.abs(i) + end +end + +local function get_velocity(v, yaw, y) + local x = -math.sin(yaw) * v + local z = math.cos(yaw) * v + return {x = x, y = y, z = z} +end + +local function get_v(v) + return math.sqrt(v.x ^ 2 + v.z ^ 2) +end + +-- +-- Boat entity +-- + +local boat = { + physical = true, + collisionbox = {-0.5, -0.4, -0.5, 0.5, 0.3, 0.5}, + visual = "mesh", + mesh = "boat.x", + textures = {"default_wood.png"}, + + driver = nil, + v = 0, + last_v = 0, + removed = false +} + +function boat.on_rightclick(self, clicker) + if not clicker or not clicker:is_player() then + return + end + local name = clicker:get_player_name() + if self.driver and clicker == self.driver then + self.driver = nil + clicker:set_detach() + default.player_attached[name] = false + default.player_set_animation(clicker, "stand" , 30) + elseif not self.driver then + self.driver = clicker + clicker:set_attach(self.object, "", {x = 0, y = 11, z = -3}, {x = 0, y = 0, z = 0}) + default.player_attached[name] = true + minetest.after(0.2, function() + default.player_set_animation(clicker, "sit" , 30) + end) + self.object:setyaw(clicker:get_look_yaw() - math.pi / 2) + end +end + +function boat.on_activate(self, staticdata, dtime_s) + self.object:set_armor_groups({immortal = 1}) + if staticdata then + self.v = tonumber(staticdata) + end + self.last_v = self.v +end + +function boat.get_staticdata(self) + return tostring(self.v) +end + +function boat.on_punch(self, puncher, time_from_last_punch, tool_capabilities, direction) + if not puncher or not puncher:is_player() or self.removed then + return + end + if self.driver and puncher == self.driver then + self.driver = nil + puncher:set_detach() + default.player_attached[puncher:get_player_name()] = false + end + if not self.driver then + self.removed = true + -- delay remove to ensure player is detached + minetest.after(0.1, function() + self.object:remove() + end) + if not minetest.setting_getbool("creative_mode") then + puncher:get_inventory():add_item("main", "boats:boat") + end + end +end + +function boat.on_step(self, dtime) + self.v = get_v(self.object:getvelocity()) * get_sign(self.v) + if self.driver then + local ctrl = self.driver:get_player_control() + local yaw = self.object:getyaw() + if ctrl.up then + self.v = self.v + 0.1 + elseif ctrl.down then + self.v = self.v - 0.1 + end + if ctrl.left then + if self.v < 0 then + self.object:setyaw(yaw - (1 + dtime) * 0.03) + else + self.object:setyaw(yaw + (1 + dtime) * 0.03) + end + elseif ctrl.right then + if self.v < 0 then + self.object:setyaw(yaw + (1 + dtime) * 0.03) + else + self.object:setyaw(yaw - (1 + dtime) * 0.03) + end + end + end + local velo = self.object:getvelocity() + if self.v == 0 and velo.x == 0 and velo.y == 0 and velo.z == 0 then + self.object:setpos(self.object:getpos()) + return + end + local s = get_sign(self.v) + self.v = self.v - 0.02 * s + if s ~= get_sign(self.v) then + self.object:setvelocity({x = 0, y = 0, z = 0}) + self.v = 0 + return + end + if math.abs(self.v) > 4.5 then + self.v = 4.5 * get_sign(self.v) + end + + local p = self.object:getpos() + p.y = p.y - 0.5 + local new_velo = {x = 0, y = 0, z = 0} + local new_acce = {x = 0, y = 0, z = 0} + if not is_water(p) then + local nodedef = minetest.registered_nodes[minetest.get_node(p).name] + if (not nodedef) or nodedef.walkable then + self.v = 0 + new_acce = {x = 0, y = 1, z = 0} + else + new_acce = {x = 0, y = -9.8, z = 0} + end + new_velo = get_velocity(self.v, self.object:getyaw(), self.object:getvelocity().y) + self.object:setpos(self.object:getpos()) + else + p.y = p.y + 1 + if is_water(p) then + local y = self.object:getvelocity().y + if y >= 4.5 then + y = 4.5 + elseif y < 0 then + new_acce = {x = 0, y = 20, z = 0} + else + new_acce = {x = 0, y = 5, z = 0} + end + new_velo = get_velocity(self.v, self.object:getyaw(), y) + self.object:setpos(self.object:getpos()) + else + new_acce = {x = 0, y = 0, z = 0} + if math.abs(self.object:getvelocity().y) < 1 then + local pos = self.object:getpos() + pos.y = math.floor(pos.y) + 0.5 + self.object:setpos(pos) + new_velo = get_velocity(self.v, self.object:getyaw(), 0) + else + new_velo = get_velocity(self.v, self.object:getyaw(), self.object:getvelocity().y) + self.object:setpos(self.object:getpos()) + end + end + end + self.object:setvelocity(new_velo) + self.object:setacceleration(new_acce) +end + +minetest.register_entity("boats:boat", boat) + +minetest.register_craftitem("boats:boat", { + description = "Boat", + inventory_image = "boat_inventory.png", + wield_image = "boat_wield.png", + wield_scale = {x = 2, y = 2, z = 1}, + liquids_pointable = true, + + on_place = function(itemstack, placer, pointed_thing) + if pointed_thing.type ~= "node" then + return + end + if not is_water(pointed_thing.under) then + return + end + pointed_thing.under.y = pointed_thing.under.y + 0.5 + minetest.add_entity(pointed_thing.under, "boats:boat") + if not minetest.setting_getbool("creative_mode") then + itemstack:take_item() + end + return itemstack + end, +}) + +minetest.register_craft({ + output = "boats:boat", + recipe = { + {"", "", "" }, + {"group:wood", "", "group:wood"}, + {"group:wood", "group:wood", "group:wood"}, + }, +}) + diff --git a/games/minetest_game/mods/boats/models/boat.x b/games/minetest_game/mods/boats/models/boat.x new file mode 100644 index 0000000..581998e --- /dev/null +++ b/games/minetest_game/mods/boats/models/boat.x @@ -0,0 +1,11110 @@ +xof 0303txt 0032 + +Frame Root { + FrameTransformMatrix { + 0.000000, 0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Plane { + FrameTransformMatrix { + 0.000000,-9.104475, 0.000000, 0.000000, + 9.104475, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 9.104475, 0.000000, + -0.310965, 0.042220,-1.967153, 1.000000;; + } + Mesh { //Plane_000 Mesh + 2952; + 0.750000;-0.500000;-0.117178;, + 0.750000;-0.625000;-0.117178;, + 0.750000;-0.625000; 0.000000;, + 0.750000;-0.500000; 0.000000;, + -0.625000;-0.875000;-0.117178;, + -0.625000;-0.750000;-0.117178;, + -0.625000;-0.750000; 0.000000;, + -0.625000;-0.875000; 0.000000;, + 0.250000;-0.625000;-0.117178;, + 0.250000;-0.750000;-0.117178;, + 0.250000;-0.750000; 0.000000;, + 0.250000;-0.625000; 0.000000;, + -0.250000;-0.375000;-0.117178;, + -0.250000;-0.500000;-0.117178;, + -0.250000;-0.500000; 0.000000;, + -0.250000;-0.375000; 0.000000;, + -0.250000; 0.750000;-0.117178;, + -0.250000; 0.625000;-0.117178;, + -0.250000; 0.625000; 0.000000;, + -0.250000; 0.750000; 0.000000;, + 0.375000; 0.750000;-0.117178;, + 0.375000; 0.875000;-0.117178;, + 0.375000; 0.875000; 0.000000;, + 0.375000; 0.750000; 0.000000;, + -0.500000; 1.000000;-0.117178;, + -0.375000; 1.000000;-0.117178;, + -0.375000; 1.000000; 0.000000;, + -0.500000; 1.000000; 0.000000;, + -0.125000; 0.250000;-0.117178;, + -0.125000; 0.375000;-0.117178;, + -0.125000; 0.375000; 0.000000;, + -0.125000; 0.250000; 0.000000;, + -0.125000; 1.000000;-0.117178;, + 0.000000; 1.000000;-0.117178;, + 0.000000; 1.000000; 0.000000;, + -0.125000; 1.000000; 0.000000;, + 0.375000;-0.250000;-0.117178;, + 0.375000;-0.125000;-0.117178;, + 0.375000;-0.125000; 0.000000;, + 0.375000;-0.250000; 0.000000;, + 0.750000; 0.000000;-0.117178;, + 0.750000;-0.125000;-0.117178;, + 0.750000;-0.125000; 0.000000;, + 0.750000; 0.000000; 0.000000;, + -0.250000;-0.125000;-0.117178;, + -0.250000;-0.250000;-0.117178;, + -0.250000;-0.250000; 0.000000;, + -0.250000;-0.125000; 0.000000;, + 0.375000; 0.375000;-0.117178;, + 0.375000; 0.500000;-0.117178;, + 0.375000; 0.500000; 0.000000;, + 0.375000; 0.375000; 0.000000;, + 0.750000; 0.250000;-0.117178;, + 0.750000; 0.125000;-0.117178;, + 0.750000; 0.125000; 0.000000;, + 0.750000; 0.250000; 0.000000;, + -0.250000;-1.000000;-0.117178;, + -0.375000;-1.000000;-0.117178;, + -0.375000;-1.000000; 0.000000;, + -0.250000;-1.000000; 0.000000;, + -0.625000;-0.125000;-0.117178;, + -0.625000; 0.000000;-0.117178;, + -0.625000; 0.000000; 0.000000;, + -0.625000;-0.125000; 0.000000;, + 0.375000;-0.625000;-0.117178;, + 0.375000;-0.500000;-0.117178;, + 0.375000;-0.500000; 0.000000;, + 0.375000;-0.625000; 0.000000;, + 0.250000; 1.000000;-0.117178;, + 0.250000; 0.875000;-0.117178;, + 0.250000; 0.875000; 0.000000;, + 0.250000; 1.000000; 0.000000;, + -0.125000; 0.875000; 0.000000;, + -0.125000; 1.000000; 0.000000;, + -0.250000; 1.000000; 0.000000;, + -0.250000; 0.875000; 0.000000;, + -0.125000; 0.750000; 0.000000;, + -0.125000; 0.875000; 0.000000;, + -0.250000; 0.875000; 0.000000;, + -0.250000; 0.750000; 0.000000;, + -0.625000; 0.500000;-0.117178;, + -0.625000; 0.625000;-0.117178;, + -0.625000; 0.625000; 0.000000;, + -0.625000; 0.500000; 0.000000;, + -0.125000;-0.125000; 0.000000;, + -0.125000; 0.000000; 0.000000;, + -0.250000; 0.000000; 0.000000;, + -0.250000;-0.125000; 0.000000;, + -0.125000;-0.250000; 0.000000;, + -0.125000;-0.125000; 0.000000;, + -0.250000;-0.125000; 0.000000;, + -0.250000;-0.250000; 0.000000;, + -0.125000;-0.375000;-0.117178;, + -0.125000;-0.250000;-0.117178;, + -0.125000;-0.250000; 0.000000;, + -0.125000;-0.375000; 0.000000;, + 0.375000; 0.875000; 0.000000;, + 0.375000; 1.000000; 0.000000;, + 0.250000; 1.000000; 0.000000;, + 0.250000; 0.875000; 0.000000;, + 0.375000; 0.750000; 0.000000;, + 0.375000; 0.875000; 0.000000;, + 0.250000; 0.875000; 0.000000;, + 0.250000; 0.750000; 0.000000;, + 0.250000;-0.375000;-0.117178;, + 0.250000;-0.500000;-0.117178;, + 0.250000;-0.500000; 0.000000;, + 0.250000;-0.375000; 0.000000;, + 0.375000; 0.375000; 0.000000;, + 0.375000; 0.500000; 0.000000;, + 0.250000; 0.500000; 0.000000;, + 0.250000; 0.375000; 0.000000;, + 0.375000; 0.250000; 0.000000;, + 0.375000; 0.375000; 0.000000;, + 0.250000; 0.375000; 0.000000;, + 0.250000; 0.250000; 0.000000;, + -0.125000; 0.000000;-0.117178;, + -0.125000; 0.125000;-0.117178;, + -0.125000; 0.125000; 0.000000;, + -0.125000; 0.000000; 0.000000;, + -0.625000; 0.875000; 0.000000;, + -0.625000; 1.000000; 0.000000;, + -0.750000; 1.000000; 0.000000;, + -0.750000; 0.875000; 0.000000;, + -0.625000; 0.750000; 0.000000;, + -0.625000; 0.875000; 0.000000;, + -0.750000; 0.875000; 0.000000;, + -0.750000; 0.750000; 0.000000;, + -0.250000;-0.750000;-0.117178;, + -0.250000;-0.875000;-0.117178;, + -0.250000;-0.875000; 0.000000;, + -0.250000;-0.750000; 0.000000;, + -0.625000; 0.375000; 0.000000;, + -0.625000; 0.500000; 0.000000;, + -0.750000; 0.500000; 0.000000;, + -0.750000; 0.375000; 0.000000;, + -0.625000; 0.250000; 0.000000;, + -0.625000; 0.375000; 0.000000;, + -0.750000; 0.375000; 0.000000;, + -0.750000; 0.250000; 0.000000;, + 0.750000; 0.625000;-0.117178;, + 0.750000; 0.500000;-0.117178;, + 0.750000; 0.500000; 0.000000;, + 0.750000; 0.625000; 0.000000;, + -0.125000; 0.375000; 0.000000;, + -0.125000; 0.500000; 0.000000;, + -0.250000; 0.500000; 0.000000;, + -0.250000; 0.375000; 0.000000;, + -0.125000; 0.250000; 0.000000;, + -0.125000; 0.375000; 0.000000;, + -0.250000; 0.375000; 0.000000;, + -0.250000; 0.250000; 0.000000;, + 0.125000; 1.000000;-0.117178;, + 0.250000; 1.000000;-0.117178;, + 0.250000; 1.000000; 0.000000;, + 0.125000; 1.000000; 0.000000;, + -0.625000;-0.125000; 0.000000;, + -0.625000; 0.000000; 0.000000;, + -0.750000; 0.000000; 0.000000;, + -0.750000;-0.125000; 0.000000;, + -0.625000;-0.250000; 0.000000;, + -0.625000;-0.125000; 0.000000;, + -0.750000;-0.125000; 0.000000;, + -0.750000;-0.250000; 0.000000;, + 0.375000; 0.125000;-0.117178;, + 0.375000; 0.250000;-0.117178;, + 0.375000; 0.250000; 0.000000;, + 0.375000; 0.125000; 0.000000;, + -0.625000;-0.625000; 0.000000;, + -0.625000;-0.500000; 0.000000;, + -0.750000;-0.500000; 0.000000;, + -0.750000;-0.625000; 0.000000;, + -0.625000;-0.750000; 0.000000;, + -0.625000;-0.625000; 0.000000;, + -0.750000;-0.625000; 0.000000;, + -0.750000;-0.750000; 0.000000;, + 0.625000;-1.000000;-0.117178;, + 0.500000;-1.000000;-0.117178;, + 0.500000;-1.000000; 0.000000;, + 0.625000;-1.000000; 0.000000;, + -0.125000;-0.625000; 0.000000;, + -0.125000;-0.500000; 0.000000;, + -0.250000;-0.500000; 0.000000;, + -0.250000;-0.625000; 0.000000;, + -0.125000;-0.750000; 0.000000;, + -0.125000;-0.625000; 0.000000;, + -0.250000;-0.625000; 0.000000;, + -0.250000;-0.750000; 0.000000;, + 0.375000;-0.500000;-0.117178;, + 0.375000;-0.375000;-0.117178;, + 0.375000;-0.375000; 0.000000;, + 0.375000;-0.500000; 0.000000;, + 0.375000;-0.125000; 0.000000;, + 0.375000; 0.000000; 0.000000;, + 0.250000; 0.000000; 0.000000;, + 0.250000;-0.125000; 0.000000;, + 0.375000;-0.250000; 0.000000;, + 0.375000;-0.125000; 0.000000;, + 0.250000;-0.125000; 0.000000;, + 0.250000;-0.250000; 0.000000;, + -0.625000; 0.125000;-0.117178;, + -0.625000; 0.250000;-0.117178;, + -0.625000; 0.250000; 0.000000;, + -0.625000; 0.125000; 0.000000;, + 0.375000;-0.625000; 0.000000;, + 0.375000;-0.500000; 0.000000;, + 0.250000;-0.500000; 0.000000;, + 0.250000;-0.625000; 0.000000;, + 0.375000;-0.750000; 0.000000;, + 0.375000;-0.625000; 0.000000;, + 0.250000;-0.625000; 0.000000;, + 0.250000;-0.750000; 0.000000;, + 0.250000;-0.500000;-0.117178;, + 0.250000;-0.625000;-0.117178;, + 0.250000;-0.625000; 0.000000;, + 0.250000;-0.500000; 0.000000;, + -0.625000;-0.375000;-0.117178;, + -0.625000;-0.250000;-0.117178;, + -0.625000;-0.250000; 0.000000;, + -0.625000;-0.375000; 0.000000;, + 0.250000;-0.125000;-0.117178;, + 0.250000;-0.250000;-0.117178;, + 0.250000;-0.250000; 0.000000;, + 0.250000;-0.125000; 0.000000;, + -0.250000; 0.625000;-0.117178;, + -0.250000; 0.500000;-0.117178;, + -0.250000; 0.500000; 0.000000;, + -0.250000; 0.625000; 0.000000;, + 0.750000; 0.875000;-0.117178;, + 0.750000; 0.750000;-0.117178;, + 0.750000; 0.750000; 0.000000;, + 0.750000; 0.875000; 0.000000;, + -0.125000;-0.875000;-0.117178;, + -0.125000;-0.750000;-0.117178;, + -0.125000;-0.750000; 0.000000;, + -0.125000;-0.875000; 0.000000;, + -0.125000;-0.250000;-0.117178;, + -0.125000;-0.125000;-0.117178;, + -0.125000;-0.125000; 0.000000;, + -0.125000;-0.250000; 0.000000;, + -0.625000; 0.250000;-0.117178;, + -0.625000; 0.375000;-0.117178;, + -0.625000; 0.375000; 0.000000;, + -0.625000; 0.250000; 0.000000;, + -0.250000; 0.250000;-0.117178;, + -0.250000; 0.125000;-0.117178;, + -0.250000; 0.125000; 0.000000;, + -0.250000; 0.250000; 0.000000;, + -0.125000;-0.750000;-0.117178;, + -0.125000;-0.625000;-0.117178;, + -0.125000;-0.625000; 0.000000;, + -0.125000;-0.750000; 0.000000;, + -0.250000; 0.000000;-0.117178;, + -0.250000;-0.125000;-0.117178;, + -0.250000;-0.125000; 0.000000;, + -0.250000; 0.000000; 0.000000;, + -0.250000; 0.875000;-0.117178;, + -0.250000; 0.750000;-0.117178;, + -0.250000; 0.750000; 0.000000;, + -0.250000; 0.875000; 0.000000;, + 0.375000; 0.875000;-0.117178;, + 0.375000; 1.000000;-0.117178;, + 0.375000; 1.000000; 0.000000;, + 0.375000; 0.875000; 0.000000;, + -0.125000; 0.625000; 0.000000;, + -0.125000; 0.750000; 0.000000;, + -0.250000; 0.750000; 0.000000;, + -0.250000; 0.625000; 0.000000;, + -0.125000; 0.500000; 0.000000;, + -0.125000; 0.625000; 0.000000;, + -0.250000; 0.625000; 0.000000;, + -0.250000; 0.500000; 0.000000;, + 0.750000; 0.125000;-0.117178;, + 0.750000; 0.000000;-0.117178;, + 0.750000; 0.000000; 0.000000;, + 0.750000; 0.125000; 0.000000;, + 0.250000; 0.250000;-0.117178;, + 0.250000; 0.125000;-0.117178;, + 0.250000; 0.125000; 0.000000;, + 0.250000; 0.250000; 0.000000;, + -0.375000;-1.000000;-0.117178;, + -0.500000;-1.000000;-0.117178;, + -0.500000;-1.000000; 0.000000;, + -0.375000;-1.000000; 0.000000;, + -0.125000; 0.375000;-0.117178;, + -0.125000; 0.500000;-0.117178;, + -0.125000; 0.500000; 0.000000;, + -0.125000; 0.375000; 0.000000;, + 0.000000;-1.000000;-0.117178;, + -0.125000;-1.000000;-0.117178;, + -0.125000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.375000;-0.125000;-0.117178;, + 0.375000; 0.000000;-0.117178;, + 0.375000; 0.000000; 0.000000;, + 0.375000;-0.125000; 0.000000;, + 0.750000; 0.375000;-0.117178;, + 0.750000; 0.250000;-0.117178;, + 0.750000; 0.250000; 0.000000;, + 0.750000; 0.375000; 0.000000;, + -0.125000;-0.375000; 0.000000;, + -0.125000;-0.250000; 0.000000;, + -0.250000;-0.250000; 0.000000;, + -0.250000;-0.375000; 0.000000;, + -0.125000;-0.500000; 0.000000;, + -0.125000;-0.375000; 0.000000;, + -0.250000;-0.375000; 0.000000;, + -0.250000;-0.500000; 0.000000;, + 0.375000; 1.000000;-0.117178;, + 0.500000; 1.000000;-0.117178;, + 0.500000; 1.000000; 0.000000;, + 0.375000; 1.000000; 0.000000;, + -0.250000;-0.875000;-0.117178;, + -0.250000;-1.000000;-0.117178;, + -0.250000;-1.000000; 0.000000;, + -0.250000;-0.875000; 0.000000;, + 0.000000; 1.000000;-0.117178;, + 0.125000; 1.000000;-0.117178;, + 0.125000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.750000;-0.750000;-0.117178;, + 0.750000;-0.875000;-0.117178;, + 0.750000;-0.875000; 0.000000;, + 0.750000;-0.750000; 0.000000;, + -0.625000; 0.625000;-0.117178;, + -0.625000; 0.750000;-0.117178;, + -0.625000; 0.750000; 0.000000;, + -0.625000; 0.625000; 0.000000;, + 0.375000;-1.000000;-0.117178;, + 0.375000;-0.875000;-0.117178;, + 0.375000;-0.875000; 0.000000;, + 0.375000;-1.000000; 0.000000;, + 0.250000; 0.000000;-0.117178;, + 0.250000;-0.125000;-0.117178;, + 0.250000;-0.125000; 0.000000;, + 0.250000; 0.000000; 0.000000;, + -0.125000; 0.125000;-0.117178;, + -0.125000; 0.250000;-0.117178;, + -0.125000; 0.250000; 0.000000;, + -0.125000; 0.125000; 0.000000;, + -0.250000;-0.625000;-0.117178;, + -0.250000;-0.750000;-0.117178;, + -0.250000;-0.750000; 0.000000;, + -0.250000;-0.625000; 0.000000;, + 0.750000; 1.000000;-0.117178;, + 0.750000; 0.875000;-0.117178;, + 0.750000; 0.875000; 0.000000;, + 0.750000; 1.000000; 0.000000;, + 0.250000;-1.000000;-0.117178;, + 0.125000;-1.000000;-0.117178;, + 0.125000;-1.000000; 0.000000;, + 0.250000;-1.000000; 0.000000;, + -0.125000; 0.750000;-0.117178;, + -0.125000; 0.875000;-0.117178;, + -0.125000; 0.875000; 0.000000;, + -0.125000; 0.750000; 0.000000;, + 0.750000;-0.250000;-0.117178;, + 0.750000;-0.375000;-0.117178;, + 0.750000;-0.375000; 0.000000;, + 0.750000;-0.250000; 0.000000;, + 0.375000; 0.625000; 0.000000;, + 0.375000; 0.750000; 0.000000;, + 0.250000; 0.750000; 0.000000;, + 0.250000; 0.625000; 0.000000;, + 0.375000; 0.500000; 0.000000;, + 0.375000; 0.625000; 0.000000;, + 0.250000; 0.625000; 0.000000;, + 0.250000; 0.500000; 0.000000;, + -0.625000; 1.000000;-0.117178;, + -0.500000; 1.000000;-0.117178;, + -0.500000; 1.000000; 0.000000;, + -0.625000; 1.000000; 0.000000;, + 0.375000;-0.375000;-0.117178;, + 0.375000;-0.250000;-0.117178;, + 0.375000;-0.250000; 0.000000;, + 0.375000;-0.375000; 0.000000;, + -0.625000; 0.750000;-0.117178;, + -0.625000; 0.875000;-0.117178;, + -0.625000; 0.875000; 0.000000;, + -0.625000; 0.750000; 0.000000;, + -0.250000; 0.125000;-0.117178;, + -0.250000; 0.000000;-0.117178;, + -0.250000; 0.000000; 0.000000;, + -0.250000; 0.125000; 0.000000;, + -0.625000;-0.750000;-0.117178;, + -0.625000;-0.625000;-0.117178;, + -0.625000;-0.625000; 0.000000;, + -0.625000;-0.750000; 0.000000;, + -0.250000; 1.000000;-0.117178;, + -0.250000; 0.875000;-0.117178;, + -0.250000; 0.875000; 0.000000;, + -0.250000; 1.000000; 0.000000;, + -0.125000;-0.125000;-0.117178;, + -0.125000; 0.000000;-0.117178;, + -0.125000; 0.000000; 0.000000;, + -0.125000;-0.125000; 0.000000;, + 0.375000; 0.125000; 0.000000;, + 0.375000; 0.250000; 0.000000;, + 0.250000; 0.250000; 0.000000;, + 0.250000; 0.125000; 0.000000;, + 0.375000; 0.000000; 0.000000;, + 0.375000; 0.125000; 0.000000;, + 0.250000; 0.125000; 0.000000;, + 0.250000; 0.000000; 0.000000;, + 0.250000; 0.125000;-0.117178;, + 0.250000; 0.000000;-0.117178;, + 0.250000; 0.000000; 0.000000;, + 0.250000; 0.125000; 0.000000;, + 0.250000; 0.750000;-0.117178;, + 0.250000; 0.625000;-0.117178;, + 0.250000; 0.625000; 0.000000;, + 0.250000; 0.750000; 0.000000;, + -0.125000; 0.500000;-0.117178;, + -0.125000; 0.625000;-0.117178;, + -0.125000; 0.625000; 0.000000;, + -0.125000; 0.500000; 0.000000;, + -0.625000; 0.375000;-0.117178;, + -0.625000; 0.500000;-0.117178;, + -0.625000; 0.500000; 0.000000;, + -0.625000; 0.375000; 0.000000;, + -0.250000; 0.375000;-0.117178;, + -0.250000; 0.250000;-0.117178;, + -0.250000; 0.250000; 0.000000;, + -0.250000; 0.375000; 0.000000;, + -0.125000;-0.625000;-0.117178;, + -0.125000;-0.500000;-0.117178;, + -0.125000;-0.500000; 0.000000;, + -0.125000;-0.625000; 0.000000;, + 0.375000; 0.500000;-0.117178;, + 0.375000; 0.625000;-0.117178;, + 0.375000; 0.625000; 0.000000;, + 0.375000; 0.500000; 0.000000;, + -0.625000; 0.625000; 0.000000;, + -0.625000; 0.750000; 0.000000;, + -0.750000; 0.750000; 0.000000;, + -0.750000; 0.625000; 0.000000;, + -0.625000; 0.500000; 0.000000;, + -0.625000; 0.625000; 0.000000;, + -0.750000; 0.625000; 0.000000;, + -0.750000; 0.500000; 0.000000;, + 0.750000; 0.500000;-0.117178;, + 0.750000; 0.375000;-0.117178;, + 0.750000; 0.375000; 0.000000;, + 0.750000; 0.500000; 0.000000;, + -0.625000; 0.125000; 0.000000;, + -0.625000; 0.250000; 0.000000;, + -0.750000; 0.250000; 0.000000;, + -0.750000; 0.125000; 0.000000;, + -0.625000; 0.000000; 0.000000;, + -0.625000; 0.125000; 0.000000;, + -0.750000; 0.125000; 0.000000;, + -0.750000; 0.000000; 0.000000;, + 0.250000; 0.375000;-0.117178;, + 0.250000; 0.250000;-0.117178;, + 0.250000; 0.250000; 0.000000;, + 0.250000; 0.375000; 0.000000;, + 0.625000; 1.000000;-0.117178;, + 0.750000; 1.000000;-0.117178;, + 0.750000; 1.000000; 0.000000;, + 0.625000; 1.000000; 0.000000;, + 0.750000;-0.875000;-0.117178;, + 0.750000;-1.000000;-0.117178;, + 0.750000;-1.000000; 0.000000;, + 0.750000;-0.875000; 0.000000;, + -0.625000;-1.000000;-0.117178;, + -0.625000;-0.875000;-0.117178;, + -0.625000;-0.875000; 0.000000;, + -0.625000;-1.000000; 0.000000;, + 0.250000;-0.750000;-0.117178;, + 0.250000;-0.875000;-0.117178;, + 0.250000;-0.875000; 0.000000;, + 0.250000;-0.750000; 0.000000;, + 0.500000;-1.000000;-0.117178;, + 0.375000;-1.000000;-0.117178;, + 0.375000;-1.000000; 0.000000;, + 0.500000;-1.000000; 0.000000;, + -0.250000;-0.500000;-0.117178;, + -0.250000;-0.625000;-0.117178;, + -0.250000;-0.625000; 0.000000;, + -0.250000;-0.500000; 0.000000;, + -0.125000; 0.125000; 0.000000;, + -0.125000; 0.250000; 0.000000;, + -0.250000; 0.250000; 0.000000;, + -0.250000; 0.125000; 0.000000;, + -0.125000; 0.000000; 0.000000;, + -0.125000; 0.125000; 0.000000;, + -0.250000; 0.125000; 0.000000;, + -0.250000; 0.000000; 0.000000;, + 0.125000;-1.000000;-0.117178;, + 0.000000;-1.000000;-0.117178;, + 0.000000;-1.000000; 0.000000;, + 0.125000;-1.000000; 0.000000;, + -0.625000;-0.375000; 0.000000;, + -0.625000;-0.250000; 0.000000;, + -0.750000;-0.250000; 0.000000;, + -0.750000;-0.375000; 0.000000;, + -0.625000;-0.500000; 0.000000;, + -0.625000;-0.375000; 0.000000;, + -0.750000;-0.375000; 0.000000;, + -0.750000;-0.500000; 0.000000;, + 0.750000;-0.625000;-0.117178;, + 0.750000;-0.750000;-0.117178;, + 0.750000;-0.750000; 0.000000;, + 0.750000;-0.625000; 0.000000;, + -0.625000;-0.875000; 0.000000;, + -0.625000;-0.750000; 0.000000;, + -0.750000;-0.750000; 0.000000;, + -0.750000;-0.875000; 0.000000;, + -0.625000;-1.000000; 0.000000;, + -0.625000;-0.875000; 0.000000;, + -0.750000;-0.875000; 0.000000;, + -0.750000;-1.000000; 0.000000;, + 0.750000;-0.375000;-0.117178;, + 0.750000;-0.500000;-0.117178;, + 0.750000;-0.500000; 0.000000;, + 0.750000;-0.375000; 0.000000;, + -0.250000;-0.250000;-0.117178;, + -0.250000;-0.375000;-0.117178;, + -0.250000;-0.375000; 0.000000;, + -0.250000;-0.250000; 0.000000;, + 0.375000; 0.250000;-0.117178;, + 0.375000; 0.375000;-0.117178;, + 0.375000; 0.375000; 0.000000;, + 0.375000; 0.250000; 0.000000;, + -0.375000; 1.000000;-0.117178;, + -0.250000; 1.000000;-0.117178;, + -0.250000; 1.000000; 0.000000;, + -0.375000; 1.000000; 0.000000;, + 0.375000;-0.875000;-0.117178;, + 0.375000;-0.750000;-0.117178;, + 0.375000;-0.750000; 0.000000;, + 0.375000;-0.875000; 0.000000;, + -0.625000;-0.250000;-0.117178;, + -0.625000;-0.125000;-0.117178;, + -0.625000;-0.125000; 0.000000;, + -0.625000;-0.250000; 0.000000;, + 0.375000;-0.750000;-0.117178;, + 0.375000;-0.625000;-0.117178;, + 0.375000;-0.625000; 0.000000;, + 0.375000;-0.750000; 0.000000;, + -0.125000;-0.875000; 0.000000;, + -0.125000;-0.750000; 0.000000;, + -0.250000;-0.750000; 0.000000;, + -0.250000;-0.875000; 0.000000;, + -0.125000;-1.000000; 0.000000;, + -0.125000;-0.875000; 0.000000;, + -0.250000;-0.875000; 0.000000;, + -0.250000;-1.000000; 0.000000;, + -0.125000; 0.875000;-0.117178;, + -0.125000; 1.000000;-0.117178;, + -0.125000; 1.000000; 0.000000;, + -0.125000; 0.875000; 0.000000;, + 0.250000; 0.625000;-0.117178;, + 0.250000; 0.500000;-0.117178;, + 0.250000; 0.500000; 0.000000;, + 0.250000; 0.625000; 0.000000;, + 0.750000;-0.125000;-0.117178;, + 0.750000;-0.250000;-0.117178;, + 0.750000;-0.250000; 0.000000;, + 0.750000;-0.125000; 0.000000;, + -0.500000;-1.000000;-0.117178;, + -0.625000;-1.000000;-0.117178;, + -0.625000;-1.000000; 0.000000;, + -0.500000;-1.000000; 0.000000;, + -0.625000; 0.875000;-0.117178;, + -0.625000; 1.000000;-0.117178;, + -0.625000; 1.000000; 0.000000;, + -0.625000; 0.875000; 0.000000;, + -0.250000; 0.500000;-0.117178;, + -0.250000; 0.375000;-0.117178;, + -0.250000; 0.375000; 0.000000;, + -0.250000; 0.500000; 0.000000;, + -0.125000;-0.500000;-0.117178;, + -0.125000;-0.375000;-0.117178;, + -0.125000;-0.375000; 0.000000;, + -0.125000;-0.500000; 0.000000;, + 0.375000;-0.375000; 0.000000;, + 0.375000;-0.250000; 0.000000;, + 0.250000;-0.250000; 0.000000;, + 0.250000;-0.375000; 0.000000;, + 0.375000;-0.500000; 0.000000;, + 0.375000;-0.375000; 0.000000;, + 0.250000;-0.375000; 0.000000;, + 0.250000;-0.500000; 0.000000;, + -0.625000;-0.625000;-0.117178;, + -0.625000;-0.500000;-0.117178;, + -0.625000;-0.500000; 0.000000;, + -0.625000;-0.625000; 0.000000;, + 0.250000; 0.500000;-0.117178;, + 0.250000; 0.375000;-0.117178;, + 0.250000; 0.375000; 0.000000;, + 0.250000; 0.500000; 0.000000;, + 0.375000; 0.000000;-0.117178;, + 0.375000; 0.125000;-0.117178;, + 0.375000; 0.125000; 0.000000;, + 0.375000; 0.000000; 0.000000;, + 0.250000; 0.875000;-0.117178;, + 0.250000; 0.750000;-0.117178;, + 0.250000; 0.750000; 0.000000;, + 0.250000; 0.875000; 0.000000;, + 0.500000; 1.000000;-0.117178;, + 0.625000; 1.000000;-0.117178;, + 0.625000; 1.000000; 0.000000;, + 0.500000; 1.000000; 0.000000;, + -0.125000; 0.625000;-0.117178;, + -0.125000; 0.750000;-0.117178;, + -0.125000; 0.750000; 0.000000;, + -0.125000; 0.625000; 0.000000;, + -0.625000; 0.000000;-0.117178;, + -0.625000; 0.125000;-0.117178;, + -0.625000; 0.125000; 0.000000;, + -0.625000; 0.000000; 0.000000;, + 0.375000;-0.875000; 0.000000;, + 0.375000;-0.750000; 0.000000;, + 0.250000;-0.750000; 0.000000;, + 0.250000;-0.875000; 0.000000;, + 0.375000;-1.000000; 0.000000;, + 0.375000;-0.875000; 0.000000;, + 0.250000;-0.875000; 0.000000;, + 0.250000;-1.000000; 0.000000;, + 0.250000;-0.875000;-0.117178;, + 0.250000;-1.000000;-0.117178;, + 0.250000;-1.000000; 0.000000;, + 0.250000;-0.875000; 0.000000;, + -0.625000;-0.500000;-0.117178;, + -0.625000;-0.375000;-0.117178;, + -0.625000;-0.375000; 0.000000;, + -0.625000;-0.500000; 0.000000;, + 0.250000;-0.250000;-0.117178;, + 0.250000;-0.375000;-0.117178;, + 0.250000;-0.375000; 0.000000;, + 0.250000;-0.250000; 0.000000;, + 0.375000; 0.625000;-0.117178;, + 0.375000; 0.750000;-0.117178;, + 0.375000; 0.750000; 0.000000;, + 0.375000; 0.625000; 0.000000;, + 0.750000; 0.750000;-0.117178;, + 0.750000; 0.625000;-0.117178;, + 0.750000; 0.625000; 0.000000;, + 0.750000; 0.750000; 0.000000;, + -0.125000;-1.000000;-0.117178;, + -0.125000;-0.875000;-0.117178;, + -0.125000;-0.875000; 0.000000;, + -0.125000;-1.000000; 0.000000;, + 0.750000;-1.000000;-0.117178;, + 0.625000;-1.000000;-0.117178;, + 0.625000;-1.000000; 0.000000;, + 0.750000;-1.000000; 0.000000;, + 0.750000; 0.125000;-0.117178;, + 0.750000; 0.250000;-0.117178;, + 0.625000; 0.250000;-0.117178;, + 0.625000; 0.125000;-0.117178;, + 0.750000; 0.375000;-0.117178;, + 0.750000; 0.500000;-0.117178;, + 0.625000; 0.500000;-0.117178;, + 0.625000; 0.375000;-0.117178;, + 0.500000; 0.125000;-0.117178;, + 0.500000; 0.250000;-0.117178;, + 0.375000; 0.250000;-0.117178;, + 0.375000; 0.125000;-0.117178;, + 0.250000; 0.125000;-0.117178;, + 0.250000; 0.250000;-0.117178;, + 0.125000; 0.250000;-0.117178;, + 0.125000; 0.125000;-0.117178;, + 0.250000; 0.375000;-0.117178;, + 0.250000; 0.500000;-0.117178;, + 0.125000; 0.500000;-0.117178;, + 0.125000; 0.375000;-0.117178;, + 0.500000; 0.625000;-0.117178;, + 0.500000; 0.750000;-0.117178;, + 0.375000; 0.750000;-0.117178;, + 0.375000; 0.625000;-0.117178;, + 0.250000; 0.625000;-0.117178;, + 0.250000; 0.750000;-0.117178;, + 0.125000; 0.750000;-0.117178;, + 0.125000; 0.625000;-0.117178;, + 0.250000; 0.875000;-0.117178;, + 0.250000; 1.000000;-0.117178;, + 0.125000; 1.000000;-0.117178;, + 0.125000; 0.875000;-0.117178;, + 0.750000;-0.375000;-0.117178;, + 0.750000;-0.250000;-0.117178;, + 0.625000;-0.250000;-0.117178;, + 0.625000;-0.375000;-0.117178;, + 0.750000;-0.125000;-0.117178;, + 0.750000; 0.000000;-0.117178;, + 0.625000; 0.000000;-0.117178;, + 0.625000;-0.125000;-0.117178;, + 0.000000;-0.375000;-0.117178;, + 0.000000;-0.250000;-0.117178;, + -0.125000;-0.250000;-0.117178;, + -0.125000;-0.375000;-0.117178;, + -0.250000;-0.375000;-0.117178;, + -0.250000;-0.250000;-0.117178;, + -0.375000;-0.250000;-0.117178;, + -0.375000;-0.375000;-0.117178;, + -0.250000;-0.125000;-0.117178;, + -0.250000; 0.000000;-0.117178;, + -0.375000; 0.000000;-0.117178;, + -0.375000;-0.125000;-0.117178;, + 0.000000; 0.625000;-0.117178;, + 0.000000; 0.750000;-0.117178;, + -0.125000; 0.750000;-0.117178;, + -0.125000; 0.625000;-0.117178;, + -0.250000; 0.625000;-0.117178;, + -0.250000; 0.750000;-0.117178;, + -0.375000; 0.750000;-0.117178;, + -0.375000; 0.625000;-0.117178;, + -0.250000; 0.875000;-0.117178;, + -0.250000; 1.000000;-0.117178;, + -0.375000; 1.000000;-0.117178;, + -0.375000; 0.875000;-0.117178;, + 0.750000; 0.625000;-0.117178;, + 0.750000; 0.750000;-0.117178;, + 0.625000; 0.750000;-0.117178;, + 0.625000; 0.625000;-0.117178;, + 0.750000; 0.875000;-0.117178;, + 0.750000; 1.000000;-0.117178;, + 0.625000; 1.000000;-0.117178;, + 0.625000; 0.875000;-0.117178;, + 0.500000;-0.625000;-0.117178;, + 0.500000;-0.500000;-0.117178;, + 0.375000;-0.500000;-0.117178;, + 0.375000;-0.625000;-0.117178;, + 0.500000;-0.125000;-0.117178;, + 0.500000; 0.000000;-0.117178;, + 0.375000; 0.000000;-0.117178;, + 0.375000;-0.125000;-0.117178;, + 0.000000;-0.625000;-0.117178;, + 0.000000;-0.500000;-0.117178;, + -0.125000;-0.500000;-0.117178;, + -0.125000;-0.625000;-0.117178;, + -0.500000;-0.625000;-0.117178;, + -0.500000;-0.500000;-0.117178;, + -0.625000;-0.500000;-0.117178;, + -0.625000;-0.625000;-0.117178;, + -0.500000;-0.125000;-0.117178;, + -0.500000; 0.000000;-0.117178;, + -0.625000; 0.000000;-0.117178;, + -0.625000;-0.125000;-0.117178;, + 0.000000; 0.375000;-0.117178;, + 0.000000; 0.500000;-0.117178;, + -0.125000; 0.500000;-0.117178;, + -0.125000; 0.375000;-0.117178;, + -0.500000; 0.375000;-0.117178;, + -0.500000; 0.500000;-0.117178;, + -0.625000; 0.500000;-0.117178;, + -0.625000; 0.375000;-0.117178;, + -0.500000; 0.875000;-0.117178;, + -0.500000; 1.000000;-0.117178;, + -0.625000; 1.000000;-0.117178;, + -0.625000; 0.875000;-0.117178;, + 0.500000; 0.375000;-0.117178;, + 0.500000; 0.500000;-0.117178;, + 0.375000; 0.500000;-0.117178;, + 0.375000; 0.375000;-0.117178;, + 0.500000; 0.875000;-0.117178;, + 0.500000; 1.000000;-0.117178;, + 0.375000; 1.000000;-0.117178;, + 0.375000; 0.875000;-0.117178;, + 0.000000;-0.125000;-0.117178;, + 0.000000; 0.000000;-0.117178;, + -0.125000; 0.000000;-0.117178;, + -0.125000;-0.125000;-0.117178;, + 0.000000; 0.875000;-0.117178;, + 0.000000; 1.000000;-0.117178;, + -0.125000; 1.000000;-0.117178;, + -0.125000; 0.875000;-0.117178;, + 0.250000;-0.250000; 0.330204;, + 0.250000;-0.125000; 0.330204;, + 0.250000;-0.125000; 0.246450;, + 0.250000;-0.250000; 0.246450;, + -0.250000; 0.500000; 0.330204;, + -0.250000; 0.625000; 0.330204;, + -0.250000; 0.625000; 0.246450;, + -0.250000; 0.500000; 0.246450;, + 0.750000; 0.750000; 0.330204;, + 0.750000; 0.875000; 0.330204;, + 0.750000; 0.875000; 0.246450;, + 0.750000; 0.750000; 0.246450;, + -0.125000;-0.750000; 0.330204;, + -0.125000;-0.875000; 0.330204;, + -0.125000;-0.875000; 0.246450;, + -0.125000;-0.750000; 0.246450;, + -0.125000;-0.125000; 0.330204;, + -0.125000;-0.250000; 0.330204;, + -0.125000;-0.250000; 0.246450;, + -0.125000;-0.125000; 0.246450;, + -0.625000; 0.375000; 0.330204;, + -0.625000; 0.250000; 0.330204;, + -0.625000; 0.250000; 0.246450;, + -0.625000; 0.375000; 0.246450;, + -0.250000; 0.125000; 0.330204;, + -0.250000; 0.250000; 0.330204;, + -0.250000; 0.250000; 0.246450;, + -0.250000; 0.125000; 0.246450;, + -0.125000;-0.625000; 0.330204;, + -0.125000;-0.750000; 0.330204;, + -0.125000;-0.750000; 0.246450;, + -0.125000;-0.625000; 0.246450;, + -0.250000;-0.125000; 0.330204;, + -0.250000; 0.000000; 0.330204;, + -0.250000; 0.000000; 0.246450;, + -0.250000;-0.125000; 0.246450;, + -0.250000; 0.750000; 0.330204;, + -0.250000; 0.875000; 0.330204;, + -0.250000; 0.875000; 0.246450;, + -0.250000; 0.750000; 0.246450;, + 0.375000; 1.000000; 0.330204;, + 0.375000; 0.875000; 0.330204;, + 0.375000; 0.875000; 0.246450;, + 0.375000; 1.000000; 0.246450;, + 0.750000; 0.000000; 0.330204;, + 0.750000; 0.125000; 0.330204;, + 0.750000; 0.125000; 0.246450;, + 0.750000; 0.000000; 0.246450;, + 0.250000; 0.125000; 0.330204;, + 0.250000; 0.250000; 0.330204;, + 0.250000; 0.250000; 0.246450;, + 0.250000; 0.125000; 0.246450;, + -0.500000;-1.000000; 0.330204;, + -0.375000;-1.000000; 0.330204;, + -0.375000;-1.000000; 0.246450;, + -0.500000;-1.000000; 0.246450;, + -0.125000; 0.500000; 0.330204;, + -0.125000; 0.375000; 0.330204;, + -0.125000; 0.375000; 0.246450;, + -0.125000; 0.500000; 0.246450;, + -0.125000;-1.000000; 0.330204;, + 0.000000;-1.000000; 0.330204;, + 0.000000;-1.000000; 0.246450;, + -0.125000;-1.000000; 0.246450;, + 0.375000; 0.000000; 0.330204;, + 0.375000;-0.125000; 0.330204;, + 0.375000;-0.125000; 0.246450;, + 0.375000; 0.000000; 0.246450;, + 0.750000; 0.250000; 0.330204;, + 0.750000; 0.375000; 0.330204;, + 0.750000; 0.375000; 0.246450;, + 0.750000; 0.250000; 0.246450;, + -0.250000; 1.000000; 0.246450;, + -0.125000; 1.000000; 0.246450;, + -0.125000; 0.875000; 0.246450;, + -0.250000; 0.875000; 0.246450;, + -0.250000; 0.875000; 0.246450;, + -0.125000; 0.875000; 0.246450;, + -0.125000; 0.750000; 0.246450;, + -0.250000; 0.750000; 0.246450;, + 0.500000; 1.000000; 0.330204;, + 0.375000; 1.000000; 0.330204;, + 0.375000; 1.000000; 0.246450;, + 0.500000; 1.000000; 0.246450;, + -0.250000; 0.000000; 0.246450;, + -0.125000; 0.000000; 0.246450;, + -0.125000;-0.125000; 0.246450;, + -0.250000;-0.125000; 0.246450;, + -0.250000;-0.125000; 0.246450;, + -0.125000;-0.125000; 0.246450;, + -0.125000;-0.250000; 0.246450;, + -0.250000;-0.250000; 0.246450;, + -0.250000;-1.000000; 0.330204;, + -0.250000;-0.875000; 0.330204;, + -0.250000;-0.875000; 0.246450;, + -0.250000;-1.000000; 0.246450;, + 0.250000; 1.000000; 0.246450;, + 0.375000; 1.000000; 0.246450;, + 0.375000; 0.875000; 0.246450;, + 0.250000; 0.875000; 0.246450;, + 0.250000; 0.875000; 0.246450;, + 0.375000; 0.875000; 0.246450;, + 0.375000; 0.750000; 0.246450;, + 0.250000; 0.750000; 0.246450;, + 0.125000; 1.000000; 0.330204;, + 0.000000; 1.000000; 0.330204;, + 0.000000; 1.000000; 0.246450;, + 0.125000; 1.000000; 0.246450;, + 0.250000; 0.500000; 0.246450;, + 0.375000; 0.500000; 0.246450;, + 0.375000; 0.375000; 0.246450;, + 0.250000; 0.375000; 0.246450;, + 0.250000; 0.375000; 0.246450;, + 0.375000; 0.375000; 0.246450;, + 0.375000; 0.250000; 0.246450;, + 0.250000; 0.250000; 0.246450;, + 0.750000;-0.875000; 0.330204;, + 0.750000;-0.750000; 0.330204;, + 0.750000;-0.750000; 0.246450;, + 0.750000;-0.875000; 0.246450;, + -0.750000; 1.000000; 0.246450;, + -0.625000; 1.000000; 0.246450;, + -0.625000; 0.875000; 0.246450;, + -0.750000; 0.875000; 0.246450;, + -0.750000; 0.875000; 0.246450;, + -0.625000; 0.875000; 0.246450;, + -0.625000; 0.750000; 0.246450;, + -0.750000; 0.750000; 0.246450;, + -0.625000; 0.750000; 0.330204;, + -0.625000; 0.625000; 0.330204;, + -0.625000; 0.625000; 0.246450;, + -0.625000; 0.750000; 0.246450;, + -0.750000; 0.500000; 0.246450;, + -0.625000; 0.500000; 0.246450;, + -0.625000; 0.375000; 0.246450;, + -0.750000; 0.375000; 0.246450;, + -0.750000; 0.375000; 0.246450;, + -0.625000; 0.375000; 0.246450;, + -0.625000; 0.250000; 0.246450;, + -0.750000; 0.250000; 0.246450;, + 0.375000;-0.875000; 0.330204;, + 0.375000;-1.000000; 0.330204;, + 0.375000;-1.000000; 0.246450;, + 0.375000;-0.875000; 0.246450;, + -0.250000; 0.500000; 0.246450;, + -0.125000; 0.500000; 0.246450;, + -0.125000; 0.375000; 0.246450;, + -0.250000; 0.375000; 0.246450;, + -0.250000; 0.375000; 0.246450;, + -0.125000; 0.375000; 0.246450;, + -0.125000; 0.250000; 0.246450;, + -0.250000; 0.250000; 0.246450;, + 0.250000;-0.125000; 0.330204;, + 0.250000; 0.000000; 0.330204;, + 0.250000; 0.000000; 0.246450;, + 0.250000;-0.125000; 0.246450;, + -0.750000; 0.000000; 0.246450;, + -0.625000; 0.000000; 0.246450;, + -0.625000;-0.125000; 0.246450;, + -0.750000;-0.125000; 0.246450;, + -0.750000;-0.125000; 0.246450;, + -0.625000;-0.125000; 0.246450;, + -0.625000;-0.250000; 0.246450;, + -0.750000;-0.250000; 0.246450;, + -0.125000; 0.250000; 0.330204;, + -0.125000; 0.125000; 0.330204;, + -0.125000; 0.125000; 0.246450;, + -0.125000; 0.250000; 0.246450;, + -0.750000;-0.500000; 0.246450;, + -0.625000;-0.500000; 0.246450;, + -0.625000;-0.625000; 0.246450;, + -0.750000;-0.625000; 0.246450;, + -0.750000;-0.625000; 0.246450;, + -0.625000;-0.625000; 0.246450;, + -0.625000;-0.750000; 0.246450;, + -0.750000;-0.750000; 0.246450;, + -0.250000;-0.750000; 0.330204;, + -0.250000;-0.625000; 0.330204;, + -0.250000;-0.625000; 0.246450;, + -0.250000;-0.750000; 0.246450;, + -0.250000;-0.500000; 0.246450;, + -0.125000;-0.500000; 0.246450;, + -0.125000;-0.625000; 0.246450;, + -0.250000;-0.625000; 0.246450;, + -0.250000;-0.625000; 0.246450;, + -0.125000;-0.625000; 0.246450;, + -0.125000;-0.750000; 0.246450;, + -0.250000;-0.750000; 0.246450;, + 0.750000; 0.875000; 0.330204;, + 0.750000; 1.000000; 0.330204;, + 0.750000; 1.000000; 0.246450;, + 0.750000; 0.875000; 0.246450;, + 0.250000; 0.000000; 0.246450;, + 0.375000; 0.000000; 0.246450;, + 0.375000;-0.125000; 0.246450;, + 0.250000;-0.125000; 0.246450;, + 0.250000;-0.125000; 0.246450;, + 0.375000;-0.125000; 0.246450;, + 0.375000;-0.250000; 0.246450;, + 0.250000;-0.250000; 0.246450;, + 0.125000;-1.000000; 0.330204;, + 0.250000;-1.000000; 0.330204;, + 0.250000;-1.000000; 0.246450;, + 0.125000;-1.000000; 0.246450;, + 0.250000;-0.500000; 0.246450;, + 0.375000;-0.500000; 0.246450;, + 0.375000;-0.625000; 0.246450;, + 0.250000;-0.625000; 0.246450;, + 0.250000;-0.625000; 0.246450;, + 0.375000;-0.625000; 0.246450;, + 0.375000;-0.750000; 0.246450;, + 0.250000;-0.750000; 0.246450;, + -0.125000; 0.875000; 0.330204;, + -0.125000; 0.750000; 0.330204;, + -0.125000; 0.750000; 0.246450;, + -0.125000; 0.875000; 0.246450;, + 0.750000;-0.375000; 0.330204;, + 0.750000;-0.250000; 0.330204;, + 0.750000;-0.250000; 0.246450;, + 0.750000;-0.375000; 0.246450;, + -0.500000; 1.000000; 0.330204;, + -0.625000; 1.000000; 0.330204;, + -0.625000; 1.000000; 0.246450;, + -0.500000; 1.000000; 0.246450;, + 0.375000;-0.250000; 0.330204;, + 0.375000;-0.375000; 0.330204;, + 0.375000;-0.375000; 0.246450;, + 0.375000;-0.250000; 0.246450;, + -0.625000; 0.875000; 0.330204;, + -0.625000; 0.750000; 0.330204;, + -0.625000; 0.750000; 0.246450;, + -0.625000; 0.875000; 0.246450;, + -0.250000; 0.000000; 0.330204;, + -0.250000; 0.125000; 0.330204;, + -0.250000; 0.125000; 0.246450;, + -0.250000; 0.000000; 0.246450;, + -0.625000;-0.625000; 0.330204;, + -0.625000;-0.750000; 0.330204;, + -0.625000;-0.750000; 0.246450;, + -0.625000;-0.625000; 0.246450;, + -0.250000; 0.875000; 0.330204;, + -0.250000; 1.000000; 0.330204;, + -0.250000; 1.000000; 0.246450;, + -0.250000; 0.875000; 0.246450;, + -0.125000; 0.000000; 0.330204;, + -0.125000;-0.125000; 0.330204;, + -0.125000;-0.125000; 0.246450;, + -0.125000; 0.000000; 0.246450;, + 0.250000; 0.000000; 0.330204;, + 0.250000; 0.125000; 0.330204;, + 0.250000; 0.125000; 0.246450;, + 0.250000; 0.000000; 0.246450;, + 0.250000; 0.625000; 0.330204;, + 0.250000; 0.750000; 0.330204;, + 0.250000; 0.750000; 0.246450;, + 0.250000; 0.625000; 0.246450;, + -0.125000; 0.625000; 0.330204;, + -0.125000; 0.500000; 0.330204;, + -0.125000; 0.500000; 0.246450;, + -0.125000; 0.625000; 0.246450;, + -0.625000; 0.500000; 0.330204;, + -0.625000; 0.375000; 0.330204;, + -0.625000; 0.375000; 0.246450;, + -0.625000; 0.500000; 0.246450;, + -0.250000; 0.750000; 0.246450;, + -0.125000; 0.750000; 0.246450;, + -0.125000; 0.625000; 0.246450;, + -0.250000; 0.625000; 0.246450;, + -0.250000; 0.625000; 0.246450;, + -0.125000; 0.625000; 0.246450;, + -0.125000; 0.500000; 0.246450;, + -0.250000; 0.500000; 0.246450;, + -0.250000; 0.250000; 0.330204;, + -0.250000; 0.375000; 0.330204;, + -0.250000; 0.375000; 0.246450;, + -0.250000; 0.250000; 0.246450;, + -0.125000;-0.500000; 0.330204;, + -0.125000;-0.625000; 0.330204;, + -0.125000;-0.625000; 0.246450;, + -0.125000;-0.500000; 0.246450;, + 0.375000; 0.625000; 0.330204;, + 0.375000; 0.500000; 0.330204;, + 0.375000; 0.500000; 0.246450;, + 0.375000; 0.625000; 0.246450;, + 0.750000; 0.375000; 0.330204;, + 0.750000; 0.500000; 0.330204;, + 0.750000; 0.500000; 0.246450;, + 0.750000; 0.375000; 0.246450;, + 0.250000; 0.250000; 0.330204;, + 0.250000; 0.375000; 0.330204;, + 0.250000; 0.375000; 0.246450;, + 0.250000; 0.250000; 0.246450;, + 0.750000; 1.000000; 0.330204;, + 0.625000; 1.000000; 0.330204;, + 0.625000; 1.000000; 0.246450;, + 0.750000; 1.000000; 0.246450;, + 0.750000;-1.000000; 0.330204;, + 0.750000;-0.875000; 0.330204;, + 0.750000;-0.875000; 0.246450;, + 0.750000;-1.000000; 0.246450;, + -0.250000;-0.250000; 0.246450;, + -0.125000;-0.250000; 0.246450;, + -0.125000;-0.375000; 0.246450;, + -0.250000;-0.375000; 0.246450;, + -0.250000;-0.375000; 0.246450;, + -0.125000;-0.375000; 0.246450;, + -0.125000;-0.500000; 0.246450;, + -0.250000;-0.500000; 0.246450;, + -0.625000;-0.875000; 0.330204;, + -0.625000;-1.000000; 0.330204;, + -0.625000;-1.000000; 0.246450;, + -0.625000;-0.875000; 0.246450;, + 0.250000;-0.875000; 0.330204;, + 0.250000;-0.750000; 0.330204;, + 0.250000;-0.750000; 0.246450;, + 0.250000;-0.875000; 0.246450;, + 0.375000;-1.000000; 0.330204;, + 0.500000;-1.000000; 0.330204;, + 0.500000;-1.000000; 0.246450;, + 0.375000;-1.000000; 0.246450;, + -0.250000;-0.625000; 0.330204;, + -0.250000;-0.500000; 0.330204;, + -0.250000;-0.500000; 0.246450;, + -0.250000;-0.625000; 0.246450;, + 0.125000;-1.152395; 0.000000;, + 0.125000;-1.152395; 0.246450;, + 0.125000;-1.000000; 0.246450;, + 0.125000;-1.000000; 0.000000;, + 0.750000;-0.750000; 0.330204;, + 0.750000;-0.625000; 0.330204;, + 0.750000;-0.625000; 0.246450;, + 0.750000;-0.750000; 0.246450;, + 0.750000;-0.500000; 0.330204;, + 0.750000;-0.375000; 0.330204;, + 0.750000;-0.375000; 0.246450;, + 0.750000;-0.500000; 0.246450;, + -0.250000;-0.375000; 0.330204;, + -0.250000;-0.250000; 0.330204;, + -0.250000;-0.250000; 0.246450;, + -0.250000;-0.375000; 0.246450;, + 0.375000; 0.375000; 0.330204;, + 0.375000; 0.250000; 0.330204;, + 0.375000; 0.250000; 0.246450;, + 0.375000; 0.375000; 0.246450;, + -0.250000; 1.000000; 0.330204;, + -0.375000; 1.000000; 0.330204;, + -0.375000; 1.000000; 0.246450;, + -0.250000; 1.000000; 0.246450;, + 0.375000;-0.750000; 0.330204;, + 0.375000;-0.875000; 0.330204;, + 0.375000;-0.875000; 0.246450;, + 0.375000;-0.750000; 0.246450;, + -0.625000;-0.125000; 0.330204;, + -0.625000;-0.250000; 0.330204;, + -0.625000;-0.250000; 0.246450;, + -0.625000;-0.125000; 0.246450;, + 0.375000;-0.625000; 0.330204;, + 0.375000;-0.750000; 0.330204;, + 0.375000;-0.750000; 0.246450;, + 0.375000;-0.625000; 0.246450;, + 0.250000; 0.750000; 0.246450;, + 0.375000; 0.750000; 0.246450;, + 0.375000; 0.625000; 0.246450;, + 0.250000; 0.625000; 0.246450;, + 0.250000; 0.625000; 0.246450;, + 0.375000; 0.625000; 0.246450;, + 0.375000; 0.500000; 0.246450;, + 0.250000; 0.500000; 0.246450;, + -0.125000; 1.000000; 0.330204;, + -0.125000; 0.875000; 0.330204;, + -0.125000; 0.875000; 0.246450;, + -0.125000; 1.000000; 0.246450;, + 0.250000; 0.500000; 0.330204;, + 0.250000; 0.625000; 0.330204;, + 0.250000; 0.625000; 0.246450;, + 0.250000; 0.500000; 0.246450;, + 0.750000;-0.250000; 0.330204;, + 0.750000;-0.125000; 0.330204;, + 0.750000;-0.125000; 0.246450;, + 0.750000;-0.250000; 0.246450;, + -0.625000;-1.000000; 0.330204;, + -0.500000;-1.000000; 0.330204;, + -0.500000;-1.000000; 0.246450;, + -0.625000;-1.000000; 0.246450;, + -0.625000; 1.000000; 0.330204;, + -0.625000; 0.875000; 0.330204;, + -0.625000; 0.875000; 0.246450;, + -0.625000; 1.000000; 0.246450;, + -0.250000; 0.375000; 0.330204;, + -0.250000; 0.500000; 0.330204;, + -0.250000; 0.500000; 0.246450;, + -0.250000; 0.375000; 0.246450;, + -0.125000;-0.375000; 0.330204;, + -0.125000;-0.500000; 0.330204;, + -0.125000;-0.500000; 0.246450;, + -0.125000;-0.375000; 0.246450;, + 0.250000; 0.250000; 0.246450;, + 0.375000; 0.250000; 0.246450;, + 0.375000; 0.125000; 0.246450;, + 0.250000; 0.125000; 0.246450;, + 0.250000; 0.125000; 0.246450;, + 0.375000; 0.125000; 0.246450;, + 0.375000; 0.000000; 0.246450;, + 0.250000; 0.000000; 0.246450;, + -0.625000;-0.500000; 0.330204;, + -0.625000;-0.625000; 0.330204;, + -0.625000;-0.625000; 0.246450;, + -0.625000;-0.500000; 0.246450;, + 0.250000; 0.375000; 0.330204;, + 0.250000; 0.500000; 0.330204;, + 0.250000; 0.500000; 0.246450;, + 0.250000; 0.375000; 0.246450;, + 0.375000; 0.125000; 0.330204;, + 0.375000; 0.000000; 0.330204;, + 0.375000; 0.000000; 0.246450;, + 0.375000; 0.125000; 0.246450;, + 0.250000; 0.750000; 0.330204;, + 0.250000; 0.875000; 0.330204;, + 0.250000; 0.875000; 0.246450;, + 0.250000; 0.750000; 0.246450;, + 0.625000; 1.000000; 0.330204;, + 0.500000; 1.000000; 0.330204;, + 0.500000; 1.000000; 0.246450;, + 0.625000; 1.000000; 0.246450;, + -0.125000; 0.750000; 0.330204;, + -0.125000; 0.625000; 0.330204;, + -0.125000; 0.625000; 0.246450;, + -0.125000; 0.750000; 0.246450;, + -0.625000; 0.125000; 0.330204;, + -0.625000; 0.000000; 0.330204;, + -0.625000; 0.000000; 0.246450;, + -0.625000; 0.125000; 0.246450;, + -0.750000; 0.750000; 0.246450;, + -0.625000; 0.750000; 0.246450;, + -0.625000; 0.625000; 0.246450;, + -0.750000; 0.625000; 0.246450;, + -0.750000; 0.625000; 0.246450;, + -0.625000; 0.625000; 0.246450;, + -0.625000; 0.500000; 0.246450;, + -0.750000; 0.500000; 0.246450;, + 0.250000;-1.000000; 0.330204;, + 0.250000;-0.875000; 0.330204;, + 0.250000;-0.875000; 0.246450;, + 0.250000;-1.000000; 0.246450;, + -0.750000; 0.250000; 0.246450;, + -0.625000; 0.250000; 0.246450;, + -0.625000; 0.125000; 0.246450;, + -0.750000; 0.125000; 0.246450;, + -0.750000; 0.125000; 0.246450;, + -0.625000; 0.125000; 0.246450;, + -0.625000; 0.000000; 0.246450;, + -0.750000; 0.000000; 0.246450;, + -0.625000;-0.375000; 0.330204;, + -0.625000;-0.500000; 0.330204;, + -0.625000;-0.500000; 0.246450;, + -0.625000;-0.375000; 0.246450;, + 0.250000;-0.375000; 0.330204;, + 0.250000;-0.250000; 0.330204;, + 0.250000;-0.250000; 0.246450;, + 0.250000;-0.375000; 0.246450;, + 0.375000; 0.750000; 0.330204;, + 0.375000; 0.625000; 0.330204;, + 0.375000; 0.625000; 0.246450;, + 0.375000; 0.750000; 0.246450;, + 0.750000; 0.625000; 0.330204;, + 0.750000; 0.750000; 0.330204;, + 0.750000; 0.750000; 0.246450;, + 0.750000; 0.625000; 0.246450;, + -0.125000;-0.875000; 0.330204;, + -0.125000;-1.000000; 0.330204;, + -0.125000;-1.000000; 0.246450;, + -0.125000;-0.875000; 0.246450;, + 0.625000;-1.000000; 0.330204;, + 0.750000;-1.000000; 0.330204;, + 0.750000;-1.000000; 0.246450;, + 0.625000;-1.000000; 0.246450;, + 0.750000;-0.625000; 0.330204;, + 0.750000;-0.500000; 0.330204;, + 0.750000;-0.500000; 0.246450;, + 0.750000;-0.625000; 0.246450;, + -0.250000; 0.250000; 0.246450;, + -0.125000; 0.250000; 0.246450;, + -0.125000; 0.125000; 0.246450;, + -0.250000; 0.125000; 0.246450;, + -0.250000; 0.125000; 0.246450;, + -0.125000; 0.125000; 0.246450;, + -0.125000; 0.000000; 0.246450;, + -0.250000; 0.000000; 0.246450;, + -0.625000;-0.750000; 0.330204;, + -0.625000;-0.875000; 0.330204;, + -0.625000;-0.875000; 0.246450;, + -0.625000;-0.750000; 0.246450;, + -0.750000;-0.250000; 0.246450;, + -0.625000;-0.250000; 0.246450;, + -0.625000;-0.375000; 0.246450;, + -0.750000;-0.375000; 0.246450;, + -0.750000;-0.375000; 0.246450;, + -0.625000;-0.375000; 0.246450;, + -0.625000;-0.500000; 0.246450;, + -0.750000;-0.500000; 0.246450;, + 0.250000;-0.750000; 0.330204;, + 0.250000;-0.625000; 0.330204;, + 0.250000;-0.625000; 0.246450;, + 0.250000;-0.750000; 0.246450;, + -0.750000;-0.750000; 0.246450;, + -0.625000;-0.750000; 0.246450;, + -0.625000;-0.875000; 0.246450;, + -0.750000;-0.875000; 0.246450;, + -0.750000;-0.875000; 0.246450;, + -0.625000;-0.875000; 0.246450;, + -0.625000;-1.000000; 0.246450;, + -0.750000;-1.000000; 0.246450;, + -0.250000;-0.500000; 0.330204;, + -0.250000;-0.375000; 0.330204;, + -0.250000;-0.375000; 0.246450;, + -0.250000;-0.500000; 0.246450;, + -0.250000; 0.625000; 0.330204;, + -0.250000; 0.750000; 0.330204;, + -0.250000; 0.750000; 0.246450;, + -0.250000; 0.625000; 0.246450;, + 0.375000; 0.875000; 0.330204;, + 0.375000; 0.750000; 0.330204;, + 0.375000; 0.750000; 0.246450;, + 0.375000; 0.875000; 0.246450;, + -0.375000; 1.000000; 0.330204;, + -0.500000; 1.000000; 0.330204;, + -0.500000; 1.000000; 0.246450;, + -0.375000; 1.000000; 0.246450;, + -0.125000; 0.375000; 0.330204;, + -0.125000; 0.250000; 0.330204;, + -0.125000; 0.250000; 0.246450;, + -0.125000; 0.375000; 0.246450;, + 0.000000; 1.000000; 0.330204;, + -0.125000; 1.000000; 0.330204;, + -0.125000; 1.000000; 0.246450;, + 0.000000; 1.000000; 0.246450;, + 0.375000;-0.125000; 0.330204;, + 0.375000;-0.250000; 0.330204;, + 0.375000;-0.250000; 0.246450;, + 0.375000;-0.125000; 0.246450;, + -0.250000;-0.750000; 0.246450;, + -0.125000;-0.750000; 0.246450;, + -0.125000;-0.875000; 0.246450;, + -0.250000;-0.875000; 0.246450;, + -0.250000;-0.875000; 0.246450;, + -0.125000;-0.875000; 0.246450;, + -0.125000;-1.000000; 0.246450;, + -0.250000;-1.000000; 0.246450;, + 0.750000;-0.125000; 0.330204;, + 0.750000; 0.000000; 0.330204;, + 0.750000; 0.000000; 0.246450;, + 0.750000;-0.125000; 0.246450;, + -0.250000;-0.250000; 0.330204;, + -0.250000;-0.125000; 0.330204;, + -0.250000;-0.125000; 0.246450;, + -0.250000;-0.250000; 0.246450;, + 0.375000; 0.500000; 0.330204;, + 0.375000; 0.375000; 0.330204;, + 0.375000; 0.375000; 0.246450;, + 0.375000; 0.500000; 0.246450;, + 0.750000; 0.125000; 0.330204;, + 0.750000; 0.250000; 0.330204;, + 0.750000; 0.250000; 0.246450;, + 0.750000; 0.125000; 0.246450;, + -0.375000;-1.000000; 0.330204;, + -0.250000;-1.000000; 0.330204;, + -0.250000;-1.000000; 0.246450;, + -0.375000;-1.000000; 0.246450;, + -0.625000; 0.000000; 0.330204;, + -0.625000;-0.125000; 0.330204;, + -0.625000;-0.125000; 0.246450;, + -0.625000; 0.000000; 0.246450;, + 0.375000;-0.500000; 0.330204;, + 0.375000;-0.625000; 0.330204;, + 0.375000;-0.625000; 0.246450;, + 0.375000;-0.500000; 0.246450;, + 0.250000;-0.250000; 0.246450;, + 0.375000;-0.250000; 0.246450;, + 0.375000;-0.375000; 0.246450;, + 0.250000;-0.375000; 0.246450;, + 0.250000;-0.375000; 0.246450;, + 0.375000;-0.375000; 0.246450;, + 0.375000;-0.500000; 0.246450;, + 0.250000;-0.500000; 0.246450;, + 0.250000; 0.875000; 0.330204;, + 0.250000; 1.000000; 0.330204;, + 0.250000; 1.000000; 0.246450;, + 0.250000; 0.875000; 0.246450;, + -0.625000; 0.625000; 0.330204;, + -0.625000; 0.500000; 0.330204;, + -0.625000; 0.500000; 0.246450;, + -0.625000; 0.625000; 0.246450;, + -0.125000;-0.250000; 0.330204;, + -0.125000;-0.375000; 0.330204;, + -0.125000;-0.375000; 0.246450;, + -0.125000;-0.250000; 0.246450;, + 0.250000;-0.500000; 0.330204;, + 0.250000;-0.375000; 0.330204;, + 0.250000;-0.375000; 0.246450;, + 0.250000;-0.500000; 0.246450;, + -0.125000; 0.125000; 0.330204;, + -0.125000; 0.000000; 0.330204;, + -0.125000; 0.000000; 0.246450;, + -0.125000; 0.125000; 0.246450;, + -0.250000;-0.875000; 0.330204;, + -0.250000;-0.750000; 0.330204;, + -0.250000;-0.750000; 0.246450;, + -0.250000;-0.875000; 0.246450;, + 0.750000; 0.500000; 0.330204;, + 0.750000; 0.625000; 0.330204;, + 0.750000; 0.625000; 0.246450;, + 0.750000; 0.500000; 0.246450;, + 0.250000;-0.750000; 0.246450;, + 0.375000;-0.750000; 0.246450;, + 0.375000;-0.875000; 0.246450;, + 0.250000;-0.875000; 0.246450;, + 0.250000;-0.875000; 0.246450;, + 0.375000;-0.875000; 0.246450;, + 0.375000;-1.000000; 0.246450;, + 0.250000;-1.000000; 0.246450;, + 0.250000; 1.000000; 0.330204;, + 0.125000; 1.000000; 0.330204;, + 0.125000; 1.000000; 0.246450;, + 0.250000; 1.000000; 0.246450;, + 0.375000; 0.250000; 0.330204;, + 0.375000; 0.125000; 0.330204;, + 0.375000; 0.125000; 0.246450;, + 0.375000; 0.250000; 0.246450;, + 0.500000;-1.000000; 0.330204;, + 0.625000;-1.000000; 0.330204;, + 0.625000;-1.000000; 0.246450;, + 0.500000;-1.000000; 0.246450;, + 0.375000;-0.375000; 0.330204;, + 0.375000;-0.500000; 0.330204;, + 0.375000;-0.500000; 0.246450;, + 0.375000;-0.375000; 0.246450;, + -0.625000; 0.250000; 0.330204;, + -0.625000; 0.125000; 0.330204;, + -0.625000; 0.125000; 0.246450;, + -0.625000; 0.250000; 0.246450;, + 0.250000;-0.625000; 0.330204;, + 0.250000;-0.500000; 0.330204;, + 0.250000;-0.500000; 0.246450;, + 0.250000;-0.625000; 0.246450;, + -0.625000;-0.250000; 0.330204;, + -0.625000;-0.375000; 0.330204;, + -0.625000;-0.375000; 0.246450;, + -0.625000;-0.250000; 0.246450;, + 0.625000;-1.000000; 0.246450;, + 0.750000;-1.000000; 0.246450;, + 0.750000;-1.000000; 0.000000;, + 0.625000;-1.000000; 0.000000;, + 0.000000;-1.287628;-0.289304;, + 0.000000;-1.152395;-0.289304;, + 0.000000;-1.152395; 0.000000;, + 0.000000;-1.287628; 0.000000;, + -0.750000; 0.500000; 0.246450;, + -0.750000; 0.375000; 0.246450;, + -0.750000; 0.375000; 0.000000;, + -0.750000; 0.500000; 0.000000;, + 0.859843;-1.000000; 0.000000;, + 0.859843;-0.875000; 0.000000;, + 0.750000;-0.875000; 0.000000;, + 0.750000;-1.000000; 0.000000;, + -0.750000;-0.250000; 0.246450;, + -0.750000;-0.375000; 0.246450;, + -0.750000;-0.375000; 0.000000;, + -0.750000;-0.250000; 0.000000;, + 0.859843; 0.500000; 0.246450;, + 0.859843; 0.375000; 0.246450;, + 0.750000; 0.375000; 0.246450;, + 0.750000; 0.500000; 0.246450;, + -0.375000; 1.000000; 0.246450;, + -0.500000; 1.000000; 0.246450;, + -0.500000; 1.000000; 0.000000;, + -0.375000; 1.000000; 0.000000;, + -0.750000;-0.500000; 0.246450;, + -0.750000;-0.625000; 0.246450;, + -0.750000;-0.625000; 0.000000;, + -0.750000;-0.500000; 0.000000;, + 0.859843;-0.500000; 0.246450;, + 0.859843;-0.625000; 0.246450;, + 0.750000;-0.625000; 0.246450;, + 0.750000;-0.500000; 0.246450;, + 0.125000;-1.000000; 0.246450;, + 0.250000;-1.000000; 0.246450;, + 0.250000;-1.000000; 0.000000;, + 0.125000;-1.000000; 0.000000;, + -0.750000; 1.000000; 0.246450;, + -0.750000; 0.875000; 0.246450;, + -0.750000; 0.875000; 0.000000;, + -0.750000; 1.000000; 0.000000;, + -0.750000; 0.375000; 0.246450;, + -0.750000; 0.250000; 0.246450;, + -0.750000; 0.250000; 0.000000;, + -0.750000; 0.375000; 0.000000;, + -0.500000; 1.000000; 0.246450;, + -0.625000; 1.000000; 0.246450;, + -0.625000; 1.000000; 0.000000;, + -0.500000; 1.000000; 0.000000;, + 0.859843;-0.375000; 0.246450;, + 0.859843;-0.500000; 0.246450;, + 0.750000;-0.500000; 0.246450;, + 0.750000;-0.375000; 0.246450;, + -0.250000; 1.000000; 0.246450;, + -0.375000; 1.000000; 0.246450;, + -0.375000; 1.000000; 0.000000;, + -0.250000; 1.000000; 0.000000;, + 0.859843; 0.250000; 0.000000;, + 0.859843; 0.375000; 0.000000;, + 0.750000; 0.375000; 0.000000;, + 0.750000; 0.250000; 0.000000;, + -0.750000; 0.000000; 0.246450;, + -0.750000;-0.125000; 0.246450;, + -0.750000;-0.125000; 0.000000;, + -0.750000; 0.000000; 0.000000;, + -0.750000;-0.625000; 0.246450;, + -0.750000;-0.750000; 0.246450;, + -0.750000;-0.750000; 0.000000;, + -0.750000;-0.625000; 0.000000;, + 0.500000; 1.000000; 0.246450;, + 0.375000; 1.000000; 0.246450;, + 0.375000; 1.000000; 0.000000;, + 0.500000; 1.000000; 0.000000;, + 0.859843; 0.250000; 0.246450;, + 0.859843; 0.125000; 0.246450;, + 0.750000; 0.125000; 0.246450;, + 0.750000; 0.250000; 0.246450;, + -0.750000; 0.875000; 0.246450;, + -0.750000; 0.750000; 0.246450;, + -0.750000; 0.750000; 0.000000;, + -0.750000; 0.875000; 0.000000;, + 0.000000; 1.000000; 0.246450;, + -0.125000; 1.000000; 0.246450;, + -0.125000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.625000; 1.000000; 0.246450;, + -0.750000; 1.000000; 0.246450;, + -0.750000; 1.000000; 0.000000;, + -0.625000; 1.000000; 0.000000;, + 0.859843;-0.750000; 0.000000;, + 0.859843;-0.625000; 0.000000;, + 0.750000;-0.625000; 0.000000;, + 0.750000;-0.750000; 0.000000;, + 0.625000; 1.000000; 0.246450;, + 0.500000; 1.000000; 0.246450;, + 0.500000; 1.000000; 0.000000;, + 0.625000; 1.000000; 0.000000;, + 0.859843; 0.875000; 0.000000;, + 0.859843; 1.000000; 0.000000;, + 0.750000; 1.000000; 0.000000;, + 0.750000; 0.875000; 0.000000;, + -0.750000;-0.125000; 0.246450;, + -0.750000;-0.250000; 0.246450;, + -0.750000;-0.250000; 0.000000;, + -0.750000;-0.125000; 0.000000;, + -0.500000;-1.000000; 0.246450;, + -0.375000;-1.000000; 0.246450;, + -0.375000;-1.000000; 0.000000;, + -0.500000;-1.000000; 0.000000;, + 0.375000; 1.000000; 0.246450;, + 0.250000; 1.000000; 0.246450;, + 0.250000; 1.000000; 0.000000;, + 0.375000; 1.000000; 0.000000;, + 0.859843; 0.875000; 0.246450;, + 0.859843; 0.750000; 0.246450;, + 0.750000; 0.750000; 0.246450;, + 0.750000; 0.875000; 0.246450;, + 0.859843;-0.375000; 0.000000;, + 0.859843;-0.250000; 0.000000;, + 0.750000;-0.250000; 0.000000;, + 0.750000;-0.375000; 0.000000;, + -0.125000; 1.000000; 0.246450;, + -0.250000; 1.000000; 0.246450;, + -0.250000; 1.000000; 0.000000;, + -0.125000; 1.000000; 0.000000;, + -0.625000;-1.000000; 0.246450;, + -0.500000;-1.000000; 0.246450;, + -0.500000;-1.000000; 0.000000;, + -0.625000;-1.000000; 0.000000;, + 0.750000; 1.000000; 0.246450;, + 0.625000; 1.000000; 0.246450;, + 0.625000; 1.000000; 0.000000;, + 0.750000; 1.000000; 0.000000;, + 0.125000; 1.000000; 0.246450;, + 0.000000; 1.000000; 0.246450;, + 0.000000; 1.000000; 0.000000;, + 0.125000; 1.000000; 0.000000;, + -0.750000; 0.125000; 0.246450;, + -0.750000; 0.000000; 0.246450;, + -0.750000; 0.000000; 0.000000;, + -0.750000; 0.125000; 0.000000;, + 0.859843;-0.750000; 0.246450;, + 0.859843;-0.875000; 0.246450;, + 0.750000;-0.875000; 0.246450;, + 0.750000;-0.750000; 0.246450;, + -0.375000;-1.000000; 0.246450;, + -0.250000;-1.000000; 0.246450;, + -0.250000;-1.000000; 0.000000;, + -0.375000;-1.000000; 0.000000;, + 0.859843;-0.125000; 0.000000;, + 0.859843; 0.000000; 0.000000;, + 0.750000; 0.000000; 0.000000;, + 0.750000;-0.125000; 0.000000;, + 0.375000;-1.000000; 0.246450;, + 0.500000;-1.000000; 0.246450;, + 0.500000;-1.000000; 0.000000;, + 0.375000;-1.000000; 0.000000;, + -0.750000;-0.875000; 0.246450;, + -0.750000;-1.000000; 0.246450;, + -0.750000;-1.000000; 0.000000;, + -0.750000;-0.875000; 0.000000;, + -0.125000;-1.000000; 0.246450;, + 0.000000;-1.000000; 0.246450;, + 0.000000;-1.000000; 0.000000;, + -0.125000;-1.000000; 0.000000;, + -0.750000;-1.000000; 0.246450;, + -0.625000;-1.000000; 0.246450;, + -0.625000;-1.000000; 0.000000;, + -0.750000;-1.000000; 0.000000;, + 0.250000; 1.000000; 0.246450;, + 0.125000; 1.000000; 0.246450;, + 0.125000; 1.000000; 0.000000;, + 0.250000; 1.000000; 0.000000;, + -0.750000; 0.625000; 0.246450;, + -0.750000; 0.500000; 0.246450;, + -0.750000; 0.500000; 0.000000;, + -0.750000; 0.625000; 0.000000;, + -0.750000; 0.250000; 0.246450;, + -0.750000; 0.125000; 0.246450;, + -0.750000; 0.125000; 0.000000;, + -0.750000; 0.250000; 0.000000;, + 0.859843; 0.125000; 0.246450;, + 0.859843; 0.000000; 0.246450;, + 0.750000; 0.000000; 0.246450;, + 0.750000; 0.125000; 0.246450;, + 0.500000;-1.000000; 0.246450;, + 0.625000;-1.000000; 0.246450;, + 0.625000;-1.000000; 0.000000;, + 0.500000;-1.000000; 0.000000;, + 0.250000;-1.000000; 0.246450;, + 0.375000;-1.000000; 0.246450;, + 0.375000;-1.000000; 0.000000;, + 0.250000;-1.000000; 0.000000;, + 0.859843; 1.000000; 0.246450;, + 0.859843; 0.875000; 0.246450;, + 0.750000; 0.875000; 0.246450;, + 0.750000; 1.000000; 0.246450;, + -0.750000;-0.375000; 0.246450;, + -0.750000;-0.500000; 0.246450;, + -0.750000;-0.500000; 0.000000;, + -0.750000;-0.375000; 0.000000;, + -0.750000;-0.750000; 0.246450;, + -0.750000;-0.875000; 0.246450;, + -0.750000;-0.875000; 0.000000;, + -0.750000;-0.750000; 0.000000;, + 0.859843;-0.875000; 0.246450;, + 0.859843;-1.000000; 0.246450;, + 0.750000;-1.000000; 0.246450;, + 0.750000;-0.875000; 0.246450;, + -0.250000;-1.000000; 0.246450;, + -0.125000;-1.000000; 0.246450;, + -0.125000;-1.000000; 0.000000;, + -0.250000;-1.000000; 0.000000;, + 0.859843; 0.375000; 0.000000;, + 0.859843; 0.500000; 0.000000;, + 0.750000; 0.500000; 0.000000;, + 0.750000; 0.375000; 0.000000;, + -0.750000; 0.750000; 0.246450;, + -0.750000; 0.625000; 0.246450;, + -0.750000; 0.625000; 0.000000;, + -0.750000; 0.750000; 0.000000;, + -0.125000; 1.000000; 0.330204;, + 0.000000; 1.000000; 0.330204;, + 0.000000; 0.875000; 0.330204;, + -0.125000; 0.875000; 0.330204;, + -0.125000; 0.000000; 0.330204;, + 0.000000; 0.000000; 0.330204;, + 0.000000;-0.125000; 0.330204;, + -0.125000;-0.125000; 0.330204;, + 0.375000; 1.000000; 0.330204;, + 0.500000; 1.000000; 0.330204;, + 0.500000; 0.875000; 0.330204;, + 0.375000; 0.875000; 0.330204;, + 0.375000; 0.500000; 0.330204;, + 0.500000; 0.500000; 0.330204;, + 0.500000; 0.375000; 0.330204;, + 0.375000; 0.375000; 0.330204;, + -0.625000; 1.000000; 0.330204;, + -0.500000; 1.000000; 0.330204;, + -0.500000; 0.875000; 0.330204;, + -0.625000; 0.875000; 0.330204;, + -0.625000; 0.500000; 0.330204;, + -0.500000; 0.500000; 0.330204;, + -0.500000; 0.375000; 0.330204;, + -0.625000; 0.375000; 0.330204;, + -0.125000; 0.500000; 0.330204;, + 0.000000; 0.500000; 0.330204;, + 0.000000; 0.375000; 0.330204;, + -0.125000; 0.375000; 0.330204;, + -0.625000; 0.000000; 0.330204;, + -0.500000; 0.000000; 0.330204;, + -0.500000;-0.125000; 0.330204;, + -0.625000;-0.125000; 0.330204;, + -0.625000;-0.500000; 0.330204;, + -0.500000;-0.500000; 0.330204;, + -0.500000;-0.625000; 0.330204;, + -0.625000;-0.625000; 0.330204;, + -0.125000;-0.500000; 0.330204;, + 0.000000;-0.500000; 0.330204;, + 0.000000;-0.625000; 0.330204;, + -0.125000;-0.625000; 0.330204;, + 0.375000; 0.000000; 0.330204;, + 0.500000; 0.000000; 0.330204;, + 0.500000;-0.125000; 0.330204;, + 0.375000;-0.125000; 0.330204;, + 0.375000;-0.500000; 0.330204;, + 0.500000;-0.500000; 0.330204;, + 0.500000;-0.625000; 0.330204;, + 0.375000;-0.625000; 0.330204;, + 0.625000; 1.000000; 0.330204;, + 0.750000; 1.000000; 0.330204;, + 0.750000; 0.875000; 0.330204;, + 0.625000; 0.875000; 0.330204;, + 0.625000; 0.750000; 0.330204;, + 0.750000; 0.750000; 0.330204;, + 0.750000; 0.625000; 0.330204;, + 0.625000; 0.625000; 0.330204;, + -0.375000; 1.000000; 0.330204;, + -0.250000; 1.000000; 0.330204;, + -0.250000; 0.875000; 0.330204;, + -0.375000; 0.875000; 0.330204;, + -0.375000; 0.750000; 0.330204;, + -0.250000; 0.750000; 0.330204;, + -0.250000; 0.625000; 0.330204;, + -0.375000; 0.625000; 0.330204;, + -0.125000; 0.750000; 0.330204;, + 0.000000; 0.750000; 0.330204;, + 0.000000; 0.625000; 0.330204;, + -0.125000; 0.625000; 0.330204;, + -0.375000; 0.000000; 0.330204;, + -0.250000; 0.000000; 0.330204;, + -0.250000;-0.125000; 0.330204;, + -0.375000;-0.125000; 0.330204;, + -0.375000;-0.250000; 0.330204;, + -0.250000;-0.250000; 0.330204;, + -0.250000;-0.375000; 0.330204;, + -0.375000;-0.375000; 0.330204;, + -0.125000;-0.250000; 0.330204;, + 0.000000;-0.250000; 0.330204;, + 0.000000;-0.375000; 0.330204;, + -0.125000;-0.375000; 0.330204;, + 0.625000; 0.000000; 0.330204;, + 0.750000; 0.000000; 0.330204;, + 0.750000;-0.125000; 0.330204;, + 0.625000;-0.125000; 0.330204;, + 0.625000;-0.250000; 0.330204;, + 0.750000;-0.250000; 0.330204;, + 0.750000;-0.375000; 0.330204;, + 0.625000;-0.375000; 0.330204;, + 0.125000; 1.000000; 0.330204;, + 0.250000; 1.000000; 0.330204;, + 0.250000; 0.875000; 0.330204;, + 0.125000; 0.875000; 0.330204;, + 0.125000; 0.750000; 0.330204;, + 0.250000; 0.750000; 0.330204;, + 0.250000; 0.625000; 0.330204;, + 0.125000; 0.625000; 0.330204;, + 0.375000; 0.750000; 0.330204;, + 0.500000; 0.750000; 0.330204;, + 0.500000; 0.625000; 0.330204;, + 0.375000; 0.625000; 0.330204;, + 0.125000; 0.500000; 0.330204;, + 0.250000; 0.500000; 0.330204;, + 0.250000; 0.375000; 0.330204;, + 0.125000; 0.375000; 0.330204;, + 0.125000; 0.250000; 0.330204;, + 0.250000; 0.250000; 0.330204;, + 0.250000; 0.125000; 0.330204;, + 0.125000; 0.125000; 0.330204;, + 0.375000; 0.250000; 0.330204;, + 0.500000; 0.250000; 0.330204;, + 0.500000; 0.125000; 0.330204;, + 0.375000; 0.125000; 0.330204;, + 0.625000; 0.500000; 0.330204;, + 0.750000; 0.500000; 0.330204;, + 0.750000; 0.375000; 0.330204;, + 0.625000; 0.375000; 0.330204;, + 0.625000; 0.250000; 0.330204;, + 0.750000; 0.250000; 0.330204;, + 0.750000; 0.125000; 0.330204;, + 0.625000; 0.125000; 0.330204;, + -0.625000; 0.750000; 0.330204;, + -0.500000; 0.750000; 0.330204;, + -0.500000; 0.625000; 0.330204;, + -0.625000; 0.625000; 0.330204;, + -0.625000; 0.250000; 0.330204;, + -0.500000; 0.250000; 0.330204;, + -0.500000; 0.125000; 0.330204;, + -0.625000; 0.125000; 0.330204;, + -0.375000; 0.500000; 0.330204;, + -0.250000; 0.500000; 0.330204;, + -0.250000; 0.375000; 0.330204;, + -0.375000; 0.375000; 0.330204;, + -0.375000; 0.250000; 0.330204;, + -0.250000; 0.250000; 0.330204;, + -0.250000; 0.125000; 0.330204;, + -0.375000; 0.125000; 0.330204;, + -0.125000; 0.250000; 0.330204;, + 0.000000; 0.250000; 0.330204;, + 0.000000; 0.125000; 0.330204;, + -0.125000; 0.125000; 0.330204;, + -0.625000;-0.250000; 0.330204;, + -0.500000;-0.250000; 0.330204;, + -0.500000;-0.375000; 0.330204;, + -0.625000;-0.375000; 0.330204;, + -0.625000;-0.750000; 0.330204;, + -0.500000;-0.750000; 0.330204;, + -0.500000;-0.875000; 0.330204;, + -0.625000;-0.875000; 0.330204;, + -0.375000;-0.500000; 0.330204;, + -0.250000;-0.500000; 0.330204;, + -0.250000;-0.625000; 0.330204;, + -0.375000;-0.625000; 0.330204;, + -0.375000;-0.750000; 0.330204;, + -0.250000;-0.750000; 0.330204;, + -0.250000;-0.875000; 0.330204;, + -0.375000;-0.875000; 0.330204;, + -0.125000;-0.750000; 0.330204;, + 0.000000;-0.750000; 0.330204;, + 0.000000;-0.875000; 0.330204;, + -0.125000;-0.875000; 0.330204;, + 0.125000; 0.000000; 0.330204;, + 0.250000; 0.000000; 0.330204;, + 0.250000;-0.125000; 0.330204;, + 0.125000;-0.125000; 0.330204;, + 0.125000;-0.250000; 0.330204;, + 0.250000;-0.250000; 0.330204;, + 0.250000;-0.375000; 0.330204;, + 0.125000;-0.375000; 0.330204;, + 0.375000;-0.250000; 0.330204;, + 0.500000;-0.250000; 0.330204;, + 0.500000;-0.375000; 0.330204;, + 0.375000;-0.375000; 0.330204;, + 0.125000;-0.500000; 0.330204;, + 0.250000;-0.500000; 0.330204;, + 0.250000;-0.625000; 0.330204;, + 0.125000;-0.625000; 0.330204;, + 0.125000;-0.750000; 0.330204;, + 0.250000;-0.750000; 0.330204;, + 0.250000;-0.875000; 0.330204;, + 0.125000;-0.875000; 0.330204;, + 0.375000;-0.750000; 0.330204;, + 0.500000;-0.750000; 0.330204;, + 0.500000;-0.875000; 0.330204;, + 0.375000;-0.875000; 0.330204;, + 0.625000;-0.500000; 0.330204;, + 0.750000;-0.500000; 0.330204;, + 0.750000;-0.625000; 0.330204;, + 0.625000;-0.625000; 0.330204;, + 0.625000;-0.750000; 0.330204;, + 0.750000;-0.750000; 0.330204;, + 0.750000;-0.875000; 0.330204;, + 0.625000;-0.875000; 0.330204;, + -0.125000; 0.875000; 0.330204;, + 0.000000; 0.875000; 0.330204;, + 0.000000; 0.750000; 0.330204;, + -0.125000; 0.750000; 0.330204;, + -0.125000;-0.125000; 0.330204;, + 0.000000;-0.125000; 0.330204;, + 0.000000;-0.250000; 0.330204;, + -0.125000;-0.250000; 0.330204;, + 0.375000; 0.875000; 0.330204;, + 0.500000; 0.875000; 0.330204;, + 0.500000; 0.750000; 0.330204;, + 0.375000; 0.750000; 0.330204;, + 0.375000; 0.375000; 0.330204;, + 0.500000; 0.375000; 0.330204;, + 0.500000; 0.250000; 0.330204;, + 0.375000; 0.250000; 0.330204;, + -0.625000; 0.875000; 0.330204;, + -0.500000; 0.875000; 0.330204;, + -0.500000; 0.750000; 0.330204;, + -0.625000; 0.750000; 0.330204;, + -0.625000; 0.375000; 0.330204;, + -0.500000; 0.375000; 0.330204;, + -0.500000; 0.250000; 0.330204;, + -0.625000; 0.250000; 0.330204;, + -0.125000; 0.375000; 0.330204;, + 0.000000; 0.375000; 0.330204;, + 0.000000; 0.250000; 0.330204;, + -0.125000; 0.250000; 0.330204;, + -0.625000;-0.125000; 0.330204;, + -0.500000;-0.125000; 0.330204;, + -0.500000;-0.250000; 0.330204;, + -0.625000;-0.250000; 0.330204;, + -0.625000;-0.625000; 0.330204;, + -0.500000;-0.625000; 0.330204;, + -0.500000;-0.750000; 0.330204;, + -0.625000;-0.750000; 0.330204;, + -0.125000;-0.625000; 0.330204;, + 0.000000;-0.625000; 0.330204;, + 0.000000;-0.750000; 0.330204;, + -0.125000;-0.750000; 0.330204;, + 0.375000;-0.125000; 0.330204;, + 0.500000;-0.125000; 0.330204;, + 0.500000;-0.250000; 0.330204;, + 0.375000;-0.250000; 0.330204;, + 0.375000;-0.625000; 0.330204;, + 0.500000;-0.625000; 0.330204;, + 0.500000;-0.750000; 0.330204;, + 0.375000;-0.750000; 0.330204;, + 0.500000; 1.000000; 0.330204;, + 0.625000; 1.000000; 0.330204;, + 0.625000; 0.875000; 0.330204;, + 0.500000; 0.875000; 0.330204;, + 0.500000; 0.875000; 0.330204;, + 0.625000; 0.875000; 0.330204;, + 0.625000; 0.750000; 0.330204;, + 0.500000; 0.750000; 0.330204;, + 0.625000; 0.875000; 0.330204;, + 0.750000; 0.875000; 0.330204;, + 0.750000; 0.750000; 0.330204;, + 0.625000; 0.750000; 0.330204;, + 0.500000; 0.750000; 0.330204;, + 0.625000; 0.750000; 0.330204;, + 0.625000; 0.625000; 0.330204;, + 0.500000; 0.625000; 0.330204;, + 0.500000; 0.625000; 0.330204;, + 0.625000; 0.625000; 0.330204;, + 0.625000; 0.500000; 0.330204;, + 0.500000; 0.500000; 0.330204;, + 0.625000; 0.625000; 0.330204;, + 0.750000; 0.625000; 0.330204;, + 0.750000; 0.500000; 0.330204;, + 0.625000; 0.500000; 0.330204;, + -0.500000; 1.000000; 0.330204;, + -0.375000; 1.000000; 0.330204;, + -0.375000; 0.875000; 0.330204;, + -0.500000; 0.875000; 0.330204;, + -0.500000; 0.875000; 0.330204;, + -0.375000; 0.875000; 0.330204;, + -0.375000; 0.750000; 0.330204;, + -0.500000; 0.750000; 0.330204;, + -0.375000; 0.875000; 0.330204;, + -0.250000; 0.875000; 0.330204;, + -0.250000; 0.750000; 0.330204;, + -0.375000; 0.750000; 0.330204;, + -0.500000; 0.750000; 0.330204;, + -0.375000; 0.750000; 0.330204;, + -0.375000; 0.625000; 0.330204;, + -0.500000; 0.625000; 0.330204;, + -0.500000; 0.625000; 0.330204;, + -0.375000; 0.625000; 0.330204;, + -0.375000; 0.500000; 0.330204;, + -0.500000; 0.500000; 0.330204;, + -0.375000; 0.625000; 0.330204;, + -0.250000; 0.625000; 0.330204;, + -0.250000; 0.500000; 0.330204;, + -0.375000; 0.500000; 0.330204;, + -0.125000; 0.625000; 0.330204;, + 0.000000; 0.625000; 0.330204;, + 0.000000; 0.500000; 0.330204;, + -0.125000; 0.500000; 0.330204;, + -0.500000; 0.000000; 0.330204;, + -0.375000; 0.000000; 0.330204;, + -0.375000;-0.125000; 0.330204;, + -0.500000;-0.125000; 0.330204;, + -0.500000;-0.125000; 0.330204;, + -0.375000;-0.125000; 0.330204;, + -0.375000;-0.250000; 0.330204;, + -0.500000;-0.250000; 0.330204;, + -0.375000;-0.125000; 0.330204;, + -0.250000;-0.125000; 0.330204;, + -0.250000;-0.250000; 0.330204;, + -0.375000;-0.250000; 0.330204;, + -0.500000;-0.250000; 0.330204;, + -0.375000;-0.250000; 0.330204;, + -0.375000;-0.375000; 0.330204;, + -0.500000;-0.375000; 0.330204;, + -0.500000;-0.375000; 0.330204;, + -0.375000;-0.375000; 0.330204;, + -0.375000;-0.500000; 0.330204;, + -0.500000;-0.500000; 0.330204;, + -0.375000;-0.375000; 0.330204;, + -0.250000;-0.375000; 0.330204;, + -0.250000;-0.500000; 0.330204;, + -0.375000;-0.500000; 0.330204;, + -0.125000;-0.375000; 0.330204;, + 0.000000;-0.375000; 0.330204;, + 0.000000;-0.500000; 0.330204;, + -0.125000;-0.500000; 0.330204;, + 0.500000; 0.000000; 0.330204;, + 0.625000; 0.000000; 0.330204;, + 0.625000;-0.125000; 0.330204;, + 0.500000;-0.125000; 0.330204;, + 0.500000;-0.125000; 0.330204;, + 0.625000;-0.125000; 0.330204;, + 0.625000;-0.250000; 0.330204;, + 0.500000;-0.250000; 0.330204;, + 0.625000;-0.125000; 0.330204;, + 0.750000;-0.125000; 0.330204;, + 0.750000;-0.250000; 0.330204;, + 0.625000;-0.250000; 0.330204;, + 0.500000;-0.250000; 0.330204;, + 0.625000;-0.250000; 0.330204;, + 0.625000;-0.375000; 0.330204;, + 0.500000;-0.375000; 0.330204;, + 0.500000;-0.375000; 0.330204;, + 0.625000;-0.375000; 0.330204;, + 0.625000;-0.500000; 0.330204;, + 0.500000;-0.500000; 0.330204;, + 0.625000;-0.375000; 0.330204;, + 0.750000;-0.375000; 0.330204;, + 0.750000;-0.500000; 0.330204;, + 0.625000;-0.500000; 0.330204;, + 0.000000; 1.000000; 0.330204;, + 0.125000; 1.000000; 0.330204;, + 0.125000; 0.875000; 0.330204;, + 0.000000; 0.875000; 0.330204;, + 0.000000; 0.875000; 0.330204;, + 0.125000; 0.875000; 0.330204;, + 0.125000; 0.750000; 0.330204;, + 0.000000; 0.750000; 0.330204;, + 0.125000; 0.875000; 0.330204;, + 0.250000; 0.875000; 0.330204;, + 0.250000; 0.750000; 0.330204;, + 0.125000; 0.750000; 0.330204;, + 0.000000; 0.750000; 0.330204;, + 0.125000; 0.750000; 0.330204;, + 0.125000; 0.625000; 0.330204;, + 0.000000; 0.625000; 0.330204;, + 0.000000; 0.625000; 0.330204;, + 0.125000; 0.625000; 0.330204;, + 0.125000; 0.500000; 0.330204;, + 0.000000; 0.500000; 0.330204;, + 0.125000; 0.625000; 0.330204;, + 0.250000; 0.625000; 0.330204;, + 0.250000; 0.500000; 0.330204;, + 0.125000; 0.500000; 0.330204;, + 0.375000; 0.625000; 0.330204;, + 0.500000; 0.625000; 0.330204;, + 0.500000; 0.500000; 0.330204;, + 0.375000; 0.500000; 0.330204;, + 0.000000; 0.500000; 0.330204;, + 0.125000; 0.500000; 0.330204;, + 0.125000; 0.375000; 0.330204;, + 0.000000; 0.375000; 0.330204;, + 0.000000; 0.375000; 0.330204;, + 0.125000; 0.375000; 0.330204;, + 0.125000; 0.250000; 0.330204;, + 0.000000; 0.250000; 0.330204;, + 0.125000; 0.375000; 0.330204;, + 0.250000; 0.375000; 0.330204;, + 0.250000; 0.250000; 0.330204;, + 0.125000; 0.250000; 0.330204;, + 0.000000; 0.250000; 0.330204;, + 0.125000; 0.250000; 0.330204;, + 0.125000; 0.125000; 0.330204;, + 0.000000; 0.125000; 0.330204;, + 0.000000; 0.125000; 0.330204;, + 0.125000; 0.125000; 0.330204;, + 0.125000; 0.000000; 0.330204;, + 0.000000; 0.000000; 0.330204;, + 0.125000; 0.125000; 0.330204;, + 0.250000; 0.125000; 0.330204;, + 0.250000; 0.000000; 0.330204;, + 0.125000; 0.000000; 0.330204;, + 0.375000; 0.125000; 0.330204;, + 0.500000; 0.125000; 0.330204;, + 0.500000; 0.000000; 0.330204;, + 0.375000; 0.000000; 0.330204;, + 0.500000; 0.500000; 0.330204;, + 0.625000; 0.500000; 0.330204;, + 0.625000; 0.375000; 0.330204;, + 0.500000; 0.375000; 0.330204;, + 0.500000; 0.375000; 0.330204;, + 0.625000; 0.375000; 0.330204;, + 0.625000; 0.250000; 0.330204;, + 0.500000; 0.250000; 0.330204;, + 0.625000; 0.375000; 0.330204;, + 0.750000; 0.375000; 0.330204;, + 0.750000; 0.250000; 0.330204;, + 0.625000; 0.250000; 0.330204;, + 0.500000; 0.250000; 0.330204;, + 0.625000; 0.250000; 0.330204;, + 0.625000; 0.125000; 0.330204;, + 0.500000; 0.125000; 0.330204;, + 0.500000; 0.125000; 0.330204;, + 0.625000; 0.125000; 0.330204;, + 0.625000; 0.000000; 0.330204;, + 0.500000; 0.000000; 0.330204;, + 0.625000; 0.125000; 0.330204;, + 0.750000; 0.125000; 0.330204;, + 0.750000; 0.000000; 0.330204;, + 0.625000; 0.000000; 0.330204;, + -0.625000; 0.625000; 0.330204;, + -0.500000; 0.625000; 0.330204;, + -0.500000; 0.500000; 0.330204;, + -0.625000; 0.500000; 0.330204;, + -0.625000; 0.125000; 0.330204;, + -0.500000; 0.125000; 0.330204;, + -0.500000; 0.000000; 0.330204;, + -0.625000; 0.000000; 0.330204;, + -0.500000; 0.500000; 0.330204;, + -0.375000; 0.500000; 0.330204;, + -0.375000; 0.375000; 0.330204;, + -0.500000; 0.375000; 0.330204;, + -0.500000; 0.375000; 0.330204;, + -0.375000; 0.375000; 0.330204;, + -0.375000; 0.250000; 0.330204;, + -0.500000; 0.250000; 0.330204;, + -0.375000; 0.375000; 0.330204;, + -0.250000; 0.375000; 0.330204;, + -0.250000; 0.250000; 0.330204;, + -0.375000; 0.250000; 0.330204;, + -0.500000; 0.250000; 0.330204;, + -0.375000; 0.250000; 0.330204;, + -0.375000; 0.125000; 0.330204;, + -0.500000; 0.125000; 0.330204;, + -0.500000; 0.125000; 0.330204;, + -0.375000; 0.125000; 0.330204;, + -0.375000; 0.000000; 0.330204;, + -0.500000; 0.000000; 0.330204;, + -0.375000; 0.125000; 0.330204;, + -0.250000; 0.125000; 0.330204;, + -0.250000; 0.000000; 0.330204;, + -0.375000; 0.000000; 0.330204;, + -0.125000; 0.125000; 0.330204;, + 0.000000; 0.125000; 0.330204;, + 0.000000; 0.000000; 0.330204;, + -0.125000; 0.000000; 0.330204;, + -0.625000;-0.375000; 0.330204;, + -0.500000;-0.375000; 0.330204;, + -0.500000;-0.500000; 0.330204;, + -0.625000;-0.500000; 0.330204;, + -0.625000;-0.875000; 0.330204;, + -0.500000;-0.875000; 0.330204;, + -0.500000;-1.000000; 0.330204;, + -0.625000;-1.000000; 0.330204;, + -0.500000;-0.500000; 0.330204;, + -0.375000;-0.500000; 0.330204;, + -0.375000;-0.625000; 0.330204;, + -0.500000;-0.625000; 0.330204;, + -0.500000;-0.625000; 0.330204;, + -0.375000;-0.625000; 0.330204;, + -0.375000;-0.750000; 0.330204;, + -0.500000;-0.750000; 0.330204;, + -0.375000;-0.625000; 0.330204;, + -0.250000;-0.625000; 0.330204;, + -0.250000;-0.750000; 0.330204;, + -0.375000;-0.750000; 0.330204;, + -0.500000;-0.750000; 0.330204;, + -0.375000;-0.750000; 0.330204;, + -0.375000;-0.875000; 0.330204;, + -0.500000;-0.875000; 0.330204;, + -0.500000;-0.875000; 0.330204;, + -0.375000;-0.875000; 0.330204;, + -0.375000;-1.000000; 0.330204;, + -0.500000;-1.000000; 0.330204;, + -0.375000;-0.875000; 0.330204;, + -0.250000;-0.875000; 0.330204;, + -0.250000;-1.000000; 0.330204;, + -0.375000;-1.000000; 0.330204;, + -0.125000;-0.875000; 0.330204;, + 0.000000;-0.875000; 0.330204;, + 0.000000;-1.000000; 0.330204;, + -0.125000;-1.000000; 0.330204;, + 0.000000; 0.000000; 0.330204;, + 0.125000; 0.000000; 0.330204;, + 0.125000;-0.125000; 0.330204;, + 0.000000;-0.125000; 0.330204;, + 0.000000;-0.125000; 0.330204;, + 0.125000;-0.125000; 0.330204;, + 0.125000;-0.250000; 0.330204;, + 0.000000;-0.250000; 0.330204;, + 0.125000;-0.125000; 0.330204;, + 0.250000;-0.125000; 0.330204;, + 0.250000;-0.250000; 0.330204;, + 0.125000;-0.250000; 0.330204;, + 0.000000;-0.250000; 0.330204;, + 0.125000;-0.250000; 0.330204;, + 0.125000;-0.375000; 0.330204;, + 0.000000;-0.375000; 0.330204;, + 0.000000;-0.375000; 0.330204;, + 0.125000;-0.375000; 0.330204;, + 0.125000;-0.500000; 0.330204;, + 0.000000;-0.500000; 0.330204;, + 0.125000;-0.375000; 0.330204;, + 0.250000;-0.375000; 0.330204;, + 0.250000;-0.500000; 0.330204;, + 0.125000;-0.500000; 0.330204;, + 0.375000;-0.375000; 0.330204;, + 0.500000;-0.375000; 0.330204;, + 0.500000;-0.500000; 0.330204;, + 0.375000;-0.500000; 0.330204;, + 0.000000;-0.500000; 0.330204;, + 0.125000;-0.500000; 0.330204;, + 0.125000;-0.625000; 0.330204;, + 0.000000;-0.625000; 0.330204;, + 0.000000;-0.625000; 0.330204;, + 0.125000;-0.625000; 0.330204;, + 0.125000;-0.750000; 0.330204;, + 0.000000;-0.750000; 0.330204;, + 0.125000;-0.625000; 0.330204;, + 0.250000;-0.625000; 0.330204;, + 0.250000;-0.750000; 0.330204;, + 0.125000;-0.750000; 0.330204;, + 0.000000;-0.750000; 0.330204;, + 0.125000;-0.750000; 0.330204;, + 0.125000;-0.875000; 0.330204;, + 0.000000;-0.875000; 0.330204;, + 0.000000;-0.875000; 0.330204;, + 0.125000;-0.875000; 0.330204;, + 0.125000;-1.000000; 0.330204;, + 0.000000;-1.000000; 0.330204;, + 0.125000;-0.875000; 0.330204;, + 0.250000;-0.875000; 0.330204;, + 0.250000;-1.000000; 0.330204;, + 0.125000;-1.000000; 0.330204;, + 0.375000;-0.875000; 0.330204;, + 0.500000;-0.875000; 0.330204;, + 0.500000;-1.000000; 0.330204;, + 0.375000;-1.000000; 0.330204;, + 0.500000;-0.500000; 0.330204;, + 0.625000;-0.500000; 0.330204;, + 0.625000;-0.625000; 0.330204;, + 0.500000;-0.625000; 0.330204;, + 0.500000;-0.625000; 0.330204;, + 0.625000;-0.625000; 0.330204;, + 0.625000;-0.750000; 0.330204;, + 0.500000;-0.750000; 0.330204;, + 0.625000;-0.625000; 0.330204;, + 0.750000;-0.625000; 0.330204;, + 0.750000;-0.750000; 0.330204;, + 0.625000;-0.750000; 0.330204;, + 0.500000;-0.750000; 0.330204;, + 0.625000;-0.750000; 0.330204;, + 0.625000;-0.875000; 0.330204;, + 0.500000;-0.875000; 0.330204;, + 0.500000;-0.875000; 0.330204;, + 0.625000;-0.875000; 0.330204;, + 0.625000;-1.000000; 0.330204;, + 0.500000;-1.000000; 0.330204;, + 0.625000;-0.875000; 0.330204;, + 0.750000;-0.875000; 0.330204;, + 0.750000;-1.000000; 0.330204;, + 0.625000;-1.000000; 0.330204;, + -0.500000; 0.625000;-0.117178;, + -0.500000; 0.750000;-0.117178;, + -0.625000; 0.750000;-0.117178;, + -0.625000; 0.625000;-0.117178;, + -0.500000; 0.125000;-0.117178;, + -0.500000; 0.250000;-0.117178;, + -0.625000; 0.250000;-0.117178;, + -0.625000; 0.125000;-0.117178;, + -0.250000; 0.375000;-0.117178;, + -0.250000; 0.500000;-0.117178;, + -0.375000; 0.500000;-0.117178;, + -0.375000; 0.375000;-0.117178;, + -0.250000; 0.125000;-0.117178;, + -0.250000; 0.250000;-0.117178;, + -0.375000; 0.250000;-0.117178;, + -0.375000; 0.125000;-0.117178;, + 0.000000; 0.125000;-0.117178;, + 0.000000; 0.250000;-0.117178;, + -0.125000; 0.250000;-0.117178;, + -0.125000; 0.125000;-0.117178;, + -0.500000;-0.375000;-0.117178;, + -0.500000;-0.250000;-0.117178;, + -0.625000;-0.250000;-0.117178;, + -0.625000;-0.375000;-0.117178;, + -0.500000;-0.875000;-0.117178;, + -0.500000;-0.750000;-0.117178;, + -0.625000;-0.750000;-0.117178;, + -0.625000;-0.875000;-0.117178;, + -0.250000;-0.625000;-0.117178;, + -0.250000;-0.500000;-0.117178;, + -0.375000;-0.500000;-0.117178;, + -0.375000;-0.625000;-0.117178;, + -0.250000;-0.875000;-0.117178;, + -0.250000;-0.750000;-0.117178;, + -0.375000;-0.750000;-0.117178;, + -0.375000;-0.875000;-0.117178;, + 0.000000;-0.875000;-0.117178;, + 0.000000;-0.750000;-0.117178;, + -0.125000;-0.750000;-0.117178;, + -0.125000;-0.875000;-0.117178;, + 0.250000;-0.125000;-0.117178;, + 0.250000; 0.000000;-0.117178;, + 0.125000; 0.000000;-0.117178;, + 0.125000;-0.125000;-0.117178;, + 0.250000;-0.375000;-0.117178;, + 0.250000;-0.250000;-0.117178;, + 0.125000;-0.250000;-0.117178;, + 0.125000;-0.375000;-0.117178;, + 0.500000;-0.375000;-0.117178;, + 0.500000;-0.250000;-0.117178;, + 0.375000;-0.250000;-0.117178;, + 0.375000;-0.375000;-0.117178;, + 0.250000;-0.625000;-0.117178;, + 0.250000;-0.500000;-0.117178;, + 0.125000;-0.500000;-0.117178;, + 0.125000;-0.625000;-0.117178;, + 0.250000;-0.875000;-0.117178;, + 0.250000;-0.750000;-0.117178;, + 0.125000;-0.750000;-0.117178;, + 0.125000;-0.875000;-0.117178;, + 0.500000;-0.875000;-0.117178;, + 0.500000;-0.750000;-0.117178;, + 0.375000;-0.750000;-0.117178;, + 0.375000;-0.875000;-0.117178;, + 0.750000;-0.625000;-0.117178;, + 0.750000;-0.500000;-0.117178;, + 0.625000;-0.500000;-0.117178;, + 0.625000;-0.625000;-0.117178;, + 0.750000;-0.875000;-0.117178;, + 0.750000;-0.750000;-0.117178;, + 0.625000;-0.750000;-0.117178;, + 0.625000;-0.875000;-0.117178;, + 0.000000; 0.750000;-0.117178;, + 0.000000; 0.875000;-0.117178;, + -0.125000; 0.875000;-0.117178;, + -0.125000; 0.750000;-0.117178;, + 0.000000;-0.250000;-0.117178;, + 0.000000;-0.125000;-0.117178;, + -0.125000;-0.125000;-0.117178;, + -0.125000;-0.250000;-0.117178;, + 0.500000; 0.750000;-0.117178;, + 0.500000; 0.875000;-0.117178;, + 0.375000; 0.875000;-0.117178;, + 0.375000; 0.750000;-0.117178;, + 0.500000; 0.250000;-0.117178;, + 0.500000; 0.375000;-0.117178;, + 0.375000; 0.375000;-0.117178;, + 0.375000; 0.250000;-0.117178;, + -0.500000; 0.750000;-0.117178;, + -0.500000; 0.875000;-0.117178;, + -0.625000; 0.875000;-0.117178;, + -0.625000; 0.750000;-0.117178;, + -0.500000; 0.250000;-0.117178;, + -0.500000; 0.375000;-0.117178;, + -0.625000; 0.375000;-0.117178;, + -0.625000; 0.250000;-0.117178;, + 0.000000; 0.250000;-0.117178;, + 0.000000; 0.375000;-0.117178;, + -0.125000; 0.375000;-0.117178;, + -0.125000; 0.250000;-0.117178;, + -0.500000;-0.250000;-0.117178;, + -0.500000;-0.125000;-0.117178;, + -0.625000;-0.125000;-0.117178;, + -0.625000;-0.250000;-0.117178;, + -0.500000;-0.750000;-0.117178;, + -0.500000;-0.625000;-0.117178;, + -0.625000;-0.625000;-0.117178;, + -0.625000;-0.750000;-0.117178;, + 0.000000;-0.750000;-0.117178;, + 0.000000;-0.625000;-0.117178;, + -0.125000;-0.625000;-0.117178;, + -0.125000;-0.750000;-0.117178;, + 0.500000;-0.250000;-0.117178;, + 0.500000;-0.125000;-0.117178;, + 0.375000;-0.125000;-0.117178;, + 0.375000;-0.250000;-0.117178;, + 0.500000;-0.750000;-0.117178;, + 0.500000;-0.625000;-0.117178;, + 0.375000;-0.625000;-0.117178;, + 0.375000;-0.750000;-0.117178;, + 0.625000; 0.875000;-0.117178;, + 0.625000; 1.000000;-0.117178;, + 0.500000; 1.000000;-0.117178;, + 0.500000; 0.875000;-0.117178;, + 0.625000; 0.750000;-0.117178;, + 0.625000; 0.875000;-0.117178;, + 0.500000; 0.875000;-0.117178;, + 0.500000; 0.750000;-0.117178;, + 0.750000; 0.750000;-0.117178;, + 0.750000; 0.875000;-0.117178;, + 0.625000; 0.875000;-0.117178;, + 0.625000; 0.750000;-0.117178;, + 0.625000; 0.625000;-0.117178;, + 0.625000; 0.750000;-0.117178;, + 0.500000; 0.750000;-0.117178;, + 0.500000; 0.625000;-0.117178;, + 0.625000; 0.500000;-0.117178;, + 0.625000; 0.625000;-0.117178;, + 0.500000; 0.625000;-0.117178;, + 0.500000; 0.500000;-0.117178;, + 0.750000; 0.500000;-0.117178;, + 0.750000; 0.625000;-0.117178;, + 0.625000; 0.625000;-0.117178;, + 0.625000; 0.500000;-0.117178;, + -0.375000; 0.875000;-0.117178;, + -0.375000; 1.000000;-0.117178;, + -0.500000; 1.000000;-0.117178;, + -0.500000; 0.875000;-0.117178;, + -0.375000; 0.750000;-0.117178;, + -0.375000; 0.875000;-0.117178;, + -0.500000; 0.875000;-0.117178;, + -0.500000; 0.750000;-0.117178;, + -0.250000; 0.750000;-0.117178;, + -0.250000; 0.875000;-0.117178;, + -0.375000; 0.875000;-0.117178;, + -0.375000; 0.750000;-0.117178;, + -0.375000; 0.625000;-0.117178;, + -0.375000; 0.750000;-0.117178;, + -0.500000; 0.750000;-0.117178;, + -0.500000; 0.625000;-0.117178;, + -0.375000; 0.500000;-0.117178;, + -0.375000; 0.625000;-0.117178;, + -0.500000; 0.625000;-0.117178;, + -0.500000; 0.500000;-0.117178;, + -0.250000; 0.500000;-0.117178;, + -0.250000; 0.625000;-0.117178;, + -0.375000; 0.625000;-0.117178;, + -0.375000; 0.500000;-0.117178;, + 0.000000; 0.500000;-0.117178;, + 0.000000; 0.625000;-0.117178;, + -0.125000; 0.625000;-0.117178;, + -0.125000; 0.500000;-0.117178;, + -0.375000;-0.125000;-0.117178;, + -0.375000; 0.000000;-0.117178;, + -0.500000; 0.000000;-0.117178;, + -0.500000;-0.125000;-0.117178;, + -0.375000;-0.250000;-0.117178;, + -0.375000;-0.125000;-0.117178;, + -0.500000;-0.125000;-0.117178;, + -0.500000;-0.250000;-0.117178;, + -0.250000;-0.250000;-0.117178;, + -0.250000;-0.125000;-0.117178;, + -0.375000;-0.125000;-0.117178;, + -0.375000;-0.250000;-0.117178;, + -0.375000;-0.375000;-0.117178;, + -0.375000;-0.250000;-0.117178;, + -0.500000;-0.250000;-0.117178;, + -0.500000;-0.375000;-0.117178;, + -0.375000;-0.500000;-0.117178;, + -0.375000;-0.375000;-0.117178;, + -0.500000;-0.375000;-0.117178;, + -0.500000;-0.500000;-0.117178;, + -0.250000;-0.500000;-0.117178;, + -0.250000;-0.375000;-0.117178;, + -0.375000;-0.375000;-0.117178;, + -0.375000;-0.500000;-0.117178;, + 0.000000;-0.500000;-0.117178;, + 0.000000;-0.375000;-0.117178;, + -0.125000;-0.375000;-0.117178;, + -0.125000;-0.500000;-0.117178;, + 0.625000;-0.125000;-0.117178;, + 0.625000; 0.000000;-0.117178;, + 0.500000; 0.000000;-0.117178;, + 0.500000;-0.125000;-0.117178;, + 0.625000;-0.250000;-0.117178;, + 0.625000;-0.125000;-0.117178;, + 0.500000;-0.125000;-0.117178;, + 0.500000;-0.250000;-0.117178;, + 0.750000;-0.250000;-0.117178;, + 0.750000;-0.125000;-0.117178;, + 0.625000;-0.125000;-0.117178;, + 0.625000;-0.250000;-0.117178;, + 0.625000;-0.375000;-0.117178;, + 0.625000;-0.250000;-0.117178;, + 0.500000;-0.250000;-0.117178;, + 0.500000;-0.375000;-0.117178;, + 0.625000;-0.500000;-0.117178;, + 0.625000;-0.375000;-0.117178;, + 0.500000;-0.375000;-0.117178;, + 0.500000;-0.500000;-0.117178;, + 0.750000;-0.500000;-0.117178;, + 0.750000;-0.375000;-0.117178;, + 0.625000;-0.375000;-0.117178;, + 0.625000;-0.500000;-0.117178;, + 0.125000; 0.875000;-0.117178;, + 0.125000; 1.000000;-0.117178;, + 0.000000; 1.000000;-0.117178;, + 0.000000; 0.875000;-0.117178;, + 0.125000; 0.750000;-0.117178;, + 0.125000; 0.875000;-0.117178;, + 0.000000; 0.875000;-0.117178;, + 0.000000; 0.750000;-0.117178;, + 0.250000; 0.750000;-0.117178;, + 0.250000; 0.875000;-0.117178;, + 0.125000; 0.875000;-0.117178;, + 0.125000; 0.750000;-0.117178;, + 0.125000; 0.625000;-0.117178;, + 0.125000; 0.750000;-0.117178;, + 0.000000; 0.750000;-0.117178;, + 0.000000; 0.625000;-0.117178;, + 0.125000; 0.500000;-0.117178;, + 0.125000; 0.625000;-0.117178;, + 0.000000; 0.625000;-0.117178;, + 0.000000; 0.500000;-0.117178;, + 0.250000; 0.500000;-0.117178;, + 0.250000; 0.625000;-0.117178;, + 0.125000; 0.625000;-0.117178;, + 0.125000; 0.500000;-0.117178;, + 0.500000; 0.500000;-0.117178;, + 0.500000; 0.625000;-0.117178;, + 0.375000; 0.625000;-0.117178;, + 0.375000; 0.500000;-0.117178;, + 0.125000; 0.375000;-0.117178;, + 0.125000; 0.500000;-0.117178;, + 0.000000; 0.500000;-0.117178;, + 0.000000; 0.375000;-0.117178;, + 0.125000; 0.250000;-0.117178;, + 0.125000; 0.375000;-0.117178;, + 0.000000; 0.375000;-0.117178;, + 0.000000; 0.250000;-0.117178;, + 0.250000; 0.250000;-0.117178;, + 0.250000; 0.375000;-0.117178;, + 0.125000; 0.375000;-0.117178;, + 0.125000; 0.250000;-0.117178;, + 0.125000; 0.125000;-0.117178;, + 0.125000; 0.250000;-0.117178;, + 0.000000; 0.250000;-0.117178;, + 0.000000; 0.125000;-0.117178;, + 0.125000; 0.000000;-0.117178;, + 0.125000; 0.125000;-0.117178;, + 0.000000; 0.125000;-0.117178;, + 0.000000; 0.000000;-0.117178;, + 0.250000; 0.000000;-0.117178;, + 0.250000; 0.125000;-0.117178;, + 0.125000; 0.125000;-0.117178;, + 0.125000; 0.000000;-0.117178;, + 0.500000; 0.000000;-0.117178;, + 0.500000; 0.125000;-0.117178;, + 0.375000; 0.125000;-0.117178;, + 0.375000; 0.000000;-0.117178;, + 0.625000; 0.375000;-0.117178;, + 0.625000; 0.500000;-0.117178;, + 0.500000; 0.500000;-0.117178;, + 0.500000; 0.375000;-0.117178;, + 0.625000; 0.250000;-0.117178;, + 0.625000; 0.375000;-0.117178;, + 0.500000; 0.375000;-0.117178;, + 0.500000; 0.250000;-0.117178;, + 0.750000; 0.250000;-0.117178;, + 0.750000; 0.375000;-0.117178;, + 0.625000; 0.375000;-0.117178;, + 0.625000; 0.250000;-0.117178;, + 0.625000; 0.125000;-0.117178;, + 0.625000; 0.250000;-0.117178;, + 0.500000; 0.250000;-0.117178;, + 0.500000; 0.125000;-0.117178;, + 0.625000; 0.000000;-0.117178;, + 0.625000; 0.125000;-0.117178;, + 0.500000; 0.125000;-0.117178;, + 0.500000; 0.000000;-0.117178;, + 0.750000; 0.000000;-0.117178;, + 0.750000; 0.125000;-0.117178;, + 0.625000; 0.125000;-0.117178;, + 0.625000; 0.000000;-0.117178;, + -0.500000; 0.500000;-0.117178;, + -0.500000; 0.625000;-0.117178;, + -0.625000; 0.625000;-0.117178;, + -0.625000; 0.500000;-0.117178;, + -0.500000; 0.000000;-0.117178;, + -0.500000; 0.125000;-0.117178;, + -0.625000; 0.125000;-0.117178;, + -0.625000; 0.000000;-0.117178;, + -0.375000; 0.375000;-0.117178;, + -0.375000; 0.500000;-0.117178;, + -0.500000; 0.500000;-0.117178;, + -0.500000; 0.375000;-0.117178;, + -0.375000; 0.250000;-0.117178;, + -0.375000; 0.375000;-0.117178;, + -0.500000; 0.375000;-0.117178;, + -0.500000; 0.250000;-0.117178;, + -0.250000; 0.250000;-0.117178;, + -0.250000; 0.375000;-0.117178;, + -0.375000; 0.375000;-0.117178;, + -0.375000; 0.250000;-0.117178;, + -0.375000; 0.125000;-0.117178;, + -0.375000; 0.250000;-0.117178;, + -0.500000; 0.250000;-0.117178;, + -0.500000; 0.125000;-0.117178;, + -0.375000; 0.000000;-0.117178;, + -0.375000; 0.125000;-0.117178;, + -0.500000; 0.125000;-0.117178;, + -0.500000; 0.000000;-0.117178;, + -0.250000; 0.000000;-0.117178;, + -0.250000; 0.125000;-0.117178;, + -0.375000; 0.125000;-0.117178;, + -0.375000; 0.000000;-0.117178;, + 0.000000; 0.000000;-0.117178;, + 0.000000; 0.125000;-0.117178;, + -0.125000; 0.125000;-0.117178;, + -0.125000; 0.000000;-0.117178;, + -0.500000;-0.500000;-0.117178;, + -0.500000;-0.375000;-0.117178;, + -0.625000;-0.375000;-0.117178;, + -0.625000;-0.500000;-0.117178;, + -0.500000;-1.000000;-0.117178;, + -0.500000;-0.875000;-0.117178;, + -0.625000;-0.875000;-0.117178;, + -0.625000;-1.000000;-0.117178;, + -0.375000;-0.625000;-0.117178;, + -0.375000;-0.500000;-0.117178;, + -0.500000;-0.500000;-0.117178;, + -0.500000;-0.625000;-0.117178;, + -0.375000;-0.750000;-0.117178;, + -0.375000;-0.625000;-0.117178;, + -0.500000;-0.625000;-0.117178;, + -0.500000;-0.750000;-0.117178;, + -0.250000;-0.750000;-0.117178;, + -0.250000;-0.625000;-0.117178;, + -0.375000;-0.625000;-0.117178;, + -0.375000;-0.750000;-0.117178;, + -0.375000;-0.875000;-0.117178;, + -0.375000;-0.750000;-0.117178;, + -0.500000;-0.750000;-0.117178;, + -0.500000;-0.875000;-0.117178;, + -0.375000;-1.000000;-0.117178;, + -0.375000;-0.875000;-0.117178;, + -0.500000;-0.875000;-0.117178;, + -0.500000;-1.000000;-0.117178;, + -0.250000;-1.000000;-0.117178;, + -0.250000;-0.875000;-0.117178;, + -0.375000;-0.875000;-0.117178;, + -0.375000;-1.000000;-0.117178;, + 0.000000;-1.000000;-0.117178;, + 0.000000;-0.875000;-0.117178;, + -0.125000;-0.875000;-0.117178;, + -0.125000;-1.000000;-0.117178;, + 0.125000;-0.125000;-0.117178;, + 0.125000; 0.000000;-0.117178;, + 0.000000; 0.000000;-0.117178;, + 0.000000;-0.125000;-0.117178;, + 0.125000;-0.250000;-0.117178;, + 0.125000;-0.125000;-0.117178;, + 0.000000;-0.125000;-0.117178;, + 0.000000;-0.250000;-0.117178;, + 0.250000;-0.250000;-0.117178;, + 0.250000;-0.125000;-0.117178;, + 0.125000;-0.125000;-0.117178;, + 0.125000;-0.250000;-0.117178;, + 0.125000;-0.375000;-0.117178;, + 0.125000;-0.250000;-0.117178;, + 0.000000;-0.250000;-0.117178;, + 0.000000;-0.375000;-0.117178;, + 0.125000;-0.500000;-0.117178;, + 0.125000;-0.375000;-0.117178;, + 0.000000;-0.375000;-0.117178;, + 0.000000;-0.500000;-0.117178;, + 0.250000;-0.500000;-0.117178;, + 0.250000;-0.375000;-0.117178;, + 0.125000;-0.375000;-0.117178;, + 0.125000;-0.500000;-0.117178;, + 0.500000;-0.500000;-0.117178;, + 0.500000;-0.375000;-0.117178;, + 0.375000;-0.375000;-0.117178;, + 0.375000;-0.500000;-0.117178;, + 0.125000;-0.625000;-0.117178;, + 0.125000;-0.500000;-0.117178;, + 0.000000;-0.500000;-0.117178;, + 0.000000;-0.625000;-0.117178;, + 0.125000;-0.750000;-0.117178;, + 0.125000;-0.625000;-0.117178;, + 0.000000;-0.625000;-0.117178;, + 0.000000;-0.750000;-0.117178;, + 0.250000;-0.750000;-0.117178;, + 0.250000;-0.625000;-0.117178;, + 0.125000;-0.625000;-0.117178;, + 0.125000;-0.750000;-0.117178;, + 0.125000;-0.875000;-0.117178;, + 0.125000;-0.750000;-0.117178;, + 0.000000;-0.750000;-0.117178;, + 0.000000;-0.875000;-0.117178;, + 0.125000;-1.000000;-0.117178;, + 0.125000;-0.875000;-0.117178;, + 0.000000;-0.875000;-0.117178;, + 0.000000;-1.000000;-0.117178;, + 0.250000;-1.000000;-0.117178;, + 0.250000;-0.875000;-0.117178;, + 0.125000;-0.875000;-0.117178;, + 0.125000;-1.000000;-0.117178;, + 0.500000;-1.000000;-0.117178;, + 0.500000;-0.875000;-0.117178;, + 0.375000;-0.875000;-0.117178;, + 0.375000;-1.000000;-0.117178;, + 0.625000;-0.625000;-0.117178;, + 0.625000;-0.500000;-0.117178;, + 0.500000;-0.500000;-0.117178;, + 0.500000;-0.625000;-0.117178;, + 0.625000;-0.750000;-0.117178;, + 0.625000;-0.625000;-0.117178;, + 0.500000;-0.625000;-0.117178;, + 0.500000;-0.750000;-0.117178;, + 0.750000;-0.750000;-0.117178;, + 0.750000;-0.625000;-0.117178;, + 0.625000;-0.625000;-0.117178;, + 0.625000;-0.750000;-0.117178;, + 0.625000;-0.875000;-0.117178;, + 0.625000;-0.750000;-0.117178;, + 0.500000;-0.750000;-0.117178;, + 0.500000;-0.875000;-0.117178;, + 0.625000;-1.000000;-0.117178;, + 0.625000;-0.875000;-0.117178;, + 0.500000;-0.875000;-0.117178;, + 0.500000;-1.000000;-0.117178;, + 0.750000;-1.000000;-0.117178;, + 0.750000;-0.875000;-0.117178;, + 0.625000;-0.875000;-0.117178;, + 0.625000;-1.000000;-0.117178;, + 0.859843;-0.875000; 0.246450;, + 0.859843;-0.750000; 0.246450;, + 0.859843;-0.750000; 0.000000;, + 0.859843;-0.875000; 0.000000;, + 0.859843; 0.750000; 0.246450;, + 0.859843; 0.875000; 0.246450;, + 0.859843; 0.875000; 0.000000;, + 0.859843; 0.750000; 0.000000;, + 0.859843; 0.125000; 0.246450;, + 0.859843; 0.250000; 0.246450;, + 0.859843; 0.250000; 0.000000;, + 0.859843; 0.125000; 0.000000;, + 0.859843;-0.500000; 0.246450;, + 0.859843;-0.375000; 0.246450;, + 0.859843;-0.375000; 0.000000;, + 0.859843;-0.500000; 0.000000;, + 0.859843;-0.625000; 0.246450;, + 0.859843;-0.500000; 0.246450;, + 0.859843;-0.500000; 0.000000;, + 0.859843;-0.625000; 0.000000;, + 0.859843; 0.375000; 0.246450;, + 0.859843; 0.500000; 0.246450;, + 0.859843; 0.500000; 0.000000;, + 0.859843; 0.375000; 0.000000;, + 0.859843;-0.375000; 0.246450;, + 0.859843;-0.250000; 0.246450;, + 0.859843;-0.250000; 0.000000;, + 0.859843;-0.375000; 0.000000;, + 0.859843;-0.750000; 0.246450;, + 0.859843;-0.625000; 0.246450;, + 0.859843;-0.625000; 0.000000;, + 0.859843;-0.750000; 0.000000;, + 0.859843; 0.250000; 0.246450;, + 0.859843; 0.375000; 0.246450;, + 0.859843; 0.375000; 0.000000;, + 0.859843; 0.250000; 0.000000;, + 0.859843; 0.500000; 0.246450;, + 0.859843; 0.625000; 0.246450;, + 0.859843; 0.625000; 0.000000;, + 0.859843; 0.500000; 0.000000;, + 0.859843;-0.125000; 0.246450;, + 0.859843; 0.000000; 0.246450;, + 0.859843; 0.000000; 0.000000;, + 0.859843;-0.125000; 0.000000;, + 0.859843; 0.625000; 0.246450;, + 0.859843; 0.750000; 0.246450;, + 0.859843; 0.750000; 0.000000;, + 0.859843; 0.625000; 0.000000;, + 0.859843;-0.250000; 0.246450;, + 0.859843;-0.125000; 0.246450;, + 0.859843;-0.125000; 0.000000;, + 0.859843;-0.250000; 0.000000;, + 0.859843;-1.000000; 0.246450;, + 0.859843;-0.875000; 0.246450;, + 0.859843;-0.875000; 0.000000;, + 0.859843;-1.000000; 0.000000;, + 0.859843; 0.875000; 0.246450;, + 0.859843; 1.000000; 0.246450;, + 0.859843; 1.000000; 0.000000;, + 0.859843; 0.875000; 0.000000;, + 0.859843; 0.000000; 0.246450;, + 0.859843; 0.125000; 0.246450;, + 0.859843; 0.125000; 0.000000;, + 0.859843; 0.000000; 0.000000;, + 0.859843; 1.000000; 0.000000;, + 0.859843; 1.000000; 0.246450;, + 0.750000; 1.000000; 0.246450;, + 0.750000; 1.000000; 0.000000;, + 0.859843;-0.250000; 0.246450;, + 0.859843;-0.375000; 0.246450;, + 0.750000;-0.375000; 0.246450;, + 0.750000;-0.250000; 0.246450;, + 0.859843; 0.625000; 0.000000;, + 0.859843; 0.750000; 0.000000;, + 0.750000; 0.750000; 0.000000;, + 0.750000; 0.625000; 0.000000;, + 0.859843;-0.625000; 0.246450;, + 0.859843;-0.750000; 0.246450;, + 0.750000;-0.750000; 0.246450;, + 0.750000;-0.625000; 0.246450;, + 0.859843;-0.250000; 0.000000;, + 0.859843;-0.125000; 0.000000;, + 0.750000;-0.125000; 0.000000;, + 0.750000;-0.250000; 0.000000;, + 0.859843; 0.000000; 0.000000;, + 0.859843; 0.125000; 0.000000;, + 0.750000; 0.125000; 0.000000;, + 0.750000; 0.000000; 0.000000;, + 0.859843; 0.625000; 0.246450;, + 0.859843; 0.500000; 0.246450;, + 0.750000; 0.500000; 0.246450;, + 0.750000; 0.625000; 0.246450;, + 0.859843; 0.375000; 0.246450;, + 0.859843; 0.250000; 0.246450;, + 0.750000; 0.250000; 0.246450;, + 0.750000; 0.375000; 0.246450;, + 0.859843;-1.000000; 0.246450;, + 0.859843;-1.000000; 0.000000;, + 0.750000;-1.000000; 0.000000;, + 0.750000;-1.000000; 0.246450;, + 0.859843;-0.500000; 0.000000;, + 0.859843;-0.375000; 0.000000;, + 0.750000;-0.375000; 0.000000;, + 0.750000;-0.500000; 0.000000;, + 0.859843; 0.000000; 0.246450;, + 0.859843;-0.125000; 0.246450;, + 0.750000;-0.125000; 0.246450;, + 0.750000; 0.000000; 0.246450;, + 0.859843; 0.750000; 0.246450;, + 0.859843; 0.625000; 0.246450;, + 0.750000; 0.625000; 0.246450;, + 0.750000; 0.750000; 0.246450;, + 0.859843; 0.500000; 0.000000;, + 0.859843; 0.625000; 0.000000;, + 0.750000; 0.625000; 0.000000;, + 0.750000; 0.500000; 0.000000;, + 0.859843;-0.875000; 0.000000;, + 0.859843;-0.750000; 0.000000;, + 0.750000;-0.750000; 0.000000;, + 0.750000;-0.875000; 0.000000;, + 0.859843; 0.125000; 0.000000;, + 0.859843; 0.250000; 0.000000;, + 0.750000; 0.250000; 0.000000;, + 0.750000; 0.125000; 0.000000;, + 0.859843;-0.625000; 0.000000;, + 0.859843;-0.500000; 0.000000;, + 0.750000;-0.500000; 0.000000;, + 0.750000;-0.625000; 0.000000;, + 0.859843;-0.125000; 0.246450;, + 0.859843;-0.250000; 0.246450;, + 0.750000;-0.250000; 0.246450;, + 0.750000;-0.125000; 0.246450;, + 0.859843; 0.750000; 0.000000;, + 0.859843; 0.875000; 0.000000;, + 0.750000; 0.875000; 0.000000;, + 0.750000; 0.750000; 0.000000;, + 0.125000;-1.287628; 0.246450;, + 0.125000;-1.287628; 0.330204;, + 0.125000;-1.152395; 0.330204;, + 0.125000;-1.152395; 0.246450;, + 0.000000;-1.000000;-0.289304;, + 0.125000;-1.000000;-0.289304;, + 0.125000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.125000;-1.152395; 0.246450;, + 0.125000;-1.152395; 0.330204;, + 0.125000;-1.000000; 0.330204;, + 0.125000;-1.000000; 0.246450;, + 0.000000;-1.152395; 0.330204;, + 0.000000;-1.152395; 0.246450;, + 0.000000;-1.000000; 0.246450;, + 0.000000;-1.000000; 0.330204;, + 0.125000;-1.152395; 0.330204;, + 0.000000;-1.152395; 0.330204;, + 0.000000;-1.000000; 0.330204;, + 0.125000;-1.000000; 0.330204;, + 0.000000;-1.152395; 0.246450;, + 0.000000;-1.152395; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.246450;, + 0.000000;-1.287628; 0.330204;, + 0.125000;-1.287628; 0.330204;, + 0.125000;-1.287628; 0.246450;, + 0.000000;-1.287628; 0.246450;, + 0.000000;-1.534846; 0.246450;, + 0.000000;-1.534846; 0.000000;, + 0.000000;-1.287628; 0.000000;, + 0.000000;-1.287628; 0.246450;, + 0.125000;-1.287628; 0.520154;, + 0.125000;-1.152395; 0.520154;, + 0.125000;-1.152395; 0.330204;, + 0.125000;-1.287628; 0.330204;, + 0.000000;-1.287628; 0.330204;, + 0.000000;-1.287628; 0.246450;, + 0.000000;-1.152395; 0.246450;, + 0.000000;-1.152395; 0.330204;, + 0.000000;-1.287628; 0.246450;, + 0.000000;-1.287628; 0.000000;, + 0.000000;-1.152395; 0.000000;, + 0.000000;-1.152395; 0.246450;, + 0.125000;-1.287628; 0.000000;, + 0.125000;-1.287628; 0.246450;, + 0.125000;-1.152395; 0.246450;, + 0.125000;-1.152395; 0.000000;, + 0.000000;-1.152395; 0.627518;, + 0.000000;-1.287628; 0.627518;, + 0.000000;-1.287628; 0.520154;, + 0.000000;-1.152395; 0.520154;, + 0.125000;-1.152395; 0.520154;, + 0.000000;-1.152395; 0.520154;, + 0.000000;-1.152395; 0.330204;, + 0.125000;-1.152395; 0.330204;, + 0.000000;-1.287628; 0.520154;, + 0.125000;-1.287628; 0.520154;, + 0.125000;-1.287628; 0.330204;, + 0.000000;-1.287628; 0.330204;, + 0.000000;-1.152395; 0.520154;, + 0.000000;-1.287628; 0.520154;, + 0.000000;-1.287628; 0.330204;, + 0.000000;-1.152395; 0.330204;, + 0.125000;-1.287628; 0.627518;, + 0.000000;-1.287628; 0.627518;, + 0.000000;-1.152395; 0.627518;, + 0.125000;-1.152395; 0.627518;, + 0.125000;-0.831729; 0.627518;, + 0.125000;-0.831729; 0.520154;, + 0.125000;-1.152395; 0.520154;, + 0.125000;-1.152395; 0.627518;, + 0.000000;-1.287628; 0.627518;, + 0.125000;-1.287628; 0.627518;, + 0.125000;-1.287628; 0.520154;, + 0.000000;-1.287628; 0.520154;, + 0.125000;-1.287628; 0.627518;, + 0.125000;-1.152395; 0.627518;, + 0.125000;-1.152395; 0.520154;, + 0.125000;-1.287628; 0.520154;, + 0.000000;-1.152395;-0.289304;, + 0.125000;-1.152395;-0.289304;, + 0.125000;-1.000000;-0.289304;, + 0.000000;-1.000000;-0.289304;, + 0.000000;-1.287628;-0.289304;, + 0.125000;-1.287628;-0.289304;, + 0.125000;-1.152395;-0.289304;, + 0.000000;-1.152395;-0.289304;, + 0.125000;-1.000000;-0.289304;, + 0.125000;-1.152395;-0.289304;, + 0.125000;-1.152395; 0.000000;, + 0.125000;-1.000000; 0.000000;, + 0.125000;-1.534846;-0.289304;, + 0.125000;-1.534846; 0.000000;, + 0.125000;-1.287628; 0.000000;, + 0.125000;-1.287628;-0.289304;, + 0.125000;-1.152395;-0.289304;, + 0.125000;-1.287628;-0.289304;, + 0.125000;-1.287628; 0.000000;, + 0.125000;-1.152395; 0.000000;, + 0.000000;-1.152395;-0.289304;, + 0.000000;-1.000000;-0.289304;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.152395; 0.000000;, + 0.000000;-1.534846; 0.246450;, + 0.125000;-1.534846; 0.246450;, + 0.125000;-1.534846; 0.000000;, + 0.000000;-1.534846; 0.000000;, + 0.125000;-1.534846;-0.289304;, + 0.000000;-1.534846;-0.289304;, + 0.000000;-1.534846; 0.000000;, + 0.125000;-1.534846; 0.000000;, + 0.125000;-1.534846; 0.246450;, + 0.000000;-1.534846; 0.246450;, + 0.000000;-1.287628; 0.246450;, + 0.125000;-1.287628; 0.246450;, + 0.125000;-1.534846; 0.000000;, + 0.125000;-1.534846; 0.246450;, + 0.125000;-1.287628; 0.246450;, + 0.125000;-1.287628; 0.000000;, + 0.000000;-1.534846; 0.000000;, + 0.000000;-1.534846;-0.289304;, + 0.000000;-1.287628;-0.289304;, + 0.000000;-1.287628; 0.000000;, + 0.000000;-1.534846;-0.289304;, + 0.125000;-1.534846;-0.289304;, + 0.125000;-1.287628;-0.289304;, + 0.000000;-1.287628;-0.289304;, + 0.125000;-0.831729; 0.627518;, + 0.000000;-0.831729; 0.627518;, + 0.000000;-0.831729; 0.520154;, + 0.125000;-0.831729; 0.520154;, + 0.125000;-0.831729; 0.520154;, + 0.000000;-0.831729; 0.520154;, + 0.000000;-1.152395; 0.520154;, + 0.125000;-1.152395; 0.520154;, + 0.000000;-0.831729; 0.627518;, + 0.125000;-0.831729; 0.627518;, + 0.125000;-1.152395; 0.627518;, + 0.000000;-1.152395; 0.627518;, + 0.000000;-0.831729; 0.520154;, + 0.000000;-0.831729; 0.627518;, + 0.000000;-1.152395; 0.627518;, + 0.000000;-1.152395; 0.520154;; + 738; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;, + 4;408;409;410;411;, + 4;412;413;414;415;, + 4;416;417;418;419;, + 4;420;421;422;423;, + 4;424;425;426;427;, + 4;428;429;430;431;, + 4;432;433;434;435;, + 4;436;437;438;439;, + 4;440;441;442;443;, + 4;444;445;446;447;, + 4;448;449;450;451;, + 4;452;453;454;455;, + 4;456;457;458;459;, + 4;460;461;462;463;, + 4;464;465;466;467;, + 4;468;469;470;471;, + 4;472;473;474;475;, + 4;476;477;478;479;, + 4;480;481;482;483;, + 4;484;485;486;487;, + 4;488;489;490;491;, + 4;492;493;494;495;, + 4;496;497;498;499;, + 4;500;501;502;503;, + 4;504;505;506;507;, + 4;508;509;510;511;, + 4;512;513;514;515;, + 4;516;517;518;519;, + 4;520;521;522;523;, + 4;524;525;526;527;, + 4;528;529;530;531;, + 4;532;533;534;535;, + 4;536;537;538;539;, + 4;540;541;542;543;, + 4;544;545;546;547;, + 4;548;549;550;551;, + 4;552;553;554;555;, + 4;556;557;558;559;, + 4;560;561;562;563;, + 4;564;565;566;567;, + 4;568;569;570;571;, + 4;572;573;574;575;, + 4;576;577;578;579;, + 4;580;581;582;583;, + 4;584;585;586;587;, + 4;588;589;590;591;, + 4;592;593;594;595;, + 4;596;597;598;599;, + 4;600;601;602;603;, + 4;604;605;606;607;, + 4;608;609;610;611;, + 4;612;613;614;615;, + 4;616;617;618;619;, + 4;620;621;622;623;, + 4;624;625;626;627;, + 4;628;629;630;631;, + 4;632;633;634;635;, + 4;636;637;638;639;, + 4;640;641;642;643;, + 4;644;645;646;647;, + 4;648;649;650;651;, + 4;652;653;654;655;, + 4;656;657;658;659;, + 4;660;661;662;663;, + 4;664;665;666;667;, + 4;668;669;670;671;, + 4;672;673;674;675;, + 4;676;677;678;679;, + 4;680;681;682;683;, + 4;684;685;686;687;, + 4;688;689;690;691;, + 4;692;693;694;695;, + 4;696;697;698;699;, + 4;700;701;702;703;, + 4;704;705;706;707;, + 4;708;709;710;711;, + 4;712;713;714;715;, + 4;716;717;718;719;, + 4;720;721;722;723;, + 4;724;725;726;727;, + 4;728;729;730;731;, + 4;732;733;734;735;, + 4;736;737;738;739;, + 4;740;741;742;743;, + 4;744;745;746;747;, + 4;748;749;750;751;, + 4;752;753;754;755;, + 4;756;757;758;759;, + 4;760;761;762;763;, + 4;764;765;766;767;, + 4;768;769;770;771;, + 4;772;773;774;775;, + 4;776;777;778;779;, + 4;780;781;782;783;, + 4;784;785;786;787;, + 4;788;789;790;791;, + 4;792;793;794;795;, + 4;796;797;798;799;, + 4;800;801;802;803;, + 4;804;805;806;807;, + 4;808;809;810;811;, + 4;812;813;814;815;, + 4;816;817;818;819;, + 4;820;821;822;823;, + 4;824;825;826;827;, + 4;828;829;830;831;, + 4;832;833;834;835;, + 4;836;837;838;839;, + 4;840;841;842;843;, + 4;844;845;846;847;, + 4;848;849;850;851;, + 4;852;853;854;855;, + 4;856;857;858;859;, + 4;860;861;862;863;, + 4;864;865;866;867;, + 4;868;869;870;871;, + 4;872;873;874;875;, + 4;876;877;878;879;, + 4;880;881;882;883;, + 4;884;885;886;887;, + 4;888;889;890;891;, + 4;892;893;894;895;, + 4;896;897;898;899;, + 4;900;901;902;903;, + 4;904;905;906;907;, + 4;908;909;910;911;, + 4;912;913;914;915;, + 4;916;917;918;919;, + 4;920;921;922;923;, + 4;924;925;926;927;, + 4;928;929;930;931;, + 4;932;933;934;935;, + 4;936;937;938;939;, + 4;940;941;942;943;, + 4;944;945;946;947;, + 4;948;949;950;951;, + 4;952;953;954;955;, + 4;956;957;958;959;, + 4;960;961;962;963;, + 4;964;965;966;967;, + 4;968;969;970;971;, + 4;972;973;974;975;, + 4;976;977;978;979;, + 4;980;981;982;983;, + 4;984;985;986;987;, + 4;988;989;990;991;, + 4;992;993;994;995;, + 4;996;997;998;999;, + 4;1000;1001;1002;1003;, + 4;1004;1005;1006;1007;, + 4;1008;1009;1010;1011;, + 4;1012;1013;1014;1015;, + 4;1016;1017;1018;1019;, + 4;1020;1021;1022;1023;, + 4;1024;1025;1026;1027;, + 4;1028;1029;1030;1031;, + 4;1032;1033;1034;1035;, + 4;1036;1037;1038;1039;, + 4;1040;1041;1042;1043;, + 4;1044;1045;1046;1047;, + 4;1048;1049;1050;1051;, + 4;1052;1053;1054;1055;, + 4;1056;1057;1058;1059;, + 4;1060;1061;1062;1063;, + 4;1064;1065;1066;1067;, + 4;1068;1069;1070;1071;, + 4;1072;1073;1074;1075;, + 4;1076;1077;1078;1079;, + 4;1080;1081;1082;1083;, + 4;1084;1085;1086;1087;, + 4;1088;1089;1090;1091;, + 4;1092;1093;1094;1095;, + 4;1096;1097;1098;1099;, + 4;1100;1101;1102;1103;, + 4;1104;1105;1106;1107;, + 4;1108;1109;1110;1111;, + 4;1112;1113;1114;1115;, + 4;1116;1117;1118;1119;, + 4;1120;1121;1122;1123;, + 4;1124;1125;1126;1127;, + 4;1128;1129;1130;1131;, + 4;1132;1133;1134;1135;, + 4;1136;1137;1138;1139;, + 4;1140;1141;1142;1143;, + 4;1144;1145;1146;1147;, + 4;1148;1149;1150;1151;, + 4;1152;1153;1154;1155;, + 4;1156;1157;1158;1159;, + 4;1160;1161;1162;1163;, + 4;1164;1165;1166;1167;, + 4;1168;1169;1170;1171;, + 4;1172;1173;1174;1175;, + 4;1176;1177;1178;1179;, + 4;1180;1181;1182;1183;, + 4;1184;1185;1186;1187;, + 4;1188;1189;1190;1191;, + 4;1192;1193;1194;1195;, + 4;1196;1197;1198;1199;, + 4;1200;1201;1202;1203;, + 4;1204;1205;1206;1207;, + 4;1208;1209;1210;1211;, + 4;1212;1213;1214;1215;, + 4;1216;1217;1218;1219;, + 4;1220;1221;1222;1223;, + 4;1224;1225;1226;1227;, + 4;1228;1229;1230;1231;, + 4;1232;1233;1234;1235;, + 4;1236;1237;1238;1239;, + 4;1240;1241;1242;1243;, + 4;1244;1245;1246;1247;, + 4;1248;1249;1250;1251;, + 4;1252;1253;1254;1255;, + 4;1256;1257;1258;1259;, + 4;1260;1261;1262;1263;, + 4;1264;1265;1266;1267;, + 4;1268;1269;1270;1271;, + 4;1272;1273;1274;1275;, + 4;1276;1277;1278;1279;, + 4;1280;1281;1282;1283;, + 4;1284;1285;1286;1287;, + 4;1288;1289;1290;1291;, + 4;1292;1293;1294;1295;, + 4;1296;1297;1298;1299;, + 4;1300;1301;1302;1303;, + 4;1304;1305;1306;1307;, + 4;1308;1309;1310;1311;, + 4;1312;1313;1314;1315;, + 4;1316;1317;1318;1319;, + 4;1320;1321;1322;1323;, + 4;1324;1325;1326;1327;, + 4;1328;1329;1330;1331;, + 4;1332;1333;1334;1335;, + 4;1336;1337;1338;1339;, + 4;1340;1341;1342;1343;, + 4;1344;1345;1346;1347;, + 4;1348;1349;1350;1351;, + 4;1352;1353;1354;1355;, + 4;1356;1357;1358;1359;, + 4;1360;1361;1362;1363;, + 4;1364;1365;1366;1367;, + 4;1368;1369;1370;1371;, + 4;1372;1373;1374;1375;, + 4;1376;1377;1378;1379;, + 4;1380;1381;1382;1383;, + 4;1384;1385;1386;1387;, + 4;1388;1389;1390;1391;, + 4;1392;1393;1394;1395;, + 4;1396;1397;1398;1399;, + 4;1400;1401;1402;1403;, + 4;1404;1405;1406;1407;, + 4;1408;1409;1410;1411;, + 4;1412;1413;1414;1415;, + 4;1416;1417;1418;1419;, + 4;1420;1421;1422;1423;, + 4;1424;1425;1426;1427;, + 4;1428;1429;1430;1431;, + 4;1432;1433;1434;1435;, + 4;1436;1437;1438;1439;, + 4;1440;1441;1442;1443;, + 4;1444;1445;1446;1447;, + 4;1448;1449;1450;1451;, + 4;1452;1453;1454;1455;, + 4;1456;1457;1458;1459;, + 4;1460;1461;1462;1463;, + 4;1464;1465;1466;1467;, + 4;1468;1469;1470;1471;, + 4;1472;1473;1474;1475;, + 4;1476;1477;1478;1479;, + 4;1480;1481;1482;1483;, + 4;1484;1485;1486;1487;, + 4;1488;1489;1490;1491;, + 4;1492;1493;1494;1495;, + 4;1496;1497;1498;1499;, + 4;1500;1501;1502;1503;, + 4;1504;1505;1506;1507;, + 4;1508;1509;1510;1511;, + 4;1512;1513;1514;1515;, + 4;1516;1517;1518;1519;, + 4;1520;1521;1522;1523;, + 4;1524;1525;1526;1527;, + 4;1528;1529;1530;1531;, + 4;1532;1533;1534;1535;, + 4;1536;1537;1538;1539;, + 4;1540;1541;1542;1543;, + 4;1544;1545;1546;1547;, + 4;1548;1549;1550;1551;, + 4;1552;1553;1554;1555;, + 4;1556;1557;1558;1559;, + 4;1560;1561;1562;1563;, + 4;1564;1565;1566;1567;, + 4;1568;1569;1570;1571;, + 4;1572;1573;1574;1575;, + 4;1576;1577;1578;1579;, + 4;1580;1581;1582;1583;, + 4;1584;1585;1586;1587;, + 4;1588;1589;1590;1591;, + 4;1592;1593;1594;1595;, + 4;1596;1597;1598;1599;, + 4;1600;1601;1602;1603;, + 4;1604;1605;1606;1607;, + 4;1608;1609;1610;1611;, + 4;1612;1613;1614;1615;, + 4;1616;1617;1618;1619;, + 4;1620;1621;1622;1623;, + 4;1624;1625;1626;1627;, + 4;1628;1629;1630;1631;, + 4;1632;1633;1634;1635;, + 4;1636;1637;1638;1639;, + 4;1640;1641;1642;1643;, + 4;1644;1645;1646;1647;, + 4;1648;1649;1650;1651;, + 4;1652;1653;1654;1655;, + 4;1656;1657;1658;1659;, + 4;1660;1661;1662;1663;, + 4;1664;1665;1666;1667;, + 4;1668;1669;1670;1671;, + 4;1672;1673;1674;1675;, + 4;1676;1677;1678;1679;, + 4;1680;1681;1682;1683;, + 4;1684;1685;1686;1687;, + 4;1688;1689;1690;1691;, + 4;1692;1693;1694;1695;, + 4;1696;1697;1698;1699;, + 4;1700;1701;1702;1703;, + 4;1704;1705;1706;1707;, + 4;1708;1709;1710;1711;, + 4;1712;1713;1714;1715;, + 4;1716;1717;1718;1719;, + 4;1720;1721;1722;1723;, + 4;1724;1725;1726;1727;, + 4;1728;1729;1730;1731;, + 4;1732;1733;1734;1735;, + 4;1736;1737;1738;1739;, + 4;1740;1741;1742;1743;, + 4;1744;1745;1746;1747;, + 4;1748;1749;1750;1751;, + 4;1752;1753;1754;1755;, + 4;1756;1757;1758;1759;, + 4;1760;1761;1762;1763;, + 4;1764;1765;1766;1767;, + 4;1768;1769;1770;1771;, + 4;1772;1773;1774;1775;, + 4;1776;1777;1778;1779;, + 4;1780;1781;1782;1783;, + 4;1784;1785;1786;1787;, + 4;1788;1789;1790;1791;, + 4;1792;1793;1794;1795;, + 4;1796;1797;1798;1799;, + 4;1800;1801;1802;1803;, + 4;1804;1805;1806;1807;, + 4;1808;1809;1810;1811;, + 4;1812;1813;1814;1815;, + 4;1816;1817;1818;1819;, + 4;1820;1821;1822;1823;, + 4;1824;1825;1826;1827;, + 4;1828;1829;1830;1831;, + 4;1832;1833;1834;1835;, + 4;1836;1837;1838;1839;, + 4;1840;1841;1842;1843;, + 4;1844;1845;1846;1847;, + 4;1848;1849;1850;1851;, + 4;1852;1853;1854;1855;, + 4;1856;1857;1858;1859;, + 4;1860;1861;1862;1863;, + 4;1864;1865;1866;1867;, + 4;1868;1869;1870;1871;, + 4;1872;1873;1874;1875;, + 4;1876;1877;1878;1879;, + 4;1880;1881;1882;1883;, + 4;1884;1885;1886;1887;, + 4;1888;1889;1890;1891;, + 4;1892;1893;1894;1895;, + 4;1896;1897;1898;1899;, + 4;1900;1901;1902;1903;, + 4;1904;1905;1906;1907;, + 4;1908;1909;1910;1911;, + 4;1912;1913;1914;1915;, + 4;1916;1917;1918;1919;, + 4;1920;1921;1922;1923;, + 4;1924;1925;1926;1927;, + 4;1928;1929;1930;1931;, + 4;1932;1933;1934;1935;, + 4;1936;1937;1938;1939;, + 4;1940;1941;1942;1943;, + 4;1944;1945;1946;1947;, + 4;1948;1949;1950;1951;, + 4;1952;1953;1954;1955;, + 4;1956;1957;1958;1959;, + 4;1960;1961;1962;1963;, + 4;1964;1965;1966;1967;, + 4;1968;1969;1970;1971;, + 4;1972;1973;1974;1975;, + 4;1976;1977;1978;1979;, + 4;1980;1981;1982;1983;, + 4;1984;1985;1986;1987;, + 4;1988;1989;1990;1991;, + 4;1992;1993;1994;1995;, + 4;1996;1997;1998;1999;, + 4;2000;2001;2002;2003;, + 4;2004;2005;2006;2007;, + 4;2008;2009;2010;2011;, + 4;2012;2013;2014;2015;, + 4;2016;2017;2018;2019;, + 4;2020;2021;2022;2023;, + 4;2024;2025;2026;2027;, + 4;2028;2029;2030;2031;, + 4;2032;2033;2034;2035;, + 4;2036;2037;2038;2039;, + 4;2040;2041;2042;2043;, + 4;2044;2045;2046;2047;, + 4;2048;2049;2050;2051;, + 4;2052;2053;2054;2055;, + 4;2056;2057;2058;2059;, + 4;2060;2061;2062;2063;, + 4;2064;2065;2066;2067;, + 4;2068;2069;2070;2071;, + 4;2072;2073;2074;2075;, + 4;2076;2077;2078;2079;, + 4;2080;2081;2082;2083;, + 4;2084;2085;2086;2087;, + 4;2088;2089;2090;2091;, + 4;2092;2093;2094;2095;, + 4;2096;2097;2098;2099;, + 4;2100;2101;2102;2103;, + 4;2104;2105;2106;2107;, + 4;2108;2109;2110;2111;, + 4;2112;2113;2114;2115;, + 4;2116;2117;2118;2119;, + 4;2120;2121;2122;2123;, + 4;2124;2125;2126;2127;, + 4;2128;2129;2130;2131;, + 4;2132;2133;2134;2135;, + 4;2136;2137;2138;2139;, + 4;2140;2141;2142;2143;, + 4;2144;2145;2146;2147;, + 4;2148;2149;2150;2151;, + 4;2152;2153;2154;2155;, + 4;2156;2157;2158;2159;, + 4;2160;2161;2162;2163;, + 4;2164;2165;2166;2167;, + 4;2168;2169;2170;2171;, + 4;2172;2173;2174;2175;, + 4;2176;2177;2178;2179;, + 4;2180;2181;2182;2183;, + 4;2184;2185;2186;2187;, + 4;2188;2189;2190;2191;, + 4;2192;2193;2194;2195;, + 4;2196;2197;2198;2199;, + 4;2200;2201;2202;2203;, + 4;2204;2205;2206;2207;, + 4;2208;2209;2210;2211;, + 4;2212;2213;2214;2215;, + 4;2216;2217;2218;2219;, + 4;2220;2221;2222;2223;, + 4;2224;2225;2226;2227;, + 4;2228;2229;2230;2231;, + 4;2232;2233;2234;2235;, + 4;2236;2237;2238;2239;, + 4;2240;2241;2242;2243;, + 4;2244;2245;2246;2247;, + 4;2248;2249;2250;2251;, + 4;2252;2253;2254;2255;, + 4;2256;2257;2258;2259;, + 4;2260;2261;2262;2263;, + 4;2264;2265;2266;2267;, + 4;2268;2269;2270;2271;, + 4;2272;2273;2274;2275;, + 4;2276;2277;2278;2279;, + 4;2280;2281;2282;2283;, + 4;2284;2285;2286;2287;, + 4;2288;2289;2290;2291;, + 4;2292;2293;2294;2295;, + 4;2296;2297;2298;2299;, + 4;2300;2301;2302;2303;, + 4;2304;2305;2306;2307;, + 4;2308;2309;2310;2311;, + 4;2312;2313;2314;2315;, + 4;2316;2317;2318;2319;, + 4;2320;2321;2322;2323;, + 4;2324;2325;2326;2327;, + 4;2328;2329;2330;2331;, + 4;2332;2333;2334;2335;, + 4;2336;2337;2338;2339;, + 4;2340;2341;2342;2343;, + 4;2344;2345;2346;2347;, + 4;2348;2349;2350;2351;, + 4;2352;2353;2354;2355;, + 4;2356;2357;2358;2359;, + 4;2360;2361;2362;2363;, + 4;2364;2365;2366;2367;, + 4;2368;2369;2370;2371;, + 4;2372;2373;2374;2375;, + 4;2376;2377;2378;2379;, + 4;2380;2381;2382;2383;, + 4;2384;2385;2386;2387;, + 4;2388;2389;2390;2391;, + 4;2392;2393;2394;2395;, + 4;2396;2397;2398;2399;, + 4;2400;2401;2402;2403;, + 4;2404;2405;2406;2407;, + 4;2408;2409;2410;2411;, + 4;2412;2413;2414;2415;, + 4;2416;2417;2418;2419;, + 4;2420;2421;2422;2423;, + 4;2424;2425;2426;2427;, + 4;2428;2429;2430;2431;, + 4;2432;2433;2434;2435;, + 4;2436;2437;2438;2439;, + 4;2440;2441;2442;2443;, + 4;2444;2445;2446;2447;, + 4;2448;2449;2450;2451;, + 4;2452;2453;2454;2455;, + 4;2456;2457;2458;2459;, + 4;2460;2461;2462;2463;, + 4;2464;2465;2466;2467;, + 4;2468;2469;2470;2471;, + 4;2472;2473;2474;2475;, + 4;2476;2477;2478;2479;, + 4;2480;2481;2482;2483;, + 4;2484;2485;2486;2487;, + 4;2488;2489;2490;2491;, + 4;2492;2493;2494;2495;, + 4;2496;2497;2498;2499;, + 4;2500;2501;2502;2503;, + 4;2504;2505;2506;2507;, + 4;2508;2509;2510;2511;, + 4;2512;2513;2514;2515;, + 4;2516;2517;2518;2519;, + 4;2520;2521;2522;2523;, + 4;2524;2525;2526;2527;, + 4;2528;2529;2530;2531;, + 4;2532;2533;2534;2535;, + 4;2536;2537;2538;2539;, + 4;2540;2541;2542;2543;, + 4;2544;2545;2546;2547;, + 4;2548;2549;2550;2551;, + 4;2552;2553;2554;2555;, + 4;2556;2557;2558;2559;, + 4;2560;2561;2562;2563;, + 4;2564;2565;2566;2567;, + 4;2568;2569;2570;2571;, + 4;2572;2573;2574;2575;, + 4;2576;2577;2578;2579;, + 4;2580;2581;2582;2583;, + 4;2584;2585;2586;2587;, + 4;2588;2589;2590;2591;, + 4;2592;2593;2594;2595;, + 4;2596;2597;2598;2599;, + 4;2600;2601;2602;2603;, + 4;2604;2605;2606;2607;, + 4;2608;2609;2610;2611;, + 4;2612;2613;2614;2615;, + 4;2616;2617;2618;2619;, + 4;2620;2621;2622;2623;, + 4;2624;2625;2626;2627;, + 4;2628;2629;2630;2631;, + 4;2632;2633;2634;2635;, + 4;2636;2637;2638;2639;, + 4;2640;2641;2642;2643;, + 4;2644;2645;2646;2647;, + 4;2648;2649;2650;2651;, + 4;2652;2653;2654;2655;, + 4;2656;2657;2658;2659;, + 4;2660;2661;2662;2663;, + 4;2664;2665;2666;2667;, + 4;2668;2669;2670;2671;, + 4;2672;2673;2674;2675;, + 4;2676;2677;2678;2679;, + 4;2680;2681;2682;2683;, + 4;2684;2685;2686;2687;, + 4;2688;2689;2690;2691;, + 4;2692;2693;2694;2695;, + 4;2696;2697;2698;2699;, + 4;2700;2701;2702;2703;, + 4;2704;2705;2706;2707;, + 4;2708;2709;2710;2711;, + 4;2712;2713;2714;2715;, + 4;2716;2717;2718;2719;, + 4;2720;2721;2722;2723;, + 4;2724;2725;2726;2727;, + 4;2728;2729;2730;2731;, + 4;2732;2733;2734;2735;, + 4;2736;2737;2738;2739;, + 4;2740;2741;2742;2743;, + 4;2744;2745;2746;2747;, + 4;2748;2749;2750;2751;, + 4;2752;2753;2754;2755;, + 4;2756;2757;2758;2759;, + 4;2760;2761;2762;2763;, + 4;2764;2765;2766;2767;, + 4;2768;2769;2770;2771;, + 4;2772;2773;2774;2775;, + 4;2776;2777;2778;2779;, + 4;2780;2781;2782;2783;, + 4;2784;2785;2786;2787;, + 4;2788;2789;2790;2791;, + 4;2792;2793;2794;2795;, + 4;2796;2797;2798;2799;, + 4;2800;2801;2802;2803;, + 4;2804;2805;2806;2807;, + 4;2808;2809;2810;2811;, + 4;2812;2813;2814;2815;, + 4;2816;2817;2818;2819;, + 4;2820;2821;2822;2823;, + 4;2824;2825;2826;2827;, + 4;2828;2829;2830;2831;, + 4;2832;2833;2834;2835;, + 4;2836;2837;2838;2839;, + 4;2840;2841;2842;2843;, + 4;2844;2845;2846;2847;, + 4;2848;2849;2850;2851;, + 4;2852;2853;2854;2855;, + 4;2856;2857;2858;2859;, + 4;2860;2861;2862;2863;, + 4;2864;2865;2866;2867;, + 4;2868;2869;2870;2871;, + 4;2872;2873;2874;2875;, + 4;2876;2877;2878;2879;, + 4;2880;2881;2882;2883;, + 4;2884;2885;2886;2887;, + 4;2888;2889;2890;2891;, + 4;2892;2893;2894;2895;, + 4;2896;2897;2898;2899;, + 4;2900;2901;2902;2903;, + 4;2904;2905;2906;2907;, + 4;2908;2909;2910;2911;, + 4;2912;2913;2914;2915;, + 4;2916;2917;2918;2919;, + 4;2920;2921;2922;2923;, + 4;2924;2925;2926;2927;, + 4;2928;2929;2930;2931;, + 4;2932;2933;2934;2935;, + 4;2936;2937;2938;2939;, + 4;2940;2941;2942;2943;, + 4;2944;2945;2946;2947;, + 4;2948;2949;2950;2951;; + MeshNormals { //Plane_000 Normals + 2952; + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;; + 738; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;, + 4;408;409;410;411;, + 4;412;413;414;415;, + 4;416;417;418;419;, + 4;420;421;422;423;, + 4;424;425;426;427;, + 4;428;429;430;431;, + 4;432;433;434;435;, + 4;436;437;438;439;, + 4;440;441;442;443;, + 4;444;445;446;447;, + 4;448;449;450;451;, + 4;452;453;454;455;, + 4;456;457;458;459;, + 4;460;461;462;463;, + 4;464;465;466;467;, + 4;468;469;470;471;, + 4;472;473;474;475;, + 4;476;477;478;479;, + 4;480;481;482;483;, + 4;484;485;486;487;, + 4;488;489;490;491;, + 4;492;493;494;495;, + 4;496;497;498;499;, + 4;500;501;502;503;, + 4;504;505;506;507;, + 4;508;509;510;511;, + 4;512;513;514;515;, + 4;516;517;518;519;, + 4;520;521;522;523;, + 4;524;525;526;527;, + 4;528;529;530;531;, + 4;532;533;534;535;, + 4;536;537;538;539;, + 4;540;541;542;543;, + 4;544;545;546;547;, + 4;548;549;550;551;, + 4;552;553;554;555;, + 4;556;557;558;559;, + 4;560;561;562;563;, + 4;564;565;566;567;, + 4;568;569;570;571;, + 4;572;573;574;575;, + 4;576;577;578;579;, + 4;580;581;582;583;, + 4;584;585;586;587;, + 4;588;589;590;591;, + 4;592;593;594;595;, + 4;596;597;598;599;, + 4;600;601;602;603;, + 4;604;605;606;607;, + 4;608;609;610;611;, + 4;612;613;614;615;, + 4;616;617;618;619;, + 4;620;621;622;623;, + 4;624;625;626;627;, + 4;628;629;630;631;, + 4;632;633;634;635;, + 4;636;637;638;639;, + 4;640;641;642;643;, + 4;644;645;646;647;, + 4;648;649;650;651;, + 4;652;653;654;655;, + 4;656;657;658;659;, + 4;660;661;662;663;, + 4;664;665;666;667;, + 4;668;669;670;671;, + 4;672;673;674;675;, + 4;676;677;678;679;, + 4;680;681;682;683;, + 4;684;685;686;687;, + 4;688;689;690;691;, + 4;692;693;694;695;, + 4;696;697;698;699;, + 4;700;701;702;703;, + 4;704;705;706;707;, + 4;708;709;710;711;, + 4;712;713;714;715;, + 4;716;717;718;719;, + 4;720;721;722;723;, + 4;724;725;726;727;, + 4;728;729;730;731;, + 4;732;733;734;735;, + 4;736;737;738;739;, + 4;740;741;742;743;, + 4;744;745;746;747;, + 4;748;749;750;751;, + 4;752;753;754;755;, + 4;756;757;758;759;, + 4;760;761;762;763;, + 4;764;765;766;767;, + 4;768;769;770;771;, + 4;772;773;774;775;, + 4;776;777;778;779;, + 4;780;781;782;783;, + 4;784;785;786;787;, + 4;788;789;790;791;, + 4;792;793;794;795;, + 4;796;797;798;799;, + 4;800;801;802;803;, + 4;804;805;806;807;, + 4;808;809;810;811;, + 4;812;813;814;815;, + 4;816;817;818;819;, + 4;820;821;822;823;, + 4;824;825;826;827;, + 4;828;829;830;831;, + 4;832;833;834;835;, + 4;836;837;838;839;, + 4;840;841;842;843;, + 4;844;845;846;847;, + 4;848;849;850;851;, + 4;852;853;854;855;, + 4;856;857;858;859;, + 4;860;861;862;863;, + 4;864;865;866;867;, + 4;868;869;870;871;, + 4;872;873;874;875;, + 4;876;877;878;879;, + 4;880;881;882;883;, + 4;884;885;886;887;, + 4;888;889;890;891;, + 4;892;893;894;895;, + 4;896;897;898;899;, + 4;900;901;902;903;, + 4;904;905;906;907;, + 4;908;909;910;911;, + 4;912;913;914;915;, + 4;916;917;918;919;, + 4;920;921;922;923;, + 4;924;925;926;927;, + 4;928;929;930;931;, + 4;932;933;934;935;, + 4;936;937;938;939;, + 4;940;941;942;943;, + 4;944;945;946;947;, + 4;948;949;950;951;, + 4;952;953;954;955;, + 4;956;957;958;959;, + 4;960;961;962;963;, + 4;964;965;966;967;, + 4;968;969;970;971;, + 4;972;973;974;975;, + 4;976;977;978;979;, + 4;980;981;982;983;, + 4;984;985;986;987;, + 4;988;989;990;991;, + 4;992;993;994;995;, + 4;996;997;998;999;, + 4;1000;1001;1002;1003;, + 4;1004;1005;1006;1007;, + 4;1008;1009;1010;1011;, + 4;1012;1013;1014;1015;, + 4;1016;1017;1018;1019;, + 4;1020;1021;1022;1023;, + 4;1024;1025;1026;1027;, + 4;1028;1029;1030;1031;, + 4;1032;1033;1034;1035;, + 4;1036;1037;1038;1039;, + 4;1040;1041;1042;1043;, + 4;1044;1045;1046;1047;, + 4;1048;1049;1050;1051;, + 4;1052;1053;1054;1055;, + 4;1056;1057;1058;1059;, + 4;1060;1061;1062;1063;, + 4;1064;1065;1066;1067;, + 4;1068;1069;1070;1071;, + 4;1072;1073;1074;1075;, + 4;1076;1077;1078;1079;, + 4;1080;1081;1082;1083;, + 4;1084;1085;1086;1087;, + 4;1088;1089;1090;1091;, + 4;1092;1093;1094;1095;, + 4;1096;1097;1098;1099;, + 4;1100;1101;1102;1103;, + 4;1104;1105;1106;1107;, + 4;1108;1109;1110;1111;, + 4;1112;1113;1114;1115;, + 4;1116;1117;1118;1119;, + 4;1120;1121;1122;1123;, + 4;1124;1125;1126;1127;, + 4;1128;1129;1130;1131;, + 4;1132;1133;1134;1135;, + 4;1136;1137;1138;1139;, + 4;1140;1141;1142;1143;, + 4;1144;1145;1146;1147;, + 4;1148;1149;1150;1151;, + 4;1152;1153;1154;1155;, + 4;1156;1157;1158;1159;, + 4;1160;1161;1162;1163;, + 4;1164;1165;1166;1167;, + 4;1168;1169;1170;1171;, + 4;1172;1173;1174;1175;, + 4;1176;1177;1178;1179;, + 4;1180;1181;1182;1183;, + 4;1184;1185;1186;1187;, + 4;1188;1189;1190;1191;, + 4;1192;1193;1194;1195;, + 4;1196;1197;1198;1199;, + 4;1200;1201;1202;1203;, + 4;1204;1205;1206;1207;, + 4;1208;1209;1210;1211;, + 4;1212;1213;1214;1215;, + 4;1216;1217;1218;1219;, + 4;1220;1221;1222;1223;, + 4;1224;1225;1226;1227;, + 4;1228;1229;1230;1231;, + 4;1232;1233;1234;1235;, + 4;1236;1237;1238;1239;, + 4;1240;1241;1242;1243;, + 4;1244;1245;1246;1247;, + 4;1248;1249;1250;1251;, + 4;1252;1253;1254;1255;, + 4;1256;1257;1258;1259;, + 4;1260;1261;1262;1263;, + 4;1264;1265;1266;1267;, + 4;1268;1269;1270;1271;, + 4;1272;1273;1274;1275;, + 4;1276;1277;1278;1279;, + 4;1280;1281;1282;1283;, + 4;1284;1285;1286;1287;, + 4;1288;1289;1290;1291;, + 4;1292;1293;1294;1295;, + 4;1296;1297;1298;1299;, + 4;1300;1301;1302;1303;, + 4;1304;1305;1306;1307;, + 4;1308;1309;1310;1311;, + 4;1312;1313;1314;1315;, + 4;1316;1317;1318;1319;, + 4;1320;1321;1322;1323;, + 4;1324;1325;1326;1327;, + 4;1328;1329;1330;1331;, + 4;1332;1333;1334;1335;, + 4;1336;1337;1338;1339;, + 4;1340;1341;1342;1343;, + 4;1344;1345;1346;1347;, + 4;1348;1349;1350;1351;, + 4;1352;1353;1354;1355;, + 4;1356;1357;1358;1359;, + 4;1360;1361;1362;1363;, + 4;1364;1365;1366;1367;, + 4;1368;1369;1370;1371;, + 4;1372;1373;1374;1375;, + 4;1376;1377;1378;1379;, + 4;1380;1381;1382;1383;, + 4;1384;1385;1386;1387;, + 4;1388;1389;1390;1391;, + 4;1392;1393;1394;1395;, + 4;1396;1397;1398;1399;, + 4;1400;1401;1402;1403;, + 4;1404;1405;1406;1407;, + 4;1408;1409;1410;1411;, + 4;1412;1413;1414;1415;, + 4;1416;1417;1418;1419;, + 4;1420;1421;1422;1423;, + 4;1424;1425;1426;1427;, + 4;1428;1429;1430;1431;, + 4;1432;1433;1434;1435;, + 4;1436;1437;1438;1439;, + 4;1440;1441;1442;1443;, + 4;1444;1445;1446;1447;, + 4;1448;1449;1450;1451;, + 4;1452;1453;1454;1455;, + 4;1456;1457;1458;1459;, + 4;1460;1461;1462;1463;, + 4;1464;1465;1466;1467;, + 4;1468;1469;1470;1471;, + 4;1472;1473;1474;1475;, + 4;1476;1477;1478;1479;, + 4;1480;1481;1482;1483;, + 4;1484;1485;1486;1487;, + 4;1488;1489;1490;1491;, + 4;1492;1493;1494;1495;, + 4;1496;1497;1498;1499;, + 4;1500;1501;1502;1503;, + 4;1504;1505;1506;1507;, + 4;1508;1509;1510;1511;, + 4;1512;1513;1514;1515;, + 4;1516;1517;1518;1519;, + 4;1520;1521;1522;1523;, + 4;1524;1525;1526;1527;, + 4;1528;1529;1530;1531;, + 4;1532;1533;1534;1535;, + 4;1536;1537;1538;1539;, + 4;1540;1541;1542;1543;, + 4;1544;1545;1546;1547;, + 4;1548;1549;1550;1551;, + 4;1552;1553;1554;1555;, + 4;1556;1557;1558;1559;, + 4;1560;1561;1562;1563;, + 4;1564;1565;1566;1567;, + 4;1568;1569;1570;1571;, + 4;1572;1573;1574;1575;, + 4;1576;1577;1578;1579;, + 4;1580;1581;1582;1583;, + 4;1584;1585;1586;1587;, + 4;1588;1589;1590;1591;, + 4;1592;1593;1594;1595;, + 4;1596;1597;1598;1599;, + 4;1600;1601;1602;1603;, + 4;1604;1605;1606;1607;, + 4;1608;1609;1610;1611;, + 4;1612;1613;1614;1615;, + 4;1616;1617;1618;1619;, + 4;1620;1621;1622;1623;, + 4;1624;1625;1626;1627;, + 4;1628;1629;1630;1631;, + 4;1632;1633;1634;1635;, + 4;1636;1637;1638;1639;, + 4;1640;1641;1642;1643;, + 4;1644;1645;1646;1647;, + 4;1648;1649;1650;1651;, + 4;1652;1653;1654;1655;, + 4;1656;1657;1658;1659;, + 4;1660;1661;1662;1663;, + 4;1664;1665;1666;1667;, + 4;1668;1669;1670;1671;, + 4;1672;1673;1674;1675;, + 4;1676;1677;1678;1679;, + 4;1680;1681;1682;1683;, + 4;1684;1685;1686;1687;, + 4;1688;1689;1690;1691;, + 4;1692;1693;1694;1695;, + 4;1696;1697;1698;1699;, + 4;1700;1701;1702;1703;, + 4;1704;1705;1706;1707;, + 4;1708;1709;1710;1711;, + 4;1712;1713;1714;1715;, + 4;1716;1717;1718;1719;, + 4;1720;1721;1722;1723;, + 4;1724;1725;1726;1727;, + 4;1728;1729;1730;1731;, + 4;1732;1733;1734;1735;, + 4;1736;1737;1738;1739;, + 4;1740;1741;1742;1743;, + 4;1744;1745;1746;1747;, + 4;1748;1749;1750;1751;, + 4;1752;1753;1754;1755;, + 4;1756;1757;1758;1759;, + 4;1760;1761;1762;1763;, + 4;1764;1765;1766;1767;, + 4;1768;1769;1770;1771;, + 4;1772;1773;1774;1775;, + 4;1776;1777;1778;1779;, + 4;1780;1781;1782;1783;, + 4;1784;1785;1786;1787;, + 4;1788;1789;1790;1791;, + 4;1792;1793;1794;1795;, + 4;1796;1797;1798;1799;, + 4;1800;1801;1802;1803;, + 4;1804;1805;1806;1807;, + 4;1808;1809;1810;1811;, + 4;1812;1813;1814;1815;, + 4;1816;1817;1818;1819;, + 4;1820;1821;1822;1823;, + 4;1824;1825;1826;1827;, + 4;1828;1829;1830;1831;, + 4;1832;1833;1834;1835;, + 4;1836;1837;1838;1839;, + 4;1840;1841;1842;1843;, + 4;1844;1845;1846;1847;, + 4;1848;1849;1850;1851;, + 4;1852;1853;1854;1855;, + 4;1856;1857;1858;1859;, + 4;1860;1861;1862;1863;, + 4;1864;1865;1866;1867;, + 4;1868;1869;1870;1871;, + 4;1872;1873;1874;1875;, + 4;1876;1877;1878;1879;, + 4;1880;1881;1882;1883;, + 4;1884;1885;1886;1887;, + 4;1888;1889;1890;1891;, + 4;1892;1893;1894;1895;, + 4;1896;1897;1898;1899;, + 4;1900;1901;1902;1903;, + 4;1904;1905;1906;1907;, + 4;1908;1909;1910;1911;, + 4;1912;1913;1914;1915;, + 4;1916;1917;1918;1919;, + 4;1920;1921;1922;1923;, + 4;1924;1925;1926;1927;, + 4;1928;1929;1930;1931;, + 4;1932;1933;1934;1935;, + 4;1936;1937;1938;1939;, + 4;1940;1941;1942;1943;, + 4;1944;1945;1946;1947;, + 4;1948;1949;1950;1951;, + 4;1952;1953;1954;1955;, + 4;1956;1957;1958;1959;, + 4;1960;1961;1962;1963;, + 4;1964;1965;1966;1967;, + 4;1968;1969;1970;1971;, + 4;1972;1973;1974;1975;, + 4;1976;1977;1978;1979;, + 4;1980;1981;1982;1983;, + 4;1984;1985;1986;1987;, + 4;1988;1989;1990;1991;, + 4;1992;1993;1994;1995;, + 4;1996;1997;1998;1999;, + 4;2000;2001;2002;2003;, + 4;2004;2005;2006;2007;, + 4;2008;2009;2010;2011;, + 4;2012;2013;2014;2015;, + 4;2016;2017;2018;2019;, + 4;2020;2021;2022;2023;, + 4;2024;2025;2026;2027;, + 4;2028;2029;2030;2031;, + 4;2032;2033;2034;2035;, + 4;2036;2037;2038;2039;, + 4;2040;2041;2042;2043;, + 4;2044;2045;2046;2047;, + 4;2048;2049;2050;2051;, + 4;2052;2053;2054;2055;, + 4;2056;2057;2058;2059;, + 4;2060;2061;2062;2063;, + 4;2064;2065;2066;2067;, + 4;2068;2069;2070;2071;, + 4;2072;2073;2074;2075;, + 4;2076;2077;2078;2079;, + 4;2080;2081;2082;2083;, + 4;2084;2085;2086;2087;, + 4;2088;2089;2090;2091;, + 4;2092;2093;2094;2095;, + 4;2096;2097;2098;2099;, + 4;2100;2101;2102;2103;, + 4;2104;2105;2106;2107;, + 4;2108;2109;2110;2111;, + 4;2112;2113;2114;2115;, + 4;2116;2117;2118;2119;, + 4;2120;2121;2122;2123;, + 4;2124;2125;2126;2127;, + 4;2128;2129;2130;2131;, + 4;2132;2133;2134;2135;, + 4;2136;2137;2138;2139;, + 4;2140;2141;2142;2143;, + 4;2144;2145;2146;2147;, + 4;2148;2149;2150;2151;, + 4;2152;2153;2154;2155;, + 4;2156;2157;2158;2159;, + 4;2160;2161;2162;2163;, + 4;2164;2165;2166;2167;, + 4;2168;2169;2170;2171;, + 4;2172;2173;2174;2175;, + 4;2176;2177;2178;2179;, + 4;2180;2181;2182;2183;, + 4;2184;2185;2186;2187;, + 4;2188;2189;2190;2191;, + 4;2192;2193;2194;2195;, + 4;2196;2197;2198;2199;, + 4;2200;2201;2202;2203;, + 4;2204;2205;2206;2207;, + 4;2208;2209;2210;2211;, + 4;2212;2213;2214;2215;, + 4;2216;2217;2218;2219;, + 4;2220;2221;2222;2223;, + 4;2224;2225;2226;2227;, + 4;2228;2229;2230;2231;, + 4;2232;2233;2234;2235;, + 4;2236;2237;2238;2239;, + 4;2240;2241;2242;2243;, + 4;2244;2245;2246;2247;, + 4;2248;2249;2250;2251;, + 4;2252;2253;2254;2255;, + 4;2256;2257;2258;2259;, + 4;2260;2261;2262;2263;, + 4;2264;2265;2266;2267;, + 4;2268;2269;2270;2271;, + 4;2272;2273;2274;2275;, + 4;2276;2277;2278;2279;, + 4;2280;2281;2282;2283;, + 4;2284;2285;2286;2287;, + 4;2288;2289;2290;2291;, + 4;2292;2293;2294;2295;, + 4;2296;2297;2298;2299;, + 4;2300;2301;2302;2303;, + 4;2304;2305;2306;2307;, + 4;2308;2309;2310;2311;, + 4;2312;2313;2314;2315;, + 4;2316;2317;2318;2319;, + 4;2320;2321;2322;2323;, + 4;2324;2325;2326;2327;, + 4;2328;2329;2330;2331;, + 4;2332;2333;2334;2335;, + 4;2336;2337;2338;2339;, + 4;2340;2341;2342;2343;, + 4;2344;2345;2346;2347;, + 4;2348;2349;2350;2351;, + 4;2352;2353;2354;2355;, + 4;2356;2357;2358;2359;, + 4;2360;2361;2362;2363;, + 4;2364;2365;2366;2367;, + 4;2368;2369;2370;2371;, + 4;2372;2373;2374;2375;, + 4;2376;2377;2378;2379;, + 4;2380;2381;2382;2383;, + 4;2384;2385;2386;2387;, + 4;2388;2389;2390;2391;, + 4;2392;2393;2394;2395;, + 4;2396;2397;2398;2399;, + 4;2400;2401;2402;2403;, + 4;2404;2405;2406;2407;, + 4;2408;2409;2410;2411;, + 4;2412;2413;2414;2415;, + 4;2416;2417;2418;2419;, + 4;2420;2421;2422;2423;, + 4;2424;2425;2426;2427;, + 4;2428;2429;2430;2431;, + 4;2432;2433;2434;2435;, + 4;2436;2437;2438;2439;, + 4;2440;2441;2442;2443;, + 4;2444;2445;2446;2447;, + 4;2448;2449;2450;2451;, + 4;2452;2453;2454;2455;, + 4;2456;2457;2458;2459;, + 4;2460;2461;2462;2463;, + 4;2464;2465;2466;2467;, + 4;2468;2469;2470;2471;, + 4;2472;2473;2474;2475;, + 4;2476;2477;2478;2479;, + 4;2480;2481;2482;2483;, + 4;2484;2485;2486;2487;, + 4;2488;2489;2490;2491;, + 4;2492;2493;2494;2495;, + 4;2496;2497;2498;2499;, + 4;2500;2501;2502;2503;, + 4;2504;2505;2506;2507;, + 4;2508;2509;2510;2511;, + 4;2512;2513;2514;2515;, + 4;2516;2517;2518;2519;, + 4;2520;2521;2522;2523;, + 4;2524;2525;2526;2527;, + 4;2528;2529;2530;2531;, + 4;2532;2533;2534;2535;, + 4;2536;2537;2538;2539;, + 4;2540;2541;2542;2543;, + 4;2544;2545;2546;2547;, + 4;2548;2549;2550;2551;, + 4;2552;2553;2554;2555;, + 4;2556;2557;2558;2559;, + 4;2560;2561;2562;2563;, + 4;2564;2565;2566;2567;, + 4;2568;2569;2570;2571;, + 4;2572;2573;2574;2575;, + 4;2576;2577;2578;2579;, + 4;2580;2581;2582;2583;, + 4;2584;2585;2586;2587;, + 4;2588;2589;2590;2591;, + 4;2592;2593;2594;2595;, + 4;2596;2597;2598;2599;, + 4;2600;2601;2602;2603;, + 4;2604;2605;2606;2607;, + 4;2608;2609;2610;2611;, + 4;2612;2613;2614;2615;, + 4;2616;2617;2618;2619;, + 4;2620;2621;2622;2623;, + 4;2624;2625;2626;2627;, + 4;2628;2629;2630;2631;, + 4;2632;2633;2634;2635;, + 4;2636;2637;2638;2639;, + 4;2640;2641;2642;2643;, + 4;2644;2645;2646;2647;, + 4;2648;2649;2650;2651;, + 4;2652;2653;2654;2655;, + 4;2656;2657;2658;2659;, + 4;2660;2661;2662;2663;, + 4;2664;2665;2666;2667;, + 4;2668;2669;2670;2671;, + 4;2672;2673;2674;2675;, + 4;2676;2677;2678;2679;, + 4;2680;2681;2682;2683;, + 4;2684;2685;2686;2687;, + 4;2688;2689;2690;2691;, + 4;2692;2693;2694;2695;, + 4;2696;2697;2698;2699;, + 4;2700;2701;2702;2703;, + 4;2704;2705;2706;2707;, + 4;2708;2709;2710;2711;, + 4;2712;2713;2714;2715;, + 4;2716;2717;2718;2719;, + 4;2720;2721;2722;2723;, + 4;2724;2725;2726;2727;, + 4;2728;2729;2730;2731;, + 4;2732;2733;2734;2735;, + 4;2736;2737;2738;2739;, + 4;2740;2741;2742;2743;, + 4;2744;2745;2746;2747;, + 4;2748;2749;2750;2751;, + 4;2752;2753;2754;2755;, + 4;2756;2757;2758;2759;, + 4;2760;2761;2762;2763;, + 4;2764;2765;2766;2767;, + 4;2768;2769;2770;2771;, + 4;2772;2773;2774;2775;, + 4;2776;2777;2778;2779;, + 4;2780;2781;2782;2783;, + 4;2784;2785;2786;2787;, + 4;2788;2789;2790;2791;, + 4;2792;2793;2794;2795;, + 4;2796;2797;2798;2799;, + 4;2800;2801;2802;2803;, + 4;2804;2805;2806;2807;, + 4;2808;2809;2810;2811;, + 4;2812;2813;2814;2815;, + 4;2816;2817;2818;2819;, + 4;2820;2821;2822;2823;, + 4;2824;2825;2826;2827;, + 4;2828;2829;2830;2831;, + 4;2832;2833;2834;2835;, + 4;2836;2837;2838;2839;, + 4;2840;2841;2842;2843;, + 4;2844;2845;2846;2847;, + 4;2848;2849;2850;2851;, + 4;2852;2853;2854;2855;, + 4;2856;2857;2858;2859;, + 4;2860;2861;2862;2863;, + 4;2864;2865;2866;2867;, + 4;2868;2869;2870;2871;, + 4;2872;2873;2874;2875;, + 4;2876;2877;2878;2879;, + 4;2880;2881;2882;2883;, + 4;2884;2885;2886;2887;, + 4;2888;2889;2890;2891;, + 4;2892;2893;2894;2895;, + 4;2896;2897;2898;2899;, + 4;2900;2901;2902;2903;, + 4;2904;2905;2906;2907;, + 4;2908;2909;2910;2911;, + 4;2912;2913;2914;2915;, + 4;2916;2917;2918;2919;, + 4;2920;2921;2922;2923;, + 4;2924;2925;2926;2927;, + 4;2928;2929;2930;2931;, + 4;2932;2933;2934;2935;, + 4;2936;2937;2938;2939;, + 4;2940;2941;2942;2943;, + 4;2944;2945;2946;2947;, + 4;2948;2949;2950;2951;; + } //End of Plane_000 Normals + MeshMaterialList { //Plane_000 Material List + 1; + 738; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"boat.png";} + } + } //End of Plane_000 Material List + MeshTextureCoords { //Plane_000 UV Coordinates + 2952; + 0.116022; 0.052830;, + 0.087066; 0.052833;, + 0.087063; 0.025689;, + 0.116019; 0.025685;, + 0.029160; 0.479941;, + 0.058118; 0.479941;, + 0.058118; 0.507087;, + 0.029160; 0.507087;, + 0.087076; 0.222947;, + 0.058119; 0.222948;, + 0.058119; 0.195803;, + 0.087075; 0.195803;, + 0.144991; 0.393067;, + 0.116033; 0.393067;, + 0.116034; 0.365922;, + 0.144991; 0.365922;, + 0.405609; 0.393072;, + 0.376652; 0.393070;, + 0.376653; 0.365924;, + 0.405611; 0.365926;, + 0.405620; 0.139684;, + 0.434582; 0.139684;, + 0.434582; 0.166834;, + 0.405621; 0.166834;, + 0.662141; 0.896163;, + 0.691099; 0.896163;, + 0.691099; 0.923309;, + 0.662141; 0.923309;, + 0.289781; 0.309818;, + 0.318739; 0.309818;, + 0.318739; 0.336965;, + 0.289780; 0.336964;, + 0.749016; 0.896163;, + 0.777974; 0.896163;, + 0.777974; 0.923309;, + 0.749016; 0.923309;, + 0.173944; 0.139696;, + 0.202902; 0.139694;, + 0.202903; 0.166840;, + 0.173946; 0.166842;, + 0.231853; 0.052816;, + 0.202894; 0.052820;, + 0.202891; 0.025674;, + 0.231849; 0.025670;, + 0.202907; 0.393067;, + 0.173949; 0.393067;, + 0.173949; 0.365921;, + 0.202907; 0.365921;, + 0.318738; 0.139687;, + 0.347698; 0.139686;, + 0.347699; 0.166834;, + 0.318739; 0.166835;, + 0.289772; 0.052810;, + 0.260812; 0.052813;, + 0.260808; 0.025666;, + 0.289768; 0.025662;, + 0.579760; 0.536037;, + 0.550803; 0.536034;, + 0.550805; 0.508889;, + 0.579762; 0.508891;, + 0.202907; 0.479940;, + 0.231864; 0.479940;, + 0.231865; 0.507085;, + 0.202907; 0.507085;, + 0.087073; 0.139701;, + 0.116029; 0.139700;, + 0.116031; 0.166845;, + 0.087074; 0.166846;, + 0.463541; 0.222946;, + 0.434580; 0.222944;, + 0.434581; 0.195795;, + 0.463543; 0.195797;, + 0.434571; 0.336970;, + 0.463530; 0.336973;, + 0.463527; 0.365931;, + 0.434569; 0.365928;, + 0.405613; 0.336968;, + 0.434571; 0.336970;, + 0.434569; 0.365928;, + 0.405611; 0.365926;, + 0.347692; 0.479940;, + 0.376649; 0.479941;, + 0.376648; 0.507085;, + 0.347691; 0.507085;, + 0.202907; 0.336964;, + 0.231865; 0.336964;, + 0.231864; 0.365922;, + 0.202907; 0.365921;, + 0.173949; 0.336964;, + 0.202907; 0.336964;, + 0.202907; 0.365921;, + 0.173949; 0.365921;, + 0.144991; 0.309818;, + 0.173949; 0.309818;, + 0.173949; 0.336964;, + 0.144991; 0.336964;, + 0.434582; 0.166834;, + 0.463544; 0.166834;, + 0.463543; 0.195797;, + 0.434581; 0.195795;, + 0.405621; 0.166834;, + 0.434582; 0.166834;, + 0.434581; 0.195795;, + 0.405620; 0.195795;, + 0.144990; 0.222946;, + 0.116033; 0.222947;, + 0.116032; 0.195802;, + 0.144989; 0.195800;, + 0.318739; 0.166835;, + 0.347699; 0.166834;, + 0.347700; 0.195794;, + 0.318740; 0.195795;, + 0.289780; 0.166836;, + 0.318739; 0.166835;, + 0.318740; 0.195795;, + 0.289780; 0.195795;, + 0.231865; 0.309818;, + 0.260823; 0.309818;, + 0.260822; 0.336964;, + 0.231865; 0.336964;, + 0.434560; 0.507088;, + 0.463516; 0.507089;, + 0.463514; 0.536045;, + 0.434558; 0.536044;, + 0.405604; 0.507086;, + 0.434560; 0.507088;, + 0.434558; 0.536044;, + 0.405603; 0.536042;, + 0.058118; 0.393067;, + 0.029160; 0.393067;, + 0.029160; 0.365921;, + 0.058118; 0.365921;, + 0.318735; 0.507084;, + 0.347691; 0.507085;, + 0.347691; 0.536041;, + 0.318735; 0.536041;, + 0.289778; 0.507084;, + 0.318735; 0.507084;, + 0.318735; 0.536041;, + 0.289779; 0.536041;, + 0.376654; 0.052801;, + 0.347693; 0.052804;, + 0.347690; 0.025655;, + 0.376652; 0.025652;, + 0.318739; 0.336965;, + 0.347697; 0.336965;, + 0.347696; 0.365923;, + 0.318738; 0.365923;, + 0.289780; 0.336964;, + 0.318739; 0.336965;, + 0.318738; 0.365923;, + 0.289780; 0.365922;, + 0.806932; 0.896163;, + 0.835890; 0.896163;, + 0.835890; 0.923309;, + 0.806932; 0.923309;, + 0.202907; 0.507085;, + 0.231865; 0.507085;, + 0.231865; 0.536042;, + 0.202908; 0.536043;, + 0.173950; 0.507086;, + 0.202907; 0.507085;, + 0.202908; 0.536043;, + 0.173950; 0.536044;, + 0.260819; 0.139691;, + 0.289778; 0.139689;, + 0.289780; 0.166836;, + 0.260820; 0.166837;, + 0.087076; 0.507087;, + 0.116034; 0.507086;, + 0.116034; 0.536044;, + 0.087076; 0.536045;, + 0.058118; 0.507087;, + 0.087076; 0.507087;, + 0.087076; 0.536045;, + 0.058118; 0.536045;, + 0.782471; 0.536045;, + 0.753512; 0.536045;, + 0.753512; 0.508898;, + 0.782471; 0.508898;, + 0.087076; 0.336964;, + 0.116034; 0.336964;, + 0.116034; 0.365922;, + 0.087076; 0.365921;, + 0.058118; 0.336964;, + 0.087076; 0.336964;, + 0.087076; 0.365921;, + 0.058118; 0.365921;, + 0.116029; 0.139700;, + 0.144987; 0.139698;, + 0.144988; 0.166843;, + 0.116031; 0.166845;, + 0.202903; 0.166840;, + 0.231862; 0.166839;, + 0.231863; 0.195797;, + 0.202905; 0.195798;, + 0.173946; 0.166842;, + 0.202903; 0.166840;, + 0.202905; 0.195798;, + 0.173947; 0.195799;, + 0.260822; 0.479939;, + 0.289779; 0.479939;, + 0.289778; 0.507084;, + 0.260822; 0.507084;, + 0.087074; 0.166846;, + 0.116031; 0.166845;, + 0.116032; 0.195802;, + 0.087075; 0.195803;, + 0.058118; 0.166847;, + 0.087074; 0.166846;, + 0.087075; 0.195803;, + 0.058119; 0.195803;, + 0.116033; 0.222947;, + 0.087076; 0.222947;, + 0.087075; 0.195803;, + 0.116032; 0.195802;, + 0.144992; 0.479940;, + 0.173949; 0.479940;, + 0.173950; 0.507086;, + 0.144992; 0.507086;, + 0.202906; 0.222944;, + 0.173948; 0.222945;, + 0.173947; 0.195799;, + 0.202905; 0.195798;, + 0.376652; 0.393070;, + 0.347695; 0.393069;, + 0.347696; 0.365923;, + 0.376653; 0.365924;, + 0.434578; 0.052797;, + 0.405616; 0.052799;, + 0.405614; 0.025649;, + 0.434577; 0.025647;, + 0.029162; 0.309818;, + 0.058119; 0.309818;, + 0.058118; 0.336964;, + 0.029161; 0.336963;, + 0.173949; 0.309818;, + 0.202907; 0.309818;, + 0.202907; 0.336964;, + 0.173949; 0.336964;, + 0.289779; 0.479939;, + 0.318735; 0.479940;, + 0.318735; 0.507084;, + 0.289778; 0.507084;, + 0.289780; 0.393068;, + 0.260822; 0.393067;, + 0.260822; 0.365922;, + 0.289780; 0.365922;, + 0.058119; 0.309818;, + 0.087076; 0.309818;, + 0.087076; 0.336964;, + 0.058118; 0.336964;, + 0.231864; 0.393067;, + 0.202907; 0.393067;, + 0.202907; 0.365921;, + 0.231864; 0.365922;, + 0.434567; 0.393073;, + 0.405609; 0.393072;, + 0.405611; 0.365926;, + 0.434569; 0.365928;, + 0.434582; 0.139684;, + 0.463545; 0.139683;, + 0.463544; 0.166834;, + 0.434582; 0.166834;, + 0.376655; 0.336967;, + 0.405613; 0.336968;, + 0.405611; 0.365926;, + 0.376653; 0.365924;, + 0.347697; 0.336965;, + 0.376655; 0.336967;, + 0.376653; 0.365924;, + 0.347696; 0.365923;, + 0.260812; 0.052813;, + 0.231853; 0.052816;, + 0.231849; 0.025670;, + 0.260808; 0.025666;, + 0.289781; 0.222942;, + 0.260822; 0.222943;, + 0.260822; 0.195796;, + 0.289780; 0.195795;, + 0.550803; 0.536034;, + 0.521845; 0.536032;, + 0.521847; 0.508886;, + 0.550805; 0.508889;, + 0.318739; 0.309818;, + 0.347698; 0.309819;, + 0.347697; 0.336965;, + 0.318739; 0.336965;, + 0.637676; 0.536041;, + 0.608718; 0.536039;, + 0.608720; 0.508893;, + 0.637678; 0.508895;, + 0.202902; 0.139694;, + 0.231860; 0.139692;, + 0.231862; 0.166839;, + 0.202903; 0.166840;, + 0.318732; 0.052806;, + 0.289772; 0.052810;, + 0.289768; 0.025662;, + 0.318729; 0.025658;, + 0.144991; 0.336964;, + 0.173949; 0.336964;, + 0.173949; 0.365921;, + 0.144991; 0.365922;, + 0.116034; 0.336964;, + 0.144991; 0.336964;, + 0.144991; 0.365922;, + 0.116034; 0.365922;, + 0.864848; 0.896163;, + 0.893806; 0.896163;, + 0.893806; 0.923309;, + 0.864848; 0.923309;, + 0.029160; 0.393067;, + 0.000202; 0.393067;, + 0.000202; 0.365920;, + 0.029160; 0.365921;, + 0.777974; 0.896163;, + 0.806932; 0.896163;, + 0.806932; 0.923309;, + 0.777974; 0.923309;, + 0.058110; 0.052835;, + 0.029155; 0.052838;, + 0.029152; 0.025694;, + 0.058107; 0.025692;, + 0.376649; 0.479941;, + 0.405605; 0.479942;, + 0.405604; 0.507086;, + 0.376648; 0.507085;, + 0.000205; 0.139706;, + 0.029161; 0.139705;, + 0.029162; 0.166848;, + 0.000206; 0.166849;, + 0.231864; 0.222943;, + 0.202906; 0.222944;, + 0.202905; 0.195798;, + 0.231863; 0.195797;, + 0.260823; 0.309818;, + 0.289781; 0.309818;, + 0.289780; 0.336964;, + 0.260822; 0.336964;, + 0.087076; 0.393067;, + 0.058118; 0.393067;, + 0.058118; 0.365921;, + 0.087076; 0.365921;, + 0.463541; 0.052795;, + 0.434578; 0.052797;, + 0.434577; 0.025647;, + 0.463539; 0.025645;, + 0.695593; 0.536044;, + 0.666635; 0.536043;, + 0.666636; 0.508897;, + 0.695594; 0.508898;, + 0.405615; 0.309822;, + 0.434574; 0.309824;, + 0.434571; 0.336970;, + 0.405613; 0.336968;, + 0.173936; 0.052823;, + 0.144979; 0.052827;, + 0.144976; 0.025682;, + 0.173933; 0.025678;, + 0.376660; 0.166834;, + 0.405621; 0.166834;, + 0.405620; 0.195795;, + 0.376660; 0.195794;, + 0.347699; 0.166834;, + 0.376660; 0.166834;, + 0.376660; 0.195794;, + 0.347700; 0.195794;, + 0.633183; 0.896163;, + 0.662141; 0.896163;, + 0.662141; 0.923309;, + 0.633183; 0.923309;, + 0.144987; 0.139698;, + 0.173944; 0.139696;, + 0.173946; 0.166842;, + 0.144988; 0.166843;, + 0.405605; 0.479942;, + 0.434561; 0.479944;, + 0.434560; 0.507088;, + 0.405604; 0.507086;, + 0.260822; 0.393067;, + 0.231864; 0.393067;, + 0.231864; 0.365922;, + 0.260822; 0.365922;, + 0.058118; 0.479941;, + 0.087076; 0.479941;, + 0.087076; 0.507087;, + 0.058118; 0.507087;, + 0.463524; 0.393076;, + 0.434567; 0.393073;, + 0.434569; 0.365928;, + 0.463527; 0.365931;, + 0.202907; 0.309818;, + 0.231865; 0.309818;, + 0.231865; 0.336964;, + 0.202907; 0.336964;, + 0.260820; 0.166837;, + 0.289780; 0.166836;, + 0.289780; 0.195795;, + 0.260822; 0.195796;, + 0.231862; 0.166839;, + 0.260820; 0.166837;, + 0.260822; 0.195796;, + 0.231863; 0.195797;, + 0.260822; 0.222943;, + 0.231864; 0.222943;, + 0.231863; 0.195797;, + 0.260822; 0.195796;, + 0.405620; 0.222943;, + 0.376659; 0.222942;, + 0.376660; 0.195794;, + 0.405620; 0.195795;, + 0.347698; 0.309819;, + 0.376656; 0.309820;, + 0.376655; 0.336967;, + 0.347697; 0.336965;, + 0.318735; 0.479940;, + 0.347692; 0.479940;, + 0.347691; 0.507085;, + 0.318735; 0.507084;, + 0.318737; 0.393068;, + 0.289780; 0.393068;, + 0.289780; 0.365922;, + 0.318738; 0.365923;, + 0.087076; 0.309818;, + 0.116034; 0.309818;, + 0.116034; 0.336964;, + 0.087076; 0.336964;, + 0.347698; 0.139686;, + 0.376659; 0.139685;, + 0.376660; 0.166834;, + 0.347699; 0.166834;, + 0.376648; 0.507085;, + 0.405604; 0.507086;, + 0.405603; 0.536042;, + 0.376647; 0.536041;, + 0.347691; 0.507085;, + 0.376648; 0.507085;, + 0.376647; 0.536041;, + 0.347691; 0.536041;, + 0.347693; 0.052804;, + 0.318732; 0.052806;, + 0.318729; 0.025658;, + 0.347690; 0.025655;, + 0.260822; 0.507084;, + 0.289778; 0.507084;, + 0.289779; 0.536041;, + 0.260822; 0.536041;, + 0.231865; 0.507085;, + 0.260822; 0.507084;, + 0.260822; 0.536041;, + 0.231865; 0.536042;, + 0.318740; 0.222942;, + 0.289781; 0.222942;, + 0.289780; 0.195795;, + 0.318740; 0.195795;, + 0.922764; 0.896163;, + 0.951722; 0.896163;, + 0.951722; 0.923309;, + 0.922764; 0.923309;, + 0.029155; 0.052838;, + 0.000199; 0.052841;, + 0.000197; 0.025697;, + 0.029152; 0.025694;, + 0.000202; 0.479941;, + 0.029160; 0.479941;, + 0.029160; 0.507087;, + 0.000202; 0.507087;, + 0.058119; 0.222948;, + 0.029163; 0.222948;, + 0.029163; 0.195804;, + 0.058119; 0.195803;, + 0.753512; 0.536045;, + 0.724553; 0.536045;, + 0.724553; 0.508898;, + 0.753512; 0.508898;, + 0.116033; 0.393067;, + 0.087076; 0.393067;, + 0.087076; 0.365921;, + 0.116034; 0.365922;, + 0.260822; 0.336964;, + 0.289780; 0.336964;, + 0.289780; 0.365922;, + 0.260822; 0.365922;, + 0.231865; 0.336964;, + 0.260822; 0.336964;, + 0.260822; 0.365922;, + 0.231864; 0.365922;, + 0.666635; 0.536043;, + 0.637676; 0.536041;, + 0.637678; 0.508895;, + 0.666636; 0.508897;, + 0.144992; 0.507086;, + 0.173950; 0.507086;, + 0.173950; 0.536044;, + 0.144992; 0.536044;, + 0.116034; 0.507086;, + 0.144992; 0.507086;, + 0.144992; 0.536044;, + 0.116034; 0.536044;, + 0.087066; 0.052833;, + 0.058110; 0.052835;, + 0.058107; 0.025692;, + 0.087063; 0.025689;, + 0.029160; 0.507087;, + 0.058118; 0.507087;, + 0.058118; 0.536045;, + 0.029160; 0.536045;, + 0.000202; 0.507087;, + 0.029160; 0.507087;, + 0.029160; 0.536045;, + 0.000202; 0.536045;, + 0.144979; 0.052827;, + 0.116022; 0.052830;, + 0.116019; 0.025685;, + 0.144976; 0.025682;, + 0.173949; 0.393067;, + 0.144991; 0.393067;, + 0.144991; 0.365922;, + 0.173949; 0.365921;, + 0.289778; 0.139689;, + 0.318738; 0.139687;, + 0.318739; 0.166835;, + 0.289780; 0.166836;, + 0.691099; 0.896163;, + 0.720057; 0.896163;, + 0.720058; 0.923309;, + 0.691099; 0.923309;, + 0.029161; 0.139705;, + 0.058116; 0.139703;, + 0.058118; 0.166847;, + 0.029162; 0.166848;, + 0.173949; 0.479940;, + 0.202907; 0.479940;, + 0.202907; 0.507085;, + 0.173950; 0.507086;, + 0.058116; 0.139703;, + 0.087073; 0.139701;, + 0.087074; 0.166846;, + 0.058118; 0.166847;, + 0.029161; 0.336963;, + 0.058118; 0.336964;, + 0.058118; 0.365921;, + 0.029160; 0.365921;, + 0.000203; 0.336962;, + 0.029161; 0.336963;, + 0.029160; 0.365921;, + 0.000202; 0.365920;, + 0.434574; 0.309824;, + 0.463533; 0.309827;, + 0.463530; 0.336973;, + 0.434571; 0.336970;, + 0.376659; 0.222942;, + 0.347700; 0.222942;, + 0.347700; 0.195794;, + 0.376660; 0.195794;, + 0.202894; 0.052820;, + 0.173936; 0.052823;, + 0.173933; 0.025678;, + 0.202891; 0.025674;, + 0.521845; 0.536032;, + 0.492888; 0.536029;, + 0.492890; 0.508884;, + 0.521847; 0.508886;, + 0.434561; 0.479944;, + 0.463517; 0.479945;, + 0.463516; 0.507089;, + 0.434560; 0.507088;, + 0.347695; 0.393069;, + 0.318737; 0.393068;, + 0.318738; 0.365923;, + 0.347696; 0.365923;, + 0.116034; 0.309818;, + 0.144991; 0.309818;, + 0.144991; 0.336964;, + 0.116034; 0.336964;, + 0.144988; 0.166843;, + 0.173946; 0.166842;, + 0.173947; 0.195799;, + 0.144989; 0.195800;, + 0.116031; 0.166845;, + 0.144988; 0.166843;, + 0.144989; 0.195800;, + 0.116032; 0.195802;, + 0.087076; 0.479941;, + 0.116034; 0.479941;, + 0.116034; 0.507086;, + 0.087076; 0.507087;, + 0.347700; 0.222942;, + 0.318740; 0.222942;, + 0.318740; 0.195795;, + 0.347700; 0.195794;, + 0.231860; 0.139692;, + 0.260819; 0.139691;, + 0.260820; 0.166837;, + 0.231862; 0.166839;, + 0.434580; 0.222944;, + 0.405620; 0.222943;, + 0.405620; 0.195795;, + 0.434581; 0.195795;, + 0.893806; 0.896163;, + 0.922764; 0.896163;, + 0.922764; 0.923309;, + 0.893806; 0.923309;, + 0.376656; 0.309820;, + 0.405615; 0.309822;, + 0.405613; 0.336968;, + 0.376655; 0.336967;, + 0.231864; 0.479940;, + 0.260822; 0.479939;, + 0.260822; 0.507084;, + 0.231865; 0.507085;, + 0.029162; 0.166848;, + 0.058118; 0.166847;, + 0.058119; 0.195803;, + 0.029163; 0.195804;, + 0.000206; 0.166849;, + 0.029162; 0.166848;, + 0.029163; 0.195804;, + 0.000207; 0.195804;, + 0.029163; 0.222948;, + 0.000207; 0.222948;, + 0.000207; 0.195804;, + 0.029163; 0.195804;, + 0.116034; 0.479941;, + 0.144992; 0.479940;, + 0.144992; 0.507086;, + 0.116034; 0.507086;, + 0.173948; 0.222945;, + 0.144990; 0.222946;, + 0.144989; 0.195800;, + 0.173947; 0.195799;, + 0.376659; 0.139685;, + 0.405620; 0.139684;, + 0.405621; 0.166834;, + 0.376660; 0.166834;, + 0.405616; 0.052799;, + 0.376654; 0.052801;, + 0.376652; 0.025652;, + 0.405614; 0.025649;, + 0.000205; 0.309817;, + 0.029162; 0.309818;, + 0.029161; 0.336963;, + 0.000203; 0.336962;, + 0.811430; 0.536045;, + 0.782471; 0.536045;, + 0.782471; 0.508898;, + 0.811430; 0.508898;, + 0.260812; 0.052813;, + 0.289772; 0.052810;, + 0.289774; 0.081770;, + 0.260815; 0.081772;, + 0.318732; 0.052806;, + 0.347693; 0.052804;, + 0.347695; 0.081765;, + 0.318734; 0.081767;, + 0.260817; 0.110731;, + 0.289777; 0.110729;, + 0.289778; 0.139689;, + 0.260819; 0.139691;, + 0.260822; 0.222943;, + 0.289781; 0.222942;, + 0.289781; 0.251901;, + 0.260823; 0.251901;, + 0.318740; 0.222942;, + 0.347700; 0.222942;, + 0.347699; 0.251901;, + 0.318740; 0.251901;, + 0.376658; 0.110724;, + 0.405619; 0.110723;, + 0.405620; 0.139684;, + 0.376659; 0.139685;, + 0.376659; 0.222942;, + 0.405620; 0.222943;, + 0.405618; 0.251903;, + 0.376659; 0.251902;, + 0.434580; 0.222944;, + 0.463541; 0.222946;, + 0.463539; 0.251907;, + 0.434578; 0.251905;, + 0.144979; 0.052827;, + 0.173936; 0.052823;, + 0.173939; 0.081781;, + 0.144982; 0.081784;, + 0.202894; 0.052820;, + 0.231853; 0.052816;, + 0.231856; 0.081775;, + 0.202897; 0.081778;, + 0.144991; 0.280861;, + 0.173949; 0.280860;, + 0.173949; 0.309818;, + 0.144991; 0.309818;, + 0.144991; 0.393067;, + 0.173949; 0.393067;, + 0.173949; 0.422025;, + 0.144991; 0.422025;, + 0.202907; 0.393067;, + 0.231864; 0.393067;, + 0.231864; 0.422025;, + 0.202907; 0.422025;, + 0.376657; 0.280861;, + 0.405617; 0.280863;, + 0.405615; 0.309822;, + 0.376656; 0.309820;, + 0.376652; 0.393070;, + 0.405609; 0.393072;, + 0.405608; 0.422029;, + 0.376651; 0.422027;, + 0.434567; 0.393073;, + 0.463524; 0.393076;, + 0.463521; 0.422033;, + 0.434565; 0.422031;, + 0.376654; 0.052801;, + 0.405616; 0.052799;, + 0.405618; 0.081761;, + 0.376656; 0.081763;, + 0.434578; 0.052797;, + 0.463541; 0.052795;, + 0.463543; 0.081758;, + 0.434580; 0.081759;, + 0.087071; 0.110745;, + 0.116028; 0.110743;, + 0.116029; 0.139700;, + 0.087073; 0.139701;, + 0.202900; 0.110736;, + 0.231858; 0.110734;, + 0.231860; 0.139692;, + 0.202902; 0.139694;, + 0.087076; 0.280861;, + 0.116034; 0.280861;, + 0.116034; 0.309818;, + 0.087076; 0.309818;, + 0.087076; 0.450983;, + 0.116034; 0.450983;, + 0.116034; 0.479941;, + 0.087076; 0.479941;, + 0.202907; 0.450982;, + 0.231864; 0.450982;, + 0.231864; 0.479940;, + 0.202907; 0.479940;, + 0.318740; 0.280860;, + 0.347698; 0.280860;, + 0.347698; 0.309819;, + 0.318739; 0.309818;, + 0.318736; 0.450983;, + 0.347693; 0.450983;, + 0.347692; 0.479940;, + 0.318735; 0.479940;, + 0.434563; 0.450987;, + 0.463519; 0.450989;, + 0.463517; 0.479945;, + 0.434561; 0.479944;, + 0.318737; 0.110727;, + 0.347697; 0.110726;, + 0.347698; 0.139686;, + 0.318738; 0.139687;, + 0.434581; 0.110722;, + 0.463544; 0.110721;, + 0.463545; 0.139683;, + 0.434582; 0.139684;, + 0.202907; 0.280860;, + 0.231865; 0.280860;, + 0.231865; 0.309818;, + 0.202907; 0.309818;, + 0.434576; 0.280865;, + 0.463536; 0.280867;, + 0.463533; 0.309827;, + 0.434574; 0.309824;, + 0.256841; 0.710209;, + 0.256842; 0.739169;, + 0.237438; 0.739169;, + 0.237437; 0.710210;, + 0.411474; 0.883958;, + 0.411472; 0.912914;, + 0.392071; 0.912913;, + 0.392072; 0.883957;, + 0.102228; 0.941881;, + 0.102232; 0.970836;, + 0.082831; 0.970838;, + 0.082827; 0.941883;, + 0.343726; 0.594367;, + 0.343729; 0.565405;, + 0.363135; 0.565407;, + 0.363131; 0.594369;, + 0.343718; 0.739168;, + 0.343719; 0.710209;, + 0.363123; 0.710210;, + 0.363122; 0.739169;, + 0.498346; 0.855009;, + 0.498349; 0.826052;, + 0.517751; 0.826054;, + 0.517748; 0.855011;, + 0.411480; 0.797088;, + 0.411478; 0.826045;, + 0.392076; 0.826044;, + 0.392077; 0.797087;, + 0.343724; 0.623329;, + 0.343726; 0.594367;, + 0.363131; 0.594369;, + 0.363129; 0.623330;, + 0.411483; 0.739172;, + 0.411481; 0.768130;, + 0.392079; 0.768129;, + 0.392080; 0.739171;, + 0.411469; 0.941870;, + 0.411467; 0.970825;, + 0.392066; 0.970823;, + 0.392068; 0.941868;, + 0.189099; 0.999779;, + 0.189096; 0.970825;, + 0.208496; 0.970823;, + 0.208499; 0.999777;, + 0.102204; 0.768143;, + 0.102209; 0.797100;, + 0.082806; 0.797103;, + 0.082802; 0.768146;, + 0.256844; 0.797085;, + 0.256845; 0.826043;, + 0.237443; 0.826044;, + 0.237441; 0.797086;, + 0.521853; 0.432392;, + 0.550811; 0.432394;, + 0.550809; 0.451796;, + 0.521852; 0.451794;, + 0.343715; 0.883955;, + 0.343716; 0.854999;, + 0.363117; 0.854999;, + 0.363116; 0.883956;, + 0.608726; 0.432398;, + 0.637683; 0.432400;, + 0.637682; 0.451803;, + 0.608724; 0.451801;, + 0.189078; 0.768132;, + 0.189076; 0.739173;, + 0.208479; 0.739171;, + 0.208481; 0.768130;, + 0.102213; 0.826057;, + 0.102217; 0.855013;, + 0.082815; 0.855016;, + 0.082811; 0.826060;, + 0.392064; 0.999777;, + 0.363110; 0.999774;, + 0.363112; 0.970821;, + 0.392066; 0.970823;, + 0.392066; 0.970823;, + 0.363112; 0.970821;, + 0.363114; 0.941867;, + 0.392068; 0.941868;, + 0.893806; 0.999806;, + 0.864848; 0.999805;, + 0.864848; 0.980403;, + 0.893806; 0.980403;, + 0.392079; 0.768129;, + 0.363121; 0.768127;, + 0.363122; 0.739169;, + 0.392080; 0.739171;, + 0.392080; 0.739171;, + 0.363122; 0.739169;, + 0.363123; 0.710210;, + 0.392082; 0.710212;, + 0.411507; 0.536454;, + 0.411501; 0.565415;, + 0.392097; 0.565411;, + 0.392102; 0.536450;, + 0.237452; 0.999775;, + 0.208499; 0.999777;, + 0.208496; 0.970823;, + 0.237450; 0.970821;, + 0.237450; 0.970821;, + 0.208496; 0.970823;, + 0.208494; 0.941869;, + 0.237449; 0.941867;, + 0.806932; 0.999805;, + 0.777974; 0.999805;, + 0.777974; 0.980403;, + 0.806932; 0.980403;, + 0.237446; 0.883957;, + 0.208490; 0.883958;, + 0.208488; 0.855002;, + 0.237444; 0.855000;, + 0.237444; 0.855000;, + 0.208488; 0.855002;, + 0.208486; 0.826045;, + 0.237443; 0.826044;, + 0.102162; 0.565421;, + 0.102170; 0.594384;, + 0.082764; 0.594389;, + 0.082755; 0.565427;, + 0.546688; 0.999799;, + 0.517731; 0.999795;, + 0.517735; 0.970838;, + 0.546692; 0.970842;, + 0.546692; 0.970842;, + 0.517735; 0.970838;, + 0.517739; 0.941881;, + 0.546696; 0.941885;, + 0.498337; 0.941879;, + 0.498340; 0.912923;, + 0.517742; 0.912925;, + 0.517739; 0.941881;, + 0.546702; 0.883971;, + 0.517745; 0.883968;, + 0.517748; 0.855011;, + 0.546705; 0.855014;, + 0.546705; 0.855014;, + 0.517748; 0.855011;, + 0.517751; 0.826054;, + 0.546709; 0.826057;, + 0.189056; 0.565403;, + 0.189053; 0.536436;, + 0.208462; 0.536434;, + 0.208464; 0.565401;, + 0.392072; 0.883957;, + 0.363116; 0.883956;, + 0.363117; 0.854999;, + 0.392074; 0.855001;, + 0.392074; 0.855001;, + 0.363117; 0.854999;, + 0.363118; 0.826043;, + 0.392076; 0.826044;, + 0.256842; 0.739169;, + 0.256843; 0.768127;, + 0.237440; 0.768128;, + 0.237438; 0.739169;, + 0.546715; 0.768142;, + 0.517757; 0.768139;, + 0.517760; 0.739182;, + 0.546718; 0.739185;, + 0.546718; 0.739185;, + 0.517760; 0.739182;, + 0.517763; 0.710224;, + 0.546721; 0.710227;, + 0.343716; 0.826042;, + 0.343717; 0.797085;, + 0.363120; 0.797085;, + 0.363118; 0.826043;, + 0.546728; 0.652311;, + 0.517770; 0.652307;, + 0.517774; 0.623349;, + 0.546732; 0.623353;, + 0.546732; 0.623353;, + 0.517774; 0.623349;, + 0.517778; 0.594391;, + 0.546736; 0.594395;, + 0.411497; 0.594375;, + 0.411493; 0.623335;, + 0.392089; 0.623333;, + 0.392093; 0.594372;, + 0.392086; 0.652293;, + 0.363126; 0.652291;, + 0.363129; 0.623330;, + 0.392089; 0.623333;, + 0.392089; 0.623333;, + 0.363129; 0.623330;, + 0.363131; 0.594369;, + 0.392093; 0.594372;, + 0.102232; 0.970836;, + 0.102236; 0.999791;, + 0.082835; 0.999793;, + 0.082831; 0.970838;, + 0.237440; 0.768128;, + 0.208481; 0.768130;, + 0.208479; 0.739171;, + 0.237438; 0.739169;, + 0.237438; 0.739169;, + 0.208479; 0.739171;, + 0.208477; 0.710212;, + 0.237437; 0.710210;, + 0.666637; 0.432400;, + 0.695596; 0.432400;, + 0.695595; 0.451803;, + 0.666637; 0.451803;, + 0.237433; 0.652289;, + 0.208472; 0.652291;, + 0.208469; 0.623329;, + 0.237432; 0.623327;, + 0.237432; 0.623327;, + 0.208469; 0.623329;, + 0.208467; 0.594365;, + 0.237431; 0.594364;, + 0.343712; 0.970820;, + 0.343713; 0.941866;, + 0.363114; 0.941867;, + 0.363112; 0.970821;, + 0.102189; 0.681267;, + 0.102194; 0.710226;, + 0.082791; 0.710230;, + 0.082785; 0.681271;, + 0.662142; 0.999806;, + 0.633183; 0.999806;, + 0.633183; 0.980403;, + 0.662141; 0.980403;, + 0.189073; 0.710214;, + 0.189070; 0.681254;, + 0.208474; 0.681252;, + 0.208477; 0.710212;, + 0.498333; 0.970835;, + 0.498337; 0.941879;, + 0.517739; 0.941881;, + 0.517735; 0.970838;, + 0.411481; 0.768130;, + 0.411480; 0.797088;, + 0.392077; 0.797087;, + 0.392079; 0.768129;, + 0.498371; 0.623347;, + 0.498375; 0.594388;, + 0.517778; 0.594391;, + 0.517774; 0.623349;, + 0.411467; 0.970825;, + 0.411463; 0.999779;, + 0.392064; 0.999777;, + 0.392066; 0.970823;, + 0.343718; 0.768127;, + 0.343718; 0.739168;, + 0.363122; 0.739169;, + 0.363121; 0.768127;, + 0.256843; 0.768127;, + 0.256844; 0.797085;, + 0.237441; 0.797086;, + 0.237440; 0.768128;, + 0.256848; 0.912911;, + 0.256849; 0.941866;, + 0.237449; 0.941867;, + 0.237447; 0.912912;, + 0.343714; 0.912911;, + 0.343715; 0.883955;, + 0.363116; 0.883956;, + 0.363115; 0.912911;, + 0.498343; 0.883966;, + 0.498346; 0.855009;, + 0.517748; 0.855011;, + 0.517745; 0.883968;, + 0.392068; 0.941868;, + 0.363114; 0.941867;, + 0.363115; 0.912911;, + 0.392071; 0.912913;, + 0.392071; 0.912913;, + 0.363115; 0.912911;, + 0.363116; 0.883956;, + 0.392072; 0.883957;, + 0.411478; 0.826045;, + 0.411476; 0.855002;, + 0.392074; 0.855001;, + 0.392076; 0.826044;, + 0.343722; 0.652290;, + 0.343724; 0.623329;, + 0.363129; 0.623330;, + 0.363126; 0.652291;, + 0.189091; 0.912916;, + 0.189088; 0.883960;, + 0.208490; 0.883958;, + 0.208492; 0.912914;, + 0.102217; 0.855013;, + 0.102221; 0.883969;, + 0.082819; 0.883972;, + 0.082815; 0.855016;, + 0.256845; 0.826043;, + 0.256846; 0.854999;, + 0.237444; 0.855000;, + 0.237443; 0.826044;, + 0.951722; 0.999806;, + 0.922764; 0.999806;, + 0.922764; 0.980403;, + 0.951722; 0.980403;, + 0.102153; 0.536456;, + 0.102162; 0.565421;, + 0.082755; 0.565427;, + 0.082745; 0.536463;, + 0.392082; 0.710212;, + 0.363123; 0.710210;, + 0.363124; 0.681251;, + 0.392084; 0.681253;, + 0.392084; 0.681253;, + 0.363124; 0.681251;, + 0.363126; 0.652291;, + 0.392086; 0.652293;, + 0.498379; 0.565430;, + 0.498384; 0.536472;, + 0.517787; 0.536475;, + 0.517782; 0.565433;, + 0.256837; 0.565399;, + 0.256837; 0.594363;, + 0.237431; 0.594364;, + 0.237430; 0.565399;, + 0.724554; 0.432400;, + 0.753512; 0.432400;, + 0.753512; 0.451803;, + 0.724554; 0.451803;, + 0.411493; 0.623335;, + 0.411490; 0.652295;, + 0.392086; 0.652293;, + 0.392089; 0.623333;, + 0.744377; 0.250556;, + 0.744378; 0.193462;, + 0.779683; 0.193462;, + 0.779682; 0.250557;, + 0.102170; 0.594384;, + 0.102177; 0.623346;, + 0.082772; 0.623351;, + 0.082764; 0.594389;, + 0.102183; 0.652307;, + 0.102189; 0.681267;, + 0.082785; 0.681271;, + 0.082779; 0.652311;, + 0.411488; 0.681254;, + 0.411485; 0.710213;, + 0.392082; 0.710212;, + 0.392084; 0.681253;, + 0.189086; 0.855004;, + 0.189083; 0.826047;, + 0.208486; 0.826045;, + 0.208488; 0.855002;, + 0.720058; 0.999806;, + 0.691100; 0.999806;, + 0.691100; 0.980403;, + 0.720058; 0.980403;, + 0.189060; 0.594367;, + 0.189056; 0.565403;, + 0.208464; 0.565401;, + 0.208467; 0.594365;, + 0.498358; 0.739180;, + 0.498361; 0.710222;, + 0.517763; 0.710224;, + 0.517760; 0.739182;, + 0.189063; 0.623331;, + 0.189060; 0.594367;, + 0.208467; 0.594365;, + 0.208469; 0.623329;, + 0.237449; 0.941867;, + 0.208494; 0.941869;, + 0.208492; 0.912914;, + 0.237447; 0.912912;, + 0.237447; 0.912912;, + 0.208492; 0.912914;, + 0.208490; 0.883958;, + 0.237446; 0.883957;, + 0.343711; 0.999774;, + 0.343712; 0.970820;, + 0.363112; 0.970821;, + 0.363110; 0.999774;, + 0.256847; 0.883956;, + 0.256848; 0.912911;, + 0.237447; 0.912912;, + 0.237446; 0.883957;, + 0.102194; 0.710226;, + 0.102200; 0.739185;, + 0.082797; 0.739188;, + 0.082791; 0.710230;, + 0.492896; 0.432390;, + 0.521853; 0.432392;, + 0.521852; 0.451794;, + 0.492895; 0.451792;, + 0.498329; 0.999792;, + 0.498333; 0.970835;, + 0.517735; 0.970838;, + 0.517731; 0.999795;, + 0.411476; 0.855002;, + 0.411474; 0.883958;, + 0.392072; 0.883957;, + 0.392074; 0.855001;, + 0.343720; 0.681250;, + 0.343722; 0.652290;, + 0.363126; 0.652291;, + 0.363124; 0.681251;, + 0.237443; 0.826044;, + 0.208486; 0.826045;, + 0.208483; 0.797088;, + 0.237441; 0.797086;, + 0.237441; 0.797086;, + 0.208483; 0.797088;, + 0.208481; 0.768130;, + 0.237440; 0.768128;, + 0.498367; 0.652305;, + 0.498371; 0.623347;, + 0.517774; 0.623349;, + 0.517770; 0.652307;, + 0.256846; 0.854999;, + 0.256847; 0.883956;, + 0.237446; 0.883957;, + 0.237444; 0.855000;, + 0.189081; 0.797090;, + 0.189078; 0.768132;, + 0.208481; 0.768130;, + 0.208483; 0.797088;, + 0.256849; 0.941866;, + 0.256850; 0.970820;, + 0.237450; 0.970821;, + 0.237449; 0.941867;, + 0.922764; 0.999806;, + 0.893806; 0.999806;, + 0.893806; 0.980403;, + 0.922764; 0.980403;, + 0.343713; 0.941866;, + 0.343714; 0.912911;, + 0.363115; 0.912911;, + 0.363114; 0.941867;, + 0.498352; 0.797095;, + 0.498355; 0.768137;, + 0.517757; 0.768139;, + 0.517754; 0.797097;, + 0.546696; 0.941885;, + 0.517739; 0.941881;, + 0.517742; 0.912925;, + 0.546699; 0.912928;, + 0.546699; 0.912928;, + 0.517742; 0.912925;, + 0.517745; 0.883968;, + 0.546702; 0.883971;, + 0.256838; 0.536433;, + 0.256837; 0.565399;, + 0.237430; 0.565399;, + 0.237429; 0.536433;, + 0.546709; 0.826057;, + 0.517751; 0.826054;, + 0.517754; 0.797097;, + 0.546712; 0.797100;, + 0.546712; 0.797100;, + 0.517754; 0.797097;, + 0.517757; 0.768139;, + 0.546715; 0.768142;, + 0.498364; 0.681263;, + 0.498367; 0.652305;, + 0.517770; 0.652307;, + 0.517767; 0.681266;, + 0.256839; 0.681249;, + 0.256841; 0.710209;, + 0.237437; 0.710210;, + 0.237435; 0.681250;, + 0.189093; 0.941871;, + 0.189091; 0.912916;, + 0.208492; 0.912914;, + 0.208494; 0.941869;, + 0.102224; 0.912925;, + 0.102228; 0.941881;, + 0.082827; 0.941883;, + 0.082823; 0.912928;, + 0.343729; 0.565405;, + 0.343733; 0.536441;, + 0.363139; 0.536445;, + 0.363135; 0.565407;, + 0.782471; 0.432400;, + 0.811429; 0.432400;, + 0.811429; 0.451803;, + 0.782471; 0.451803;, + 0.102177; 0.623346;, + 0.102183; 0.652307;, + 0.082779; 0.652311;, + 0.082772; 0.623351;, + 0.392076; 0.826044;, + 0.363118; 0.826043;, + 0.363120; 0.797085;, + 0.392077; 0.797087;, + 0.392077; 0.797087;, + 0.363120; 0.797085;, + 0.363121; 0.768127;, + 0.392079; 0.768129;, + 0.498375; 0.594388;, + 0.498379; 0.565430;, + 0.517782; 0.565433;, + 0.517778; 0.594391;, + 0.546721; 0.710227;, + 0.517763; 0.710224;, + 0.517767; 0.681266;, + 0.546725; 0.681269;, + 0.546725; 0.681269;, + 0.517767; 0.681266;, + 0.517770; 0.652307;, + 0.546728; 0.652311;, + 0.256837; 0.594363;, + 0.256838; 0.623326;, + 0.237432; 0.623327;, + 0.237431; 0.594364;, + 0.546736; 0.594395;, + 0.517778; 0.594391;, + 0.517782; 0.565433;, + 0.546740; 0.565437;, + 0.546740; 0.565437;, + 0.517782; 0.565433;, + 0.517787; 0.536475;, + 0.546744; 0.536479;, + 0.411490; 0.652295;, + 0.411488; 0.681254;, + 0.392084; 0.681253;, + 0.392086; 0.652293;, + 0.411472; 0.912914;, + 0.411469; 0.941870;, + 0.392068; 0.941868;, + 0.392071; 0.912913;, + 0.189096; 0.970825;, + 0.189093; 0.941871;, + 0.208494; 0.941869;, + 0.208496; 0.970823;, + 0.691100; 0.999806;, + 0.662142; 0.999806;, + 0.662141; 0.980403;, + 0.691100; 0.980403;, + 0.343716; 0.854999;, + 0.343716; 0.826042;, + 0.363118; 0.826043;, + 0.363117; 0.854999;, + 0.777974; 0.999805;, + 0.749016; 0.999805;, + 0.749016; 0.980403;, + 0.777974; 0.980403;, + 0.189076; 0.739173;, + 0.189073; 0.710214;, + 0.208477; 0.710212;, + 0.208479; 0.739171;, + 0.392093; 0.594372;, + 0.363131; 0.594369;, + 0.363135; 0.565407;, + 0.392097; 0.565411;, + 0.392097; 0.565411;, + 0.363135; 0.565407;, + 0.363139; 0.536445;, + 0.392102; 0.536450;, + 0.102200; 0.739185;, + 0.102204; 0.768143;, + 0.082802; 0.768146;, + 0.082797; 0.739188;, + 0.411485; 0.710213;, + 0.411483; 0.739172;, + 0.392080; 0.739171;, + 0.392082; 0.710212;, + 0.189088; 0.883960;, + 0.189086; 0.855004;, + 0.208488; 0.855002;, + 0.208490; 0.883958;, + 0.102209; 0.797100;, + 0.102213; 0.826057;, + 0.082811; 0.826060;, + 0.082806; 0.797103;, + 0.550811; 0.432394;, + 0.579768; 0.432396;, + 0.579767; 0.451798;, + 0.550809; 0.451796;, + 0.498355; 0.768137;, + 0.498358; 0.739180;, + 0.517760; 0.739182;, + 0.517757; 0.768139;, + 0.189067; 0.652293;, + 0.189063; 0.623331;, + 0.208469; 0.623329;, + 0.208472; 0.652291;, + 0.237437; 0.710210;, + 0.208477; 0.710212;, + 0.208474; 0.681252;, + 0.237435; 0.681250;, + 0.237435; 0.681250;, + 0.208474; 0.681252;, + 0.208472; 0.652291;, + 0.237433; 0.652289;, + 0.256850; 0.970820;, + 0.256852; 0.999774;, + 0.237452; 0.999775;, + 0.237450; 0.970821;, + 0.498340; 0.912923;, + 0.498343; 0.883966;, + 0.517745; 0.883968;, + 0.517742; 0.912925;, + 0.343719; 0.710209;, + 0.343720; 0.681250;, + 0.363124; 0.681251;, + 0.363123; 0.710210;, + 0.256839; 0.652288;, + 0.256839; 0.681249;, + 0.237435; 0.681250;, + 0.237433; 0.652289;, + 0.343717; 0.797085;, + 0.343718; 0.768127;, + 0.363121; 0.768127;, + 0.363120; 0.797085;, + 0.411501; 0.565415;, + 0.411497; 0.594375;, + 0.392093; 0.594372;, + 0.392097; 0.565411;, + 0.102221; 0.883969;, + 0.102224; 0.912925;, + 0.082823; 0.912928;, + 0.082819; 0.883972;, + 0.237431; 0.594364;, + 0.208467; 0.594365;, + 0.208464; 0.565401;, + 0.237430; 0.565399;, + 0.237430; 0.565399;, + 0.208464; 0.565401;, + 0.208462; 0.536434;, + 0.237429; 0.536433;, + 0.835890; 0.999805;, + 0.806932; 0.999805;, + 0.806932; 0.980403;, + 0.835890; 0.980403;, + 0.189083; 0.826047;, + 0.189081; 0.797090;, + 0.208483; 0.797088;, + 0.208486; 0.826045;, + 0.753512; 0.432400;, + 0.782471; 0.432400;, + 0.782471; 0.451803;, + 0.753512; 0.451803;, + 0.189070; 0.681254;, + 0.189067; 0.652293;, + 0.208472; 0.652291;, + 0.208474; 0.681252;, + 0.498349; 0.826052;, + 0.498352; 0.797095;, + 0.517754; 0.797097;, + 0.517751; 0.826054;, + 0.256838; 0.623326;, + 0.256839; 0.652288;, + 0.237433; 0.652289;, + 0.237432; 0.623327;, + 0.498361; 0.710222;, + 0.498364; 0.681263;, + 0.517767; 0.681266;, + 0.517763; 0.710224;, + 0.782471; 0.451803;, + 0.811429; 0.451803;, + 0.811430; 0.508898;, + 0.782471; 0.508898;, + 0.569546; 0.317575;, + 0.538217; 0.317574;, + 0.538218; 0.250552;, + 0.569547; 0.250553;, + 0.546702; 0.883971;, + 0.546705; 0.855014;, + 0.603797; 0.855021;, + 0.603794; 0.883978;, + 0.000194; 0.000253;, + 0.029149; 0.000250;, + 0.029152; 0.025694;, + 0.000197; 0.025697;, + 0.546721; 0.710227;, + 0.546725; 0.681269;, + 0.603818; 0.681276;, + 0.603814; 0.710234;, + 0.057374; 0.883976;, + 0.057370; 0.855020;, + 0.082815; 0.855016;, + 0.082819; 0.883972;, + 0.691100; 0.980403;, + 0.662141; 0.980403;, + 0.662141; 0.923309;, + 0.691099; 0.923309;, + 0.546728; 0.652311;, + 0.546732; 0.623353;, + 0.603825; 0.623360;, + 0.603822; 0.652318;, + 0.057331; 0.652317;, + 0.057323; 0.623357;, + 0.082772; 0.623351;, + 0.082779; 0.652311;, + 0.666637; 0.451803;, + 0.695595; 0.451803;, + 0.695594; 0.508898;, + 0.666636; 0.508897;, + 0.546688; 0.999799;, + 0.546692; 0.970842;, + 0.603783; 0.970849;, + 0.603779; 0.999806;, + 0.546705; 0.855014;, + 0.546709; 0.826057;, + 0.603801; 0.826064;, + 0.603797; 0.855021;, + 0.662141; 0.980403;, + 0.633183; 0.980403;, + 0.633183; 0.923309;, + 0.662141; 0.923309;, + 0.057338; 0.681276;, + 0.057331; 0.652317;, + 0.082779; 0.652311;, + 0.082785; 0.681271;, + 0.720058; 0.980403;, + 0.691100; 0.980403;, + 0.691099; 0.923309;, + 0.720058; 0.923309;, + 0.289765; 0.000213;, + 0.318726; 0.000208;, + 0.318729; 0.025658;, + 0.289768; 0.025662;, + 0.546715; 0.768142;, + 0.546718; 0.739185;, + 0.603811; 0.739191;, + 0.603808; 0.768149;, + 0.546732; 0.623353;, + 0.546736; 0.594395;, + 0.603829; 0.594403;, + 0.603825; 0.623360;, + 0.893806; 0.980403;, + 0.864848; 0.980403;, + 0.864848; 0.923309;, + 0.893806; 0.923309;, + 0.057365; 0.826064;, + 0.057361; 0.797107;, + 0.082806; 0.797103;, + 0.082811; 0.826060;, + 0.546692; 0.970842;, + 0.546696; 0.941885;, + 0.603787; 0.941892;, + 0.603783; 0.970849;, + 0.777974; 0.980403;, + 0.749016; 0.980403;, + 0.749016; 0.923309;, + 0.777974; 0.923309;, + 0.633183; 0.980403;, + 0.604225; 0.980403;, + 0.604225; 0.923309;, + 0.633183; 0.923309;, + 0.058105; 0.000247;, + 0.087060; 0.000244;, + 0.087063; 0.025689;, + 0.058107; 0.025692;, + 0.922764; 0.980403;, + 0.893806; 0.980403;, + 0.893806; 0.923309;, + 0.922764; 0.923309;, + 0.434575; 0.000196;, + 0.463537; 0.000194;, + 0.463539; 0.025645;, + 0.434577; 0.025647;, + 0.546718; 0.739185;, + 0.546721; 0.710227;, + 0.603814; 0.710234;, + 0.603811; 0.739191;, + 0.521852; 0.451794;, + 0.550809; 0.451796;, + 0.550805; 0.508889;, + 0.521847; 0.508886;, + 0.864848; 0.980403;, + 0.835890; 0.980403;, + 0.835890; 0.923309;, + 0.864848; 0.923309;, + 0.057387; 0.970842;, + 0.057383; 0.941887;, + 0.082827; 0.941883;, + 0.082831; 0.970838;, + 0.144972; 0.000236;, + 0.173929; 0.000232;, + 0.173933; 0.025678;, + 0.144976; 0.025682;, + 0.749016; 0.980403;, + 0.720058; 0.980403;, + 0.720058; 0.923309;, + 0.749016; 0.923309;, + 0.492895; 0.451792;, + 0.521852; 0.451794;, + 0.521847; 0.508886;, + 0.492890; 0.508884;, + 0.951722; 0.980403;, + 0.922764; 0.980403;, + 0.922764; 0.923309;, + 0.951722; 0.923309;, + 0.806932; 0.980403;, + 0.777974; 0.980403;, + 0.777974; 0.923309;, + 0.806932; 0.923309;, + 0.546712; 0.797100;, + 0.546715; 0.768142;, + 0.603808; 0.768149;, + 0.603804; 0.797106;, + 0.057314; 0.594397;, + 0.057305; 0.565436;, + 0.082755; 0.565427;, + 0.082764; 0.594389;, + 0.550809; 0.451796;, + 0.579767; 0.451798;, + 0.579762; 0.508891;, + 0.550805; 0.508889;, + 0.202887; 0.000227;, + 0.231845; 0.000222;, + 0.231849; 0.025670;, + 0.202891; 0.025674;, + 0.724554; 0.451803;, + 0.753512; 0.451803;, + 0.753512; 0.508898;, + 0.724553; 0.508898;, + 0.546740; 0.565437;, + 0.546744; 0.536479;, + 0.603837; 0.536487;, + 0.603833; 0.565445;, + 0.608724; 0.451801;, + 0.637682; 0.451803;, + 0.637678; 0.508895;, + 0.608720; 0.508893;, + 0.463938; 0.451790;, + 0.492895; 0.451792;, + 0.492890; 0.508884;, + 0.463933; 0.508882;, + 0.835890; 0.980403;, + 0.806932; 0.980403;, + 0.806932; 0.923309;, + 0.835890; 0.923309;, + 0.546699; 0.912928;, + 0.546702; 0.883971;, + 0.603794; 0.883978;, + 0.603790; 0.912935;, + 0.546709; 0.826057;, + 0.546712; 0.797100;, + 0.603804; 0.797106;, + 0.603801; 0.826064;, + 0.057361; 0.797107;, + 0.057355; 0.768150;, + 0.082802; 0.768146;, + 0.082806; 0.797103;, + 0.753512; 0.451803;, + 0.782471; 0.451803;, + 0.782471; 0.508898;, + 0.753512; 0.508898;, + 0.695595; 0.451803;, + 0.724554; 0.451803;, + 0.724553; 0.508898;, + 0.695594; 0.508898;, + 0.057391; 0.999797;, + 0.057387; 0.970842;, + 0.082831; 0.970838;, + 0.082835; 0.999793;, + 0.546725; 0.681269;, + 0.546728; 0.652311;, + 0.603822; 0.652318;, + 0.603818; 0.681276;, + 0.546736; 0.594395;, + 0.546740; 0.565437;, + 0.603833; 0.565445;, + 0.603829; 0.594403;, + 0.057305; 0.565436;, + 0.057294; 0.536474;, + 0.082745; 0.536463;, + 0.082755; 0.565427;, + 0.579767; 0.451798;, + 0.608724; 0.451801;, + 0.608720; 0.508893;, + 0.579762; 0.508891;, + 0.318726; 0.000208;, + 0.347687; 0.000205;, + 0.347690; 0.025655;, + 0.318729; 0.025658;, + 0.546696; 0.941885;, + 0.546699; 0.912928;, + 0.603790; 0.912935;, + 0.603787; 0.941892;, + 0.343711; 0.999774;, + 0.314758; 0.999773;, + 0.314758; 0.970819;, + 0.343712; 0.970820;, + 0.343718; 0.768127;, + 0.314759; 0.768126;, + 0.314760; 0.739168;, + 0.343718; 0.739168;, + 0.189099; 0.999779;, + 0.160145; 0.999783;, + 0.160142; 0.970828;, + 0.189096; 0.970825;, + 0.189088; 0.883960;, + 0.160132; 0.883963;, + 0.160129; 0.855006;, + 0.189086; 0.855004;, + 0.498329; 0.999792;, + 0.469373; 0.999787;, + 0.469377; 0.970832;, + 0.498333; 0.970835;, + 0.498343; 0.883966;, + 0.469387; 0.883963;, + 0.469389; 0.855006;, + 0.498346; 0.855009;, + 0.343715; 0.883955;, + 0.314759; 0.883955;, + 0.314759; 0.854998;, + 0.343716; 0.854999;, + 0.498355; 0.768137;, + 0.469397; 0.768135;, + 0.469400; 0.739177;, + 0.498358; 0.739180;, + 0.498367; 0.652305;, + 0.469409; 0.652301;, + 0.469412; 0.623343;, + 0.498371; 0.623347;, + 0.343722; 0.652290;, + 0.314761; 0.652288;, + 0.314762; 0.623327;, + 0.343724; 0.623329;, + 0.189078; 0.768132;, + 0.160120; 0.768135;, + 0.160117; 0.739176;, + 0.189076; 0.739173;, + 0.189067; 0.652293;, + 0.160105; 0.652296;, + 0.160101; 0.623334;, + 0.189063; 0.623331;, + 0.131191; 0.999786;, + 0.102236; 0.999791;, + 0.102232; 0.970836;, + 0.131187; 0.970832;, + 0.131183; 0.941877;, + 0.102228; 0.941881;, + 0.102224; 0.912925;, + 0.131180; 0.912922;, + 0.440418; 0.999783;, + 0.411463; 0.999779;, + 0.411467; 0.970825;, + 0.440421; 0.970828;, + 0.440425; 0.941873;, + 0.411469; 0.941870;, + 0.411472; 0.912914;, + 0.440428; 0.912917;, + 0.343713; 0.941866;, + 0.314758; 0.941865;, + 0.314759; 0.912910;, + 0.343714; 0.912911;, + 0.440439; 0.768132;, + 0.411481; 0.768130;, + 0.411483; 0.739172;, + 0.440442; 0.739174;, + 0.440444; 0.710216;, + 0.411485; 0.710213;, + 0.411488; 0.681254;, + 0.440447; 0.681257;, + 0.343719; 0.710209;, + 0.314760; 0.710209;, + 0.314760; 0.681249;, + 0.343720; 0.681250;, + 0.131162; 0.768138;, + 0.102204; 0.768143;, + 0.102200; 0.739185;, + 0.131158; 0.739180;, + 0.131154; 0.710221;, + 0.102194; 0.710226;, + 0.102189; 0.681267;, + 0.131149; 0.681261;, + 0.285805; 0.999773;, + 0.256852; 0.999774;, + 0.256850; 0.970820;, + 0.285804; 0.970820;, + 0.285804; 0.941865;, + 0.256849; 0.941866;, + 0.256848; 0.912911;, + 0.285803; 0.912910;, + 0.189093; 0.941871;, + 0.160138; 0.941874;, + 0.160135; 0.912918;, + 0.189091; 0.912916;, + 0.285803; 0.883955;, + 0.256847; 0.883956;, + 0.256846; 0.854999;, + 0.285802; 0.854999;, + 0.285802; 0.826042;, + 0.256845; 0.826043;, + 0.256844; 0.797085;, + 0.285802; 0.797085;, + 0.189083; 0.826047;, + 0.160126; 0.826050;, + 0.160123; 0.797093;, + 0.189081; 0.797090;, + 0.131176; 0.883966;, + 0.102221; 0.883969;, + 0.102217; 0.855013;, + 0.131173; 0.855010;, + 0.131170; 0.826053;, + 0.102213; 0.826057;, + 0.102209; 0.797100;, + 0.131166; 0.797096;, + 0.498337; 0.941879;, + 0.469381; 0.941876;, + 0.469384; 0.912920;, + 0.498340; 0.912923;, + 0.498349; 0.826052;, + 0.469392; 0.826049;, + 0.469394; 0.797092;, + 0.498352; 0.797095;, + 0.440430; 0.883961;, + 0.411474; 0.883958;, + 0.411476; 0.855002;, + 0.440433; 0.855004;, + 0.440435; 0.826047;, + 0.411478; 0.826045;, + 0.411480; 0.797088;, + 0.440437; 0.797090;, + 0.343716; 0.826042;, + 0.314759; 0.826042;, + 0.314759; 0.797084;, + 0.343717; 0.797085;, + 0.498361; 0.710222;, + 0.469402; 0.710219;, + 0.469405; 0.681260;, + 0.498364; 0.681263;, + 0.498375; 0.594388;, + 0.469416; 0.594384;, + 0.469421; 0.565425;, + 0.498379; 0.565430;, + 0.440450; 0.652298;, + 0.411490; 0.652295;, + 0.411493; 0.623335;, + 0.440453; 0.623339;, + 0.440457; 0.594380;, + 0.411497; 0.594375;, + 0.411501; 0.565415;, + 0.440461; 0.565420;, + 0.343726; 0.594367;, + 0.314764; 0.594365;, + 0.314766; 0.565402;, + 0.343729; 0.565405;, + 0.285801; 0.768127;, + 0.256843; 0.768127;, + 0.256842; 0.739169;, + 0.285801; 0.739168;, + 0.285800; 0.710209;, + 0.256841; 0.710209;, + 0.256839; 0.681249;, + 0.285800; 0.681249;, + 0.189073; 0.710214;, + 0.160113; 0.710217;, + 0.160109; 0.681257;, + 0.189070; 0.681254;, + 0.285800; 0.652288;, + 0.256839; 0.652288;, + 0.256838; 0.623326;, + 0.285800; 0.623326;, + 0.285801; 0.594363;, + 0.256837; 0.594363;, + 0.256837; 0.565399;, + 0.285802; 0.565400;, + 0.189060; 0.594367;, + 0.160096; 0.594371;, + 0.160091; 0.565407;, + 0.189056; 0.565403;, + 0.131144; 0.652301;, + 0.102183; 0.652307;, + 0.102177; 0.623346;, + 0.131138; 0.623340;, + 0.131132; 0.594377;, + 0.102170; 0.594384;, + 0.102162; 0.565421;, + 0.131126; 0.565413;, + 0.343712; 0.970820;, + 0.314758; 0.970819;, + 0.314758; 0.941865;, + 0.343713; 0.941866;, + 0.343718; 0.739168;, + 0.314760; 0.739168;, + 0.314760; 0.710209;, + 0.343719; 0.710209;, + 0.189096; 0.970825;, + 0.160142; 0.970828;, + 0.160138; 0.941874;, + 0.189093; 0.941871;, + 0.189086; 0.855004;, + 0.160129; 0.855006;, + 0.160126; 0.826050;, + 0.189083; 0.826047;, + 0.498333; 0.970835;, + 0.469377; 0.970832;, + 0.469381; 0.941876;, + 0.498337; 0.941879;, + 0.498346; 0.855009;, + 0.469389; 0.855006;, + 0.469392; 0.826049;, + 0.498349; 0.826052;, + 0.343716; 0.854999;, + 0.314759; 0.854998;, + 0.314759; 0.826042;, + 0.343716; 0.826042;, + 0.498358; 0.739180;, + 0.469400; 0.739177;, + 0.469402; 0.710219;, + 0.498361; 0.710222;, + 0.498371; 0.623347;, + 0.469412; 0.623343;, + 0.469416; 0.594384;, + 0.498375; 0.594388;, + 0.343724; 0.623329;, + 0.314762; 0.623327;, + 0.314764; 0.594365;, + 0.343726; 0.594367;, + 0.189076; 0.739173;, + 0.160117; 0.739176;, + 0.160113; 0.710217;, + 0.189073; 0.710214;, + 0.189063; 0.623331;, + 0.160101; 0.623334;, + 0.160096; 0.594371;, + 0.189060; 0.594367;, + 0.160145; 0.999783;, + 0.131191; 0.999786;, + 0.131187; 0.970832;, + 0.160142; 0.970828;, + 0.160142; 0.970828;, + 0.131187; 0.970832;, + 0.131183; 0.941877;, + 0.160138; 0.941874;, + 0.131187; 0.970832;, + 0.102232; 0.970836;, + 0.102228; 0.941881;, + 0.131183; 0.941877;, + 0.160138; 0.941874;, + 0.131183; 0.941877;, + 0.131180; 0.912922;, + 0.160135; 0.912918;, + 0.160135; 0.912918;, + 0.131180; 0.912922;, + 0.131176; 0.883966;, + 0.160132; 0.883963;, + 0.131180; 0.912922;, + 0.102224; 0.912925;, + 0.102221; 0.883969;, + 0.131176; 0.883966;, + 0.469373; 0.999787;, + 0.440418; 0.999783;, + 0.440421; 0.970828;, + 0.469377; 0.970832;, + 0.469377; 0.970832;, + 0.440421; 0.970828;, + 0.440425; 0.941873;, + 0.469381; 0.941876;, + 0.440421; 0.970828;, + 0.411467; 0.970825;, + 0.411469; 0.941870;, + 0.440425; 0.941873;, + 0.469381; 0.941876;, + 0.440425; 0.941873;, + 0.440428; 0.912917;, + 0.469384; 0.912920;, + 0.469384; 0.912920;, + 0.440428; 0.912917;, + 0.440430; 0.883961;, + 0.469387; 0.883963;, + 0.440428; 0.912917;, + 0.411472; 0.912914;, + 0.411474; 0.883958;, + 0.440430; 0.883961;, + 0.343714; 0.912911;, + 0.314759; 0.912910;, + 0.314759; 0.883955;, + 0.343715; 0.883955;, + 0.469397; 0.768135;, + 0.440439; 0.768132;, + 0.440442; 0.739174;, + 0.469400; 0.739177;, + 0.469400; 0.739177;, + 0.440442; 0.739174;, + 0.440444; 0.710216;, + 0.469402; 0.710219;, + 0.440442; 0.739174;, + 0.411483; 0.739172;, + 0.411485; 0.710213;, + 0.440444; 0.710216;, + 0.469402; 0.710219;, + 0.440444; 0.710216;, + 0.440447; 0.681257;, + 0.469405; 0.681260;, + 0.469405; 0.681260;, + 0.440447; 0.681257;, + 0.440450; 0.652298;, + 0.469409; 0.652301;, + 0.440447; 0.681257;, + 0.411488; 0.681254;, + 0.411490; 0.652295;, + 0.440450; 0.652298;, + 0.343720; 0.681250;, + 0.314760; 0.681249;, + 0.314761; 0.652288;, + 0.343722; 0.652290;, + 0.160120; 0.768135;, + 0.131162; 0.768138;, + 0.131158; 0.739180;, + 0.160117; 0.739176;, + 0.160117; 0.739176;, + 0.131158; 0.739180;, + 0.131154; 0.710221;, + 0.160113; 0.710217;, + 0.131158; 0.739180;, + 0.102200; 0.739185;, + 0.102194; 0.710226;, + 0.131154; 0.710221;, + 0.160113; 0.710217;, + 0.131154; 0.710221;, + 0.131149; 0.681261;, + 0.160109; 0.681257;, + 0.160109; 0.681257;, + 0.131149; 0.681261;, + 0.131144; 0.652301;, + 0.160105; 0.652296;, + 0.131149; 0.681261;, + 0.102189; 0.681267;, + 0.102183; 0.652307;, + 0.131144; 0.652301;, + 0.314758; 0.999773;, + 0.285805; 0.999773;, + 0.285804; 0.970820;, + 0.314758; 0.970819;, + 0.314758; 0.970819;, + 0.285804; 0.970820;, + 0.285804; 0.941865;, + 0.314758; 0.941865;, + 0.285804; 0.970820;, + 0.256850; 0.970820;, + 0.256849; 0.941866;, + 0.285804; 0.941865;, + 0.314758; 0.941865;, + 0.285804; 0.941865;, + 0.285803; 0.912910;, + 0.314759; 0.912910;, + 0.314759; 0.912910;, + 0.285803; 0.912910;, + 0.285803; 0.883955;, + 0.314759; 0.883955;, + 0.285803; 0.912910;, + 0.256848; 0.912911;, + 0.256847; 0.883956;, + 0.285803; 0.883955;, + 0.189091; 0.912916;, + 0.160135; 0.912918;, + 0.160132; 0.883963;, + 0.189088; 0.883960;, + 0.314759; 0.883955;, + 0.285803; 0.883955;, + 0.285802; 0.854999;, + 0.314759; 0.854998;, + 0.314759; 0.854998;, + 0.285802; 0.854999;, + 0.285802; 0.826042;, + 0.314759; 0.826042;, + 0.285802; 0.854999;, + 0.256846; 0.854999;, + 0.256845; 0.826043;, + 0.285802; 0.826042;, + 0.314759; 0.826042;, + 0.285802; 0.826042;, + 0.285802; 0.797085;, + 0.314759; 0.797084;, + 0.314759; 0.797084;, + 0.285802; 0.797085;, + 0.285801; 0.768127;, + 0.314759; 0.768126;, + 0.285802; 0.797085;, + 0.256844; 0.797085;, + 0.256843; 0.768127;, + 0.285801; 0.768127;, + 0.189081; 0.797090;, + 0.160123; 0.797093;, + 0.160120; 0.768135;, + 0.189078; 0.768132;, + 0.160132; 0.883963;, + 0.131176; 0.883966;, + 0.131173; 0.855010;, + 0.160129; 0.855006;, + 0.160129; 0.855006;, + 0.131173; 0.855010;, + 0.131170; 0.826053;, + 0.160126; 0.826050;, + 0.131173; 0.855010;, + 0.102217; 0.855013;, + 0.102213; 0.826057;, + 0.131170; 0.826053;, + 0.160126; 0.826050;, + 0.131170; 0.826053;, + 0.131166; 0.797096;, + 0.160123; 0.797093;, + 0.160123; 0.797093;, + 0.131166; 0.797096;, + 0.131162; 0.768138;, + 0.160120; 0.768135;, + 0.131166; 0.797096;, + 0.102209; 0.797100;, + 0.102204; 0.768143;, + 0.131162; 0.768138;, + 0.498340; 0.912923;, + 0.469384; 0.912920;, + 0.469387; 0.883963;, + 0.498343; 0.883966;, + 0.498352; 0.797095;, + 0.469394; 0.797092;, + 0.469397; 0.768135;, + 0.498355; 0.768137;, + 0.469387; 0.883963;, + 0.440430; 0.883961;, + 0.440433; 0.855004;, + 0.469389; 0.855006;, + 0.469389; 0.855006;, + 0.440433; 0.855004;, + 0.440435; 0.826047;, + 0.469392; 0.826049;, + 0.440433; 0.855004;, + 0.411476; 0.855002;, + 0.411478; 0.826045;, + 0.440435; 0.826047;, + 0.469392; 0.826049;, + 0.440435; 0.826047;, + 0.440437; 0.797090;, + 0.469394; 0.797092;, + 0.469394; 0.797092;, + 0.440437; 0.797090;, + 0.440439; 0.768132;, + 0.469397; 0.768135;, + 0.440437; 0.797090;, + 0.411480; 0.797088;, + 0.411481; 0.768130;, + 0.440439; 0.768132;, + 0.343717; 0.797085;, + 0.314759; 0.797084;, + 0.314759; 0.768126;, + 0.343718; 0.768127;, + 0.498364; 0.681263;, + 0.469405; 0.681260;, + 0.469409; 0.652301;, + 0.498367; 0.652305;, + 0.498379; 0.565430;, + 0.469421; 0.565425;, + 0.469426; 0.536466;, + 0.498384; 0.536472;, + 0.469409; 0.652301;, + 0.440450; 0.652298;, + 0.440453; 0.623339;, + 0.469412; 0.623343;, + 0.469412; 0.623343;, + 0.440453; 0.623339;, + 0.440457; 0.594380;, + 0.469416; 0.594384;, + 0.440453; 0.623339;, + 0.411493; 0.623335;, + 0.411497; 0.594375;, + 0.440457; 0.594380;, + 0.469416; 0.594384;, + 0.440457; 0.594380;, + 0.440461; 0.565420;, + 0.469421; 0.565425;, + 0.469421; 0.565425;, + 0.440461; 0.565420;, + 0.440467; 0.536460;, + 0.469426; 0.536466;, + 0.440461; 0.565420;, + 0.411501; 0.565415;, + 0.411507; 0.536454;, + 0.440467; 0.536460;, + 0.343729; 0.565405;, + 0.314766; 0.565402;, + 0.314769; 0.536438;, + 0.343733; 0.536441;, + 0.314759; 0.768126;, + 0.285801; 0.768127;, + 0.285801; 0.739168;, + 0.314760; 0.739168;, + 0.314760; 0.739168;, + 0.285801; 0.739168;, + 0.285800; 0.710209;, + 0.314760; 0.710209;, + 0.285801; 0.739168;, + 0.256842; 0.739169;, + 0.256841; 0.710209;, + 0.285800; 0.710209;, + 0.314760; 0.710209;, + 0.285800; 0.710209;, + 0.285800; 0.681249;, + 0.314760; 0.681249;, + 0.314760; 0.681249;, + 0.285800; 0.681249;, + 0.285800; 0.652288;, + 0.314761; 0.652288;, + 0.285800; 0.681249;, + 0.256839; 0.681249;, + 0.256839; 0.652288;, + 0.285800; 0.652288;, + 0.189070; 0.681254;, + 0.160109; 0.681257;, + 0.160105; 0.652296;, + 0.189067; 0.652293;, + 0.314761; 0.652288;, + 0.285800; 0.652288;, + 0.285800; 0.623326;, + 0.314762; 0.623327;, + 0.314762; 0.623327;, + 0.285800; 0.623326;, + 0.285801; 0.594363;, + 0.314764; 0.594365;, + 0.285800; 0.623326;, + 0.256838; 0.623326;, + 0.256837; 0.594363;, + 0.285801; 0.594363;, + 0.314764; 0.594365;, + 0.285801; 0.594363;, + 0.285802; 0.565400;, + 0.314766; 0.565402;, + 0.314766; 0.565402;, + 0.285802; 0.565400;, + 0.285804; 0.536435;, + 0.314769; 0.536438;, + 0.285802; 0.565400;, + 0.256837; 0.565399;, + 0.256838; 0.536433;, + 0.285804; 0.536435;, + 0.189056; 0.565403;, + 0.160091; 0.565407;, + 0.160085; 0.536441;, + 0.189053; 0.536436;, + 0.160105; 0.652296;, + 0.131144; 0.652301;, + 0.131138; 0.623340;, + 0.160101; 0.623334;, + 0.160101; 0.623334;, + 0.131138; 0.623340;, + 0.131132; 0.594377;, + 0.160096; 0.594371;, + 0.131138; 0.623340;, + 0.102177; 0.623346;, + 0.102170; 0.594384;, + 0.131132; 0.594377;, + 0.160096; 0.594371;, + 0.131132; 0.594377;, + 0.131126; 0.565413;, + 0.160091; 0.565407;, + 0.160091; 0.565407;, + 0.131126; 0.565413;, + 0.131119; 0.536448;, + 0.160085; 0.536441;, + 0.131126; 0.565413;, + 0.102162; 0.565421;, + 0.102153; 0.536456;, + 0.131119; 0.536448;, + 0.376650; 0.450984;, + 0.405606; 0.450986;, + 0.405605; 0.479942;, + 0.376649; 0.479941;, + 0.260822; 0.450982;, + 0.289779; 0.450982;, + 0.289779; 0.479939;, + 0.260822; 0.479939;, + 0.318737; 0.393068;, + 0.347695; 0.393069;, + 0.347694; 0.422026;, + 0.318736; 0.422026;, + 0.260822; 0.393067;, + 0.289780; 0.393068;, + 0.289779; 0.422025;, + 0.260822; 0.422025;, + 0.260823; 0.280860;, + 0.289781; 0.280860;, + 0.289781; 0.309818;, + 0.260823; 0.309818;, + 0.144991; 0.450983;, + 0.173949; 0.450983;, + 0.173949; 0.479940;, + 0.144992; 0.479940;, + 0.029160; 0.450983;, + 0.058118; 0.450983;, + 0.058118; 0.479941;, + 0.029160; 0.479941;, + 0.087076; 0.393067;, + 0.116033; 0.393067;, + 0.116033; 0.422025;, + 0.087076; 0.422025;, + 0.029160; 0.393067;, + 0.058118; 0.393067;, + 0.058118; 0.422025;, + 0.029160; 0.422025;, + 0.029162; 0.280861;, + 0.058119; 0.280861;, + 0.058119; 0.309818;, + 0.029162; 0.309818;, + 0.202906; 0.222944;, + 0.231864; 0.222943;, + 0.231864; 0.251902;, + 0.202906; 0.251902;, + 0.144990; 0.222946;, + 0.173948; 0.222945;, + 0.173948; 0.251903;, + 0.144991; 0.251903;, + 0.144984; 0.110741;, + 0.173942; 0.110738;, + 0.173944; 0.139696;, + 0.144987; 0.139698;, + 0.087076; 0.222947;, + 0.116033; 0.222947;, + 0.116033; 0.251904;, + 0.087076; 0.251904;, + 0.029163; 0.222948;, + 0.058119; 0.222948;, + 0.058119; 0.251904;, + 0.029163; 0.251904;, + 0.029159; 0.110749;, + 0.058115; 0.110747;, + 0.058116; 0.139703;, + 0.029161; 0.139705;, + 0.087066; 0.052833;, + 0.116022; 0.052830;, + 0.116025; 0.081786;, + 0.087069; 0.081789;, + 0.029155; 0.052838;, + 0.058110; 0.052835;, + 0.058113; 0.081791;, + 0.029157; 0.081794;, + 0.405617; 0.280863;, + 0.434576; 0.280865;, + 0.434574; 0.309824;, + 0.405615; 0.309822;, + 0.173949; 0.280860;, + 0.202907; 0.280860;, + 0.202907; 0.309818;, + 0.173949; 0.309818;, + 0.405619; 0.110723;, + 0.434581; 0.110722;, + 0.434582; 0.139684;, + 0.405620; 0.139684;, + 0.289777; 0.110729;, + 0.318737; 0.110727;, + 0.318738; 0.139687;, + 0.289778; 0.139689;, + 0.405606; 0.450986;, + 0.434563; 0.450987;, + 0.434561; 0.479944;, + 0.405605; 0.479942;, + 0.289779; 0.450982;, + 0.318736; 0.450983;, + 0.318735; 0.479940;, + 0.289779; 0.479939;, + 0.289781; 0.280860;, + 0.318740; 0.280860;, + 0.318739; 0.309818;, + 0.289781; 0.309818;, + 0.173949; 0.450983;, + 0.202907; 0.450982;, + 0.202907; 0.479940;, + 0.173949; 0.479940;, + 0.058118; 0.450983;, + 0.087076; 0.450983;, + 0.087076; 0.479941;, + 0.058118; 0.479941;, + 0.058119; 0.280861;, + 0.087076; 0.280861;, + 0.087076; 0.309818;, + 0.058119; 0.309818;, + 0.173942; 0.110738;, + 0.202900; 0.110736;, + 0.202902; 0.139694;, + 0.173944; 0.139696;, + 0.058115; 0.110747;, + 0.087071; 0.110745;, + 0.087073; 0.139701;, + 0.058116; 0.139703;, + 0.434580; 0.081759;, + 0.463543; 0.081758;, + 0.463544; 0.110721;, + 0.434581; 0.110722;, + 0.405618; 0.081761;, + 0.434580; 0.081759;, + 0.434581; 0.110722;, + 0.405619; 0.110723;, + 0.405616; 0.052799;, + 0.434578; 0.052797;, + 0.434580; 0.081759;, + 0.405618; 0.081761;, + 0.376656; 0.081763;, + 0.405618; 0.081761;, + 0.405619; 0.110723;, + 0.376658; 0.110724;, + 0.347695; 0.081765;, + 0.376656; 0.081763;, + 0.376658; 0.110724;, + 0.347697; 0.110726;, + 0.347693; 0.052804;, + 0.376654; 0.052801;, + 0.376656; 0.081763;, + 0.347695; 0.081765;, + 0.434565; 0.422031;, + 0.463521; 0.422033;, + 0.463519; 0.450989;, + 0.434563; 0.450987;, + 0.405608; 0.422029;, + 0.434565; 0.422031;, + 0.434563; 0.450987;, + 0.405606; 0.450986;, + 0.405609; 0.393072;, + 0.434567; 0.393073;, + 0.434565; 0.422031;, + 0.405608; 0.422029;, + 0.376651; 0.422027;, + 0.405608; 0.422029;, + 0.405606; 0.450986;, + 0.376650; 0.450984;, + 0.347694; 0.422026;, + 0.376651; 0.422027;, + 0.376650; 0.450984;, + 0.347693; 0.450983;, + 0.347695; 0.393069;, + 0.376652; 0.393070;, + 0.376651; 0.422027;, + 0.347694; 0.422026;, + 0.347698; 0.280860;, + 0.376657; 0.280861;, + 0.376656; 0.309820;, + 0.347698; 0.309819;, + 0.202907; 0.422025;, + 0.231864; 0.422025;, + 0.231864; 0.450982;, + 0.202907; 0.450982;, + 0.173949; 0.422025;, + 0.202907; 0.422025;, + 0.202907; 0.450982;, + 0.173949; 0.450983;, + 0.173949; 0.393067;, + 0.202907; 0.393067;, + 0.202907; 0.422025;, + 0.173949; 0.422025;, + 0.144991; 0.422025;, + 0.173949; 0.422025;, + 0.173949; 0.450983;, + 0.144991; 0.450983;, + 0.116033; 0.422025;, + 0.144991; 0.422025;, + 0.144991; 0.450983;, + 0.116034; 0.450983;, + 0.116033; 0.393067;, + 0.144991; 0.393067;, + 0.144991; 0.422025;, + 0.116033; 0.422025;, + 0.116034; 0.280861;, + 0.144991; 0.280861;, + 0.144991; 0.309818;, + 0.116034; 0.309818;, + 0.202897; 0.081778;, + 0.231856; 0.081775;, + 0.231858; 0.110734;, + 0.202900; 0.110736;, + 0.173939; 0.081781;, + 0.202897; 0.081778;, + 0.202900; 0.110736;, + 0.173942; 0.110738;, + 0.173936; 0.052823;, + 0.202894; 0.052820;, + 0.202897; 0.081778;, + 0.173939; 0.081781;, + 0.144982; 0.081784;, + 0.173939; 0.081781;, + 0.173942; 0.110738;, + 0.144984; 0.110741;, + 0.116025; 0.081786;, + 0.144982; 0.081784;, + 0.144984; 0.110741;, + 0.116028; 0.110743;, + 0.116022; 0.052830;, + 0.144979; 0.052827;, + 0.144982; 0.081784;, + 0.116025; 0.081786;, + 0.434578; 0.251905;, + 0.463539; 0.251907;, + 0.463536; 0.280867;, + 0.434576; 0.280865;, + 0.405618; 0.251903;, + 0.434578; 0.251905;, + 0.434576; 0.280865;, + 0.405617; 0.280863;, + 0.405620; 0.222943;, + 0.434580; 0.222944;, + 0.434578; 0.251905;, + 0.405618; 0.251903;, + 0.376659; 0.251902;, + 0.405618; 0.251903;, + 0.405617; 0.280863;, + 0.376657; 0.280861;, + 0.347699; 0.251901;, + 0.376659; 0.251902;, + 0.376657; 0.280861;, + 0.347698; 0.280860;, + 0.347700; 0.222942;, + 0.376659; 0.222942;, + 0.376659; 0.251902;, + 0.347699; 0.251901;, + 0.347697; 0.110726;, + 0.376658; 0.110724;, + 0.376659; 0.139685;, + 0.347698; 0.139686;, + 0.318740; 0.251901;, + 0.347699; 0.251901;, + 0.347698; 0.280860;, + 0.318740; 0.280860;, + 0.289781; 0.251901;, + 0.318740; 0.251901;, + 0.318740; 0.280860;, + 0.289781; 0.280860;, + 0.289781; 0.222942;, + 0.318740; 0.222942;, + 0.318740; 0.251901;, + 0.289781; 0.251901;, + 0.260823; 0.251901;, + 0.289781; 0.251901;, + 0.289781; 0.280860;, + 0.260823; 0.280860;, + 0.231864; 0.251902;, + 0.260823; 0.251901;, + 0.260823; 0.280860;, + 0.231865; 0.280860;, + 0.231864; 0.222943;, + 0.260822; 0.222943;, + 0.260823; 0.251901;, + 0.231864; 0.251902;, + 0.231858; 0.110734;, + 0.260817; 0.110731;, + 0.260819; 0.139691;, + 0.231860; 0.139692;, + 0.318734; 0.081767;, + 0.347695; 0.081765;, + 0.347697; 0.110726;, + 0.318737; 0.110727;, + 0.289774; 0.081770;, + 0.318734; 0.081767;, + 0.318737; 0.110727;, + 0.289777; 0.110729;, + 0.289772; 0.052810;, + 0.318732; 0.052806;, + 0.318734; 0.081767;, + 0.289774; 0.081770;, + 0.260815; 0.081772;, + 0.289774; 0.081770;, + 0.289777; 0.110729;, + 0.260817; 0.110731;, + 0.231856; 0.081775;, + 0.260815; 0.081772;, + 0.260817; 0.110731;, + 0.231858; 0.110734;, + 0.231853; 0.052816;, + 0.260812; 0.052813;, + 0.260815; 0.081772;, + 0.231856; 0.081775;, + 0.347693; 0.450983;, + 0.376650; 0.450984;, + 0.376649; 0.479941;, + 0.347692; 0.479940;, + 0.231864; 0.450982;, + 0.260822; 0.450982;, + 0.260822; 0.479939;, + 0.231864; 0.479940;, + 0.318736; 0.422026;, + 0.347694; 0.422026;, + 0.347693; 0.450983;, + 0.318736; 0.450983;, + 0.289779; 0.422025;, + 0.318736; 0.422026;, + 0.318736; 0.450983;, + 0.289779; 0.450982;, + 0.289780; 0.393068;, + 0.318737; 0.393068;, + 0.318736; 0.422026;, + 0.289779; 0.422025;, + 0.260822; 0.422025;, + 0.289779; 0.422025;, + 0.289779; 0.450982;, + 0.260822; 0.450982;, + 0.231864; 0.422025;, + 0.260822; 0.422025;, + 0.260822; 0.450982;, + 0.231864; 0.450982;, + 0.231864; 0.393067;, + 0.260822; 0.393067;, + 0.260822; 0.422025;, + 0.231864; 0.422025;, + 0.231865; 0.280860;, + 0.260823; 0.280860;, + 0.260823; 0.309818;, + 0.231865; 0.309818;, + 0.116034; 0.450983;, + 0.144991; 0.450983;, + 0.144992; 0.479940;, + 0.116034; 0.479941;, + 0.000202; 0.450983;, + 0.029160; 0.450983;, + 0.029160; 0.479941;, + 0.000202; 0.479941;, + 0.087076; 0.422025;, + 0.116033; 0.422025;, + 0.116034; 0.450983;, + 0.087076; 0.450983;, + 0.058118; 0.422025;, + 0.087076; 0.422025;, + 0.087076; 0.450983;, + 0.058118; 0.450983;, + 0.058118; 0.393067;, + 0.087076; 0.393067;, + 0.087076; 0.422025;, + 0.058118; 0.422025;, + 0.029160; 0.422025;, + 0.058118; 0.422025;, + 0.058118; 0.450983;, + 0.029160; 0.450983;, + 0.000202; 0.422025;, + 0.029160; 0.422025;, + 0.029160; 0.450983;, + 0.000202; 0.450983;, + 0.000202; 0.393067;, + 0.029160; 0.393067;, + 0.029160; 0.422025;, + 0.000202; 0.422025;, + 0.000206; 0.280860;, + 0.029162; 0.280861;, + 0.029162; 0.309818;, + 0.000205; 0.309817;, + 0.202906; 0.251902;, + 0.231864; 0.251902;, + 0.231865; 0.280860;, + 0.202907; 0.280860;, + 0.173948; 0.251903;, + 0.202906; 0.251902;, + 0.202907; 0.280860;, + 0.173949; 0.280860;, + 0.173948; 0.222945;, + 0.202906; 0.222944;, + 0.202906; 0.251902;, + 0.173948; 0.251903;, + 0.144991; 0.251903;, + 0.173948; 0.251903;, + 0.173949; 0.280860;, + 0.144991; 0.280861;, + 0.116033; 0.251904;, + 0.144991; 0.251903;, + 0.144991; 0.280861;, + 0.116034; 0.280861;, + 0.116033; 0.222947;, + 0.144990; 0.222946;, + 0.144991; 0.251903;, + 0.116033; 0.251904;, + 0.116028; 0.110743;, + 0.144984; 0.110741;, + 0.144987; 0.139698;, + 0.116029; 0.139700;, + 0.087076; 0.251904;, + 0.116033; 0.251904;, + 0.116034; 0.280861;, + 0.087076; 0.280861;, + 0.058119; 0.251904;, + 0.087076; 0.251904;, + 0.087076; 0.280861;, + 0.058119; 0.280861;, + 0.058119; 0.222948;, + 0.087076; 0.222947;, + 0.087076; 0.251904;, + 0.058119; 0.251904;, + 0.029163; 0.251904;, + 0.058119; 0.251904;, + 0.058119; 0.280861;, + 0.029162; 0.280861;, + 0.000207; 0.251904;, + 0.029163; 0.251904;, + 0.029162; 0.280861;, + 0.000206; 0.280860;, + 0.000207; 0.222948;, + 0.029163; 0.222948;, + 0.029163; 0.251904;, + 0.000207; 0.251904;, + 0.000204; 0.110751;, + 0.029159; 0.110749;, + 0.029161; 0.139705;, + 0.000205; 0.139706;, + 0.087069; 0.081789;, + 0.116025; 0.081786;, + 0.116028; 0.110743;, + 0.087071; 0.110745;, + 0.058113; 0.081791;, + 0.087069; 0.081789;, + 0.087071; 0.110745;, + 0.058115; 0.110747;, + 0.058110; 0.052835;, + 0.087066; 0.052833;, + 0.087069; 0.081789;, + 0.058113; 0.081791;, + 0.029157; 0.081794;, + 0.058113; 0.081791;, + 0.058115; 0.110747;, + 0.029159; 0.110749;, + 0.000202; 0.081796;, + 0.029157; 0.081794;, + 0.029159; 0.110749;, + 0.000204; 0.110751;, + 0.000199; 0.052841;, + 0.029155; 0.052838;, + 0.029157; 0.081794;, + 0.000202; 0.081796;, + 0.057305; 0.565436;, + 0.057314; 0.594397;, + 0.000217; 0.594416;, + 0.000206; 0.565457;, + 0.057383; 0.941887;, + 0.057387; 0.970842;, + 0.000299; 0.970851;, + 0.000294; 0.941895;, + 0.057361; 0.797107;, + 0.057365; 0.826064;, + 0.000276; 0.826074;, + 0.000270; 0.797118;, + 0.057331; 0.652317;, + 0.057338; 0.681276;, + 0.000244; 0.681291;, + 0.000235; 0.652333;, + 0.057323; 0.623357;, + 0.057331; 0.652317;, + 0.000235; 0.652333;, + 0.000226; 0.623375;, + 0.057370; 0.855020;, + 0.057374; 0.883976;, + 0.000285; 0.883985;, + 0.000281; 0.855029;, + 0.057338; 0.681276;, + 0.057344; 0.710235;, + 0.000251; 0.710248;, + 0.000244; 0.681291;, + 0.057314; 0.594397;, + 0.057323; 0.623357;, + 0.000226; 0.623375;, + 0.000217; 0.594416;, + 0.057365; 0.826064;, + 0.057370; 0.855020;, + 0.000281; 0.855029;, + 0.000276; 0.826074;, + 0.057374; 0.883976;, + 0.057379; 0.912931;, + 0.000290; 0.912940;, + 0.000285; 0.883985;, + 0.057350; 0.739193;, + 0.057355; 0.768150;, + 0.000264; 0.768162;, + 0.000258; 0.739205;, + 0.057379; 0.912931;, + 0.057383; 0.941887;, + 0.000294; 0.941895;, + 0.000290; 0.912940;, + 0.057344; 0.710235;, + 0.057350; 0.739193;, + 0.000258; 0.739205;, + 0.000251; 0.710248;, + 0.057294; 0.536474;, + 0.057305; 0.565436;, + 0.000206; 0.565457;, + 0.000194; 0.536497;, + 0.057387; 0.970842;, + 0.057391; 0.999797;, + 0.000303; 0.999806;, + 0.000299; 0.970851;, + 0.057355; 0.768150;, + 0.057361; 0.797107;, + 0.000270; 0.797118;, + 0.000264; 0.768162;, + 0.977169; 0.923310;, + 0.977169; 0.980403;, + 0.951722; 0.980403;, + 0.951722; 0.923309;, + 0.057344; 0.710235;, + 0.057338; 0.681276;, + 0.082785; 0.681271;, + 0.082791; 0.710230;, + 0.376649; 0.000201;, + 0.405612; 0.000199;, + 0.405614; 0.025649;, + 0.376652; 0.025652;, + 0.057323; 0.623357;, + 0.057314; 0.594397;, + 0.082764; 0.594389;, + 0.082772; 0.623351;, + 0.173929; 0.000232;, + 0.202887; 0.000227;, + 0.202891; 0.025674;, + 0.173933; 0.025678;, + 0.231845; 0.000222;, + 0.260805; 0.000217;, + 0.260808; 0.025666;, + 0.231849; 0.025670;, + 0.057379; 0.912931;, + 0.057374; 0.883976;, + 0.082819; 0.883972;, + 0.082823; 0.912928;, + 0.057370; 0.855020;, + 0.057365; 0.826064;, + 0.082811; 0.826060;, + 0.082815; 0.855016;, + 0.836877; 0.451803;, + 0.836877; 0.508898;, + 0.811430; 0.508898;, + 0.811429; 0.451803;, + 0.116016; 0.000240;, + 0.144972; 0.000236;, + 0.144976; 0.025682;, + 0.116019; 0.025685;, + 0.057355; 0.768150;, + 0.057350; 0.739193;, + 0.082797; 0.739188;, + 0.082802; 0.768146;, + 0.057383; 0.941887;, + 0.057379; 0.912931;, + 0.082823; 0.912928;, + 0.082827; 0.941883;, + 0.347687; 0.000205;, + 0.376649; 0.000201;, + 0.376652; 0.025652;, + 0.347690; 0.025655;, + 0.029149; 0.000250;, + 0.058105; 0.000247;, + 0.058107; 0.025692;, + 0.029152; 0.025694;, + 0.260805; 0.000217;, + 0.289765; 0.000213;, + 0.289768; 0.025662;, + 0.260808; 0.025666;, + 0.087060; 0.000244;, + 0.116016; 0.000240;, + 0.116019; 0.025685;, + 0.087063; 0.025689;, + 0.057350; 0.739193;, + 0.057344; 0.710235;, + 0.082791; 0.710230;, + 0.082797; 0.739188;, + 0.405612; 0.000199;, + 0.434575; 0.000196;, + 0.434577; 0.025647;, + 0.405614; 0.025649;, + 0.713049; 0.193461;, + 0.713050; 0.174059;, + 0.744379; 0.174059;, + 0.744378; 0.193462;, + 0.637681; 0.441873;, + 0.666640; 0.441875;, + 0.666636; 0.508897;, + 0.637678; 0.508895;, + 0.744378; 0.193462;, + 0.744379; 0.174059;, + 0.779683; 0.174059;, + 0.779683; 0.193462;, + 0.538219; 0.174056;, + 0.538218; 0.193459;, + 0.502914; 0.193458;, + 0.502915; 0.174056;, + 0.639530; 0.866817;, + 0.639530; 0.895775;, + 0.604225; 0.895775;, + 0.604225; 0.866817;, + 0.538218; 0.193459;, + 0.538218; 0.250552;, + 0.502913; 0.250552;, + 0.502914; 0.193458;, + 0.680897; 0.536435;, + 0.680897; 0.565393;, + 0.661495; 0.565393;, + 0.661494; 0.536436;, + 0.626819; 0.193460;, + 0.626818; 0.250554;, + 0.569547; 0.250553;, + 0.569547; 0.193459;, + 0.713050; 0.130054;, + 0.744378; 0.130054;, + 0.744379; 0.174059;, + 0.713050; 0.174059;, + 0.569547; 0.174056;, + 0.569547; 0.193459;, + 0.538218; 0.193459;, + 0.538219; 0.174056;, + 0.569547; 0.193459;, + 0.569547; 0.250553;, + 0.538218; 0.250552;, + 0.538218; 0.193459;, + 0.713048; 0.250555;, + 0.713049; 0.193461;, + 0.744378; 0.193462;, + 0.744377; 0.250556;, + 0.538218; 0.105181;, + 0.569546; 0.105181;, + 0.569546; 0.130052;, + 0.538218; 0.130053;, + 0.683535; 0.866817;, + 0.683535; 0.895775;, + 0.639530; 0.895775;, + 0.639530; 0.866817;, + 0.724902; 0.536434;, + 0.724902; 0.565392;, + 0.680897; 0.565393;, + 0.680897; 0.536435;, + 0.538218; 0.130053;, + 0.569546; 0.130052;, + 0.569547; 0.174056;, + 0.538219; 0.174056;, + 0.749775; 0.565392;, + 0.749774; 0.536433;, + 0.781104; 0.536433;, + 0.781104; 0.565392;, + 0.818664; 0.105182;, + 0.818664; 0.130054;, + 0.744378; 0.130054;, + 0.744378; 0.105182;, + 0.749774; 0.536433;, + 0.749775; 0.565392;, + 0.724902; 0.565392;, + 0.724902; 0.536434;, + 0.713050; 0.105182;, + 0.744378; 0.105182;, + 0.744378; 0.130054;, + 0.713050; 0.130054;, + 0.637683; 0.406569;, + 0.666641; 0.406570;, + 0.666640; 0.441875;, + 0.637681; 0.441873;, + 0.637685; 0.375240;, + 0.666643; 0.375241;, + 0.666641; 0.406570;, + 0.637683; 0.406569;, + 0.779681; 0.317579;, + 0.744376; 0.317578;, + 0.744377; 0.250556;, + 0.779682; 0.250557;, + 0.655775; 0.317576;, + 0.655777; 0.250554;, + 0.713048; 0.250555;, + 0.713047; 0.317577;, + 0.744376; 0.317578;, + 0.713047; 0.317577;, + 0.713048; 0.250555;, + 0.744377; 0.250556;, + 0.538217; 0.317574;, + 0.502912; 0.317573;, + 0.502913; 0.250552;, + 0.538218; 0.250552;, + 0.626819; 0.193460;, + 0.655778; 0.193460;, + 0.655777; 0.250554;, + 0.626818; 0.250554;, + 0.655775; 0.317576;, + 0.626817; 0.317575;, + 0.626818; 0.250554;, + 0.655777; 0.250554;, + 0.604227; 0.565396;, + 0.604225; 0.536439;, + 0.661494; 0.536436;, + 0.661495; 0.565393;, + 0.655777; 0.250554;, + 0.655778; 0.193460;, + 0.713049; 0.193461;, + 0.713048; 0.250555;, + 0.626818; 0.250554;, + 0.626817; 0.317575;, + 0.569546; 0.317575;, + 0.569547; 0.250553;, + 0.637688; 0.317967;, + 0.666646; 0.317969;, + 0.666643; 0.375241;, + 0.637685; 0.375240;, + 0.782694; 0.866817;, + 0.782694; 0.895775;, + 0.757821; 0.895775;, + 0.757821; 0.866817;, + 0.757821; 0.866817;, + 0.757821; 0.895775;, + 0.683535; 0.895775;, + 0.683535; 0.866817;, + 0.855393; 0.536433;, + 0.855393; 0.565392;, + 0.781104; 0.565392;, + 0.781104; 0.536433;, + 0.463933; 0.130054;, + 0.463933; 0.105182;, + 0.538218; 0.105181;, + 0.538218; 0.130053;; + } //End of Plane_000 UV Coordinates + } //End of Plane_000 Mesh + } //End of Plane +} //End of Root Frame diff --git a/games/minetest_game/mods/boats/textures/boat_inventory.png b/games/minetest_game/mods/boats/textures/boat_inventory.png new file mode 100644 index 0000000..e075663 Binary files /dev/null and b/games/minetest_game/mods/boats/textures/boat_inventory.png differ diff --git a/games/minetest_game/mods/boats/textures/boat_wield.png b/games/minetest_game/mods/boats/textures/boat_wield.png new file mode 100644 index 0000000..ca62b14 Binary files /dev/null and b/games/minetest_game/mods/boats/textures/boat_wield.png differ diff --git a/games/minetest_game/mods/bones/README.txt b/games/minetest_game/mods/bones/README.txt new file mode 100644 index 0000000..b0ebed8 --- /dev/null +++ b/games/minetest_game/mods/bones/README.txt @@ -0,0 +1,17 @@ +Minetest 0.4 mod: bones +======================= + +License of source code: +----------------------- +Copyright (C) 2012 PilzAdam + +WTFPL + +License of media (textures and sounds) +-------------------------------------- +Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) +http://creativecommons.org/licenses/by-sa/3.0/ + +Authors of media files +---------------------- +Bad_Command_ diff --git a/games/minetest_game/mods/bones/depends.txt b/games/minetest_game/mods/bones/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/games/minetest_game/mods/bones/depends.txt @@ -0,0 +1 @@ +default diff --git a/games/minetest_game/mods/bones/init.lua b/games/minetest_game/mods/bones/init.lua new file mode 100644 index 0000000..e0d8820 --- /dev/null +++ b/games/minetest_game/mods/bones/init.lua @@ -0,0 +1,179 @@ +-- Minetest 0.4 mod: bones +-- See README.txt for licensing and other information. + +local function is_owner(pos, name) + local owner = minetest.get_meta(pos):get_string("owner") + if owner == "" or owner == name then + return true + end + return false +end + +minetest.register_node("bones:bones", { + description = "Bones", + tiles = { + "bones_top.png", + "bones_bottom.png", + "bones_side.png", + "bones_side.png", + "bones_rear.png", + "bones_front.png" + }, + paramtype2 = "facedir", + groups = {dig_immediate=2}, + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_gravel_footstep", gain=0.5}, + dug = {name="default_gravel_footstep", gain=1.0}, + }), + + can_dig = function(pos, player) + local inv = minetest.get_meta(pos):get_inventory() + return is_owner(pos, player:get_player_name()) and inv:is_empty("main") + end, + + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + if is_owner(pos, player:get_player_name()) then + return count + end + return 0 + end, + + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + return 0 + end, + + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + if is_owner(pos, player:get_player_name()) then + return stack:get_count() + end + return 0 + end, + + on_metadata_inventory_take = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + if meta:get_inventory():is_empty("main") then + minetest.remove_node(pos) + end + end, + + on_punch = function(pos, node, player) + if(not is_owner(pos, player:get_player_name())) then + return + end + + local inv = minetest.get_meta(pos):get_inventory() + local player_inv = player:get_inventory() + local has_space = true + + for i=1,inv:get_size("main") do + local stk = inv:get_stack("main", i) + if player_inv:room_for_item("main", stk) then + inv:set_stack("main", i, nil) + player_inv:add_item("main", stk) + else + has_space = false + break + end + end + + if player_inv:room_for_item("main", {"bones:bones"}) then + player_inv:add_item("main", "bones:bones") -- rnd add bone when picked up :) + minetest.remove_node(pos) -- remove bones + end + end, + + on_timer = function(pos, elapsed) + local meta = minetest.get_meta(pos) + local time = meta:get_int("bonetime_counter")*10 +elapsed --meta:get_int("time")+elapsed + local publish = 600 -- 10 minutes till old bones, original 1200 + --if tonumber(minetest.setting_get("share_bones_time")) then + -- publish = tonumber(minetest.setting_get("share_bones_time")) + --end + -- if publish == 0 then + -- return + --end + if time >= publish then + meta:set_string("infotext", meta:get_string("owner").."'s old bones") + meta:set_string("owner", "") + else + meta:set_int("bonetime_counter", meta:get_int("bonetime_counter") + 1) -- rnd: lag fix for bone timeout + return true + end + end, +}) + +minetest.register_on_dieplayer(function(player) + if minetest.setting_getbool("creative_mode") then + return + end + + local player_inv = player:get_inventory() + if player_inv:is_empty("main") and + player_inv:is_empty("craft") then + --return -- rnd disabled so bones still appear + end + + local pos = player:getpos() + pos.x = math.floor(pos.x+0.5) + pos.y = math.floor(pos.y+0.5) + pos.z = math.floor(pos.z+0.5) + local param2 = minetest.dir_to_facedir(player:get_look_dir()) + local player_name = player:get_player_name() + local player_inv = player:get_inventory() + + local nn = minetest.get_node(pos).name + if minetest.registered_nodes[nn].can_dig and + not minetest.registered_nodes[nn].can_dig(pos, player) then + + -- drop items instead of delete + for i=1,player_inv:get_size("main") do + minetest.add_item(pos, player_inv:get_stack("main", i)) + end + for i=1,player_inv:get_size("craft") do + minetest.add_item(pos, player_inv:get_stack("craft", i)) + end + -- empty lists main and craft + player_inv:set_list("main", {}) + player_inv:set_list("craft", {}) + return + end + + local pnode = minetest.get_node(pos); + local p = pnode.name; + if p == "air" or p == "default:water_source" or p == "default:water_flowing" or p == "default:lava_source" or p == "default:lava_flowing" then -- rnd fix + minetest.dig_node(pos) + minetest.add_node(pos, {name="bones:bones", param2=param2}) + else return + end + + + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + inv:set_size("main", 8*4) + inv:set_list("main", player_inv:get_list("main")) + + for i=1,player_inv:get_size("craft") do + local stack = player_inv:get_stack("craft", i) + if inv:room_for_item("main", stack) then + inv:add_item("main", stack) + else + --drop if no space left + minetest.add_item(pos, stack) + end + end + + + player_inv:set_list("main", {}) + player_inv:set_list("craft", {}) + + meta:set_string("formspec", "size[8,9;]".. + "list[current_name;main;0,0;8,4;]".. + "list[current_player;main;0,5;8,4;]") + meta:set_string("infotext", player_name.."'s fresh bones") + meta:set_string("owner", player_name) + meta:set_int("time", 0) + meta:set_int("bonetime_counter", 0) -- rnd: this is lag fix for bone counter + + local timer = minetest.get_node_timer(pos) + timer:start(10) +end) diff --git a/games/minetest_game/mods/bones/textures/bones_bottom.png b/games/minetest_game/mods/bones/textures/bones_bottom.png new file mode 100644 index 0000000..ada72ce Binary files /dev/null and b/games/minetest_game/mods/bones/textures/bones_bottom.png differ diff --git a/games/minetest_game/mods/bones/textures/bones_front.png b/games/minetest_game/mods/bones/textures/bones_front.png new file mode 100644 index 0000000..9dcbb97 Binary files /dev/null and b/games/minetest_game/mods/bones/textures/bones_front.png differ diff --git a/games/minetest_game/mods/bones/textures/bones_rear.png b/games/minetest_game/mods/bones/textures/bones_rear.png new file mode 100644 index 0000000..8e1ac10 Binary files /dev/null and b/games/minetest_game/mods/bones/textures/bones_rear.png differ diff --git a/games/minetest_game/mods/bones/textures/bones_side.png b/games/minetest_game/mods/bones/textures/bones_side.png new file mode 100644 index 0000000..3b4810c Binary files /dev/null and b/games/minetest_game/mods/bones/textures/bones_side.png differ diff --git a/games/minetest_game/mods/bones/textures/bones_top.png b/games/minetest_game/mods/bones/textures/bones_top.png new file mode 100644 index 0000000..6119864 Binary files /dev/null and b/games/minetest_game/mods/bones/textures/bones_top.png differ diff --git a/games/minetest_game/mods/bucket/README.txt b/games/minetest_game/mods/bucket/README.txt new file mode 100644 index 0000000..7dad641 --- /dev/null +++ b/games/minetest_game/mods/bucket/README.txt @@ -0,0 +1,26 @@ +Minetest 0.4 mod: bucket +========================= + +License of source code: +----------------------- +Copyright (C) 2011-2012 Kahrl +Copyright (C) 2011-2012 celeron55, Perttu Ahola + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +http://www.gnu.org/licenses/lgpl-2.1.html + +License of media (textures and sounds) +-------------------------------------- +Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) +http://creativecommons.org/licenses/by-sa/3.0/ + +Authors of media files +----------------------- +Everything not listed in here: +Copyright (C) 2010-2012 celeron55, Perttu Ahola + + diff --git a/games/minetest_game/mods/bucket/depends.txt b/games/minetest_game/mods/bucket/depends.txt new file mode 100644 index 0000000..3a7daa1 --- /dev/null +++ b/games/minetest_game/mods/bucket/depends.txt @@ -0,0 +1,2 @@ +default + diff --git a/games/minetest_game/mods/bucket/init.lua b/games/minetest_game/mods/bucket/init.lua new file mode 100644 index 0000000..6715ebb --- /dev/null +++ b/games/minetest_game/mods/bucket/init.lua @@ -0,0 +1,154 @@ +-- Minetest 0.4 mod: bucket +-- See README.txt for licensing and other information. + +minetest.register_alias("bucket", "bucket:bucket_empty") +minetest.register_alias("bucket_water", "bucket:bucket_water") +minetest.register_alias("bucket_lava", "bucket:bucket_lava") + +minetest.register_craft({ + output = 'bucket:bucket_empty 1', + recipe = { + {'default:steel_ingot', '', 'default:steel_ingot'}, + {'', 'default:steel_ingot', ''}, + } +}) + +bucket = {} +bucket.liquids = {} + +local function check_protection(pos, name, text) + if minetest.is_protected(pos, name) then + minetest.log("action", (name ~= "" and name or "A mod") + .. " tried to " .. text + .. " at protected position " + .. minetest.pos_to_string(pos) + .. " with a bucket") + minetest.record_protection_violation(pos, name) + return true + end + return false +end + +-- Register a new liquid +-- source = name of the source node +-- flowing = name of the flowing node +-- itemname = name of the new bucket item (or nil if liquid is not takeable) +-- inventory_image = texture of the new bucket item (ignored if itemname == nil) +-- This function can be called from any mod (that depends on bucket). +function bucket.register_liquid(source, flowing, itemname, inventory_image, name) + bucket.liquids[source] = { + source = source, + flowing = flowing, + itemname = itemname, + } + bucket.liquids[flowing] = bucket.liquids[source] + + if itemname ~= nil then + minetest.register_craftitem(itemname, { + description = name, + inventory_image = inventory_image, + stack_max = 1, + liquids_pointable = true, + on_place = function(itemstack, user, pointed_thing) + -- Must be pointing to node + if pointed_thing.type ~= "node" then + return + end + + local node = minetest.get_node_or_nil(pointed_thing.under) + local ndef + if node then + ndef = minetest.registered_nodes[node.name] + end + -- Call on_rightclick if the pointed node defines it + if ndef and ndef.on_rightclick and + user and not user:get_player_control().sneak then + return ndef.on_rightclick( + pointed_thing.under, + node, user, + itemstack) or itemstack + end + + local place_liquid = function(pos, node, source, flowing) + if check_protection(pos, + user and user:get_player_name() or "", + "place "..source) then + return + end + minetest.add_node(pos, {name=source}) + end + + -- Check if pointing to a buildable node + if ndef and ndef.buildable_to then + -- buildable; replace the node + place_liquid(pointed_thing.under, node, + source, flowing) + else + -- not buildable to; place the liquid above + -- check if the node above can be replaced + local node = minetest.get_node_or_nil(pointed_thing.above) + if node and minetest.registered_nodes[node.name].buildable_to then + place_liquid(pointed_thing.above, + node, source, + flowing) + else + -- do not remove the bucket with the liquid + return + end + end + return {name="bucket:bucket_empty"} + end + }) + end +end + +minetest.register_craftitem("bucket:bucket_empty", { + description = "Empty Bucket", + inventory_image = "bucket.png", + stack_max = 1, + liquids_pointable = true, + on_use = function(itemstack, user, pointed_thing) + -- Must be pointing to node + if pointed_thing.type ~= "node" then + return + end + -- Check if pointing to a liquid source + local node = minetest.get_node(pointed_thing.under) + local liquiddef = bucket.liquids[node.name] + if liquiddef ~= nil and liquiddef.itemname ~= nil and + node.name == liquiddef.source then + if check_protection(pointed_thing.under, + user:get_player_name(), + "take ".. node.name) then + return + end + + minetest.add_node(pointed_thing.under, {name="air"}) + + return ItemStack(liquiddef.itemname) + end + end, +}) + +bucket.register_liquid( + "default:water_source", + "default:water_flowing", + "bucket:bucket_water", + "bucket_water.png", + "Water Bucket" +) + +bucket.register_liquid( + "default:lava_source", + "default:lava_flowing", + "bucket:bucket_lava", + "bucket_lava.png", + "Lava Bucket" +) + +minetest.register_craft({ + type = "fuel", + recipe = "bucket:bucket_lava", + burntime = 60, + replacements = {{"bucket:bucket_lava", "bucket:bucket_empty"}}, +}) diff --git a/games/minetest_game/mods/bucket/textures/bucket.png b/games/minetest_game/mods/bucket/textures/bucket.png new file mode 100644 index 0000000..6779528 Binary files /dev/null and b/games/minetest_game/mods/bucket/textures/bucket.png differ diff --git a/games/minetest_game/mods/bucket/textures/bucket_lava.png b/games/minetest_game/mods/bucket/textures/bucket_lava.png new file mode 100644 index 0000000..d2baeb9 Binary files /dev/null and b/games/minetest_game/mods/bucket/textures/bucket_lava.png differ diff --git a/games/minetest_game/mods/bucket/textures/bucket_water.png b/games/minetest_game/mods/bucket/textures/bucket_water.png new file mode 100644 index 0000000..877692a Binary files /dev/null and b/games/minetest_game/mods/bucket/textures/bucket_water.png differ diff --git a/games/minetest_game/mods/creative/README.txt b/games/minetest_game/mods/creative/README.txt new file mode 100644 index 0000000..7d49b98 --- /dev/null +++ b/games/minetest_game/mods/creative/README.txt @@ -0,0 +1,22 @@ +Minetest 0.4 mod: creative +========================== + +Implements creative mode. + +Switch on by using the "creative_mode" setting. + +Registered items that +- have a description, and +- do not have the group not_in_creative_inventory +are added to the creative inventory. + +License of source code and media files: +--------------------------------------- +Copyright (C) 2012 Perttu Ahola (celeron55) + +This program is free software. It comes without any warranty, to +the extent permitted by applicable law. You can redistribute it +and/or modify it under the terms of the Do What The Fuck You Want +To Public License, Version 2, as published by Sam Hocevar. See +http://sam.zoy.org/wtfpl/COPYING for more details. + diff --git a/games/minetest_game/mods/creative/depends.txt b/games/minetest_game/mods/creative/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/games/minetest_game/mods/creative/depends.txt @@ -0,0 +1 @@ +default diff --git a/games/minetest_game/mods/creative/init.lua b/games/minetest_game/mods/creative/init.lua new file mode 100644 index 0000000..41282b1 --- /dev/null +++ b/games/minetest_game/mods/creative/init.lua @@ -0,0 +1,172 @@ +-- minetest/creative/init.lua + +creative_inventory = {} +creative_inventory.creative_inventory_size = 0 + +-- Create detached creative inventory after loading all mods +minetest.after(0, function() + local inv = minetest.create_detached_inventory("creative", { + allow_move = function(inv, from_list, from_index, to_list, to_index, count, player) + if minetest.setting_getbool("creative_mode") then + return count + else + return 0 + end + end, + allow_put = function(inv, listname, index, stack, player) + return 0 + end, + allow_take = function(inv, listname, index, stack, player) + if minetest.setting_getbool("creative_mode") then + return -1 + else + return 0 + end + end, + on_move = function(inv, from_list, from_index, to_list, to_index, count, player) + end, + on_put = function(inv, listname, index, stack, player) + end, + on_take = function(inv, listname, index, stack, player) + --print(player:get_player_name().." takes item from creative inventory; listname="..dump(listname)..", index="..dump(index)..", stack="..dump(stack)) + if stack then + minetest.log("action", player:get_player_name().." takes "..dump(stack:get_name()).." from creative inventory") + --print("stack:get_name()="..dump(stack:get_name())..", stack:get_count()="..dump(stack:get_count())) + end + end, + }) + local creative_list = {} + for name,def in pairs(minetest.registered_items) do + if (not def.groups.not_in_creative_inventory or def.groups.not_in_creative_inventory == 0) + and def.description and def.description ~= "" then + table.insert(creative_list, name) + end + end + table.sort(creative_list) + inv:set_size("main", #creative_list) + for _,itemstring in ipairs(creative_list) do + inv:add_item("main", ItemStack(itemstring)) + end + creative_inventory.creative_inventory_size = #creative_list + --print("creative inventory size: "..dump(creative_inventory.creative_inventory_size)) +end) + +-- Create the trash field +local trash = minetest.create_detached_inventory("creative_trash", { + -- Allow the stack to be placed and remove it in on_put() + -- This allows the creative inventory to restore the stack + allow_put = function(inv, listname, index, stack, player) + if minetest.setting_getbool("creative_mode") then + return stack:get_count() + else + return 0 + end + end, + on_put = function(inv, listname, index, stack, player) + inv:set_stack(listname, index, "") + end, +}) +trash:set_size("main", 1) + + +creative_inventory.set_creative_formspec = function(player, start_i, pagenum) + pagenum = math.floor(pagenum) + local pagemax = math.floor((creative_inventory.creative_inventory_size-1) / (6*4) + 1) + player:set_inventory_formspec( + "size[13,7.5]".. + --"image[6,0.6;1,2;player.png]".. + default.gui_bg.. + default.gui_bg_img.. + default.gui_slots.. + "list[current_player;main;5,3.5;8,1;]".. + "list[current_player;main;5,4.75;8,3;8]".. + "list[current_player;craft;8,0;3,3;]".. + "list[current_player;craftpreview;12,1;1,1;]".. + "list[detached:creative;main;0.3,0.5;4,6;"..tostring(start_i).."]".. + "label[2.0,6.55;"..tostring(pagenum).."/"..tostring(pagemax).."]".. + "button[0.3,6.5;1.6,1;creative_prev;<<]".. + "button[2.7,6.5;1.6,1;creative_next;>>]".. + "label[5,1.5;Trash:]".. + "list[detached:creative_trash;main;5,2;1,1;]".. + default.get_hotbar_bg(5,3.5) + ) +end +minetest.register_on_joinplayer(function(player) + -- If in creative mode, modify player's inventory forms + if not minetest.setting_getbool("creative_mode") then + return + end + creative_inventory.set_creative_formspec(player, 0, 1) +end) +minetest.register_on_player_receive_fields(function(player, formname, fields) + if not minetest.setting_getbool("creative_mode") then + return + end + -- Figure out current page from formspec + local current_page = 0 + local formspec = player:get_inventory_formspec() + local start_i = string.match(formspec, "list%[detached:creative;main;[%d.]+,[%d.]+;[%d.]+,[%d.]+;(%d+)%]") + start_i = tonumber(start_i) or 0 + + if fields.creative_prev then + start_i = start_i - 4*6 + end + if fields.creative_next then + start_i = start_i + 4*6 + end + + if start_i < 0 then + start_i = start_i + 4*6 + end + if start_i >= creative_inventory.creative_inventory_size then + start_i = start_i - 4*6 + end + + if start_i < 0 or start_i >= creative_inventory.creative_inventory_size then + start_i = 0 + end + + creative_inventory.set_creative_formspec(player, start_i, start_i / (6*4) + 1) +end) + +if minetest.setting_getbool("creative_mode") then + local digtime = 0.5 + minetest.register_item(":", { + type = "none", + wield_image = "wieldhand.png", + wield_scale = {x=1,y=1,z=2.5}, + range = 10, + tool_capabilities = { + full_punch_interval = 0.5, + max_drop_level = 3, + groupcaps = { + crumbly = {times={[1]=digtime, [2]=digtime, [3]=digtime}, uses=0, maxlevel=3}, + cracky = {times={[1]=digtime, [2]=digtime, [3]=digtime}, uses=0, maxlevel=3}, + snappy = {times={[1]=digtime, [2]=digtime, [3]=digtime}, uses=0, maxlevel=3}, + choppy = {times={[1]=digtime, [2]=digtime, [3]=digtime}, uses=0, maxlevel=3}, + oddly_breakable_by_hand = {times={[1]=digtime, [2]=digtime, [3]=digtime}, uses=0, maxlevel=3}, + }, + damage_groups = {fleshy = 10}, + } + }) + + minetest.register_on_placenode(function(pos, newnode, placer, oldnode, itemstack) + return true + end) + + function minetest.handle_node_drops(pos, drops, digger) + if not digger or not digger:is_player() then + return + end + local inv = digger:get_inventory() + if inv then + for _,item in ipairs(drops) do + item = ItemStack(item):get_name() + if not inv:contains_item("main", item) then + inv:add_item("main", item) + end + end + end + end + +end diff --git a/games/minetest_game/mods/default/README.txt b/games/minetest_game/mods/default/README.txt new file mode 100644 index 0000000..695d3b1 --- /dev/null +++ b/games/minetest_game/mods/default/README.txt @@ -0,0 +1,191 @@ +Minetest 0.4 mod: default +========================== + +License of source code: +----------------------- +Copyright (C) 2011-2012 celeron55, Perttu Ahola + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or +(at your option) any later version. + +http://www.gnu.org/licenses/lgpl-2.1.html + +License of media (textures and sounds) +-------------------------------------- +Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) +http://creativecommons.org/licenses/by-sa/3.0/ + +Authors of media files +----------------------- +Everything not listed in here: +Copyright (C) 2010-2012 celeron55, Perttu Ahola + +Cisoun's WTFPL texture pack: + default_jungletree.png + default_jungletree_top.png + default_lava.png + default_leaves.png + default_sapling.png + default_sign_wall.png + default_stone.png + default_tree.png + default_tree_top.png + default_water.png + +Cisoun's conifers mod (WTFPL): + default_pine_needles.png + +Originating from G4JC's Almost MC Texture Pack: + default_torch.png + default_torch_on_ceiling.png + default_torch_on_floor.png + +VanessaE's animated torches (WTFPL): + default_torch_animated.png + default_torch_on_ceiling_animated.png + default_torch_on_floor_animated.png + default_torch_on_floor.png + +RealBadAngel's animated water (WTFPL): + default_water_source_animated.png + default_water_flowing_animated.png + +VanessaE (WTFPL): + default_nc_back.png + default_nc_front.png + default_nc_rb.png + default_nc_side.png + default_grass_*.png + default_desert_sand.png + default_desert_stone.png + default_desert_stone_brick.png + default_sand.png + default_sandstone_brick.png + +Calinou (CC BY-SA): + default_brick.png + default_papyrus.png + default_copper_lump.png + default_mineral_copper.png + default_glass_detail.png + +MirceaKitsune (WTFPL): + character.x + +Jordach (CC BY-SA 3.0): + character.png + +PilzAdam (WTFPL): + default_jungleleaves.png + default_junglesapling.png + default_junglewood.png + default_obsidian_glass.png + default_obsidian_shard.png + default_gold_lump.png + default_mineral_gold.png + default_snowball.png + +jojoa1997 (WTFPL): + default_obsidian.png + +InfinityProject (WTFPL): + default_mineral_diamond.png + +Splizard (CC BY-SA 3.0): + default_snow.png + default_snow_side.png + default_ice.png + default_pine_sapling.png + +Zeg9 (CC BY-SA 3.0): + default_coal_block.png + default_steel_block.png + default_copper_block.png + default_bronze_block.png + default_gold_block.png + +paramat (CC BY-SA 3.0): + wieldhand.png, based on character.png by Jordach (CC BY-SA 3.0) + default_pinetree.png + default_pinetree_top.png + default_pinewood.png + +brunob.santos (CC BY-SA 4.0): + default_desert_cobble.png + +BlockMen (CC BY-SA 3.0): + default_stone_brick.png + default_wood.png + default_clay_brick.png + default_tool_steelsword.png + default_bronze_ingot.png + default_copper_ingot.png + default_gold_ingot.png + default_diamond.png + default_diamond_block.png + default_tool_*.png + default_lava_source_animated.png + default_lava_flowing_animated.png + default_book.png + default_paper.png + default_stick.png + default_chest_front.png + default_chest_lock.png + default_chest_side.png + default_chest_top.png + bubble.png + heart.png + gui_*.png + +Neuromancer (CC BY-SA 2.0): + default_cobble.png, based on texture by Brane praefect + default_mossycobble.png, based on texture by Brane praefect +Neuromancer (CC BY-SA 3.0): + default_dirt.png + default_furnace_*.png + +Philipbenr (CC BY-SA 3.0): + default_grass.png + default_grass_side.png + +Glass breaking sounds (CC BY 3.0): + 1: http://www.freesound.org/people/cmusounddesign/sounds/71947/ + 2: http://www.freesound.org/people/Tomlija/sounds/97669/ + 3: http://www.freesound.org/people/lsprice/sounds/88808/ + +Mito551 (sounds) (CC BY-SA): + default_dig_choppy.ogg + default_dig_cracky.ogg + default_dig_crumbly.1.ogg + default_dig_crumbly.2.ogg + default_dig_dig_immediate.ogg + default_dig_oddly_breakable_by_hand.ogg + default_dug_node.1.ogg + default_dug_node.2.ogg + default_grass_footstep.1.ogg + default_grass_footstep.2.ogg + default_grass_footstep.3.ogg + default_gravel_footstep.1.ogg + default_gravel_footstep.2.ogg + default_gravel_footstep.3.ogg + default_gravel_footstep.4.ogg + default_grass_footstep.1.ogg + default_place_node.1.ogg + default_place_node.2.ogg + default_place_node.3.ogg + default_place_node_hard.1.ogg + default_place_node_hard.2.ogg + default_snow_footstep.1.ogg + default_snow_footstep.2.ogg + default_hard_footstep.1.ogg + default_hard_footstep.2.ogg + default_hard_footstep.3.ogg + default_sand_footstep.1.ogg + default_sand_footstep.2.ogg + default_wood_footstep.1.ogg + default_wood_footstep.2.ogg + default_dirt_footstep.1.ogg + default_dirt_footstep.2.ogg + default_glass_footstep.ogg diff --git a/games/minetest_game/mods/default/aliases.lua b/games/minetest_game/mods/default/aliases.lua new file mode 100644 index 0000000..d80082e --- /dev/null +++ b/games/minetest_game/mods/default/aliases.lua @@ -0,0 +1,67 @@ +-- aliases (Minetest 0.4 mod) +-- Provides alias for most default items + +minetest.register_alias("stone", "default:stone") +minetest.register_alias("stone_with_coal", "default:stone_with_coal") +minetest.register_alias("stone_with_iron", "default:stone_with_iron") +minetest.register_alias("dirt_with_grass", "default:dirt_with_grass") +minetest.register_alias("dirt_with_grass_footsteps", "default:dirt_with_grass_footsteps") +minetest.register_alias("dirt", "default:dirt") +minetest.register_alias("sand", "default:sand") +minetest.register_alias("gravel", "default:gravel") +minetest.register_alias("sandstone", "default:sandstone") +minetest.register_alias("clay", "default:clay") +minetest.register_alias("brick", "default:brick") +minetest.register_alias("tree", "default:tree") +minetest.register_alias("jungletree", "default:jungletree") +minetest.register_alias("junglegrass", "default:junglegrass") +minetest.register_alias("leaves", "default:leaves") +minetest.register_alias("cactus", "default:cactus") +minetest.register_alias("papyrus", "default:papyrus") +minetest.register_alias("bookshelf", "default:bookshelf") +minetest.register_alias("glass", "default:glass") +minetest.register_alias("wooden_fence", "default:fence_wood") +minetest.register_alias("rail", "default:rail") +minetest.register_alias("ladder", "default:ladder") +minetest.register_alias("wood", "default:wood") +minetest.register_alias("mese", "default:mese") +minetest.register_alias("cloud", "default:cloud") +minetest.register_alias("water_flowing", "default:water_flowing") +minetest.register_alias("water_source", "default:water_source") +minetest.register_alias("lava_flowing", "default:lava_flowing") +minetest.register_alias("lava_source", "default:lava_source") +minetest.register_alias("torch", "default:torch") +minetest.register_alias("sign_wall", "default:sign_wall") +minetest.register_alias("furnace", "default:furnace") +minetest.register_alias("chest", "default:chest") +minetest.register_alias("locked_chest", "default:chest_locked") +minetest.register_alias("cobble", "default:cobble") +minetest.register_alias("mossycobble", "default:mossycobble") +minetest.register_alias("steelblock", "default:steelblock") +minetest.register_alias("nyancat", "default:nyancat") +minetest.register_alias("nyancat_rainbow", "default:nyancat_rainbow") +minetest.register_alias("sapling", "default:sapling") +minetest.register_alias("apple", "default:apple") + +minetest.register_alias("WPick", "default:pick_wood") +minetest.register_alias("STPick", "default:pick_stone") +minetest.register_alias("SteelPick", "default:pick_steel") +minetest.register_alias("MesePick", "default:pick_mese") +minetest.register_alias("WShovel", "default:shovel_wood") +minetest.register_alias("STShovel", "default:shovel_stone") +minetest.register_alias("SteelShovel", "default:shovel_steel") +minetest.register_alias("WAxe", "default:axe_wood") +minetest.register_alias("STAxe", "default:axe_stone") +minetest.register_alias("SteelAxe", "default:axe_steel") +minetest.register_alias("WSword", "default:sword_wood") +minetest.register_alias("STSword", "default:sword_stone") +minetest.register_alias("SteelSword", "default:sword_steel") + +minetest.register_alias("Stick", "default:stick") +minetest.register_alias("paper", "default:paper") +minetest.register_alias("book", "default:book") +minetest.register_alias("lump_of_coal", "default:coal_lump") +minetest.register_alias("lump_of_iron", "default:iron_lump") +minetest.register_alias("lump_of_clay", "default:clay_lump") +minetest.register_alias("steel_ingot", "default:steel_ingot") +minetest.register_alias("clay_brick", "default:clay_brick") diff --git a/games/minetest_game/mods/default/crafting.lua b/games/minetest_game/mods/default/crafting.lua new file mode 100644 index 0000000..c8839ec --- /dev/null +++ b/games/minetest_game/mods/default/crafting.lua @@ -0,0 +1,824 @@ +-- mods/default/crafting.lua + +minetest.register_craft({ + output = 'default:wood 4', + recipe = { + {'default:tree'}, + } +}) + +minetest.register_craft({ + output = 'default:junglewood 4', + recipe = { + {'default:jungletree'}, + } +}) + +minetest.register_craft({ + output = 'default:pinewood 4', + recipe = { + {'default:pinetree'}, + } +}) + +minetest.register_craft({ + output = 'default:stick 4', + recipe = { + {'group:wood'}, + } +}) + +minetest.register_craft({ + output = 'default:fence_wood 2', + recipe = { + {'group:stick', 'group:stick', 'group:stick'}, + {'group:stick', 'group:stick', 'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:sign_wall', + recipe = { + {'group:wood', 'group:wood', 'group:wood'}, + {'group:wood', 'group:wood', 'group:wood'}, + {'', 'group:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:torch 4', + recipe = { + {'default:coal_lump'}, + {'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:pick_wood', + recipe = { + {'group:wood', 'group:wood', 'group:wood'}, + {'', 'group:stick', ''}, + {'', 'group:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:pick_stone', + recipe = { + {'group:stone', 'group:stone', 'group:stone'}, + {'', 'group:stick', ''}, + {'', 'group:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:pick_steel', + recipe = { + {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, + {'', 'group:stick', ''}, + {'', 'group:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:pick_bronze', + recipe = { + {'default:bronze_ingot', 'default:bronze_ingot', 'default:bronze_ingot'}, + {'', 'group:stick', ''}, + {'', 'group:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:pick_mese', + recipe = { + {'default:mese_crystal', 'default:mese_crystal', 'default:mese_crystal'}, + {'', 'group:stick', ''}, + {'', 'group:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:pick_diamond', + recipe = { + {'default:diamond', 'default:diamond', 'default:diamond'}, + {'', 'group:stick', ''}, + {'', 'group:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:shovel_wood', + recipe = { + {'group:wood'}, + {'group:stick'}, + {'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:shovel_stone', + recipe = { + {'group:stone'}, + {'group:stick'}, + {'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:shovel_steel', + recipe = { + {'default:steel_ingot'}, + {'group:stick'}, + {'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:shovel_bronze', + recipe = { + {'default:bronze_ingot'}, + {'group:stick'}, + {'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:shovel_mese', + recipe = { + {'default:mese_crystal'}, + {'group:stick'}, + {'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:shovel_diamond', + recipe = { + {'default:diamond'}, + {'group:stick'}, + {'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:axe_wood', + recipe = { + {'group:wood', 'group:wood'}, + {'group:wood', 'group:stick'}, + {'', 'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:axe_stone', + recipe = { + {'group:stone', 'group:stone'}, + {'group:stone', 'group:stick'}, + {'', 'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:axe_steel', + recipe = { + {'default:steel_ingot', 'default:steel_ingot'}, + {'default:steel_ingot', 'group:stick'}, + {'', 'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:axe_bronze', + recipe = { + {'default:bronze_ingot', 'default:bronze_ingot'}, + {'default:bronze_ingot', 'group:stick'}, + {'', 'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:axe_mese', + recipe = { + {'default:mese_crystal', 'default:mese_crystal'}, + {'default:mese_crystal', 'group:stick'}, + {'', 'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:axe_diamond', + recipe = { + {'default:diamond', 'default:diamond'}, + {'default:diamond', 'group:stick'}, + {'', 'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:axe_wood', + recipe = { + {'group:wood', 'group:wood'}, + {'group:stick', 'group:wood'}, + {'group:stick',''}, + } +}) + +minetest.register_craft({ + output = 'default:axe_stone', + recipe = { + {'group:stone', 'group:stone'}, + {'group:stick', 'group:stone'}, + {'group:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:axe_steel', + recipe = { + {'default:steel_ingot', 'default:steel_ingot'}, + {'group:stick', 'default:steel_ingot'}, + {'group:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:axe_bronze', + recipe = { + {'default:bronze_ingot', 'default:bronze_ingot'}, + {'group:stick', 'default:bronze_ingot'}, + {'group:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:axe_mese', + recipe = { + {'default:mese_crystal', 'default:mese_crystal'}, + {'group:stick', 'default:mese_crystal'}, + {'group:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:axe_diamond', + recipe = { + {'default:diamond', 'default:diamond'}, + {'group:stick', 'default:diamond'}, + {'group:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:sword_wood', + recipe = { + {'group:wood'}, + {'group:wood'}, + {'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:sword_stone', + recipe = { + {'group:stone'}, + {'group:stone'}, + {'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:sword_steel', + recipe = { + {'default:steel_ingot'}, + {'default:steel_ingot'}, + {'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:sword_bronze', + recipe = { + {'default:bronze_ingot'}, + {'default:bronze_ingot'}, + {'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:sword_mese', + recipe = { + {'default:mese_crystal'}, + {'default:mese_crystal'}, + {'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:sword_diamond', + recipe = { + {'default:diamond'}, + {'default:diamond'}, + {'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:rail 15', + recipe = { + {'default:steel_ingot', '', 'default:steel_ingot'}, + {'default:steel_ingot', 'group:stick', 'default:steel_ingot'}, + {'default:steel_ingot', '', 'default:steel_ingot'}, + } +}) + +minetest.register_craft({ + output = 'default:chest', + recipe = { + {'group:wood', 'group:wood', 'group:wood'}, + {'group:wood', '', 'group:wood'}, + {'group:wood', 'group:wood', 'group:wood'}, + } +}) + +minetest.register_craft({ + output = 'default:chest_locked', + recipe = { + {'group:wood', 'group:wood', 'group:wood'}, + {'group:wood', 'default:steel_ingot', 'group:wood'}, + {'group:wood', 'group:wood', 'group:wood'}, + } +}) + +minetest.register_craft({ + output = 'default:furnace', + recipe = { + {'group:stone', 'group:stone', 'group:stone'}, + {'group:stone', '', 'group:stone'}, + {'group:stone', 'group:stone', 'group:stone'}, + } +}) + +minetest.register_craft({ + type = "shapeless", + output = "default:bronze_ingot", + recipe = {"default:steel_ingot", "default:copper_ingot"}, +}) + +minetest.register_craft({ + output = 'default:coalblock', + recipe = { + {'default:coal_lump', 'default:coal_lump', 'default:coal_lump'}, + {'default:coal_lump', 'default:coal_lump', 'default:coal_lump'}, + {'default:coal_lump', 'default:coal_lump', 'default:coal_lump'}, + } +}) + +minetest.register_craft({ + output = 'default:coal_lump 9', + recipe = { + {'default:coalblock'}, + } +}) + +minetest.register_craft({ + output = 'default:steelblock', + recipe = { + {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, + {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, + {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, + } +}) + +minetest.register_craft({ + output = 'default:steel_ingot 9', + recipe = { + {'default:steelblock'}, + } +}) + +minetest.register_craft({ + output = 'default:copperblock', + recipe = { + {'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'}, + {'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'}, + {'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'}, + } +}) + +minetest.register_craft({ + output = 'default:copper_ingot 9', + recipe = { + {'default:copperblock'}, + } +}) + +minetest.register_craft({ + output = 'default:bronzeblock', + recipe = { + {'default:bronze_ingot', 'default:bronze_ingot', 'default:bronze_ingot'}, + {'default:bronze_ingot', 'default:bronze_ingot', 'default:bronze_ingot'}, + {'default:bronze_ingot', 'default:bronze_ingot', 'default:bronze_ingot'}, + } +}) + +minetest.register_craft({ + output = 'default:bronze_ingot 9', + recipe = { + {'default:bronzeblock'}, + } +}) + +minetest.register_craft({ + output = 'default:goldblock', + recipe = { + {'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'}, + {'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'}, + {'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'}, + } +}) + +minetest.register_craft({ + output = 'default:gold_ingot 9', + recipe = { + {'default:goldblock'}, + } +}) + +minetest.register_craft({ + output = 'default:diamondblock', + recipe = { + {'default:diamond', 'default:diamond', 'default:diamond'}, + {'default:diamond', 'default:diamond', 'default:diamond'}, + {'default:diamond', 'default:diamond', 'default:diamond'}, + } +}) + +minetest.register_craft({ + output = 'default:diamond 9', + recipe = { + {'default:diamondblock'}, + } +}) + +minetest.register_craft({ + output = 'default:sandstone', + recipe = { + {'group:sand', 'group:sand'}, + {'group:sand', 'group:sand'}, + } +}) + +minetest.register_craft({ + output = 'default:sand 4', + recipe = { + {'default:sandstone'}, + } +}) + +minetest.register_craft({ + output = 'default:sandstonebrick 4', + recipe = { + {'default:sandstone', 'default:sandstone'}, + {'default:sandstone', 'default:sandstone'}, + } +}) + +minetest.register_craft({ + output = 'default:clay', + recipe = { + {'default:clay_lump', 'default:clay_lump'}, + {'default:clay_lump', 'default:clay_lump'}, + } +}) + +minetest.register_craft({ + output = 'default:brick', + recipe = { + {'default:clay_brick', 'default:clay_brick'}, + {'default:clay_brick', 'default:clay_brick'}, + } +}) + +minetest.register_craft({ + output = 'default:clay_brick 4', + recipe = { + {'default:brick'}, + } +}) + +minetest.register_craft({ + output = 'default:paper', + recipe = { + {'default:papyrus', 'default:papyrus', 'default:papyrus'}, + } +}) + +minetest.register_craft({ + output = 'default:book', + recipe = { + {'default:paper'}, + {'default:paper'}, + {'default:paper'}, + } +}) + +minetest.register_craft({ + output = 'default:bookshelf', + recipe = { + {'group:wood', 'group:wood', 'group:wood'}, + {'default:book', 'default:book', 'default:book'}, + {'group:wood', 'group:wood', 'group:wood'}, + } +}) + +minetest.register_craft({ + output = 'default:ladder', + recipe = { + {'group:stick', '', 'group:stick'}, + {'group:stick', 'group:stick', 'group:stick'}, + {'group:stick', '', 'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:mese', + recipe = { + {'default:mese_crystal', 'default:mese_crystal', 'default:mese_crystal'}, + {'default:mese_crystal', 'default:mese_crystal', 'default:mese_crystal'}, + {'default:mese_crystal', 'default:mese_crystal', 'default:mese_crystal'}, + } +}) + +minetest.register_craft({ + output = 'default:mese_crystal 9', + recipe = { + {'default:mese'}, + } +}) + +minetest.register_craft({ + output = 'default:mese_crystal_fragment 9', + recipe = { + {'default:mese_crystal'}, + } +}) + +minetest.register_craft({ + output = 'default:obsidian_shard 9', + recipe = { + {'default:obsidian'} + } +}) + +minetest.register_craft({ + output = 'default:obsidian', + recipe = { + {'default:obsidian_shard', 'default:obsidian_shard', 'default:obsidian_shard'}, + {'default:obsidian_shard', 'default:obsidian_shard', 'default:obsidian_shard'}, + {'default:obsidian_shard', 'default:obsidian_shard', 'default:obsidian_shard'}, + } +}) + +minetest.register_craft({ + output = 'default:obsidianbrick 4', + recipe = { + {'default:obsidian', 'default:obsidian'}, + {'default:obsidian', 'default:obsidian'} + } +}) + +minetest.register_craft({ + output = 'default:stonebrick 4', + recipe = { + {'default:stone', 'default:stone'}, + {'default:stone', 'default:stone'}, + } +}) + +minetest.register_craft({ + output = 'default:desert_stonebrick 4', + recipe = { + {'default:desert_stone', 'default:desert_stone'}, + {'default:desert_stone', 'default:desert_stone'}, + } +}) + +minetest.register_craft({ + output = 'default:snowblock', + recipe = { + {'default:snow', 'default:snow', 'default:snow'}, + {'default:snow', 'default:snow', 'default:snow'}, + {'default:snow', 'default:snow', 'default:snow'}, + } +}) + +minetest.register_craft({ + output = 'default:snow 9', + recipe = { + {'default:snowblock'}, + } +}) + +-- +-- Crafting (tool repair) +-- +minetest.register_craft({ + type = "toolrepair", + additional_wear = -0.02, +}) + +-- +-- Cooking recipes +-- + +minetest.register_craft({ + type = "cooking", + output = "default:glass", + recipe = "group:sand", +}) + +minetest.register_craft({ + type = "cooking", + output = "default:obsidian_glass", + recipe = "default:obsidian_shard", +}) + +minetest.register_craft({ + type = "cooking", + output = "default:stone", + recipe = "default:cobble", +}) + +minetest.register_craft({ + type = "cooking", + output = "default:desert_stone", + recipe = "default:desert_cobble", +}) + +minetest.register_craft({ + type = "cooking", + output = "default:steel_ingot", + recipe = "default:iron_lump", +}) + +minetest.register_craft({ + type = "cooking", + output = "default:copper_ingot", + recipe = "default:copper_lump", +}) + +minetest.register_craft({ + type = "cooking", + output = "default:gold_ingot", + recipe = "default:gold_lump", +}) + +minetest.register_craft({ + type = "cooking", + output = "default:clay_brick", + recipe = "default:clay_lump", +}) + +-- +-- Fuels +-- + +minetest.register_craft({ + type = "fuel", + recipe = "group:tree", + burntime = 30, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:junglegrass", + burntime = 2, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "group:leaves", + burntime = 1, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:cactus", + burntime = 15, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:papyrus", + burntime = 1, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:bookshelf", + burntime = 30, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:fence_wood", + burntime = 15, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:ladder", + burntime = 5, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "group:wood", + burntime = 7, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:lava_source", + burntime = 60, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:torch", + burntime = 4, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:sign_wall", + burntime = 10, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:chest", + burntime = 30, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:chest_locked", + burntime = 30, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:nyancat", + burntime = 1, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:nyancat_rainbow", + burntime = 1, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:sapling", + burntime = 10, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:apple", + burntime = 3, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:coal_lump", + burntime = 40, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:coalblock", + burntime = 370, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:junglesapling", + burntime = 10, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:grass_1", + burntime = 2, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:pine_sapling", + burntime = 10, +}) + diff --git a/games/minetest_game/mods/default/craftitems.lua b/games/minetest_game/mods/default/craftitems.lua new file mode 100644 index 0000000..539f6b4 --- /dev/null +++ b/games/minetest_game/mods/default/craftitems.lua @@ -0,0 +1,89 @@ +-- mods/default/craftitems.lua + +minetest.register_craftitem("default:stick", { + description = "Stick", + inventory_image = "default_stick.png", + groups = {stick=1}, +}) + +minetest.register_craftitem("default:paper", { + description = "Paper", + inventory_image = "default_paper.png", +}) + +minetest.register_craftitem("default:book", { + description = "Book", + inventory_image = "default_book.png", + groups = {book=1}, +}) + +minetest.register_craftitem("default:coal_lump", { + description = "Coal Lump", + inventory_image = "default_coal_lump.png", + groups = {coal = 1} +}) + +minetest.register_craftitem("default:iron_lump", { + description = "Iron Lump", + inventory_image = "default_iron_lump.png", +}) + +minetest.register_craftitem("default:copper_lump", { + description = "Copper Lump", + inventory_image = "default_copper_lump.png", +}) + +minetest.register_craftitem("default:mese_crystal", { + description = "Mese Crystal", + inventory_image = "default_mese_crystal.png", +}) + +minetest.register_craftitem("default:gold_lump", { + description = "Gold Lump", + inventory_image = "default_gold_lump.png", +}) + +minetest.register_craftitem("default:diamond", { + description = "Diamond", + inventory_image = "default_diamond.png", +}) + +minetest.register_craftitem("default:clay_lump", { + description = "Clay Lump", + inventory_image = "default_clay_lump.png", +}) + +minetest.register_craftitem("default:steel_ingot", { + description = "Steel Ingot", + inventory_image = "default_steel_ingot.png", +}) + +minetest.register_craftitem("default:copper_ingot", { + description = "Copper Ingot", + inventory_image = "default_copper_ingot.png", +}) + +minetest.register_craftitem("default:bronze_ingot", { + description = "Bronze Ingot", + inventory_image = "default_bronze_ingot.png", +}) + +minetest.register_craftitem("default:gold_ingot", { + description = "Gold Ingot", + inventory_image = "default_gold_ingot.png" +}) + +minetest.register_craftitem("default:mese_crystal_fragment", { + description = "Mese Crystal Fragment", + inventory_image = "default_mese_crystal_fragment.png", +}) + +minetest.register_craftitem("default:clay_brick", { + description = "Clay Brick", + inventory_image = "default_clay_brick.png", +}) + +minetest.register_craftitem("default:obsidian_shard", { + description = "Obsidian Shard", + inventory_image = "default_obsidian_shard.png", +}) diff --git a/games/minetest_game/mods/default/functions.lua b/games/minetest_game/mods/default/functions.lua new file mode 100644 index 0000000..ecb7f61 --- /dev/null +++ b/games/minetest_game/mods/default/functions.lua @@ -0,0 +1,325 @@ +-- mods/default/functions.lua + +-- +-- Sounds +-- + +function default.node_sound_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="", gain=1.0} + table.dug = table.dug or + {name="default_dug_node", gain=0.25} + table.place = table.place or + {name="default_place_node_hard", gain=1.0} + return table +end + +function default.node_sound_stone_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="default_hard_footstep", gain=0.5} + table.dug = table.dug or + {name="default_hard_footstep", gain=1.0} + default.node_sound_defaults(table) + return table +end + +function default.node_sound_dirt_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="default_dirt_footstep", gain=1.0} + table.dug = table.dug or + {name="default_dirt_footstep", gain=1.5} + table.place = table.place or + {name="default_place_node", gain=1.0} + default.node_sound_defaults(table) + return table +end + +function default.node_sound_sand_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="default_sand_footstep", gain=0.2} + table.dug = table.dug or + {name="default_sand_footstep", gain=0.4} + table.place = table.place or + {name="default_place_node", gain=1.0} + default.node_sound_defaults(table) + return table +end + +function default.node_sound_wood_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="default_wood_footstep", gain=0.5} + table.dug = table.dug or + {name="default_wood_footstep", gain=1.0} + default.node_sound_defaults(table) + return table +end + +function default.node_sound_leaves_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="default_grass_footstep", gain=0.35} + table.dug = table.dug or + {name="default_grass_footstep", gain=0.7} + table.dig = table.dig or + {name="default_dig_crumbly", gain=0.4} + table.place = table.place or + {name="default_place_node", gain=1.0} + default.node_sound_defaults(table) + return table +end + +function default.node_sound_glass_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="default_glass_footstep", gain=0.5} + table.dug = table.dug or + {name="default_break_glass", gain=1.0} + default.node_sound_defaults(table) + return table +end + +-- +-- Legacy +-- + +function default.spawn_falling_node(p, nodename) + spawn_falling_node(p, nodename) +end + +-- Horrible crap to support old code +-- Don't use this and never do what this does, it's completely wrong! +-- (More specifically, the client and the C++ code doesn't get the group) +function default.register_falling_node(nodename, texture) + minetest.log("error", debug.traceback()) + minetest.log('error', "WARNING: default.register_falling_node is deprecated") + if minetest.registered_nodes[nodename] then + minetest.registered_nodes[nodename].groups.falling_node = 1 + end +end + +-- +-- Global callbacks +-- + +-- Global environment step function +function on_step(dtime) + -- print("on_step") +end +minetest.register_globalstep(on_step) + +function on_placenode(p, node) + --print("on_placenode") +end +minetest.register_on_placenode(on_placenode) + +function on_dignode(p, node) + --print("on_dignode") +end +minetest.register_on_dignode(on_dignode) + +function on_punchnode(p, node) +end +minetest.register_on_punchnode(on_punchnode) + + +-- +-- Lavacooling +-- + +default.cool_lava_source = function(pos) + minetest.set_node(pos, {name="default:obsidian"}) + minetest.sound_play("default_cool_lava", {pos = pos, gain = 0.25}) +end + +default.cool_lava_flowing = function(pos) + minetest.set_node(pos, {name="default:stone"}) + minetest.sound_play("default_cool_lava", {pos = pos, gain = 0.25}) +end + +minetest.register_abm({ + nodenames = {"default:lava_flowing"}, + neighbors = {"group:water"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + default.cool_lava_flowing(pos, node, active_object_count, active_object_count_wider) + end, +}) + +minetest.register_abm({ + nodenames = {"default:lava_source"}, + neighbors = {"group:water"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + default.cool_lava_source(pos, node, active_object_count, active_object_count_wider) + end, +}) + +-- +-- Papyrus and cactus growing +-- + +minetest.register_abm({ + nodenames = {"default:cactus"}, + neighbors = {"group:sand"}, + interval = 50, + chance = 20, + action = function(pos, node) + pos.y = pos.y-1 + local name = minetest.get_node(pos).name + if minetest.get_item_group(name, "sand") ~= 0 then + pos.y = pos.y+1 + local height = 0 + while minetest.get_node(pos).name == "default:cactus" and height < 4 do + height = height+1 + pos.y = pos.y+1 + end + if height < 4 then + if minetest.get_node(pos).name == "air" then + minetest.set_node(pos, {name="default:cactus"}) + end + end + end + end, +}) + +minetest.register_abm({ + nodenames = {"default:papyrus"}, + neighbors = {"default:dirt", "default:dirt_with_grass"}, + interval = 50, + chance = 20, + action = function(pos, node) + pos.y = pos.y-1 + local name = minetest.get_node(pos).name + if name == "default:dirt" or name == "default:dirt_with_grass" then + if minetest.find_node_near(pos, 3, {"group:water"}) == nil then + return + end + pos.y = pos.y+1 + local height = 0 + while minetest.get_node(pos).name == "default:papyrus" and height < 4 do + height = height+1 + pos.y = pos.y+1 + end + if height < 4 then + if minetest.get_node(pos).name == "air" then + minetest.set_node(pos, {name="default:papyrus"}) + end + end + end + end, +}) + +-- +-- dig upwards +-- + +function default.dig_up(pos, node, digger) + if digger == nil then return end + local np = {x = pos.x, y = pos.y + 1, z = pos.z} + local nn = minetest.get_node(np) + if nn.name == node.name then + minetest.node_dig(np, nn, digger) + end +end + +-- +-- Leafdecay +-- + +default.leafdecay_trunk_cache = {} +default.leafdecay_enable_cache = true +-- Spread the load of finding trunks +default.leafdecay_trunk_find_allow_accumulator = 0 + +minetest.register_globalstep(function(dtime) + local finds_per_second = 5000 + default.leafdecay_trunk_find_allow_accumulator = + math.floor(dtime * finds_per_second) +end) + +default.after_place_leaves = function(pos, placer, itemstack, pointed_thing) + local node = minetest.get_node(pos) + node.param2 = 1 + minetest.set_node(pos, node) +end + +minetest.register_abm({ + nodenames = {"group:leafdecay"}, + neighbors = {"air", "group:liquid"}, + -- A low interval and a high inverse chance spreads the load + interval = 2, + chance = 5, + + action = function(p0, node, _, _) + --print("leafdecay ABM at "..p0.x..", "..p0.y..", "..p0.z..")") + local do_preserve = false + local d = minetest.registered_nodes[node.name].groups.leafdecay + if not d or d == 0 then + --print("not groups.leafdecay") + return + end + local n0 = minetest.get_node(p0) + if n0.param2 ~= 0 then + --print("param2 ~= 0") + return + end + local p0_hash = nil + if default.leafdecay_enable_cache then + p0_hash = minetest.hash_node_position(p0) + local trunkp = default.leafdecay_trunk_cache[p0_hash] + if trunkp then + local n = minetest.get_node(trunkp) + local reg = minetest.registered_nodes[n.name] + -- Assume ignore is a trunk, to make the thing work at the border of the active area + if n.name == "ignore" or (reg and reg.groups.tree and reg.groups.tree ~= 0) then + --print("cached trunk still exists") + return + end + --print("cached trunk is invalid") + -- Cache is invalid + table.remove(default.leafdecay_trunk_cache, p0_hash) + end + end + if default.leafdecay_trunk_find_allow_accumulator <= 0 then + return + end + default.leafdecay_trunk_find_allow_accumulator = + default.leafdecay_trunk_find_allow_accumulator - 1 + -- Assume ignore is a trunk, to make the thing work at the border of the active area + local p1 = minetest.find_node_near(p0, d, {"ignore", "group:tree"}) + if p1 then + do_preserve = true + if default.leafdecay_enable_cache then + --print("caching trunk") + -- Cache the trunk + default.leafdecay_trunk_cache[p0_hash] = p1 + end + end + if not do_preserve then + -- Drop stuff other than the node itself + local itemstacks = minetest.get_node_drops(n0.name) + for _, itemname in ipairs(itemstacks) do + if minetest.get_item_group(n0.name, "leafdecay_drop") ~= 0 or + itemname ~= n0.name then + local p_drop = { + x = p0.x - 0.5 + math.random(), + y = p0.y - 0.5 + math.random(), + z = p0.z - 0.5 + math.random(), + } + minetest.add_item(p_drop, itemname) + end + end + -- Remove node + minetest.remove_node(p0) + nodeupdate(p0) + end + end +}) + diff --git a/games/minetest_game/mods/default/furnace.lua b/games/minetest_game/mods/default/furnace.lua new file mode 100644 index 0000000..2163f6a --- /dev/null +++ b/games/minetest_game/mods/default/furnace.lua @@ -0,0 +1,283 @@ + +-- +-- Formspecs +-- + +local function active_formspec(fuel_percent, item_percent) + local formspec = + "size[8,8.5]".. + default.gui_bg.. + default.gui_bg_img.. + default.gui_slots.. + "list[current_name;src;2.75,0.5;1,1;]".. + "list[current_name;fuel;2.75,2.5;1,1;]".. + "image[2.75,1.5;1,1;default_furnace_fire_bg.png^[lowpart:".. + (100-fuel_percent)..":default_furnace_fire_fg.png]".. + "image[3.75,1.5;1,1;gui_furnace_arrow_bg.png^[lowpart:".. + (item_percent)..":gui_furnace_arrow_fg.png^[transformR270]".. + "list[current_name;dst;4.75,0.96;2,2;]".. + "list[current_player;main;0,4.25;8,1;]".. + "list[current_player;main;0,5.5;8,3;8]".. + default.get_hotbar_bg(0, 4.25) + return formspec +end + +local inactive_formspec = + "size[8,8.5]".. + default.gui_bg.. + default.gui_bg_img.. + default.gui_slots.. + "list[current_name;src;2.75,0.5;1,1;]".. + "list[current_name;fuel;2.75,2.5;1,1;]".. + "image[2.75,1.5;1,1;default_furnace_fire_bg.png]".. + "image[3.75,1.5;1,1;gui_furnace_arrow_bg.png^[transformR270]".. + "list[current_name;dst;4.75,0.96;2,2;]".. + "list[current_player;main;0,4.25;8,1;]".. + "list[current_player;main;0,5.5;8,3;8]".. + default.get_hotbar_bg(0, 4.25) + +-- +-- Node callback functions that are the same for active and inactive furnace +-- + +local function can_dig(pos, player) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + return inv:is_empty("fuel") and inv:is_empty("dst") and inv:is_empty("src") +end + +local function allow_metadata_inventory_put(pos, listname, index, stack, player) + if minetest.is_protected(pos, player:get_player_name()) then + return 0 + end + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if listname == "fuel" then + if minetest.get_craft_result({method="fuel", width=1, items={stack}}).time ~= 0 then + if inv:is_empty("src") then + meta:set_string("infotext", "Furnace is empty") + end + return stack:get_count() + else + return 0 + end + elseif listname == "src" then + return stack:get_count() + elseif listname == "dst" then + return 0 + end +end + +local function allow_metadata_inventory_move(pos, from_list, from_index, to_list, to_index, count, player) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local stack = inv:get_stack(from_list, from_index) + return allow_metadata_inventory_put(pos, to_list, to_index, stack, player) +end + +local function allow_metadata_inventory_take(pos, listname, index, stack, player) + if minetest.is_protected(pos, player:get_player_name()) then + return 0 + end + return stack:get_count() +end + +-- +-- Node definitions +-- + +minetest.register_node("default:furnace", { + description = "Furnace", + tiles = { + "default_furnace_top.png", "default_furnace_bottom.png", + "default_furnace_side.png", "default_furnace_side.png", + "default_furnace_side.png", "default_furnace_front.png" + }, + paramtype2 = "facedir", + groups = {cracky=2}, + legacy_facedir_simple = true, + is_ground_content = false, + sounds = default.node_sound_stone_defaults(), + + can_dig = can_dig, + + allow_metadata_inventory_put = allow_metadata_inventory_put, + allow_metadata_inventory_move = allow_metadata_inventory_move, + allow_metadata_inventory_take = allow_metadata_inventory_take, +}) + +minetest.register_node("default:furnace_active", { + description = "Furnace", + tiles = { + "default_furnace_top.png", "default_furnace_bottom.png", + "default_furnace_side.png", "default_furnace_side.png", + "default_furnace_side.png", + { + image = "default_furnace_front_active.png", + backface_culling = false, + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 1.5 + }, + } + }, + paramtype2 = "facedir", + light_source = 8, + drop = "default:furnace", + groups = {cracky=2, not_in_creative_inventory=1}, + legacy_facedir_simple = true, + is_ground_content = false, + sounds = default.node_sound_stone_defaults(), + + can_dig = can_dig, + + allow_metadata_inventory_put = allow_metadata_inventory_put, + allow_metadata_inventory_move = allow_metadata_inventory_move, + allow_metadata_inventory_take = allow_metadata_inventory_take, +}) + +-- +-- ABM +-- + +local function swap_node(pos, name) + local node = minetest.get_node(pos) + if node.name == name then + return + end + node.name = name + minetest.swap_node(pos, node) +end + +minetest.register_abm({ + nodenames = {"default:furnace", "default:furnace_active"}, + interval = 1.0, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + -- + -- Inizialize metadata + -- + local meta = minetest.get_meta(pos) + local fuel_time = meta:get_float("fuel_time") or 0 + local src_time = meta:get_float("src_time") or 0 + local fuel_totaltime = meta:get_float("fuel_totaltime") or 0 + + -- + -- Inizialize inventory + -- + local inv = meta:get_inventory() + for listname, size in pairs({ + src = 1, + fuel = 1, + dst = 4, + }) do + if inv:get_size(listname) ~= size then + inv:set_size(listname, size) + end + end + local srclist = inv:get_list("src") + local fuellist = inv:get_list("fuel") + local dstlist = inv:get_list("dst") + + -- + -- Cooking + -- + + -- Check if we have cookable content + local cooked, aftercooked = minetest.get_craft_result({method = "cooking", width = 1, items = srclist}) + local cookable = true + + if cooked.time == 0 then + cookable = false + end + + -- Check if we have enough fuel to burn + if fuel_time < fuel_totaltime then + -- The furnace is currently active and has enough fuel + fuel_time = fuel_time + 1 + + -- If there is a cookable item then check if it is ready yet + if cookable then + src_time = src_time + 1 + if src_time >= cooked.time then + -- Place result in dst list if possible + if inv:room_for_item("dst", cooked.item) then + inv:add_item("dst", cooked.item) + inv:set_stack("src", 1, aftercooked.items[1]) + src_time = 0 + end + end + end + else + -- Furnace ran out of fuel + if cookable then + -- We need to get new fuel + local fuel, afterfuel = minetest.get_craft_result({method = "fuel", width = 1, items = fuellist}) + + if fuel.time == 0 then + -- No valid fuel in fuel list + fuel_totaltime = 0 + fuel_time = 0 + src_time = 0 + else + -- Take fuel from fuel list + inv:set_stack("fuel", 1, afterfuel.items[1]) + + fuel_totaltime = fuel.time + fuel_time = 0 + + end + else + -- We don't need to get new fuel since there is no cookable item + fuel_totaltime = 0 + fuel_time = 0 + src_time = 0 + end + end + + -- + -- Update formspec, infotext and node + -- + local formspec = inactive_formspec + local item_state = "" + local item_percent = 0 + if cookable then + item_percent = math.floor(src_time / cooked.time * 100) + item_state = item_percent .. "%" + else + if srclist[1]:is_empty() then + item_state = "Empty" + else + item_state = "Not cookable" + end + end + + local fuel_state = "Empty" + local active = "inactive " + if fuel_time <= fuel_totaltime and fuel_totaltime ~= 0 then + active = "active " + local fuel_percent = math.floor(fuel_time / fuel_totaltime * 100) + fuel_state = fuel_percent .. "%" + formspec = active_formspec(fuel_percent, item_percent) + swap_node(pos, "default:furnace_active") + else + if not fuellist[1]:is_empty() then + fuel_state = "0%" + end + swap_node(pos, "default:furnace") + end + + local infotext = "Furnace " .. active .. "(Item: " .. item_state .. "; Fuel: " .. fuel_state .. ")" + + -- + -- Set meta values + -- + meta:set_float("fuel_totaltime", fuel_totaltime) + meta:set_float("fuel_time", fuel_time) + meta:set_float("src_time", src_time) + meta:set_string("formspec", formspec) + meta:set_string("infotext", infotext) + end, +}) diff --git a/games/minetest_game/mods/default/init.lua b/games/minetest_game/mods/default/init.lua new file mode 100644 index 0000000..276af54 --- /dev/null +++ b/games/minetest_game/mods/default/init.lua @@ -0,0 +1,48 @@ +-- Minetest 0.4 mod: default +-- See README.txt for licensing and other information. + +-- The API documentation in here was moved into doc/lua_api.txt + +WATER_ALPHA = 160 +WATER_VISC = 1 +LAVA_VISC = 7 +LIGHT_MAX = 14 + +-- Definitions made by this mod that other mods can use too +default = {} + +-- GUI related stuff +default.gui_bg = "bgcolor[#080808BB;true]" +default.gui_bg_img = "background[5,5;1,1;gui_formbg.png;true]" +default.gui_slots = "listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]" + +function default.get_hotbar_bg(x,y) + local out = "" + for i=0,7,1 do + out = out .."image["..x+i..","..y..";1,1;gui_hb_bg.png]" + end + return out +end + +default.gui_suvival_form = "size[8,8.5]".. + default.gui_bg.. + default.gui_bg_img.. + default.gui_slots.. + "list[current_player;main;0,4.25;8,1;]".. + "list[current_player;main;0,5.5;8,3;8]".. + "list[current_player;craft;1.75,0.5;3,3;]".. + "list[current_player;craftpreview;5.75,1.5;1,1;]".. + "image[4.75,1.5;1,1;gui_furnace_arrow_bg.png^[transformR270]".. + default.get_hotbar_bg(0,4.25) + +-- Load files +dofile(minetest.get_modpath("default").."/functions.lua") +dofile(minetest.get_modpath("default").."/nodes.lua") +dofile(minetest.get_modpath("default").."/furnace.lua") +dofile(minetest.get_modpath("default").."/tools.lua") +dofile(minetest.get_modpath("default").."/craftitems.lua") +dofile(minetest.get_modpath("default").."/crafting.lua") +dofile(minetest.get_modpath("default").."/mapgen.lua") +dofile(minetest.get_modpath("default").."/player.lua") +dofile(minetest.get_modpath("default").."/trees.lua") +dofile(minetest.get_modpath("default").."/aliases.lua") diff --git a/games/minetest_game/mods/default/mapgen.lua b/games/minetest_game/mods/default/mapgen.lua new file mode 100644 index 0000000..f276033 --- /dev/null +++ b/games/minetest_game/mods/default/mapgen.lua @@ -0,0 +1,468 @@ +-- mods/default/mapgen.lua + +-- +-- Aliases for map generator outputs +-- +-- RND CHANGE: changed all to stone + +minetest.register_alias("mapgen_stone", "default:stone") +minetest.register_alias("mapgen_tree", "default:tree") +minetest.register_alias("mapgen_leaves", "default:leaves") +minetest.register_alias("mapgen_jungletree", "default:jungletree") +minetest.register_alias("mapgen_jungleleaves", "default:jungleleaves") +minetest.register_alias("mapgen_apple", "default:apple") +minetest.register_alias("mapgen_water_source", "default:water_source") +minetest.register_alias("mapgen_dirt", "default:stone") +minetest.register_alias("mapgen_sand", "default:stone") +minetest.register_alias("mapgen_gravel", "default:stone") +minetest.register_alias("mapgen_clay", "default:stone") +minetest.register_alias("mapgen_lava_source", "default:lava_source") +minetest.register_alias("mapgen_cobble", "default:cobble") +minetest.register_alias("mapgen_mossycobble", "default:stone") +minetest.register_alias("mapgen_dirt_with_grass", "default:stone") +minetest.register_alias("mapgen_junglegrass", "default:junglegrass") +minetest.register_alias("mapgen_stone_with_coal", "default:stone_with_coal") +minetest.register_alias("mapgen_stone_with_iron", "default:stone_with_iron") +minetest.register_alias("mapgen_mese", "default:mese") +minetest.register_alias("mapgen_desert_sand", "default:desert_sand") +minetest.register_alias("mapgen_desert_stone", "default:desert_stone") +minetest.register_alias("mapgen_stair_cobble", "stairs:stair_cobble") + +-- +-- Ore generation +-- + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_coal", + wherein = "default:stone", + clust_scarcity = 8*8*8, + clust_num_ores = 8, + clust_size = 3, + height_min = -31000, + height_max = 64, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_coal", + wherein = "default:stone", + clust_scarcity = 24*24*24, + clust_num_ores = 27, + clust_size = 6, + height_min = -31000, + height_max = 0, + flags = "absheight", +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_iron", + wherein = "default:stone", + clust_scarcity = 12*12*12, + clust_num_ores = 3, + clust_size = 2, + height_min = -15, + height_max = 2, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_iron", + wherein = "default:stone", + clust_scarcity = 9*9*9, + clust_num_ores = 5, + clust_size = 3, + height_min = -63, + height_max = -16, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_iron", + wherein = "default:stone", + clust_scarcity = 7*7*7, + clust_num_ores = 5, + clust_size = 3, + height_min = -31000, + height_max = -64, + flags = "absheight", +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_iron", + wherein = "default:stone", + clust_scarcity = 24*24*24, + clust_num_ores = 27, + clust_size = 6, + height_min = -31000, + height_max = -64, + flags = "absheight", +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_mese", + wherein = "default:stone", + clust_scarcity = 18*18*18, + clust_num_ores = 3, + clust_size = 2, + height_min = -255, + height_max = -64, + flags = "absheight", +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_mese", + wherein = "default:stone", + clust_scarcity = 14*14*14, + clust_num_ores = 5, + clust_size = 3, + height_min = -31000, + height_max = -256, + flags = "absheight", +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:mese", + wherein = "default:stone", + clust_scarcity = 36*36*36, + clust_num_ores = 3, + clust_size = 2, + height_min = -31000, + height_max = -1024, + flags = "absheight", +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_gold", + wherein = "default:stone", + clust_scarcity = 15*15*15, + clust_num_ores = 3, + clust_size = 2, + height_min = -255, + height_max = -64, + flags = "absheight", +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_gold", + wherein = "default:stone", + clust_scarcity = 13*13*13, + clust_num_ores = 5, + clust_size = 3, + height_min = -31000, + height_max = -256, + flags = "absheight", +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_diamond", + wherein = "default:stone", + clust_scarcity = 17*17*17, + clust_num_ores = 4, + clust_size = 3, + height_min = -255, + height_max = -128, + flags = "absheight", +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_diamond", + wherein = "default:stone", + clust_scarcity = 15*15*15, + clust_num_ores = 4, + clust_size = 3, + height_min = -31000, + height_max = -256, + flags = "absheight", +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_copper", + wherein = "default:stone", + clust_scarcity = 12*12*12, + clust_num_ores = 4, + clust_size = 3, + height_min = -63, + height_max = -16, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_copper", + wherein = "default:stone", + clust_scarcity = 9*9*9, + clust_num_ores = 5, + clust_size = 3, + height_min = -31000, + height_max = -64, + flags = "absheight", +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:clay", + wherein = "default:sand", + clust_scarcity = 15*15*15, + clust_num_ores = 64, + clust_size = 5, + height_max = 0, + height_min = -10, +}) + +function default.generate_ore(name, wherein, minp, maxp, seed, chunks_per_volume, chunk_size, ore_per_chunk, height_min, height_max) + minetest.log('action', "WARNING: default.generate_ore is deprecated") + + if maxp.y < height_min or minp.y > height_max then + return + end + local y_min = math.max(minp.y, height_min) + local y_max = math.min(maxp.y, height_max) + if chunk_size >= y_max - y_min + 1 then + return + end + local volume = (maxp.x-minp.x+1)*(y_max-y_min+1)*(maxp.z-minp.z+1) + local pr = PseudoRandom(seed) + local num_chunks = math.floor(chunks_per_volume * volume) + local inverse_chance = math.floor(chunk_size*chunk_size*chunk_size / ore_per_chunk) + --print("generate_ore num_chunks: "..dump(num_chunks)) + for i=1,num_chunks do + local y0 = pr:next(y_min, y_max-chunk_size+1) + if y0 >= height_min and y0 <= height_max then + local x0 = pr:next(minp.x, maxp.x-chunk_size+1) + local z0 = pr:next(minp.z, maxp.z-chunk_size+1) + local p0 = {x=x0, y=y0, z=z0} + for x1=0,chunk_size-1 do + for y1=0,chunk_size-1 do + for z1=0,chunk_size-1 do + if pr:next(1,inverse_chance) == 1 then + local x2 = x0+x1 + local y2 = y0+y1 + local z2 = z0+z1 + local p2 = {x=x2, y=y2, z=z2} + if minetest.get_node(p2).name == wherein then + minetest.set_node(p2, {name=name}) + end + end + end + end + end + end + end + --print("generate_ore done") +end + +-- +-- Mgv6 papyrus, cactus, long grasses +-- + +function default.mgv6_ongen(minp, maxp, seed) + + function default.make_papyrus(pos, size) + for y=0,size-1 do + local p = {x=pos.x, y=pos.y+y, z=pos.z} + local nn = minetest.get_node(p).name + if minetest.registered_nodes[nn] and + minetest.registered_nodes[nn].buildable_to then + minetest.set_node(p, {name="default:papyrus"}) + else + return + end + end + end + + function default.make_cactus(pos, size) + for y=0,size-1 do + local p = {x=pos.x, y=pos.y+y, z=pos.z} + local nn = minetest.get_node(p).name + if minetest.registered_nodes[nn] and + minetest.registered_nodes[nn].buildable_to then + minetest.set_node(p, {name="default:cactus"}) + else + return + end + end + end + + if maxp.y >= 2 and minp.y <= 0 then + -- Generate papyrus + local perlin1 = minetest.get_perlin(354, 3, 0.7, 100) + -- Assume X and Z lengths are equal + local divlen = 8 + local divs = (maxp.x-minp.x)/divlen+1; + for divx=0,divs-1 do + for divz=0,divs-1 do + local x0 = minp.x + math.floor((divx+0)*divlen) + local z0 = minp.z + math.floor((divz+0)*divlen) + local x1 = minp.x + math.floor((divx+1)*divlen) + local z1 = minp.z + math.floor((divz+1)*divlen) + -- Determine papyrus amount from perlin noise + local papyrus_amount = math.floor(perlin1:get2d({x=x0, y=z0}) * 45 - 20) + -- Find random positions for papyrus based on this random + local pr = PseudoRandom(seed+1) + for i=0,papyrus_amount do + local x = pr:next(x0, x1) + local z = pr:next(z0, z1) + if minetest.get_node({x=x,y=1,z=z}).name == "default:dirt_with_grass" and + minetest.find_node_near({x=x,y=1,z=z}, 1, "default:water_source") then + default.make_papyrus({x=x,y=2,z=z}, pr:next(2, 4)) + end + end + end + end + -- Generate cactuses + local perlin1 = minetest.get_perlin(230, 3, 0.6, 100) + -- Assume X and Z lengths are equal + local divlen = 16 + local divs = (maxp.x-minp.x)/divlen+1; + for divx=0,divs-1 do + for divz=0,divs-1 do + local x0 = minp.x + math.floor((divx+0)*divlen) + local z0 = minp.z + math.floor((divz+0)*divlen) + local x1 = minp.x + math.floor((divx+1)*divlen) + local z1 = minp.z + math.floor((divz+1)*divlen) + -- Determine cactus amount from perlin noise + local cactus_amount = math.floor(perlin1:get2d({x=x0, y=z0}) * 6 - 3) + -- Find random positions for cactus based on this random + local pr = PseudoRandom(seed+1) + for i=0,cactus_amount do + local x = pr:next(x0, x1) + local z = pr:next(z0, z1) + -- Find ground level (0...15) + local ground_y = nil + for y=30,0,-1 do + if minetest.get_node({x=x,y=y,z=z}).name ~= "air" then + ground_y = y + break + end + end + -- If desert sand, make cactus + if ground_y and minetest.get_node({x=x,y=ground_y,z=z}).name == "default:desert_sand" then + default.make_cactus({x=x,y=ground_y+1,z=z}, pr:next(3, 4)) + end + end + end + end + -- Generate grass + local perlin1 = minetest.get_perlin(329, 3, 0.6, 100) + -- Assume X and Z lengths are equal + local divlen = 16 + local divs = (maxp.x-minp.x)/divlen+1; + for divx=0,divs-1 do + for divz=0,divs-1 do + local x0 = minp.x + math.floor((divx+0)*divlen) + local z0 = minp.z + math.floor((divz+0)*divlen) + local x1 = minp.x + math.floor((divx+1)*divlen) + local z1 = minp.z + math.floor((divz+1)*divlen) + -- Determine grass amount from perlin noise + local grass_amount = math.floor(perlin1:get2d({x=x0, y=z0}) ^ 3 * 9) + -- Find random positions for grass based on this random + local pr = PseudoRandom(seed+1) + for i=0,grass_amount do + local x = pr:next(x0, x1) + local z = pr:next(z0, z1) + -- Find ground level (0...15) + local ground_y = nil + for y=30,0,-1 do + if minetest.get_node({x=x,y=y,z=z}).name ~= "air" then + ground_y = y + break + end + end + + if ground_y then + local p = {x=x,y=ground_y+1,z=z} + local nn = minetest.get_node(p).name + -- Check if the node can be replaced + if minetest.registered_nodes[nn] and + minetest.registered_nodes[nn].buildable_to then + nn = minetest.get_node({x=x,y=ground_y,z=z}).name + -- If desert sand, add dry shrub + if nn == "default:desert_sand" then + minetest.set_node(p,{name="default:dry_shrub"}) + + -- If dirt with grass, add grass + elseif nn == "default:dirt_with_grass" then + minetest.set_node(p,{name="default:grass_"..pr:next(1, 5)}) + end + end + end + + end + end + end + end +end + +-- +-- Detect mapgen and register suitable on-generated function +-- + +minetest.register_on_mapgen_init(function(mg_params) + if mg_params.mgname == "v6" then + minetest.register_on_generated(default.mgv6_ongen) + end +end) + +-- +-- Generate nyan cats in all mapgens +-- + +-- facedir: 0/1/2/3 (head node facedir value) +-- length: length of rainbow tail +function default.make_nyancat(pos, facedir, length) + local tailvec = {x=0, y=0, z=0} + if facedir == 0 then + tailvec.z = 1 + elseif facedir == 1 then + tailvec.x = 1 + elseif facedir == 2 then + tailvec.z = -1 + elseif facedir == 3 then + tailvec.x = -1 + else + --print("default.make_nyancat(): Invalid facedir: "+dump(facedir)) + facedir = 0 + tailvec.z = 1 + end + local p = {x=pos.x, y=pos.y, z=pos.z} + minetest.set_node(p, {name="default:nyancat", param2=facedir}) + for i=1,length do + p.x = p.x + tailvec.x + p.z = p.z + tailvec.z + minetest.set_node(p, {name="default:nyancat_rainbow", param2=facedir}) + end +end + +function default.generate_nyancats(minp, maxp, seed) + local height_min = -31000 + local height_max = -32 + if maxp.y < height_min or minp.y > height_max then + return + end + local y_min = math.max(minp.y, height_min) + local y_max = math.min(maxp.y, height_max) + local volume = (maxp.x-minp.x+1)*(y_max-y_min+1)*(maxp.z-minp.z+1) + local pr = PseudoRandom(seed + 9324342) + local max_num_nyancats = math.floor(volume / (16*16*16)) + for i=1,max_num_nyancats do + if pr:next(0, 1000) == 0 then + local x0 = pr:next(minp.x, maxp.x) + local y0 = pr:next(minp.y, maxp.y) + local z0 = pr:next(minp.z, maxp.z) + local p0 = {x=x0, y=y0, z=z0} + default.make_nyancat(p0, pr:next(0,3), pr:next(3,15)) + end + end +end + +minetest.register_on_generated(default.generate_nyancats) diff --git a/games/minetest_game/mods/default/models/character.blend b/games/minetest_game/mods/default/models/character.blend new file mode 100644 index 0000000..34c5624 Binary files /dev/null and b/games/minetest_game/mods/default/models/character.blend differ diff --git a/games/minetest_game/mods/default/models/character.png b/games/minetest_game/mods/default/models/character.png new file mode 100644 index 0000000..0502178 Binary files /dev/null and b/games/minetest_game/mods/default/models/character.png differ diff --git a/games/minetest_game/mods/default/models/character.x b/games/minetest_game/mods/default/models/character.x new file mode 100644 index 0000000..8326095 --- /dev/null +++ b/games/minetest_game/mods/default/models/character.x @@ -0,0 +1,7457 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000,-10.000000, 1.000000;; + } + Frame Armature_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 6.750000, 1.000000;; + } + Frame Armature_Arm_Left { + FrameTransformMatrix { + 0.989214,-0.143886,-0.027450, 0.000000, + -0.143940,-0.989586,-0.000000, 0.000000, + -0.027164, 0.003951,-0.999623, 0.000000, + -2.000000, 6.750000,-0.000000, 1.000000;; + } + } // End of Armature_Arm_Left + Frame Armature_Arm_Right { + FrameTransformMatrix { + 0.989214, 0.143886, 0.027450, 0.000000, + 0.143940,-0.989586,-0.000000, 0.000000, + 0.027164, 0.003951,-0.999623, 0.000000, + 2.000000, 6.750000,-0.000000, 1.000000;; + } + } // End of Armature_Arm_Right + Frame Armature_Cape { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-1.000000, 0.000002, 0.000000, + -0.000000,-0.000002,-1.000000, 0.000000, + 0.000000, 6.750000, 0.976707, 1.000000;; + } + } // End of Armature_Cape + Frame Armature_Head { + FrameTransformMatrix { + -1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 6.750000,-0.000000, 1.000000;; + } + } // End of Armature_Head + Frame Armature_Leg_Left { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000,-0.000001, 1.000000;; + } + } // End of Armature_Leg_Left + Frame Armature_Leg_Right { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 1.000000, 0.000000,-0.000001, 1.000000;; + } + } // End of Armature_Leg_Right + } // End of Armature_Body + Frame Player { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { // Player mesh + 192; + 2.000000;-1.000000;13.500000;, + -2.000000;-1.000000;13.500000;, + -2.000000;-1.000000; 6.750000;, + 2.000000;-1.000000; 6.750000;, + -2.000000;-1.000000;13.500000;, + -2.000000; 1.000000;13.500000;, + -2.000000; 1.000000; 6.750000;, + -2.000000;-1.000000; 6.750000;, + -2.000000; 1.000000;13.500000;, + 2.000000; 1.000000;13.500000;, + 2.000000; 1.000000; 6.750000;, + -2.000000; 1.000000; 6.750000;, + 2.000000; 1.000000; 6.750000;, + 2.000000;-1.000000; 6.750000;, + -2.000000;-1.000000; 6.750000;, + -2.000000; 1.000000; 6.750000;, + -2.000000; 1.000000;13.500000;, + -2.000000;-1.000000;13.500000;, + 2.000000;-1.000000;13.500000;, + 2.000000; 1.000000;13.500000;, + 0.000000; 1.000000; 6.750000;, + 0.000000; 1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 6.750000;, + -2.000000;-1.000000;13.500000;, + -4.000000;-1.000000;13.500000;, + -4.000000;-1.000000; 6.750000;, + -2.000000;-1.000000; 6.750000;, + -2.000000; 1.000000;13.500000;, + -2.000000;-1.000000;13.500000;, + -2.000000;-1.000000; 6.750000;, + -2.000000; 1.000000; 6.750000;, + 0.000000; 1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -2.000000;-1.000000; 0.000000;, + -2.000000; 1.000000; 0.000000;, + -2.000000;-1.000000; 6.750000;, + -2.000000; 1.000000; 6.750000;, + -2.000000; 1.000000; 0.000000;, + -2.000000;-1.000000; 0.000000;, + 2.000000;-2.000000;17.500000;, + -2.000000;-2.000000;17.500000;, + -2.000000;-2.000000;13.500000;, + 2.000000;-2.000000;13.500000;, + -2.000000;-2.000000;17.500000;, + -2.000000; 2.000000;17.500000;, + -2.000000; 2.000000;13.500000;, + -2.000000;-2.000000;13.500000;, + -2.000000; 2.000000;17.500000;, + 2.000000; 2.000000;17.500000;, + 2.000000; 2.000000;13.500000;, + -2.000000; 2.000000;13.500000;, + 2.000000; 2.000000;13.500000;, + 2.000000;-2.000000;13.500000;, + -2.000000;-2.000000;13.500000;, + -2.000000; 2.000000;13.500000;, + -2.000000; 2.000000;17.500000;, + -2.000000;-2.000000;17.500000;, + 2.000000;-2.000000;17.500000;, + 2.000000; 2.000000;17.500000;, + 0.000000;-1.000000; 6.750000;, + -2.000000;-1.000000; 6.750000;, + -2.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 2.000000; 1.000000; 6.750000;, + 2.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 6.750000;, + -2.000000; 1.000000; 6.750000;, + 0.000000; 1.000000; 6.750000;, + 0.000000; 1.000000; 0.000000;, + -2.000000; 1.000000; 0.000000;, + 2.000000; 1.000000; 6.750000;, + 4.000000; 1.000000; 6.750000;, + 4.000000;-1.000000; 6.750000;, + 2.000000;-1.000000; 6.750000;, + 4.000000; 1.000000;13.500000;, + 2.000000; 1.000000;13.500000;, + 2.000000;-1.000000;13.500000;, + 4.000000;-1.000000;13.500000;, + 0.000000;-1.000000; 6.750000;, + 0.000000;-1.000000; 0.000000;, + 2.000000;-1.000000; 0.000000;, + 2.000000;-1.000000; 6.750000;, + 0.000000; 1.000000; 6.750000;, + 0.000000;-1.000000; 6.750000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 2.000000;-1.000000; 6.750000;, + 2.000000;-1.000000; 0.000000;, + 2.000000; 1.000000; 0.000000;, + 2.000000; 1.000000; 6.750000;, + 2.000000;-1.000000;13.500000;, + 2.000000;-1.000000; 6.750000;, + 2.000000; 1.000000; 6.750000;, + 2.000000; 1.000000;13.500000;, + 2.000000;-2.000000;17.500000;, + 2.000000;-2.000000;13.500000;, + 2.000000; 2.000000;13.500000;, + 2.000000; 2.000000;17.500000;, + -2.000000; 1.000000; 6.750000;, + -2.000000;-1.000000; 6.750000;, + 0.000000;-1.000000; 6.750000;, + 0.000000; 1.000000; 6.750000;, + -4.000000; 1.000000;13.500000;, + -2.000000; 1.000000;13.500000;, + -2.000000; 1.000000; 6.750000;, + -4.000000; 1.000000; 6.750000;, + -4.000000;-1.000000;13.500000;, + -4.000000; 1.000000;13.500000;, + -4.000000; 1.000000; 6.750000;, + -4.000000;-1.000000; 6.750000;, + 4.000000;-1.000000;13.500000;, + 4.000000;-1.000000; 6.750000;, + 4.000000; 1.000000; 6.750000;, + 4.000000; 1.000000;13.500000;, + -4.000000; 1.000000;13.500000;, + -4.000000;-1.000000;13.500000;, + -2.000000;-1.000000;13.500000;, + -2.000000; 1.000000;13.500000;, + 4.000000; 1.000000;13.500000;, + 4.000000; 1.000000; 6.750000;, + 2.000000; 1.000000; 6.750000;, + 2.000000; 1.000000;13.500000;, + 0.000000; 1.000000; 0.000000;, + 2.000000; 1.000000; 0.000000;, + 2.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 2.000000; 1.000000;13.500000;, + 2.000000; 1.000000; 6.750000;, + 2.000000;-1.000000; 6.750000;, + 2.000000;-1.000000;13.500000;, + -2.000000; 1.000000; 6.750000;, + -2.000000;-1.000000; 6.750000;, + -4.000000;-1.000000; 6.750000;, + -4.000000; 1.000000; 6.750000;, + 2.000000;-1.000000;13.500000;, + 2.000000;-1.000000; 6.750000;, + 4.000000;-1.000000; 6.750000;, + 4.000000;-1.000000;13.500000;, + 2.000000; 1.000000; 6.750000;, + 0.000000; 1.000000; 6.750000;, + 0.000000;-1.000000; 6.750000;, + 2.000000;-1.000000; 6.750000;, + 2.200000;-2.200000;17.702990;, + -2.200000;-2.200000;17.702990;, + -2.200000;-2.200000;13.302996;, + 2.200000;-2.200000;13.302996;, + -2.200000;-2.200000;17.702990;, + -2.200000; 2.200000;17.702990;, + -2.200000; 2.200000;13.302996;, + -2.200000;-2.200000;13.302996;, + -2.200000; 2.200000;17.702990;, + 2.200000; 2.200000;17.702990;, + 2.200000; 2.200000;13.302996;, + -2.200000; 2.200000;13.302996;, + 2.200000; 2.200000;13.302996;, + 2.200000;-2.200000;13.302996;, + -2.200000;-2.200000;13.302996;, + -2.200000; 2.200000;13.302996;, + -2.200000; 2.200000;17.702990;, + -2.200000;-2.200000;17.702990;, + 2.200000;-2.200000;17.702990;, + 2.200000; 2.200000;17.702990;, + 2.200000;-2.200000;17.702990;, + 2.200000;-2.200000;13.302996;, + 2.200000; 2.200000;13.302996;, + 2.200000; 2.200000;17.702990;, + 2.000000;-1.364403;13.500000;, + -2.000000;-1.364403;13.500000;, + -2.000000;-1.364403; 6.750000;, + 2.000000;-1.364403; 6.750000;, + 2.000000;-1.000000;13.500000;, + 2.000000;-1.000000; 6.750000;, + -2.000000;-1.000000; 6.750000;, + -2.000000;-1.000000;13.500000;, + -2.000000;-1.364403;13.500000;, + 2.000000;-1.364403;13.500000;, + 2.000000;-1.000000;13.500000;, + -2.000000;-1.000000;13.500000;, + 2.000000;-1.364403;13.500000;, + 2.000000;-1.364403; 6.750000;, + 2.000000;-1.000000; 6.750000;, + 2.000000;-1.000000;13.500000;, + -2.000000;-1.364403; 6.750000;, + -2.000000;-1.364403;13.500000;, + -2.000000;-1.000000;13.500000;, + -2.000000;-1.000000; 6.750000;, + 2.000000;-1.364403; 6.750000;, + -2.000000;-1.364403; 6.750000;, + -2.000000;-1.000000; 6.750000;, + 2.000000;-1.000000; 6.750000;; + 48; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;, + 4;27,26,25,24;, + 4;31,30,29,28;, + 4;35,34,33,32;, + 4;39,38,37,36;, + 4;43,42,41,40;, + 4;47,46,45,44;, + 4;51,50,49,48;, + 4;55,54,53,52;, + 4;59,58,57,56;, + 4;63,62,61,60;, + 4;67,66,65,64;, + 4;71,70,69,68;, + 4;75,74,73,72;, + 4;79,78,77,76;, + 4;83,82,81,80;, + 4;87,86,85,84;, + 4;91,90,89,88;, + 4;95,94,93,92;, + 4;99,98,97,96;, + 4;103,102,101,100;, + 4;107,106,105,104;, + 4;111,110,109,108;, + 4;115,114,113,112;, + 4;119,118,117,116;, + 4;123,122,121,120;, + 4;127,126,125,124;, + 4;131,130,129,128;, + 4;135,134,133,132;, + 4;139,138,137,136;, + 4;143,142,141,140;, + 4;147,146,145,144;, + 4;151,150,149,148;, + 4;155,154,153,152;, + 4;159,158,157,156;, + 4;163,162,161,160;, + 4;167,166,165,164;, + 4;171,170,169,168;, + 4;175,174,173,172;, + 4;179,178,177,176;, + 4;183,182,181,180;, + 4;187,186,185,184;, + 4;191,190,189,188;; + MeshNormals { // Player normals + 48; + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000;-1.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;; + 48; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;, + 4;6,6,6,6;, + 4;7,7,7,7;, + 4;8,8,8,8;, + 4;9,9,9,9;, + 4;10,10,10,10;, + 4;11,11,11,11;, + 4;12,12,12,12;, + 4;13,13,13,13;, + 4;14,14,14,14;, + 4;15,15,15,15;, + 4;16,16,16,16;, + 4;17,17,17,17;, + 4;18,18,18,18;, + 4;19,19,19,19;, + 4;20,20,20,20;, + 4;21,21,21,21;, + 4;22,22,22,22;, + 4;23,23,23,23;, + 4;24,24,24,24;, + 4;25,25,25,25;, + 4;26,26,26,26;, + 4;27,27,27,27;, + 4;28,28,28,28;, + 4;29,29,29,29;, + 4;30,30,30,30;, + 4;31,31,31,31;, + 4;32,32,32,32;, + 4;33,33,33,33;, + 4;34,34,34,34;, + 4;35,35,35,35;, + 4;36,36,36,36;, + 4;37,37,37,37;, + 4;38,38,38,38;, + 4;39,39,39,39;, + 4;40,40,40,40;, + 4;41,41,41,41;, + 4;42,42,42,42;, + 4;43,43,43,43;, + 4;44,44,44,44;, + 4;45,45,45,45;, + 4;46,46,46,46;, + 4;47,47,47,47;; + } // End of Player normals + MeshTextureCoords { // Player UV coordinates + 192; + 0.625000; 0.625000;, + 0.500000; 0.625000;, + 0.500000; 1.000000;, + 0.625000; 1.000000;, + 0.500000; 0.625000;, + 0.437500; 0.625000;, + 0.437500; 1.000000;, + 0.500000; 1.000000;, + 0.437500; 0.625000;, + 0.312500; 0.625000;, + 0.312500; 1.000000;, + 0.437500; 1.000000;, + 0.562500; 0.625000;, + 0.562500; 0.500000;, + 0.437500; 0.500000;, + 0.437500; 0.625000;, + 0.437500; 0.625000;, + 0.437500; 0.500000;, + 0.312500; 0.500000;, + 0.312500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.625000;, + 0.812500; 0.625000;, + 0.875000; 0.625000;, + 0.875000; 1.000000;, + 0.812500; 1.000000;, + 0.750000; 0.625000;, + 0.812500; 0.625000;, + 0.812500; 1.000000;, + 0.750000; 1.000000;, + 0.187500; 0.625000;, + 0.187500; 0.500000;, + 0.125000; 0.500000;, + 0.125000; 0.625000;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.000000; 1.000000;, + 0.500000; 0.250000;, + 0.375000; 0.250000;, + 0.375000; 0.500000;, + 0.500000; 0.500000;, + 0.375000; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.500000;, + 0.375000; 0.500000;, + 0.250000; 0.250000;, + 0.125000; 0.250000;, + 0.125000; 0.500000;, + 0.250000; 0.500000;, + 0.375000; 0.250000;, + 0.375000; 0.000000;, + 0.250000; 0.000000;, + 0.250000; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.000000;, + 0.125000; 0.000000;, + 0.125000; 0.250000;, + 0.250000; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.250000; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.125000; 1.000000;, + 0.750000; 0.625000;, + 0.812500; 0.625000;, + 0.812500; 0.500000;, + 0.750000; 0.500000;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.500000;, + 0.687500; 0.500000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.187500; 1.000000;, + 0.000000; 0.625000;, + 0.000000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.312500; 1.000000;, + 0.312500; 0.625000;, + 0.000000; 0.250000;, + 0.000000; 0.500000;, + 0.125000; 0.500000;, + 0.125000; 0.250000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.062500; 0.500000;, + 0.062500; 0.625000;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 1.000000;, + 0.687500; 1.000000;, + 0.687500; 0.625000;, + 0.625000; 0.625000;, + 0.625000; 1.000000;, + 0.687500; 1.000000;, + 0.687500; 0.625000;, + 0.687500; 1.000000;, + 0.625000; 1.000000;, + 0.625000; 0.625000;, + 0.687500; 0.625000;, + 0.687500; 0.500000;, + 0.750000; 0.500000;, + 0.750000; 0.625000;, + 0.687500; 0.625000;, + 0.687500; 1.000000;, + 0.750000; 1.000000;, + 0.750000; 0.625000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.750000; 0.625000;, + 0.750000; 1.000000;, + 0.812500; 1.000000;, + 0.812500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.500000;, + 0.812500; 0.500000;, + 0.812500; 0.625000;, + 0.812500; 0.625000;, + 0.812500; 1.000000;, + 0.875000; 1.000000;, + 0.875000; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 1.000000; 0.250000;, + 0.875000; 0.250000;, + 0.875000; 0.500000;, + 1.000000; 0.500000;, + 0.875000; 0.250000;, + 0.750000; 0.250000;, + 0.750000; 0.500000;, + 0.875000; 0.500000;, + 0.750000; 0.250000;, + 0.625000; 0.250000;, + 0.625000; 0.500000;, + 0.750000; 0.500000;, + 0.875000; 0.250000;, + 0.875000; 0.000000;, + 0.750000; 0.000000;, + 0.750000; 0.250000;, + 0.750000; 0.250000;, + 0.750000; 0.000000;, + 0.625000; 0.000000;, + 0.625000; 0.250000;, + 0.500000; 0.250000;, + 0.500000; 0.500000;, + 0.625000; 0.500000;, + 0.625000; 0.250000;, + 1.000000; 0.625000;, + 0.875000; 0.625000;, + 0.875000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.625000;, + 1.000000; 1.000000;, + 0.875000; 1.000000;, + 0.875000; 0.625000;, + 0.875000; 0.625000;, + 1.000000; 0.625000;, + 1.000000; 0.656250;, + 0.875000; 0.656250;, + 1.000000; 0.625000;, + 1.000000; 1.000000;, + 0.984375; 1.000000;, + 0.984375; 0.625000;, + 0.875000; 1.000000;, + 0.875000; 0.625000;, + 0.890625; 0.625000;, + 0.890625; 1.000000;, + 1.000000; 1.000000;, + 0.875000; 1.000000;, + 0.875000; 0.968750;, + 1.000000; 0.968750;; + } // End of Player UV coordinates + MeshMaterialList { // Player material list + 1; + 48; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Character { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.000000; 0.000000; 0.000000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"character.png";} + } + } // End of Player material list + XSkinMeshHeader { + 2; + 6; + 7; + } + SkinWeights { + "Armature_Arm_Right"; + 24; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 112, + 113, + 114, + 115, + 120, + 121, + 122, + 123, + 128, + 129, + 130, + 131, + 136, + 137, + 138, + 139; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.989214, 0.143940, 0.027164, 0.000000, + -0.027450,-0.000000, 0.999623, 0.000000, + 0.143886,-0.989587, 0.003951, 0.000000, + -3.920884,13.071539,-0.107668, 1.000000;; + } // End of Armature_Arm_Right skin weights + SkinWeights { + "Armature_Arm_Left"; + 24; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 116, + 117, + 118, + 119, + 132, + 133, + 134, + 135; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.989214,-0.143940,-0.027164, 0.000000, + 0.027450,-0.000000, 0.999623, 0.000000, + -0.143886,-0.989587, 0.003951, 0.000000, + 3.920884,13.071539,-0.107668, 1.000000;; + } // End of Armature_Arm_Left skin weights + SkinWeights { + "Armature_Cape"; + 24; + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-0.000002, 1.000000, 0.000000, + -0.000000,-1.000000,-0.000002, 0.000000, + 0.000000,13.499997, 0.976740, 1.000000;; + } // End of Armature_Cape skin weights + SkinWeights { + "Armature_Head"; + 48; + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 96, + 97, + 98, + 99, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.000000,-13.500000,-0.000002, 1.000000;; + } // End of Armature_Head skin weights + SkinWeights { + "Armature_Leg_Left"; + 24; + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 60, + 61, + 62, + 63, + 68, + 69, + 70, + 71, + 84, + 85, + 86, + 87, + 100, + 101, + 102, + 103; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 1.000000, 6.750001,-0.000001, 1.000000;; + } // End of Armature_Leg_Left skin weights + SkinWeights { + "Armature_Body"; + 129; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 33, + 34, + 36, + 37, + 39, + 60, + 61, + 62, + 63, + 64, + 67, + 68, + 69, + 72, + 73, + 74, + 75, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 88, + 89, + 91, + 92, + 93, + 94, + 95, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 116, + 117, + 118, + 119, + 121, + 122, + 123, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000,-6.750000,-0.000001, 1.000000;; + } // End of Armature_Body skin weights + SkinWeights { + "Armature_Leg_Right"; + 24; + 20, + 21, + 22, + 23, + 64, + 65, + 66, + 67, + 80, + 81, + 82, + 83, + 88, + 89, + 90, + 91, + 124, + 125, + 126, + 127, + 140, + 141, + 142, + 143; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -1.000000, 6.750001,-0.000001, 1.000000;; + } // End of Armature_Leg_Right skin weights + } // End of Player mesh + } // End of Player + } // End of Armature +} // End of Root +AnimationSet ArmatureAction { + Animation { + {Armature} + AnimationKey { // Rotation + 0; + 221; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 190;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 191;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 192;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 193;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 194;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 195;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 196;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 197;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 198;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 199;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 200;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 201;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 202;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 203;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 204;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 205;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 206;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 207;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 208;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 209;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 210;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 211;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 212;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 213;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 214;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 215;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 216;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 217;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 218;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 219;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 220;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3; 0.000000, 0.000000,-10.000000;;, + 1;3; 0.000000, 0.000000,-10.000000;;, + 2;3; 0.000000, 0.000000,-10.000000;;, + 3;3; 0.000000, 0.000000,-10.000000;;, + 4;3; 0.000000, 0.000000,-10.000000;;, + 5;3; 0.000000, 0.000000,-10.000000;;, + 6;3; 0.000000, 0.000000,-10.000000;;, + 7;3; 0.000000, 0.000000,-10.000000;;, + 8;3; 0.000000, 0.000000,-10.000000;;, + 9;3; 0.000000, 0.000000,-10.000000;;, + 10;3; 0.000000, 0.000000,-10.000000;;, + 11;3; 0.000000, 0.000000,-10.000000;;, + 12;3; 0.000000, 0.000000,-10.000000;;, + 13;3; 0.000000, 0.000000,-10.000000;;, + 14;3; 0.000000, 0.000000,-10.000000;;, + 15;3; 0.000000, 0.000000,-10.000000;;, + 16;3; 0.000000, 0.000000,-10.000000;;, + 17;3; 0.000000, 0.000000,-10.000000;;, + 18;3; 0.000000, 0.000000,-10.000000;;, + 19;3; 0.000000, 0.000000,-10.000000;;, + 20;3; 0.000000, 0.000000,-10.000000;;, + 21;3; 0.000000, 0.000000,-10.000000;;, + 22;3; 0.000000, 0.000000,-10.000000;;, + 23;3; 0.000000, 0.000000,-10.000000;;, + 24;3; 0.000000, 0.000000,-10.000000;;, + 25;3; 0.000000, 0.000000,-10.000000;;, + 26;3; 0.000000, 0.000000,-10.000000;;, + 27;3; 0.000000, 0.000000,-10.000000;;, + 28;3; 0.000000, 0.000000,-10.000000;;, + 29;3; 0.000000, 0.000000,-10.000000;;, + 30;3; 0.000000, 0.000000,-10.000000;;, + 31;3; 0.000000, 0.000000,-10.000000;;, + 32;3; 0.000000, 0.000000,-10.000000;;, + 33;3; 0.000000, 0.000000,-10.000000;;, + 34;3; 0.000000, 0.000000,-10.000000;;, + 35;3; 0.000000, 0.000000,-10.000000;;, + 36;3; 0.000000, 0.000000,-10.000000;;, + 37;3; 0.000000, 0.000000,-10.000000;;, + 38;3; 0.000000, 0.000000,-10.000000;;, + 39;3; 0.000000, 0.000000,-10.000000;;, + 40;3; 0.000000, 0.000000,-10.000000;;, + 41;3; 0.000000, 0.000000,-10.000000;;, + 42;3; 0.000000, 0.000000,-10.000000;;, + 43;3; 0.000000, 0.000000,-10.000000;;, + 44;3; 0.000000, 0.000000,-10.000000;;, + 45;3; 0.000000, 0.000000,-10.000000;;, + 46;3; 0.000000, 0.000000,-10.000000;;, + 47;3; 0.000000, 0.000000,-10.000000;;, + 48;3; 0.000000, 0.000000,-10.000000;;, + 49;3; 0.000000, 0.000000,-10.000000;;, + 50;3; 0.000000, 0.000000,-10.000000;;, + 51;3; 0.000000, 0.000000,-10.000000;;, + 52;3; 0.000000, 0.000000,-10.000000;;, + 53;3; 0.000000, 0.000000,-10.000000;;, + 54;3; 0.000000, 0.000000,-10.000000;;, + 55;3; 0.000000, 0.000000,-10.000000;;, + 56;3; 0.000000, 0.000000,-10.000000;;, + 57;3; 0.000000, 0.000000,-10.000000;;, + 58;3; 0.000000, 0.000000,-10.000000;;, + 59;3; 0.000000, 0.000000,-10.000000;;, + 60;3; 0.000000, 0.000000,-10.000000;;, + 61;3; 0.000000, 0.000000,-10.000000;;, + 62;3; 0.000000, 0.000000,-10.000000;;, + 63;3; 0.000000, 0.000000,-10.000000;;, + 64;3; 0.000000, 0.000000,-10.000000;;, + 65;3; 0.000000, 0.000000,-10.000000;;, + 66;3; 0.000000, 0.000000,-10.000000;;, + 67;3; 0.000000, 0.000000,-10.000000;;, + 68;3; 0.000000, 0.000000,-10.000000;;, + 69;3; 0.000000, 0.000000,-10.000000;;, + 70;3; 0.000000, 0.000000,-10.000000;;, + 71;3; 0.000000, 0.000000,-10.000000;;, + 72;3; 0.000000, 0.000000,-10.000000;;, + 73;3; 0.000000, 0.000000,-10.000000;;, + 74;3; 0.000000, 0.000000,-10.000000;;, + 75;3; 0.000000, 0.000000,-10.000000;;, + 76;3; 0.000000, 0.000000,-10.000000;;, + 77;3; 0.000000, 0.000000,-10.000000;;, + 78;3; 0.000000, 0.000000,-10.000000;;, + 79;3; 0.000000, 0.000000,-10.000000;;, + 80;3; 0.000000, 0.000000,-10.000000;;, + 81;3; 0.000000, 0.000000,-10.000000;;, + 82;3; 0.000000, 0.000000,-10.000000;;, + 83;3; 0.000000, 0.000000,-10.000000;;, + 84;3; 0.000000, 0.000000,-10.000000;;, + 85;3; 0.000000, 0.000000,-10.000000;;, + 86;3; 0.000000, 0.000000,-10.000000;;, + 87;3; 0.000000, 0.000000,-10.000000;;, + 88;3; 0.000000, 0.000000,-10.000000;;, + 89;3; 0.000000, 0.000000,-10.000000;;, + 90;3; 0.000000, 0.000000,-10.000000;;, + 91;3; 0.000000, 0.000000,-10.000000;;, + 92;3; 0.000000, 0.000000,-10.000000;;, + 93;3; 0.000000, 0.000000,-10.000000;;, + 94;3; 0.000000, 0.000000,-10.000000;;, + 95;3; 0.000000, 0.000000,-10.000000;;, + 96;3; 0.000000, 0.000000,-10.000000;;, + 97;3; 0.000000, 0.000000,-10.000000;;, + 98;3; 0.000000, 0.000000,-10.000000;;, + 99;3; 0.000000, 0.000000,-10.000000;;, + 100;3; 0.000000, 0.000000,-10.000000;;, + 101;3; 0.000000, 0.000000,-10.000000;;, + 102;3; 0.000000, 0.000000,-10.000000;;, + 103;3; 0.000000, 0.000000,-10.000000;;, + 104;3; 0.000000, 0.000000,-10.000000;;, + 105;3; 0.000000, 0.000000,-10.000000;;, + 106;3; 0.000000, 0.000000,-10.000000;;, + 107;3; 0.000000, 0.000000,-10.000000;;, + 108;3; 0.000000, 0.000000,-10.000000;;, + 109;3; 0.000000, 0.000000,-10.000000;;, + 110;3; 0.000000, 0.000000,-10.000000;;, + 111;3; 0.000000, 0.000000,-10.000000;;, + 112;3; 0.000000, 0.000000,-10.000000;;, + 113;3; 0.000000, 0.000000,-10.000000;;, + 114;3; 0.000000, 0.000000,-10.000000;;, + 115;3; 0.000000, 0.000000,-10.000000;;, + 116;3; 0.000000, 0.000000,-10.000000;;, + 117;3; 0.000000, 0.000000,-10.000000;;, + 118;3; 0.000000, 0.000000,-10.000000;;, + 119;3; 0.000000, 0.000000,-10.000000;;, + 120;3; 0.000000, 0.000000,-10.000000;;, + 121;3; 0.000000, 0.000000,-10.000000;;, + 122;3; 0.000000, 0.000000,-10.000000;;, + 123;3; 0.000000, 0.000000,-10.000000;;, + 124;3; 0.000000, 0.000000,-10.000000;;, + 125;3; 0.000000, 0.000000,-10.000000;;, + 126;3; 0.000000, 0.000000,-10.000000;;, + 127;3; 0.000000, 0.000000,-10.000000;;, + 128;3; 0.000000, 0.000000,-10.000000;;, + 129;3; 0.000000, 0.000000,-10.000000;;, + 130;3; 0.000000, 0.000000,-10.000000;;, + 131;3; 0.000000, 0.000000,-10.000000;;, + 132;3; 0.000000, 0.000000,-10.000000;;, + 133;3; 0.000000, 0.000000,-10.000000;;, + 134;3; 0.000000, 0.000000,-10.000000;;, + 135;3; 0.000000, 0.000000,-10.000000;;, + 136;3; 0.000000, 0.000000,-10.000000;;, + 137;3; 0.000000, 0.000000,-10.000000;;, + 138;3; 0.000000, 0.000000,-10.000000;;, + 139;3; 0.000000, 0.000000,-10.000000;;, + 140;3; 0.000000, 0.000000,-10.000000;;, + 141;3; 0.000000, 0.000000,-10.000000;;, + 142;3; 0.000000, 0.000000,-10.000000;;, + 143;3; 0.000000, 0.000000,-10.000000;;, + 144;3; 0.000000, 0.000000,-10.000000;;, + 145;3; 0.000000, 0.000000,-10.000000;;, + 146;3; 0.000000, 0.000000,-10.000000;;, + 147;3; 0.000000, 0.000000,-10.000000;;, + 148;3; 0.000000, 0.000000,-10.000000;;, + 149;3; 0.000000, 0.000000,-10.000000;;, + 150;3; 0.000000, 0.000000,-10.000000;;, + 151;3; 0.000000, 0.000000,-10.000000;;, + 152;3; 0.000000, 0.000000,-10.000000;;, + 153;3; 0.000000, 0.000000,-10.000000;;, + 154;3; 0.000000, 0.000000,-10.000000;;, + 155;3; 0.000000, 0.000000,-10.000000;;, + 156;3; 0.000000, 0.000000,-10.000000;;, + 157;3; 0.000000, 0.000000,-10.000000;;, + 158;3; 0.000000, 0.000000,-10.000000;;, + 159;3; 0.000000, 0.000000,-10.000000;;, + 160;3; 0.000000, 0.000000,-10.000000;;, + 161;3; 0.000000, 0.000000,-10.000000;;, + 162;3; 0.000000, 0.000000,-10.000000;;, + 163;3; 0.000000, 0.000000,-10.000000;;, + 164;3; 0.000000, 0.000000,-10.000000;;, + 165;3; 0.000000, 0.000000,-10.000000;;, + 166;3; 0.000000, 0.000000,-10.000000;;, + 167;3; 0.000000, 0.000000,-10.000000;;, + 168;3; 0.000000, 0.000000,-10.000000;;, + 169;3; 0.000000, 0.000000,-10.000000;;, + 170;3; 0.000000, 0.000000,-10.000000;;, + 171;3; 0.000000, 0.000000,-10.000000;;, + 172;3; 0.000000, 0.000000,-10.000000;;, + 173;3; 0.000000, 0.000000,-10.000000;;, + 174;3; 0.000000, 0.000000,-10.000000;;, + 175;3; 0.000000, 0.000000,-10.000000;;, + 176;3; 0.000000, 0.000000,-10.000000;;, + 177;3; 0.000000, 0.000000,-10.000000;;, + 178;3; 0.000000, 0.000000,-10.000000;;, + 179;3; 0.000000, 0.000000,-10.000000;;, + 180;3; 0.000000, 0.000000,-10.000000;;, + 181;3; 0.000000, 0.000000,-10.000000;;, + 182;3; 0.000000, 0.000000,-10.000000;;, + 183;3; 0.000000, 0.000000,-10.000000;;, + 184;3; 0.000000, 0.000000,-10.000000;;, + 185;3; 0.000000, 0.000000,-10.000000;;, + 186;3; 0.000000, 0.000000,-10.000000;;, + 187;3; 0.000000, 0.000000,-10.000000;;, + 188;3; 0.000000, 0.000000,-10.000000;;, + 189;3; 0.000000, 0.000000,-10.000000;;, + 190;3; 0.000000, 0.000000,-10.000000;;, + 191;3; 0.000000, 0.000000,-10.000000;;, + 192;3; 0.000000, 0.000000,-10.000000;;, + 193;3; 0.000000, 0.000000,-10.000000;;, + 194;3; 0.000000, 0.000000,-10.000000;;, + 195;3; 0.000000, 0.000000,-10.000000;;, + 196;3; 0.000000, 0.000000,-10.000000;;, + 197;3; 0.000000, 0.000000,-10.000000;;, + 198;3; 0.000000, 0.000000,-10.000000;;, + 199;3; 0.000000, 0.000000,-10.000000;;, + 200;3; 0.000000, 0.000000,-10.000000;;, + 201;3; 0.000000, 0.000000,-10.000000;;, + 202;3; 0.000000, 0.000000,-10.000000;;, + 203;3; 0.000000, 0.000000,-10.000000;;, + 204;3; 0.000000, 0.000000,-10.000000;;, + 205;3; 0.000000, 0.000000,-10.000000;;, + 206;3; 0.000000, 0.000000,-10.000000;;, + 207;3; 0.000000, 0.000000,-10.000000;;, + 208;3; 0.000000, 0.000000,-10.000000;;, + 209;3; 0.000000, 0.000000,-10.000000;;, + 210;3; 0.000000, 0.000000,-10.000000;;, + 211;3; 0.000000, 0.000000,-10.000000;;, + 212;3; 0.000000, 0.000000,-10.000000;;, + 213;3; 0.000000, 0.000000,-10.000000;;, + 214;3; 0.000000, 0.000000,-10.000000;;, + 215;3; 0.000000, 0.000000,-10.000000;;, + 216;3; 0.000000, 0.000000,-10.000000;;, + 217;3; 0.000000, 0.000000,-10.000000;;, + 218;3; 0.000000, 0.000000,-10.000000;;, + 219;3; 0.000000, 0.000000,-10.000000;;, + 220;3; 0.000000, 0.000000,-10.000000;;; + } + } + Animation { + {Armature_Body} + AnimationKey { // Rotation + 0; + 221; + 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4;-0.706933, 0.707273, 0.000000, 0.000000;;, + 2;4;-0.706408, 0.707776, 0.000000, 0.000000;;, + 3;4;-0.705530, 0.708616, 0.000000, 0.000000;;, + 4;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 5;4;-0.702749, 0.711279, 0.000000, 0.000000;;, + 6;4;-0.700886, 0.713062, 0.000000, 0.000000;;, + 7;4;-0.698758, 0.715099, 0.000000, 0.000000;;, + 8;4;-0.696414, 0.717342, 0.000000, 0.000000;;, + 9;4;-0.693920, 0.719730, 0.000000, 0.000000;;, + 10;4;-0.691349, 0.722192, 0.000000, 0.000000;;, + 11;4;-0.688777, 0.724654, 0.000000, 0.000000;;, + 12;4;-0.686283, 0.727042, 0.000000, 0.000000;;, + 13;4;-0.683939, 0.729285, 0.000000, 0.000000;;, + 14;4;-0.681811, 0.731323, 0.000000, 0.000000;;, + 15;4;-0.679949, 0.733105, 0.000000, 0.000000;;, + 16;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 17;4;-0.677167, 0.735768, 0.000000, 0.000000;;, + 18;4;-0.676289, 0.736608, 0.000000, 0.000000;;, + 19;4;-0.675764, 0.737111, 0.000000, 0.000000;;, + 20;4;-0.675590, 0.737277, 0.000000, 0.000000;;, + 21;4;-0.675764, 0.737111, 0.000000, 0.000000;;, + 22;4;-0.676289, 0.736608, 0.000000, 0.000000;;, + 23;4;-0.677167, 0.735768, 0.000000, 0.000000;;, + 24;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 25;4;-0.679949, 0.733105, 0.000000, 0.000000;;, + 26;4;-0.681811, 0.731323, 0.000000, 0.000000;;, + 27;4;-0.683939, 0.729285, 0.000000, 0.000000;;, + 28;4;-0.686283, 0.727042, 0.000000, 0.000000;;, + 29;4;-0.688777, 0.724654, 0.000000, 0.000000;;, + 30;4;-0.691349, 0.722192, 0.000000, 0.000000;;, + 31;4;-0.693920, 0.719730, 0.000000, 0.000000;;, + 32;4;-0.696414, 0.717342, 0.000000, 0.000000;;, + 33;4;-0.698758, 0.715099, 0.000000, 0.000000;;, + 34;4;-0.700886, 0.713062, 0.000000, 0.000000;;, + 35;4;-0.702749, 0.711279, 0.000000, 0.000000;;, + 36;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 37;4;-0.705530, 0.708616, 0.000000, 0.000000;;, + 38;4;-0.706408, 0.707776, 0.000000, 0.000000;;, + 39;4;-0.706933, 0.707273, 0.000000, 0.000000;;, + 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4;-0.706933, 0.707273, 0.000000, 0.000000;;, + 42;4;-0.706408, 0.707776, 0.000000, 0.000000;;, + 43;4;-0.705530, 0.708616, 0.000000, 0.000000;;, + 44;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 45;4;-0.702749, 0.711279, 0.000000, 0.000000;;, + 46;4;-0.700886, 0.713062, 0.000000, 0.000000;;, + 47;4;-0.698758, 0.715099, 0.000000, 0.000000;;, + 48;4;-0.696414, 0.717342, 0.000000, 0.000000;;, + 49;4;-0.693920, 0.719730, 0.000000, 0.000000;;, + 50;4;-0.691349, 0.722192, 0.000000, 0.000000;;, + 51;4;-0.688777, 0.724654, 0.000000, 0.000000;;, + 52;4;-0.686283, 0.727042, 0.000000, 0.000000;;, + 53;4;-0.683939, 0.729285, 0.000000, 0.000000;;, + 54;4;-0.681811, 0.731323, 0.000000, 0.000000;;, + 55;4;-0.679949, 0.733105, 0.000000, 0.000000;;, + 56;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 57;4;-0.677167, 0.735768, 0.000000, 0.000000;;, + 58;4;-0.676289, 0.736608, 0.000000, 0.000000;;, + 59;4;-0.675764, 0.737111, 0.000000, 0.000000;;, + 60;4;-0.675590, 0.737277, 0.000000, 0.000000;;, + 61;4;-0.675754, 0.737121, 0.000000, 0.000000;;, + 62;4;-0.676212, 0.736682, 0.000000, 0.000000;;, + 63;4;-0.676927, 0.735998, 0.000000, 0.000000;;, + 64;4;-0.677865, 0.735100, 0.000000, 0.000000;;, + 65;4;-0.679001, 0.734013, 0.000000, 0.000000;;, + 66;4;-0.680312, 0.732757, 0.000000, 0.000000;;, + 67;4;-0.681780, 0.731352, 0.000000, 0.000000;;, + 68;4;-0.683387, 0.729813, 0.000000, 0.000000;;, + 69;4;-0.685121, 0.728154, 0.000000, 0.000000;;, + 70;4;-0.686966, 0.726388, 0.000000, 0.000000;;, + 71;4;-0.688910, 0.724526, 0.000000, 0.000000;;, + 72;4;-0.690941, 0.722582, 0.000000, 0.000000;;, + 73;4;-0.693046, 0.720567, 0.000000, 0.000000;;, + 74;4;-0.695210, 0.718495, 0.000000, 0.000000;;, + 75;4;-0.697417, 0.716383, 0.000000, 0.000000;;, + 76;4;-0.699643, 0.714251, 0.000000, 0.000000;;, + 77;4;-0.701856, 0.712134, 0.000000, 0.000000;;, + 78;4;-0.703995, 0.710085, 0.000000, 0.000000;;, + 79;4;-0.705928, 0.708235, 0.000000, 0.000000;;, + 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 82;4;-0.705928, 0.708235, 0.000000, 0.000000;;, + 83;4;-0.703995, 0.710085, 0.000000, 0.000000;;, + 84;4;-0.701856, 0.712134, 0.000000, 0.000000;;, + 85;4;-0.699643, 0.714251, 0.000000, 0.000000;;, + 86;4;-0.697417, 0.716383, 0.000000, 0.000000;;, + 87;4;-0.695210, 0.718495, 0.000000, 0.000000;;, + 88;4;-0.693046, 0.720567, 0.000000, 0.000000;;, + 89;4;-0.690941, 0.722582, 0.000000, 0.000000;;, + 90;4;-0.688910, 0.724526, 0.000000, 0.000000;;, + 91;4;-0.686966, 0.726388, 0.000000, 0.000000;;, + 92;4;-0.685121, 0.728154, 0.000000, 0.000000;;, + 93;4;-0.683387, 0.729813, 0.000000, 0.000000;;, + 94;4;-0.681780, 0.731352, 0.000000, 0.000000;;, + 95;4;-0.680312, 0.732757, 0.000000, 0.000000;;, + 96;4;-0.679001, 0.734013, 0.000000, 0.000000;;, + 97;4;-0.677865, 0.735100, 0.000000, 0.000000;;, + 98;4;-0.676927, 0.735998, 0.000000, 0.000000;;, + 99;4;-0.676212, 0.736682, 0.000000, 0.000000;;, + 100;4;-0.675754, 0.737121, 0.000000, 0.000000;;, + 101;4;-0.675590, 0.737277, 0.000000, 0.000000;;, + 102;4;-0.675764, 0.737111, 0.000000, 0.000000;;, + 103;4;-0.676289, 0.736608, 0.000000, 0.000000;;, + 104;4;-0.677167, 0.735768, 0.000000, 0.000000;;, + 105;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 106;4;-0.679949, 0.733105, 0.000000, 0.000000;;, + 107;4;-0.681811, 0.731323, 0.000000, 0.000000;;, + 108;4;-0.683939, 0.729285, 0.000000, 0.000000;;, + 109;4;-0.686283, 0.727042, 0.000000, 0.000000;;, + 110;4;-0.688777, 0.724654, 0.000000, 0.000000;;, + 111;4;-0.691349, 0.722192, 0.000000, 0.000000;;, + 112;4;-0.693920, 0.719730, 0.000000, 0.000000;;, + 113;4;-0.696414, 0.717342, 0.000000, 0.000000;;, + 114;4;-0.698758, 0.715099, 0.000000, 0.000000;;, + 115;4;-0.700886, 0.713062, 0.000000, 0.000000;;, + 116;4;-0.702749, 0.711279, 0.000000, 0.000000;;, + 117;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 118;4;-0.705530, 0.708616, 0.000000, 0.000000;;, + 119;4;-0.706408, 0.707776, 0.000000, 0.000000;;, + 120;4;-0.706933, 0.707273, 0.000000, 0.000000;;, + 121;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 122;4;-0.706933, 0.707273, 0.000000, 0.000000;;, + 123;4;-0.706408, 0.707776, 0.000000, 0.000000;;, + 124;4;-0.705530, 0.708616, 0.000000, 0.000000;;, + 125;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 126;4;-0.702749, 0.711279, 0.000000, 0.000000;;, + 127;4;-0.700886, 0.713062, 0.000000, 0.000000;;, + 128;4;-0.698758, 0.715099, 0.000000, 0.000000;;, + 129;4;-0.696414, 0.717342, 0.000000, 0.000000;;, + 130;4;-0.693920, 0.719730, 0.000000, 0.000000;;, + 131;4;-0.691349, 0.722192, 0.000000, 0.000000;;, + 132;4;-0.688777, 0.724654, 0.000000, 0.000000;;, + 133;4;-0.686283, 0.727042, 0.000000, 0.000000;;, + 134;4;-0.683939, 0.729285, 0.000000, 0.000000;;, + 135;4;-0.681811, 0.731323, 0.000000, 0.000000;;, + 136;4;-0.679949, 0.733105, 0.000000, 0.000000;;, + 137;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 138;4;-0.677167, 0.735768, 0.000000, 0.000000;;, + 139;4;-0.676289, 0.736608, 0.000000, 0.000000;;, + 140;4;-0.675764, 0.737111, 0.000000, 0.000000;;, + 141;4;-0.675590, 0.737277, 0.000000, 0.000000;;, + 142;4;-0.675754, 0.737121, 0.000000, 0.000000;;, + 143;4;-0.676211, 0.736683, 0.000000, 0.000000;;, + 144;4;-0.676923, 0.736001, 0.000000, 0.000000;;, + 145;4;-0.677857, 0.735107, 0.000000, 0.000000;;, + 146;4;-0.678987, 0.734026, 0.000000, 0.000000;;, + 147;4;-0.680291, 0.732778, 0.000000, 0.000000;;, + 148;4;-0.681750, 0.731381, 0.000000, 0.000000;;, + 149;4;-0.683349, 0.729852, 0.000000, 0.000000;;, + 150;4;-0.685071, 0.728203, 0.000000, 0.000000;;, + 151;4;-0.686905, 0.726448, 0.000000, 0.000000;;, + 152;4;-0.688838, 0.724598, 0.000000, 0.000000;;, + 153;4;-0.690858, 0.722664, 0.000000, 0.000000;;, + 154;4;-0.692953, 0.720659, 0.000000, 0.000000;;, + 155;4;-0.695109, 0.718596, 0.000000, 0.000000;;, + 156;4;-0.697310, 0.716489, 0.000000, 0.000000;;, + 157;4;-0.699536, 0.714358, 0.000000, 0.000000;;, + 158;4;-0.701754, 0.712235, 0.000000, 0.000000;;, + 159;4;-0.703909, 0.710171, 0.000000, 0.000000;;, + 160;4;-0.705875, 0.708288, 0.000000, 0.000000;;, + 161;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 162;4;-0.000000, 1.000000, 0.000000, 0.000000;;, + 163;4;-0.000000, 1.000000, 0.000000, 0.000000;;, + 164;4;-0.000000, 1.000000, 0.000000, 0.000000;;, + 165;4;-0.000000, 1.000000, 0.000000, 0.000000;;, + 166;4;-0.000000, 1.000000, 0.000000, 0.000000;;, + 167;4;-0.000000, 1.000000, 0.000000, 0.000000;;, + 168;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 169;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 170;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 171;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 172;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 173;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 174;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 175;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 176;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 177;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 178;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 179;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 180;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 181;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 182;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 183;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 184;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 185;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 186;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 187;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 188;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 189;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 190;4;-0.709789, 0.704305, 0.000000, 0.000000;;, + 191;4;-0.717343, 0.696414, 0.000000, 0.000000;;, + 192;4;-0.727042, 0.686283, 0.000000, 0.000000;;, + 193;4;-0.734596, 0.678392, 0.000000, 0.000000;;, + 194;4;-0.737277, 0.675590, 0.000000, 0.000000;;, + 195;4;-0.734596, 0.678392, 0.000000, 0.000000;;, + 196;4;-0.727042, 0.686283, 0.000000, 0.000000;;, + 197;4;-0.717343, 0.696414, 0.000000, 0.000000;;, + 198;4;-0.709789, 0.704305, 0.000000, 0.000000;;, + 199;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 200;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 201;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 202;4;-0.696414, 0.717342, 0.000000, 0.000000;;, + 203;4;-0.686283, 0.727042, 0.000000, 0.000000;;, + 204;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 205;4;-0.675590, 0.737277, 0.000000, 0.000000;;, + 206;4;-0.681074, 0.731794, 0.000000, 0.000000;;, + 207;4;-0.696519, 0.716349, 0.000000, 0.000000;;, + 208;4;-0.716349, 0.696518, 0.000000, 0.000000;;, + 209;4;-0.731794, 0.681074, 0.000000, 0.000000;;, + 210;4;-0.737277, 0.675590, 0.000000, 0.000000;;, + 211;4;-0.731794, 0.681074, 0.000000, 0.000000;;, + 212;4;-0.716349, 0.696518, 0.000000, 0.000000;;, + 213;4;-0.696518, 0.716349, 0.000000, 0.000000;;, + 214;4;-0.681074, 0.731794, 0.000000, 0.000000;;, + 215;4;-0.675590, 0.737277, 0.000000, 0.000000;;, + 216;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 217;4;-0.686282, 0.727042, 0.000000, 0.000000;;, + 218;4;-0.696414, 0.717343, 0.000000, 0.000000;;, + 219;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 220;4;-0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3;-0.000000, 0.000000, 6.750000;;, + 1;3;-0.000000, 0.000000, 6.750000;;, + 2;3;-0.000000, 0.000000, 6.750000;;, + 3;3;-0.000000, 0.000000, 6.750000;;, + 4;3;-0.000000, 0.000000, 6.750000;;, + 5;3;-0.000000, 0.000000, 6.750000;;, + 6;3;-0.000000, 0.000000, 6.750000;;, + 7;3;-0.000000, 0.000000, 6.750000;;, + 8;3;-0.000000, 0.000000, 6.750000;;, + 9;3;-0.000000, 0.000000, 6.750000;;, + 10;3;-0.000000, 0.000000, 6.750000;;, + 11;3;-0.000000, 0.000000, 6.750000;;, + 12;3;-0.000000, 0.000000, 6.750000;;, + 13;3;-0.000000, 0.000000, 6.750000;;, + 14;3;-0.000000, 0.000000, 6.750000;;, + 15;3;-0.000000, 0.000000, 6.750000;;, + 16;3;-0.000000, 0.000000, 6.750000;;, + 17;3;-0.000000, 0.000000, 6.750000;;, + 18;3;-0.000000, 0.000000, 6.750000;;, + 19;3;-0.000000, 0.000000, 6.750000;;, + 20;3;-0.000000, 0.000000, 6.750000;;, + 21;3;-0.000000, 0.000000, 6.750000;;, + 22;3;-0.000000, 0.000000, 6.750000;;, + 23;3;-0.000000, 0.000000, 6.750000;;, + 24;3;-0.000000, 0.000000, 6.750000;;, + 25;3;-0.000000, 0.000000, 6.750000;;, + 26;3;-0.000000, 0.000000, 6.750000;;, + 27;3;-0.000000, 0.000000, 6.750000;;, + 28;3;-0.000000, 0.000000, 6.750000;;, + 29;3;-0.000000, 0.000000, 6.750000;;, + 30;3;-0.000000, 0.000000, 6.750000;;, + 31;3;-0.000000, 0.000000, 6.750000;;, + 32;3;-0.000000, 0.000000, 6.750000;;, + 33;3;-0.000000, 0.000000, 6.750000;;, + 34;3;-0.000000, 0.000000, 6.750000;;, + 35;3;-0.000000, 0.000000, 6.750000;;, + 36;3;-0.000000, 0.000000, 6.750000;;, + 37;3;-0.000000, 0.000000, 6.750000;;, + 38;3;-0.000000, 0.000000, 6.750000;;, + 39;3;-0.000000, 0.000000, 6.750000;;, + 40;3;-0.000000, 0.000000, 6.750000;;, + 41;3;-0.000000, 0.000000, 6.750000;;, + 42;3;-0.000000, 0.000000, 6.750000;;, + 43;3;-0.000000, 0.000000, 6.750000;;, + 44;3;-0.000000, 0.000000, 6.750000;;, + 45;3;-0.000000, 0.000000, 6.750000;;, + 46;3;-0.000000, 0.000000, 6.750000;;, + 47;3;-0.000000, 0.000000, 6.750000;;, + 48;3;-0.000000, 0.000000, 6.750000;;, + 49;3;-0.000000, 0.000000, 6.750000;;, + 50;3;-0.000000, 0.000000, 6.750000;;, + 51;3;-0.000000, 0.000000, 6.750000;;, + 52;3;-0.000000, 0.000000, 6.750000;;, + 53;3;-0.000000, 0.000000, 6.750000;;, + 54;3;-0.000000, 0.000000, 6.750000;;, + 55;3;-0.000000, 0.000000, 6.750000;;, + 56;3;-0.000000, 0.000000, 6.750000;;, + 57;3;-0.000000, 0.000000, 6.750000;;, + 58;3;-0.000000, 0.000000, 6.750000;;, + 59;3;-0.000000, 0.000000, 6.750000;;, + 60;3;-0.000000, 0.000000, 6.750000;;, + 61;3;-0.000000, 0.000000, 6.750000;;, + 62;3;-0.000000, 0.000000, 6.750000;;, + 63;3;-0.000000, 0.000000, 6.750000;;, + 64;3;-0.000000, 0.000000, 6.750000;;, + 65;3;-0.000000, 0.000000, 6.750000;;, + 66;3;-0.000000, 0.000000, 6.750000;;, + 67;3;-0.000000, 0.000000, 6.750000;;, + 68;3;-0.000000, 0.000000, 6.750000;;, + 69;3;-0.000000, 0.000000, 6.750000;;, + 70;3;-0.000000, 0.000000, 6.750000;;, + 71;3;-0.000000, 0.000000, 6.750000;;, + 72;3;-0.000000, 0.000000, 6.750000;;, + 73;3;-0.000000, 0.000000, 6.750000;;, + 74;3;-0.000000, 0.000000, 6.750000;;, + 75;3;-0.000000, 0.000000, 6.750000;;, + 76;3;-0.000000, 0.000000, 6.750000;;, + 77;3;-0.000000, 0.000000, 6.750000;;, + 78;3;-0.000000, 0.000000, 6.750000;;, + 79;3;-0.000000, 0.000000, 6.750000;;, + 80;3;-0.000000, 0.000000, 6.750000;;, + 81;3;-0.000000, 0.000000, 1.000000;;, + 82;3;-0.000000, 0.000000, 1.000000;;, + 83;3;-0.000000, 0.000000, 1.000000;;, + 84;3;-0.000000, 0.000000, 1.000000;;, + 85;3;-0.000000, 0.000000, 1.000000;;, + 86;3;-0.000000, 0.000000, 1.000000;;, + 87;3;-0.000000, 0.000000, 1.000000;;, + 88;3;-0.000000, 0.000000, 1.000000;;, + 89;3;-0.000000, 0.000000, 1.000000;;, + 90;3;-0.000000, 0.000000, 1.000000;;, + 91;3;-0.000000, 0.000000, 1.000000;;, + 92;3;-0.000000, 0.000000, 1.000000;;, + 93;3;-0.000000, 0.000000, 1.000000;;, + 94;3;-0.000000, 0.000000, 1.000000;;, + 95;3;-0.000000, 0.000000, 1.000000;;, + 96;3;-0.000000, 0.000000, 1.000000;;, + 97;3;-0.000000, 0.000000, 1.000000;;, + 98;3;-0.000000, 0.000000, 1.000000;;, + 99;3;-0.000000, 0.000000, 1.000000;;, + 100;3;-0.000000, 0.000000, 1.000000;;, + 101;3;-0.000000, 0.000000, 1.000000;;, + 102;3;-0.000000, 0.000000, 1.000000;;, + 103;3;-0.000000, 0.000000, 1.000000;;, + 104;3;-0.000000, 0.000000, 1.000000;;, + 105;3;-0.000000, 0.000000, 1.000000;;, + 106;3;-0.000000, 0.000000, 1.000000;;, + 107;3;-0.000000, 0.000000, 1.000000;;, + 108;3;-0.000000, 0.000000, 1.000000;;, + 109;3;-0.000000, 0.000000, 1.000000;;, + 110;3;-0.000000, 0.000000, 1.000000;;, + 111;3;-0.000000, 0.000000, 1.000000;;, + 112;3;-0.000000, 0.000000, 1.000000;;, + 113;3;-0.000000, 0.000000, 1.000000;;, + 114;3;-0.000000, 0.000000, 1.000000;;, + 115;3;-0.000000, 0.000000, 1.000000;;, + 116;3;-0.000000, 0.000000, 1.000000;;, + 117;3;-0.000000, 0.000000, 1.000000;;, + 118;3;-0.000000, 0.000000, 1.000000;;, + 119;3;-0.000000, 0.000000, 1.000000;;, + 120;3;-0.000000, 0.000000, 1.000000;;, + 121;3;-0.000000, 0.000000, 1.000000;;, + 122;3;-0.000000, 0.000000, 1.000000;;, + 123;3;-0.000000, 0.000000, 1.000000;;, + 124;3;-0.000000, 0.000000, 1.000000;;, + 125;3;-0.000000, 0.000000, 1.000000;;, + 126;3;-0.000000, 0.000000, 1.000000;;, + 127;3;-0.000000, 0.000000, 1.000000;;, + 128;3;-0.000000, 0.000000, 1.000000;;, + 129;3;-0.000000, 0.000000, 1.000000;;, + 130;3;-0.000000, 0.000000, 1.000000;;, + 131;3;-0.000000, 0.000000, 1.000000;;, + 132;3;-0.000000, 0.000000, 1.000000;;, + 133;3;-0.000000, 0.000000, 1.000000;;, + 134;3;-0.000000, 0.000000, 1.000000;;, + 135;3;-0.000000, 0.000000, 1.000000;;, + 136;3;-0.000000, 0.000000, 1.000000;;, + 137;3;-0.000000, 0.000000, 1.000000;;, + 138;3;-0.000000, 0.000000, 1.000000;;, + 139;3;-0.000000, 0.000000, 1.000000;;, + 140;3;-0.000000, 0.000000, 1.000000;;, + 141;3;-0.000000, 0.000000, 1.000000;;, + 142;3;-0.000000, 0.000000, 1.000000;;, + 143;3;-0.000000, 0.000000, 1.000000;;, + 144;3;-0.000000, 0.000000, 1.000000;;, + 145;3;-0.000000, 0.000000, 1.000000;;, + 146;3;-0.000000, 0.000000, 1.000000;;, + 147;3;-0.000000, 0.000000, 1.000000;;, + 148;3;-0.000000, 0.000000, 1.000000;;, + 149;3;-0.000000, 0.000000, 1.000000;;, + 150;3;-0.000000, 0.000000, 1.000000;;, + 151;3;-0.000000, 0.000000, 1.000000;;, + 152;3;-0.000000, 0.000000, 1.000000;;, + 153;3;-0.000000, 0.000000, 1.000000;;, + 154;3;-0.000000, 0.000000, 1.000000;;, + 155;3;-0.000000, 0.000000, 1.000000;;, + 156;3;-0.000000, 0.000000, 1.000000;;, + 157;3;-0.000000, 0.000000, 1.000000;;, + 158;3;-0.000000, 0.000000, 1.000000;;, + 159;3;-0.000000, 0.000000, 1.000000;;, + 160;3;-0.000000, 0.000000, 1.000000;;, + 161;3;-0.000000, 0.000000, 1.000000;;, + 162;3;-0.000000, 2.000001, 1.000000;;, + 163;3;-0.000000, 2.000001, 1.000000;;, + 164;3;-0.000000, 2.000001, 1.000000;;, + 165;3;-0.000000, 2.000001, 1.000000;;, + 166;3;-0.000000, 2.000001, 1.000000;;, + 167;3;-0.000000, 2.000001, 1.000000;;, + 168;3;-0.000000, 0.000000, 6.750000;;, + 169;3;-0.000000, 0.000000, 6.750000;;, + 170;3;-0.000000, 0.000000, 6.750000;;, + 171;3;-0.000000, 0.000000, 6.750000;;, + 172;3;-0.000000, 0.000000, 6.750000;;, + 173;3;-0.000000, 0.000000, 6.750000;;, + 174;3;-0.000000, 0.000000, 6.750000;;, + 175;3;-0.000000, 0.000000, 6.750000;;, + 176;3;-0.000000, 0.000000, 6.750000;;, + 177;3;-0.000000, 0.000000, 6.750000;;, + 178;3;-0.000000, 0.000000, 6.750000;;, + 179;3;-0.000000, 0.000000, 6.750000;;, + 180;3;-0.000000, 0.000000, 6.750000;;, + 181;3;-0.000000, 0.000000, 6.750000;;, + 182;3;-0.000000, 0.000000, 6.750000;;, + 183;3;-0.000000, 0.000000, 6.750000;;, + 184;3;-0.000000, 0.000000, 6.750000;;, + 185;3;-0.000000, 0.000000, 6.750000;;, + 186;3;-0.000000, 0.000000, 6.750000;;, + 187;3;-0.000000, 0.000000, 6.750000;;, + 188;3;-0.000000, 0.000000, 6.750000;;, + 189;3;-0.000000, 0.000000, 6.750000;;, + 190;3;-0.000000, 0.000000, 6.750000;;, + 191;3;-0.000000, 0.000000, 6.750000;;, + 192;3;-0.000000, 0.000000, 6.750000;;, + 193;3;-0.000000, 0.000000, 6.750000;;, + 194;3;-0.000000, 0.000000, 6.750000;;, + 195;3;-0.000000, 0.000000, 6.750000;;, + 196;3;-0.000000, 0.000000, 6.750000;;, + 197;3;-0.000000, 0.000000, 6.750000;;, + 198;3;-0.000000, 0.000000, 6.750000;;, + 199;3;-0.000000, 0.000000, 6.750000;;, + 200;3;-0.000000, 0.000000, 6.750000;;, + 201;3;-0.000000, 0.000000, 6.750000;;, + 202;3;-0.000000, 0.000000, 6.750000;;, + 203;3;-0.000000, 0.000000, 6.750000;;, + 204;3;-0.000000, 0.000000, 6.750000;;, + 205;3;-0.000000, 0.000000, 6.750000;;, + 206;3;-0.000000, 0.000000, 6.750000;;, + 207;3;-0.000000, 0.000000, 6.750000;;, + 208;3;-0.000000, 0.000000, 6.750000;;, + 209;3;-0.000000, 0.000000, 6.750000;;, + 210;3;-0.000000, 0.000000, 6.750000;;, + 211;3;-0.000000, 0.000000, 6.750000;;, + 212;3;-0.000000, 0.000000, 6.750000;;, + 213;3;-0.000000, 0.000000, 6.750000;;, + 214;3;-0.000000, 0.000000, 6.750000;;, + 215;3;-0.000000, 0.000000, 6.750000;;, + 216;3;-0.000000, 0.000000, 6.750000;;, + 217;3;-0.000000, 0.000000, 6.750000;;, + 218;3;-0.000000, 0.000000, 6.750000;;, + 219;3;-0.000000, 0.000000, 6.750000;;, + 220;3;-0.000000, 0.000000, 6.750000;;; + } + } + Animation { + {Armature_Head} + AnimationKey { // Rotation + 0; + 221; + 0;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 1;4;-0.000120,-0.000005, 0.999993,-0.000240;;, + 2;4;-0.000483,-0.000021, 0.999974,-0.000967;;, + 3;4;-0.001090,-0.000048, 0.999941,-0.002181;;, + 4;4;-0.001937,-0.000085, 0.999894,-0.003876;;, + 5;4;-0.003014,-0.000132, 0.999835,-0.006030;;, + 6;4;-0.004301,-0.000188, 0.999765,-0.008607;;, + 7;4;-0.005773,-0.000252, 0.999685,-0.011553;;, + 8;4;-0.007394,-0.000323, 0.999596,-0.014795;;, + 9;4;-0.009118,-0.000398, 0.999502,-0.018246;;, + 10;4;-0.010897,-0.000476, 0.999405,-0.021804;;, + 11;4;-0.012675,-0.000553, 0.999308,-0.025363;;, + 12;4;-0.014400,-0.000629, 0.999214,-0.028814;;, + 13;4;-0.016021,-0.000699, 0.999126,-0.032056;;, + 14;4;-0.017493,-0.000764, 0.999045,-0.035002;;, + 15;4;-0.018780,-0.000820, 0.998975,-0.037578;;, + 16;4;-0.019857,-0.000867, 0.998916,-0.039733;;, + 17;4;-0.020704,-0.000904, 0.998870,-0.041427;;, + 18;4;-0.021311,-0.000930, 0.998837,-0.042642;;, + 19;4;-0.021674,-0.000946, 0.998817,-0.043369;;, + 20;4;-0.021794,-0.000952, 0.998811,-0.043609;;, + 21;4;-0.021720,-0.000948, 0.998817,-0.043369;;, + 22;4;-0.021494,-0.000938, 0.998837,-0.042642;;, + 23;4;-0.021108,-0.000922, 0.998870,-0.041427;;, + 24;4;-0.020560,-0.000898, 0.998916,-0.039733;;, + 25;4;-0.019848,-0.000867, 0.998975,-0.037578;;, + 26;4;-0.018975,-0.000828, 0.999045,-0.035002;;, + 27;4;-0.017947,-0.000784, 0.999126,-0.032056;;, + 28;4;-0.016778,-0.000733, 0.999214,-0.028814;;, + 29;4;-0.015484,-0.000676, 0.999308,-0.025363;;, + 30;4;-0.014088,-0.000615, 0.999405,-0.021804;;, + 31;4;-0.012616,-0.000551, 0.999502,-0.018246;;, + 32;4;-0.011095,-0.000484, 0.999596,-0.014795;;, + 33;4;-0.009555,-0.000417, 0.999685,-0.011553;;, + 34;4;-0.008021,-0.000350, 0.999765,-0.008607;;, + 35;4;-0.006517,-0.000285, 0.999835,-0.006030;;, + 36;4;-0.005062,-0.000221, 0.999894,-0.003876;;, + 37;4;-0.003674,-0.000160, 0.999941,-0.002181;;, + 38;4;-0.002362,-0.000103, 0.999974,-0.000967;;, + 39;4;-0.001136,-0.000050, 0.999993,-0.000240;;, + 40;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 41;4; 0.001136, 0.000050, 0.999993,-0.000240;;, + 42;4; 0.002362, 0.000103, 0.999974,-0.000967;;, + 43;4; 0.003674, 0.000160, 0.999941,-0.002181;;, + 44;4; 0.005062, 0.000221, 0.999894,-0.003876;;, + 45;4; 0.006517, 0.000285, 0.999835,-0.006030;;, + 46;4; 0.008021, 0.000350, 0.999765,-0.008607;;, + 47;4; 0.009555, 0.000417, 0.999685,-0.011553;;, + 48;4; 0.011095, 0.000484, 0.999596,-0.014795;;, + 49;4; 0.012616, 0.000551, 0.999502,-0.018246;;, + 50;4; 0.014088, 0.000615, 0.999405,-0.021804;;, + 51;4; 0.015484, 0.000676, 0.999308,-0.025363;;, + 52;4; 0.016778, 0.000733, 0.999214,-0.028814;;, + 53;4; 0.017947, 0.000784, 0.999126,-0.032056;;, + 54;4; 0.018975, 0.000828, 0.999045,-0.035002;;, + 55;4; 0.019848, 0.000867, 0.998975,-0.037578;;, + 56;4; 0.020560, 0.000898, 0.998916,-0.039733;;, + 57;4; 0.021109, 0.000922, 0.998870,-0.041427;;, + 58;4; 0.021494, 0.000938, 0.998837,-0.042642;;, + 59;4; 0.021720, 0.000948, 0.998817,-0.043369;;, + 60;4; 0.021794, 0.000952, 0.998811,-0.043609;;, + 61;4; 0.021681, 0.000947, 0.998817,-0.043383;;, + 62;4; 0.021364, 0.000933, 0.998834,-0.042748;;, + 63;4; 0.020870, 0.000911, 0.998861,-0.041759;;, + 64;4; 0.020221, 0.000883, 0.998896,-0.040461;;, + 65;4; 0.019436, 0.000849, 0.998939,-0.038890;;, + 66;4; 0.018529, 0.000809, 0.998989,-0.037076;;, + 67;4; 0.017514, 0.000765, 0.999044,-0.035045;;, + 68;4; 0.016402, 0.000716, 0.999105,-0.032820;;, + 69;4; 0.015204, 0.000664, 0.999170,-0.030422;;, + 70;4; 0.013928, 0.000608, 0.999240,-0.027869;;, + 71;4; 0.012583, 0.000549, 0.999313,-0.025178;;, + 72;4; 0.011179, 0.000488, 0.999390,-0.022368;;, + 73;4; 0.009723, 0.000425, 0.999469,-0.019456;;, + 74;4; 0.008227, 0.000359, 0.999551,-0.016461;;, + 75;4; 0.006701, 0.000293, 0.999634,-0.013408;;, + 76;4; 0.005161, 0.000225, 0.999718,-0.010327;;, + 77;4; 0.003631, 0.000159, 0.999802,-0.007266;;, + 78;4; 0.002152, 0.000094, 0.999883,-0.004305;;, + 79;4; 0.000815, 0.000036, 0.999956,-0.001631;;, + 80;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 81;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 82;4;-0.000815,-0.000036, 0.999956,-0.001631;;, + 83;4;-0.002152,-0.000094, 0.999883,-0.004305;;, + 84;4;-0.003631,-0.000159, 0.999802,-0.007266;;, + 85;4;-0.005161,-0.000225, 0.999718,-0.010327;;, + 86;4;-0.006701,-0.000293, 0.999634,-0.013408;;, + 87;4;-0.008226,-0.000359, 0.999551,-0.016461;;, + 88;4;-0.009723,-0.000425, 0.999469,-0.019456;;, + 89;4;-0.011179,-0.000488, 0.999390,-0.022368;;, + 90;4;-0.012583,-0.000549, 0.999313,-0.025178;;, + 91;4;-0.013928,-0.000608, 0.999240,-0.027869;;, + 92;4;-0.015204,-0.000664, 0.999170,-0.030422;;, + 93;4;-0.016402,-0.000716, 0.999105,-0.032820;;, + 94;4;-0.017514,-0.000765, 0.999044,-0.035045;;, + 95;4;-0.018529,-0.000809, 0.998989,-0.037076;;, + 96;4;-0.019436,-0.000849, 0.998939,-0.038890;;, + 97;4;-0.020221,-0.000883, 0.998896,-0.040461;;, + 98;4;-0.020870,-0.000911, 0.998861,-0.041759;;, + 99;4;-0.021364,-0.000933, 0.998834,-0.042748;;, + 100;4;-0.021681,-0.000947, 0.998817,-0.043383;;, + 101;4;-0.021794,-0.000952, 0.998811,-0.043609;;, + 102;4;-0.021720,-0.000948, 0.998817,-0.043369;;, + 103;4;-0.021494,-0.000938, 0.998837,-0.042642;;, + 104;4;-0.021108,-0.000922, 0.998870,-0.041427;;, + 105;4;-0.020560,-0.000898, 0.998916,-0.039733;;, + 106;4;-0.019848,-0.000867, 0.998975,-0.037578;;, + 107;4;-0.018975,-0.000828, 0.999045,-0.035002;;, + 108;4;-0.017947,-0.000784, 0.999126,-0.032056;;, + 109;4;-0.016778,-0.000733, 0.999214,-0.028814;;, + 110;4;-0.015484,-0.000676, 0.999308,-0.025363;;, + 111;4;-0.014088,-0.000615, 0.999405,-0.021804;;, + 112;4;-0.012616,-0.000551, 0.999502,-0.018246;;, + 113;4;-0.011095,-0.000484, 0.999596,-0.014795;;, + 114;4;-0.009555,-0.000417, 0.999685,-0.011553;;, + 115;4;-0.008021,-0.000350, 0.999765,-0.008607;;, + 116;4;-0.006517,-0.000285, 0.999835,-0.006030;;, + 117;4;-0.005062,-0.000221, 0.999894,-0.003876;;, + 118;4;-0.003674,-0.000160, 0.999941,-0.002181;;, + 119;4;-0.002362,-0.000103, 0.999974,-0.000967;;, + 120;4;-0.001136,-0.000050, 0.999993,-0.000240;;, + 121;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 122;4; 0.001136, 0.000050, 0.999993,-0.000240;;, + 123;4; 0.002362, 0.000103, 0.999974,-0.000967;;, + 124;4; 0.003674, 0.000160, 0.999941,-0.002181;;, + 125;4; 0.005062, 0.000221, 0.999894,-0.003876;;, + 126;4; 0.006517, 0.000285, 0.999835,-0.006030;;, + 127;4; 0.008021, 0.000350, 0.999765,-0.008607;;, + 128;4; 0.009555, 0.000417, 0.999685,-0.011553;;, + 129;4; 0.011095, 0.000484, 0.999596,-0.014795;;, + 130;4; 0.012616, 0.000551, 0.999502,-0.018246;;, + 131;4; 0.014088, 0.000615, 0.999405,-0.021804;;, + 132;4; 0.015484, 0.000676, 0.999308,-0.025363;;, + 133;4; 0.016778, 0.000733, 0.999214,-0.028814;;, + 134;4; 0.017947, 0.000784, 0.999126,-0.032056;;, + 135;4; 0.018975, 0.000828, 0.999045,-0.035002;;, + 136;4; 0.019848, 0.000867, 0.998975,-0.037578;;, + 137;4; 0.020560, 0.000898, 0.998916,-0.039733;;, + 138;4; 0.021109, 0.000922, 0.998870,-0.041427;;, + 139;4; 0.021494, 0.000938, 0.998837,-0.042642;;, + 140;4; 0.021720, 0.000948, 0.998817,-0.043369;;, + 141;4; 0.021794, 0.000952, 0.998811,-0.043609;;, + 142;4; 0.021681, 0.000947, 0.998817,-0.043383;;, + 143;4; 0.021364, 0.000933, 0.998834,-0.042748;;, + 144;4; 0.020870, 0.000911, 0.998861,-0.041759;;, + 145;4; 0.020221, 0.000883, 0.998896,-0.040461;;, + 146;4; 0.019436, 0.000849, 0.998939,-0.038890;;, + 147;4; 0.018529, 0.000809, 0.998989,-0.037076;;, + 148;4; 0.017514, 0.000765, 0.999044,-0.035045;;, + 149;4; 0.016402, 0.000716, 0.999105,-0.032820;;, + 150;4; 0.015204, 0.000664, 0.999170,-0.030422;;, + 151;4; 0.013928, 0.000608, 0.999240,-0.027869;;, + 152;4; 0.012583, 0.000549, 0.999313,-0.025178;;, + 153;4; 0.011179, 0.000488, 0.999390,-0.022368;;, + 154;4; 0.009723, 0.000425, 0.999469,-0.019456;;, + 155;4; 0.008227, 0.000359, 0.999551,-0.016461;;, + 156;4; 0.006701, 0.000293, 0.999634,-0.013408;;, + 157;4; 0.005161, 0.000225, 0.999718,-0.010327;;, + 158;4; 0.003631, 0.000159, 0.999802,-0.007266;;, + 159;4; 0.002152, 0.000094, 0.999883,-0.004305;;, + 160;4; 0.000815, 0.000036, 0.999956,-0.001631;;, + 161;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 162;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 163;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 164;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 165;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 166;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 167;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 168;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 169;4; 0.003877,-0.000000, 0.999915, 0.000000;;, + 170;4; 0.014799,-0.000000, 0.999677, 0.000000;;, + 171;4; 0.028821,-0.000000, 0.999371, 0.000000;;, + 172;4; 0.039742,-0.000000, 0.999133, 0.000000;;, + 173;4; 0.043619,-0.000000, 0.999048, 0.000000;;, + 174;4; 0.041150, 0.000000, 0.999133, 0.000000;;, + 175;4; 0.033580,-0.000000, 0.999371, 0.000000;;, + 176;4; 0.022207,-0.000000, 0.999677, 0.000000;;, + 177;4; 0.010132,-0.000000, 0.999915, 0.000000;;, + 178;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 179;4;-0.010132, 0.000000, 0.999915, 0.000000;;, + 180;4;-0.022206, 0.000000, 0.999677, 0.000000;;, + 181;4;-0.033580, 0.000000, 0.999371, 0.000000;;, + 182;4;-0.041150,-0.000000, 0.999133, 0.000000;;, + 183;4;-0.043619, 0.000000, 0.999048, 0.000000;;, + 184;4;-0.039742, 0.000000, 0.999133, 0.000000;;, + 185;4;-0.028821, 0.000000, 0.999371, 0.000000;;, + 186;4;-0.014798, 0.000000, 0.999677, 0.000000;;, + 187;4;-0.003877, 0.000000, 0.999915, 0.000000;;, + 188;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 189;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 190;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 191;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 192;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 193;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 194;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 195;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 196;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 197;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 198;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 199;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 200;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 201;4; 0.003877,-0.000000, 0.999915, 0.000000;;, + 202;4; 0.014799,-0.000000, 0.999677, 0.000000;;, + 203;4; 0.028821,-0.000000, 0.999371, 0.000000;;, + 204;4; 0.039742,-0.000000, 0.999133, 0.000000;;, + 205;4; 0.043619,-0.000000, 0.999048, 0.000000;;, + 206;4; 0.041150, 0.000000, 0.999133, 0.000000;;, + 207;4; 0.033580,-0.000000, 0.999371, 0.000000;;, + 208;4; 0.022207,-0.000000, 0.999677, 0.000000;;, + 209;4; 0.010132,-0.000000, 0.999915, 0.000000;;, + 210;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 211;4;-0.010132, 0.000000, 0.999915, 0.000000;;, + 212;4;-0.022206, 0.000000, 0.999677, 0.000000;;, + 213;4;-0.033580, 0.000000, 0.999371, 0.000000;;, + 214;4;-0.041150,-0.000000, 0.999133, 0.000000;;, + 215;4;-0.043619, 0.000000, 0.999048, 0.000000;;, + 216;4;-0.039742, 0.000000, 0.999133, 0.000000;;, + 217;4;-0.028821, 0.000000, 0.999371, 0.000000;;, + 218;4;-0.014799, 0.000000, 0.999677, 0.000000;;, + 219;4;-0.003877, 0.000000, 0.999915, 0.000000;;, + 220;4; 0.000000, 0.000000, 1.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3; 0.000000, 6.750000,-0.000000;;, + 1;3; 0.000000, 6.750000, 0.000000;;, + 2;3; 0.000000, 6.750000,-0.000000;;, + 3;3; 0.000000, 6.750000, 0.000000;;, + 4;3; 0.000000, 6.750000, 0.000000;;, + 5;3; 0.000000, 6.750000, 0.000000;;, + 6;3; 0.000000, 6.750000, 0.000000;;, + 7;3; 0.000000, 6.750000, 0.000000;;, + 8;3; 0.000000, 6.750000,-0.000000;;, + 9;3; 0.000000, 6.750000,-0.000000;;, + 10;3; 0.000000, 6.750000,-0.000000;;, + 11;3; 0.000000, 6.750000,-0.000000;;, + 12;3; 0.000000, 6.750000, 0.000000;;, + 13;3; 0.000000, 6.750000,-0.000000;;, + 14;3; 0.000000, 6.750000, 0.000000;;, + 15;3; 0.000000, 6.750000,-0.000000;;, + 16;3; 0.000000, 6.750000,-0.000000;;, + 17;3; 0.000000, 6.750000,-0.000000;;, + 18;3; 0.000000, 6.750000,-0.000000;;, + 19;3; 0.000000, 6.750000, 0.000000;;, + 20;3; 0.000000, 6.750000,-0.000000;;, + 21;3; 0.000000, 6.750000, 0.000000;;, + 22;3; 0.000000, 6.750000,-0.000000;;, + 23;3; 0.000000, 6.750000,-0.000000;;, + 24;3; 0.000000, 6.750000,-0.000000;;, + 25;3; 0.000000, 6.750000, 0.000000;;, + 26;3; 0.000000, 6.750000, 0.000000;;, + 27;3; 0.000000, 6.750000, 0.000000;;, + 28;3; 0.000000, 6.750000, 0.000000;;, + 29;3; 0.000000, 6.750000,-0.000000;;, + 30;3; 0.000000, 6.750000,-0.000000;;, + 31;3; 0.000000, 6.750000, 0.000000;;, + 32;3; 0.000000, 6.750000, 0.000000;;, + 33;3; 0.000000, 6.750000,-0.000000;;, + 34;3; 0.000000, 6.750000,-0.000000;;, + 35;3; 0.000000, 6.750000, 0.000000;;, + 36;3; 0.000000, 6.750000, 0.000000;;, + 37;3; 0.000000, 6.750000, 0.000000;;, + 38;3; 0.000000, 6.750000,-0.000000;;, + 39;3; 0.000000, 6.750000, 0.000000;;, + 40;3; 0.000000, 6.750000,-0.000000;;, + 41;3; 0.000000, 6.750000, 0.000000;;, + 42;3; 0.000000, 6.750000, 0.000000;;, + 43;3; 0.000000, 6.750000, 0.000000;;, + 44;3; 0.000000, 6.750000, 0.000000;;, + 45;3; 0.000000, 6.750000,-0.000000;;, + 46;3; 0.000000, 6.750000,-0.000000;;, + 47;3; 0.000000, 6.750000, 0.000000;;, + 48;3; 0.000000, 6.750000,-0.000000;;, + 49;3; 0.000000, 6.750000,-0.000000;;, + 50;3; 0.000000, 6.750000,-0.000000;;, + 51;3; 0.000000, 6.750000,-0.000000;;, + 52;3; 0.000000, 6.750000, 0.000000;;, + 53;3; 0.000000, 6.750000, 0.000000;;, + 54;3; 0.000000, 6.750000,-0.000000;;, + 55;3; 0.000000, 6.750000, 0.000000;;, + 56;3; 0.000000, 6.750000,-0.000000;;, + 57;3; 0.000000, 6.750000,-0.000000;;, + 58;3; 0.000000, 6.750000,-0.000000;;, + 59;3; 0.000000, 6.750000, 0.000000;;, + 60;3; 0.000000, 6.750000,-0.000000;;, + 61;3; 0.000000, 6.750000,-0.000000;;, + 62;3; 0.000000, 6.750000, 0.000000;;, + 63;3; 0.000000, 6.750000, 0.000000;;, + 64;3; 0.000000, 6.750000, 0.000000;;, + 65;3; 0.000000, 6.750000, 0.000000;;, + 66;3; 0.000000, 6.750000, 0.000000;;, + 67;3; 0.000000, 6.750000,-0.000000;;, + 68;3; 0.000000, 6.750000, 0.000000;;, + 69;3; 0.000000, 6.750000,-0.000000;;, + 70;3; 0.000000, 6.750000, 0.000000;;, + 71;3; 0.000000, 6.750000, 0.000000;;, + 72;3; 0.000000, 6.750000, 0.000000;;, + 73;3; 0.000000, 6.750000,-0.000000;;, + 74;3; 0.000000, 6.750000,-0.000000;;, + 75;3; 0.000000, 6.750000, 0.000000;;, + 76;3; 0.000000, 6.750000, 0.000000;;, + 77;3; 0.000000, 6.750000,-0.000000;;, + 78;3; 0.000000, 6.750001,-0.000000;;, + 79;3; 0.000000, 6.750000, 0.000000;;, + 80;3; 0.000000, 6.750000,-0.000000;;, + 81;3; 0.000000, 6.750000, 0.000000;;, + 82;3; 0.000000, 6.750000, 0.000000;;, + 83;3; 0.000000, 6.750000, 0.000000;;, + 84;3; 0.000000, 6.750000, 0.000000;;, + 85;3; 0.000000, 6.750000,-0.000000;;, + 86;3; 0.000000, 6.750000, 0.000000;;, + 87;3; 0.000000, 6.750000,-0.000000;;, + 88;3; 0.000000, 6.750000, 0.000000;;, + 89;3; 0.000000, 6.750000,-0.000000;;, + 90;3; 0.000000, 6.750000,-0.000000;;, + 91;3; 0.000000, 6.750000, 0.000000;;, + 92;3; 0.000000, 6.750000,-0.000000;;, + 93;3; 0.000000, 6.750000, 0.000000;;, + 94;3; 0.000000, 6.750000,-0.000000;;, + 95;3; 0.000000, 6.750000, 0.000000;;, + 96;3; 0.000000, 6.750000,-0.000000;;, + 97;3; 0.000000, 6.750000, 0.000000;;, + 98;3; 0.000000, 6.750000,-0.000000;;, + 99;3; 0.000000, 6.750000,-0.000000;;, + 100;3; 0.000000, 6.750000, 0.000000;;, + 101;3; 0.000000, 6.750000,-0.000000;;, + 102;3; 0.000000, 6.750000, 0.000000;;, + 103;3; 0.000000, 6.750000,-0.000000;;, + 104;3; 0.000000, 6.750000, 0.000000;;, + 105;3; 0.000000, 6.750000,-0.000000;;, + 106;3; 0.000000, 6.750000,-0.000000;;, + 107;3; 0.000000, 6.750000, 0.000000;;, + 108;3; 0.000000, 6.750000, 0.000000;;, + 109;3; 0.000000, 6.750000,-0.000000;;, + 110;3; 0.000000, 6.750000,-0.000000;;, + 111;3; 0.000000, 6.750000,-0.000000;;, + 112;3; 0.000000, 6.750000,-0.000000;;, + 113;3; 0.000000, 6.750000,-0.000000;;, + 114;3; 0.000000, 6.750000,-0.000000;;, + 115;3; 0.000000, 6.750000,-0.000000;;, + 116;3; 0.000000, 6.750000,-0.000000;;, + 117;3; 0.000000, 6.750000,-0.000000;;, + 118;3; 0.000000, 6.750000, 0.000000;;, + 119;3; 0.000000, 6.750000,-0.000000;;, + 120;3; 0.000000, 6.750000, 0.000000;;, + 121;3; 0.000000, 6.750000, 0.000000;;, + 122;3; 0.000000, 6.750000, 0.000000;;, + 123;3; 0.000000, 6.750000,-0.000000;;, + 124;3; 0.000000, 6.750000,-0.000000;;, + 125;3; 0.000000, 6.750000,-0.000000;;, + 126;3; 0.000000, 6.750000, 0.000000;;, + 127;3; 0.000000, 6.750000,-0.000000;;, + 128;3; 0.000000, 6.750000, 0.000000;;, + 129;3; 0.000000, 6.750000,-0.000000;;, + 130;3; 0.000000, 6.750000, 0.000000;;, + 131;3; 0.000000, 6.750000, 0.000000;;, + 132;3; 0.000000, 6.750000,-0.000000;;, + 133;3; 0.000000, 6.750000,-0.000000;;, + 134;3; 0.000000, 6.750000, 0.000000;;, + 135;3; 0.000000, 6.750000, 0.000000;;, + 136;3; 0.000000, 6.750000,-0.000000;;, + 137;3; 0.000000, 6.750000, 0.000000;;, + 138;3; 0.000000, 6.750000,-0.000000;;, + 139;3; 0.000000, 6.750000, 0.000000;;, + 140;3; 0.000000, 6.750000,-0.000000;;, + 141;3; 0.000000, 6.750000,-0.000000;;, + 142;3; 0.000000, 6.750000,-0.000000;;, + 143;3; 0.000000, 6.750000,-0.000000;;, + 144;3; 0.000000, 6.750000, 0.000000;;, + 145;3; 0.000000, 6.750000,-0.000000;;, + 146;3; 0.000000, 6.750000, 0.000000;;, + 147;3; 0.000000, 6.750000, 0.000000;;, + 148;3; 0.000000, 6.750000,-0.000000;;, + 149;3; 0.000000, 6.750000,-0.000000;;, + 150;3; 0.000000, 6.750000,-0.000000;;, + 151;3; 0.000000, 6.750000,-0.000000;;, + 152;3; 0.000000, 6.750000,-0.000000;;, + 153;3; 0.000000, 6.750000, 0.000000;;, + 154;3; 0.000000, 6.750000,-0.000000;;, + 155;3; 0.000000, 6.750000,-0.000000;;, + 156;3; 0.000000, 6.750000,-0.000000;;, + 157;3; 0.000000, 6.750000,-0.000000;;, + 158;3; 0.000000, 6.750000, 0.000000;;, + 159;3; 0.000000, 6.750000, 0.000000;;, + 160;3; 0.000000, 6.750000, 0.000000;;, + 161;3; 0.000000, 6.750000, 0.000000;;, + 162;3; 0.000000, 6.750000, 0.000000;;, + 163;3; 0.000000, 6.750000, 0.000000;;, + 164;3; 0.000000, 6.750000, 0.000000;;, + 165;3; 0.000000, 6.750000, 0.000000;;, + 166;3; 0.000000, 6.750000, 0.000000;;, + 167;3; 0.000000, 6.750000, 0.000000;;, + 168;3; 0.000000, 6.750000,-0.000000;;, + 169;3; 0.000000, 6.750000,-0.000000;;, + 170;3; 0.000000, 6.750000,-0.000000;;, + 171;3; 0.000000, 6.750000,-0.000000;;, + 172;3; 0.000000, 6.750000,-0.000000;;, + 173;3; 0.000000, 6.750000,-0.000000;;, + 174;3; 0.000000, 6.750000,-0.000000;;, + 175;3; 0.000000, 6.750000,-0.000000;;, + 176;3; 0.000000, 6.750000,-0.000000;;, + 177;3; 0.000000, 6.750000,-0.000000;;, + 178;3; 0.000000, 6.750000,-0.000000;;, + 179;3; 0.000000, 6.750000,-0.000000;;, + 180;3; 0.000000, 6.750000,-0.000000;;, + 181;3; 0.000000, 6.750000,-0.000000;;, + 182;3; 0.000000, 6.750000,-0.000000;;, + 183;3; 0.000000, 6.750000,-0.000000;;, + 184;3; 0.000000, 6.750000,-0.000000;;, + 185;3; 0.000000, 6.750000,-0.000000;;, + 186;3; 0.000000, 6.750000,-0.000000;;, + 187;3; 0.000000, 6.750000,-0.000000;;, + 188;3; 0.000000, 6.750000,-0.000000;;, + 189;3; 0.000000, 6.750000,-0.000000;;, + 190;3; 0.000000, 6.750000, 0.000000;;, + 191;3; 0.000000, 6.750000, 0.000000;;, + 192;3; 0.000000, 6.750000,-0.000000;;, + 193;3; 0.000000, 6.750001, 0.000000;;, + 194;3; 0.000000, 6.750001, 0.000000;;, + 195;3; 0.000000, 6.750001, 0.000000;;, + 196;3; 0.000000, 6.750000,-0.000000;;, + 197;3; 0.000000, 6.750000, 0.000000;;, + 198;3; 0.000000, 6.750000, 0.000000;;, + 199;3; 0.000000, 6.750000,-0.000000;;, + 200;3; 0.000000, 6.750000,-0.000000;;, + 201;3; 0.000000, 6.750000,-0.000000;;, + 202;3; 0.000000, 6.750000,-0.000000;;, + 203;3; 0.000000, 6.750000, 0.000000;;, + 204;3; 0.000000, 6.750000,-0.000000;;, + 205;3; 0.000000, 6.750000,-0.000000;;, + 206;3; 0.000000, 6.750000, 0.000000;;, + 207;3; 0.000000, 6.750000,-0.000000;;, + 208;3; 0.000000, 6.750000, 0.000000;;, + 209;3; 0.000000, 6.750000,-0.000000;;, + 210;3; 0.000000, 6.750001, 0.000000;;, + 211;3; 0.000000, 6.750000,-0.000000;;, + 212;3; 0.000000, 6.750000, 0.000000;;, + 213;3; 0.000000, 6.750000, 0.000000;;, + 214;3; 0.000000, 6.750000, 0.000000;;, + 215;3; 0.000000, 6.750000,-0.000000;;, + 216;3; 0.000000, 6.750000,-0.000000;;, + 217;3; 0.000000, 6.750000, 0.000000;;, + 218;3; 0.000000, 6.750000, 0.000000;;, + 219;3; 0.000000, 6.750000, 0.000000;;, + 220;3; 0.000000, 6.750000,-0.000000;;; + } + } + Animation { + {Armature_Arm_Left} + AnimationKey { // Rotation + 0; + 221; + 0;4;-0.000993,-0.997299, 0.072152, 0.013698;;, + 1;4;-0.000771,-0.997293, 0.072149, 0.013790;;, + 2;4;-0.000100,-0.997275, 0.072138, 0.014069;;, + 3;4; 0.001022,-0.997244, 0.072120, 0.014535;;, + 4;4; 0.002587,-0.997202, 0.072094, 0.015185;;, + 5;4; 0.004576,-0.997147, 0.072062, 0.016011;;, + 6;4; 0.006956,-0.997083, 0.072024, 0.017000;;, + 7;4; 0.009676,-0.997008, 0.071980, 0.018130;;, + 8;4; 0.012671,-0.996927, 0.071932, 0.019373;;, + 9;4; 0.015858,-0.996840, 0.071881, 0.020697;;, + 10;4; 0.019145,-0.996751, 0.071828, 0.022062;;, + 11;4; 0.022431,-0.996661, 0.071775, 0.023428;;, + 12;4; 0.025618,-0.996574, 0.071723, 0.024751;;, + 13;4; 0.028613,-0.996493, 0.071675, 0.025995;;, + 14;4; 0.031333,-0.996419, 0.071631, 0.027125;;, + 15;4; 0.033713,-0.996354, 0.071593, 0.028114;;, + 16;4; 0.035702,-0.996300, 0.071561, 0.028940;;, + 17;4; 0.037267,-0.996257, 0.071535, 0.029590;;, + 18;4; 0.038389,-0.996226, 0.071517, 0.030056;;, + 19;4; 0.039060,-0.996208, 0.071507, 0.030335;;, + 20;4; 0.039282,-0.996202, 0.071503, 0.030427;;, + 21;4; 0.039060,-0.996208, 0.071507, 0.030335;;, + 22;4; 0.038389,-0.996226, 0.071517, 0.030056;;, + 23;4; 0.037267,-0.996257, 0.071535, 0.029590;;, + 24;4; 0.035702,-0.996300, 0.071561, 0.028940;;, + 25;4; 0.033713,-0.996354, 0.071593, 0.028114;;, + 26;4; 0.031333,-0.996419, 0.071631, 0.027125;;, + 27;4; 0.028613,-0.996493, 0.071675, 0.025995;;, + 28;4; 0.025618,-0.996574, 0.071723, 0.024751;;, + 29;4; 0.022431,-0.996661, 0.071775, 0.023428;;, + 30;4; 0.019145,-0.996751, 0.071828, 0.022062;;, + 31;4; 0.015858,-0.996840, 0.071881, 0.020697;;, + 32;4; 0.012671,-0.996927, 0.071932, 0.019373;;, + 33;4; 0.009676,-0.997008, 0.071980, 0.018130;;, + 34;4; 0.006956,-0.997083, 0.072024, 0.017000;;, + 35;4; 0.004576,-0.997147, 0.072062, 0.016011;;, + 36;4; 0.002587,-0.997202, 0.072094, 0.015185;;, + 37;4; 0.001022,-0.997244, 0.072120, 0.014535;;, + 38;4;-0.000100,-0.997275, 0.072138, 0.014069;;, + 39;4;-0.000771,-0.997293, 0.072149, 0.013790;;, + 40;4;-0.000993,-0.997299, 0.072152, 0.013698;;, + 41;4;-0.000771,-0.997293, 0.072149, 0.013790;;, + 42;4;-0.000100,-0.997275, 0.072138, 0.014069;;, + 43;4; 0.001022,-0.997244, 0.072120, 0.014535;;, + 44;4; 0.002587,-0.997202, 0.072094, 0.015185;;, + 45;4; 0.004576,-0.997147, 0.072062, 0.016011;;, + 46;4; 0.006956,-0.997083, 0.072024, 0.017000;;, + 47;4; 0.009676,-0.997008, 0.071980, 0.018130;;, + 48;4; 0.012671,-0.996927, 0.071932, 0.019373;;, + 49;4; 0.015858,-0.996840, 0.071881, 0.020697;;, + 50;4; 0.019145,-0.996751, 0.071828, 0.022062;;, + 51;4; 0.022431,-0.996661, 0.071775, 0.023428;;, + 52;4; 0.025618,-0.996574, 0.071723, 0.024751;;, + 53;4; 0.028613,-0.996493, 0.071675, 0.025995;;, + 54;4; 0.031333,-0.996419, 0.071631, 0.027125;;, + 55;4; 0.033713,-0.996354, 0.071593, 0.028114;;, + 56;4; 0.035702,-0.996300, 0.071561, 0.028940;;, + 57;4; 0.037267,-0.996257, 0.071535, 0.029590;;, + 58;4; 0.038389,-0.996226, 0.071517, 0.030056;;, + 59;4; 0.039060,-0.996208, 0.071507, 0.030335;;, + 60;4; 0.039282,-0.996202, 0.071503, 0.030427;;, + 61;4; 0.039073,-0.996208, 0.071506, 0.030340;;, + 62;4; 0.038487,-0.996224, 0.071516, 0.030097;;, + 63;4; 0.037574,-0.996249, 0.071530, 0.029717;;, + 64;4; 0.036375,-0.996281, 0.071550, 0.029219;;, + 65;4; 0.034924,-0.996321, 0.071573, 0.028617;;, + 66;4; 0.033248,-0.996366, 0.071600, 0.027921;;, + 67;4; 0.031373,-0.996417, 0.071630, 0.027142;;, + 68;4; 0.029318,-0.996473, 0.071664, 0.026288;;, + 69;4; 0.027103,-0.996534, 0.071699, 0.025368;;, + 70;4; 0.024745,-0.996598, 0.071737, 0.024389;;, + 71;4; 0.022261,-0.996666, 0.071777, 0.023357;;, + 72;4; 0.019665,-0.996736, 0.071819, 0.022279;;, + 73;4; 0.016975,-0.996810, 0.071863, 0.021161;;, + 74;4; 0.014209,-0.996885, 0.071907, 0.020013;;, + 75;4; 0.011390,-0.996962, 0.071953, 0.018841;;, + 76;4; 0.008545,-0.997039, 0.071998, 0.017659;;, + 77;4; 0.005717,-0.997116, 0.072044, 0.016485;;, + 78;4; 0.002983,-0.997191, 0.072088, 0.015349;;, + 79;4; 0.000513,-0.997258, 0.072128, 0.014324;;, + 80;4;-0.000993,-0.997299, 0.072152, 0.013698;;, + 81;4;-0.000993,-0.997299, 0.072152, 0.013698;;, + 82;4; 0.000513,-0.997258, 0.072128, 0.014324;;, + 83;4; 0.002983,-0.997191, 0.072088, 0.015349;;, + 84;4; 0.005717,-0.997116, 0.072044, 0.016485;;, + 85;4; 0.008545,-0.997039, 0.071998, 0.017659;;, + 86;4; 0.011390,-0.996962, 0.071953, 0.018841;;, + 87;4; 0.014209,-0.996885, 0.071907, 0.020013;;, + 88;4; 0.016975,-0.996810, 0.071863, 0.021161;;, + 89;4; 0.019665,-0.996736, 0.071819, 0.022279;;, + 90;4; 0.022261,-0.996666, 0.071777, 0.023357;;, + 91;4; 0.024745,-0.996598, 0.071737, 0.024389;;, + 92;4; 0.027103,-0.996534, 0.071699, 0.025368;;, + 93;4; 0.029318,-0.996473, 0.071664, 0.026288;;, + 94;4; 0.031373,-0.996417, 0.071630, 0.027142;;, + 95;4; 0.033248,-0.996366, 0.071600, 0.027921;;, + 96;4; 0.034924,-0.996321, 0.071573, 0.028617;;, + 97;4; 0.036375,-0.996281, 0.071550, 0.029219;;, + 98;4; 0.037574,-0.996249, 0.071530, 0.029717;;, + 99;4; 0.038487,-0.996224, 0.071516, 0.030097;;, + 100;4; 0.039073,-0.996208, 0.071506, 0.030340;;, + 101;4; 0.039282,-0.996202, 0.071503, 0.030427;;, + 102;4; 0.039060,-0.996208, 0.071507, 0.030335;;, + 103;4; 0.038389,-0.996226, 0.071517, 0.030056;;, + 104;4; 0.037267,-0.996257, 0.071535, 0.029590;;, + 105;4; 0.035702,-0.996300, 0.071561, 0.028940;;, + 106;4; 0.033713,-0.996354, 0.071593, 0.028114;;, + 107;4; 0.031333,-0.996419, 0.071631, 0.027125;;, + 108;4; 0.028613,-0.996493, 0.071675, 0.025995;;, + 109;4; 0.025618,-0.996574, 0.071723, 0.024751;;, + 110;4; 0.022431,-0.996661, 0.071775, 0.023428;;, + 111;4; 0.019145,-0.996751, 0.071828, 0.022062;;, + 112;4; 0.015858,-0.996840, 0.071881, 0.020697;;, + 113;4; 0.012671,-0.996927, 0.071932, 0.019373;;, + 114;4; 0.009676,-0.997008, 0.071980, 0.018130;;, + 115;4; 0.006956,-0.997083, 0.072024, 0.017000;;, + 116;4; 0.004576,-0.997147, 0.072062, 0.016011;;, + 117;4; 0.002587,-0.997202, 0.072094, 0.015185;;, + 118;4; 0.001022,-0.997244, 0.072120, 0.014535;;, + 119;4;-0.000100,-0.997275, 0.072138, 0.014069;;, + 120;4;-0.000771,-0.997293, 0.072149, 0.013790;;, + 121;4;-0.000993,-0.997299, 0.072152, 0.013698;;, + 122;4;-0.000771,-0.997293, 0.072149, 0.013790;;, + 123;4;-0.000100,-0.997275, 0.072138, 0.014069;;, + 124;4; 0.001022,-0.997244, 0.072120, 0.014535;;, + 125;4; 0.002587,-0.997202, 0.072094, 0.015185;;, + 126;4; 0.004576,-0.997147, 0.072062, 0.016011;;, + 127;4; 0.006956,-0.997083, 0.072024, 0.017000;;, + 128;4; 0.009676,-0.997008, 0.071980, 0.018130;;, + 129;4; 0.012671,-0.996927, 0.071932, 0.019373;;, + 130;4; 0.015858,-0.996840, 0.071881, 0.020697;;, + 131;4; 0.019145,-0.996751, 0.071828, 0.022062;;, + 132;4; 0.022431,-0.996661, 0.071775, 0.023428;;, + 133;4; 0.025618,-0.996574, 0.071723, 0.024751;;, + 134;4; 0.028613,-0.996493, 0.071675, 0.025995;;, + 135;4; 0.031333,-0.996419, 0.071631, 0.027125;;, + 136;4; 0.033713,-0.996354, 0.071593, 0.028114;;, + 137;4; 0.035702,-0.996300, 0.071561, 0.028940;;, + 138;4; 0.037267,-0.996257, 0.071535, 0.029590;;, + 139;4; 0.038389,-0.996226, 0.071517, 0.030056;;, + 140;4; 0.039060,-0.996208, 0.071507, 0.030335;;, + 141;4; 0.039282,-0.996202, 0.071503, 0.030427;;, + 142;4; 0.039113,-0.996208, 0.071506, 0.030343;;, + 143;4; 0.038636,-0.996224, 0.071514, 0.030108;;, + 144;4; 0.037890,-0.996249, 0.071526, 0.029740;;, + 145;4; 0.036903,-0.996282, 0.071543, 0.029258;;, + 146;4; 0.035701,-0.996321, 0.071563, 0.028673;;, + 147;4; 0.034303,-0.996367, 0.071586, 0.027997;;, + 148;4; 0.032725,-0.996419, 0.071612, 0.027240;;, + 149;4; 0.030981,-0.996475, 0.071641, 0.026409;;, + 150;4; 0.029082,-0.996536, 0.071672, 0.025511;;, + 151;4; 0.027037,-0.996600, 0.071706, 0.024555;;, + 152;4; 0.024854,-0.996668, 0.071742, 0.023544;;, + 153;4; 0.022538,-0.996739, 0.071780, 0.022486;;, + 154;4; 0.020093,-0.996813, 0.071820, 0.021387;;, + 155;4; 0.017523,-0.996888, 0.071862, 0.020252;;, + 156;4; 0.014827,-0.996965, 0.071905, 0.019090;;, + 157;4; 0.012003,-0.997043, 0.071951, 0.017910;;, + 158;4; 0.009044,-0.997120, 0.071998, 0.016726;;, + 159;4; 0.005935,-0.997194, 0.072048, 0.015563;;, + 160;4; 0.002637,-0.997260, 0.072099, 0.014477;;, + 161;4;-0.000993,-0.997299, 0.072152, 0.013698;;, + 162;4;-0.003931,-0.958043, 0.286297, 0.013159;;, + 163;4;-0.003931,-0.958043, 0.286297, 0.013159;;, + 164;4;-0.003931,-0.958043, 0.286297, 0.013159;;, + 165;4;-0.003931,-0.958043, 0.286297, 0.013159;;, + 166;4;-0.003931,-0.958043, 0.286297, 0.013159;;, + 167;4;-0.003931,-0.958043, 0.286297, 0.013159;;, + 168;4;-0.000993,-0.997299, 0.072152, 0.013698;;, + 169;4;-0.027477,-0.993490, 0.067048, 0.017188;;, + 170;4;-0.101901,-0.981967, 0.063627, 0.027031;;, + 171;4;-0.197396,-0.966974, 0.061971, 0.039674;;, + 172;4;-0.271751,-0.955236, 0.061529, 0.049522;;, + 173;4;-0.298149,-0.951058, 0.061516, 0.053018;;, + 174;4;-0.281324,-0.955151, 0.062330, 0.050813;;, + 175;4;-0.229770,-0.966686, 0.064680, 0.044036;;, + 176;4;-0.152323,-0.981518, 0.067852, 0.033820;;, + 177;4;-0.070052,-0.993110, 0.070622, 0.022920;;, + 178;4;-0.000993,-0.997299, 0.072152, 0.013698;;, + 179;4; 0.068082,-0.993365, 0.072516, 0.004364;;, + 180;4; 0.150399,-0.982078, 0.072003,-0.006850;;, + 181;4; 0.227904,-0.967532, 0.070959,-0.017470;;, + 182;4; 0.279502,-0.956188, 0.070025,-0.024561;;, + 183;4; 0.296344,-0.952157, 0.069673,-0.026878;;, + 184;4; 0.269917,-0.956170, 0.069893,-0.023271;;, + 185;4; 0.195490,-0.967472, 0.070514,-0.013111;;, + 186;4; 0.099915,-0.981984, 0.071311,-0.000066;;, + 187;4; 0.025453,-0.993286, 0.071932, 0.010092;;, + 188;4;-0.000993,-0.997299, 0.072152, 0.013698;;, + 189;4;-0.000993,-0.997299, 0.072152, 0.013698;;, + 190;4;-0.008560,-0.996939, 0.072024, 0.015352;;, + 191;4;-0.029872,-0.995925, 0.071663, 0.020012;;, + 192;4;-0.057237,-0.994622, 0.071199, 0.025995;;, + 193;4;-0.078548,-0.993608, 0.070838, 0.030655;;, + 194;4;-0.086115,-0.993248, 0.070710, 0.032309;;, + 195;4;-0.078548,-0.993608, 0.070838, 0.030655;;, + 196;4;-0.057237,-0.994622, 0.071199, 0.025995;;, + 197;4;-0.029872,-0.995925, 0.071663, 0.020012;;, + 198;4;-0.008560,-0.996939, 0.072024, 0.015352;;, + 199;4;-0.000993,-0.997299, 0.072152, 0.013698;;, + 200;4;-0.000993,-0.997299, 0.072152, 0.013698;;, + 201;4;-0.027423,-0.993189, 0.071207, 0.017192;;, + 202;4;-0.101840,-0.981611, 0.068544, 0.027036;;, + 203;4;-0.197357,-0.966746, 0.065125, 0.039677;;, + 204;4;-0.271739,-0.955168, 0.062462, 0.049523;;, + 205;4;-0.298149,-0.951058, 0.061516, 0.053018;;, + 206;4;-0.281324,-0.955151, 0.062330, 0.050813;;, + 207;4;-0.229770,-0.966686, 0.064680, 0.044036;;, + 208;4;-0.152323,-0.981518, 0.067852, 0.033820;;, + 209;4;-0.070052,-0.993110, 0.070622, 0.022920;;, + 210;4;-0.000993,-0.997299, 0.072152, 0.013698;;, + 211;4; 0.068082,-0.993365, 0.072516, 0.004364;;, + 212;4; 0.150399,-0.982078, 0.072003,-0.006850;;, + 213;4; 0.227904,-0.967532, 0.070959,-0.017470;;, + 214;4; 0.279502,-0.956188, 0.070025,-0.024561;;, + 215;4; 0.296344,-0.952157, 0.069673,-0.026878;;, + 216;4; 0.269928,-0.956170, 0.069893,-0.023270;;, + 217;4; 0.195554,-0.967472, 0.070513,-0.013107;;, + 218;4; 0.100014,-0.981984, 0.071309,-0.000060;;, + 219;4; 0.025501,-0.993286, 0.071931, 0.010095;;, + 220;4;-0.000993,-0.997299, 0.072152, 0.013698;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3;-2.000000, 6.750000,-0.000000;;, + 1;3;-2.000000, 6.750000, 0.000000;;, + 2;3;-2.000000, 6.750000,-0.000000;;, + 3;3;-2.000000, 6.750000, 0.000000;;, + 4;3;-2.000000, 6.750000, 0.000000;;, + 5;3;-2.000000, 6.750000, 0.000000;;, + 6;3;-2.000000, 6.750000, 0.000000;;, + 7;3;-2.000000, 6.750000, 0.000000;;, + 8;3;-2.000000, 6.750000,-0.000000;;, + 9;3;-2.000000, 6.750000,-0.000000;;, + 10;3;-2.000000, 6.750000,-0.000000;;, + 11;3;-2.000000, 6.750000,-0.000000;;, + 12;3;-2.000000, 6.750000, 0.000000;;, + 13;3;-2.000000, 6.750000,-0.000000;;, + 14;3;-2.000000, 6.750000, 0.000000;;, + 15;3;-2.000000, 6.750000,-0.000000;;, + 16;3;-2.000000, 6.750000,-0.000000;;, + 17;3;-2.000000, 6.750000,-0.000000;;, + 18;3;-2.000000, 6.750000,-0.000000;;, + 19;3;-2.000000, 6.750000, 0.000000;;, + 20;3;-2.000000, 6.750000,-0.000000;;, + 21;3;-2.000000, 6.750000, 0.000000;;, + 22;3;-2.000000, 6.750000,-0.000000;;, + 23;3;-2.000000, 6.750000,-0.000000;;, + 24;3;-2.000000, 6.750000,-0.000000;;, + 25;3;-2.000000, 6.750000, 0.000000;;, + 26;3;-2.000000, 6.750000, 0.000000;;, + 27;3;-2.000000, 6.750000, 0.000000;;, + 28;3;-2.000000, 6.750000, 0.000000;;, + 29;3;-2.000000, 6.750000,-0.000000;;, + 30;3;-2.000000, 6.750000,-0.000000;;, + 31;3;-2.000000, 6.750000, 0.000000;;, + 32;3;-2.000000, 6.750000, 0.000000;;, + 33;3;-2.000000, 6.750000,-0.000000;;, + 34;3;-2.000000, 6.750000,-0.000000;;, + 35;3;-2.000000, 6.750000, 0.000000;;, + 36;3;-2.000000, 6.750000, 0.000000;;, + 37;3;-2.000000, 6.750000, 0.000000;;, + 38;3;-2.000000, 6.750000,-0.000000;;, + 39;3;-2.000000, 6.750000, 0.000000;;, + 40;3;-2.000000, 6.750000,-0.000000;;, + 41;3;-2.000000, 6.750000, 0.000000;;, + 42;3;-2.000000, 6.750000, 0.000000;;, + 43;3;-2.000000, 6.750000, 0.000000;;, + 44;3;-2.000000, 6.750000, 0.000000;;, + 45;3;-2.000000, 6.750000,-0.000000;;, + 46;3;-2.000000, 6.750000,-0.000000;;, + 47;3;-2.000000, 6.750000, 0.000000;;, + 48;3;-2.000000, 6.750000,-0.000000;;, + 49;3;-2.000000, 6.750000,-0.000000;;, + 50;3;-2.000000, 6.750000,-0.000000;;, + 51;3;-2.000000, 6.750000,-0.000000;;, + 52;3;-2.000000, 6.750000, 0.000000;;, + 53;3;-2.000000, 6.750000, 0.000000;;, + 54;3;-2.000000, 6.750000,-0.000000;;, + 55;3;-2.000000, 6.750000, 0.000000;;, + 56;3;-2.000000, 6.750000,-0.000000;;, + 57;3;-2.000000, 6.750000,-0.000000;;, + 58;3;-2.000000, 6.750000,-0.000000;;, + 59;3;-2.000000, 6.750000, 0.000000;;, + 60;3;-2.000000, 6.750000,-0.000000;;, + 61;3;-2.000000, 6.750000,-0.000000;;, + 62;3;-2.000000, 6.750000, 0.000000;;, + 63;3;-2.000000, 6.750000, 0.000000;;, + 64;3;-2.000000, 6.750000, 0.000000;;, + 65;3;-2.000000, 6.750000, 0.000000;;, + 66;3;-2.000000, 6.750000, 0.000000;;, + 67;3;-2.000000, 6.750000,-0.000000;;, + 68;3;-2.000000, 6.750000, 0.000000;;, + 69;3;-2.000000, 6.750000,-0.000000;;, + 70;3;-2.000000, 6.750000, 0.000000;;, + 71;3;-2.000000, 6.750000, 0.000000;;, + 72;3;-2.000000, 6.750000, 0.000000;;, + 73;3;-2.000000, 6.750000,-0.000000;;, + 74;3;-2.000000, 6.750000,-0.000000;;, + 75;3;-2.000000, 6.750000, 0.000000;;, + 76;3;-2.000000, 6.750000, 0.000000;;, + 77;3;-2.000000, 6.750000,-0.000000;;, + 78;3;-2.000000, 6.750001,-0.000000;;, + 79;3;-2.000000, 6.750000, 0.000000;;, + 80;3;-2.000000, 6.750000,-0.000000;;, + 81;3;-2.000000, 6.750000, 0.000000;;, + 82;3;-2.000000, 6.750000, 0.000000;;, + 83;3;-2.000000, 6.750000, 0.000000;;, + 84;3;-2.000000, 6.750000, 0.000000;;, + 85;3;-2.000000, 6.750000,-0.000000;;, + 86;3;-2.000000, 6.750000, 0.000000;;, + 87;3;-2.000000, 6.750000,-0.000000;;, + 88;3;-2.000000, 6.750000, 0.000000;;, + 89;3;-2.000000, 6.750000,-0.000000;;, + 90;3;-2.000000, 6.750000,-0.000000;;, + 91;3;-2.000000, 6.750000, 0.000000;;, + 92;3;-2.000000, 6.750000,-0.000000;;, + 93;3;-2.000000, 6.750000, 0.000000;;, + 94;3;-2.000000, 6.750000,-0.000000;;, + 95;3;-2.000000, 6.750000, 0.000000;;, + 96;3;-2.000000, 6.750000,-0.000000;;, + 97;3;-2.000000, 6.750000, 0.000000;;, + 98;3;-2.000000, 6.750000,-0.000000;;, + 99;3;-2.000000, 6.750000,-0.000000;;, + 100;3;-2.000000, 6.750000, 0.000000;;, + 101;3;-2.000000, 6.750000,-0.000000;;, + 102;3;-2.000000, 6.750000, 0.000000;;, + 103;3;-2.000000, 6.750000,-0.000000;;, + 104;3;-2.000000, 6.750000, 0.000000;;, + 105;3;-2.000000, 6.750000,-0.000000;;, + 106;3;-2.000000, 6.750000,-0.000000;;, + 107;3;-2.000000, 6.750000, 0.000000;;, + 108;3;-2.000000, 6.750000, 0.000000;;, + 109;3;-2.000000, 6.750000,-0.000000;;, + 110;3;-2.000000, 6.750000,-0.000000;;, + 111;3;-2.000000, 6.750000,-0.000000;;, + 112;3;-2.000000, 6.750000,-0.000000;;, + 113;3;-2.000000, 6.750000,-0.000000;;, + 114;3;-2.000000, 6.750000,-0.000000;;, + 115;3;-2.000000, 6.750000,-0.000000;;, + 116;3;-2.000000, 6.750000,-0.000000;;, + 117;3;-2.000000, 6.750000,-0.000000;;, + 118;3;-2.000000, 6.750000, 0.000000;;, + 119;3;-2.000000, 6.750000,-0.000000;;, + 120;3;-2.000000, 6.750000, 0.000000;;, + 121;3;-2.000000, 6.750000, 0.000000;;, + 122;3;-2.000000, 6.750000, 0.000000;;, + 123;3;-2.000000, 6.750000,-0.000000;;, + 124;3;-2.000000, 6.750000,-0.000000;;, + 125;3;-2.000000, 6.750000,-0.000000;;, + 126;3;-2.000000, 6.750000, 0.000000;;, + 127;3;-2.000000, 6.750000,-0.000000;;, + 128;3;-2.000000, 6.750000, 0.000000;;, + 129;3;-2.000000, 6.750000,-0.000000;;, + 130;3;-2.000000, 6.750000, 0.000000;;, + 131;3;-2.000000, 6.750000, 0.000000;;, + 132;3;-2.000000, 6.750000,-0.000000;;, + 133;3;-2.000000, 6.750000,-0.000000;;, + 134;3;-2.000000, 6.750000, 0.000000;;, + 135;3;-2.000000, 6.750000, 0.000000;;, + 136;3;-2.000000, 6.750000,-0.000000;;, + 137;3;-2.000000, 6.750000, 0.000000;;, + 138;3;-2.000000, 6.750000,-0.000000;;, + 139;3;-2.000000, 6.750000, 0.000000;;, + 140;3;-2.000000, 6.750000,-0.000000;;, + 141;3;-2.000000, 6.750000,-0.000000;;, + 142;3;-2.000000, 6.750000,-0.000000;;, + 143;3;-2.000000, 6.750000,-0.000000;;, + 144;3;-2.000000, 6.750000, 0.000000;;, + 145;3;-2.000000, 6.750000,-0.000000;;, + 146;3;-2.000000, 6.750000, 0.000000;;, + 147;3;-2.000000, 6.750000, 0.000000;;, + 148;3;-2.000000, 6.750000,-0.000000;;, + 149;3;-2.000000, 6.750000,-0.000000;;, + 150;3;-2.000000, 6.750000,-0.000000;;, + 151;3;-2.000000, 6.750000,-0.000000;;, + 152;3;-2.000000, 6.750000,-0.000000;;, + 153;3;-2.000000, 6.750000, 0.000000;;, + 154;3;-2.000000, 6.750000,-0.000000;;, + 155;3;-2.000000, 6.750000,-0.000000;;, + 156;3;-2.000000, 6.750000,-0.000000;;, + 157;3;-2.000000, 6.750000,-0.000000;;, + 158;3;-2.000000, 6.750000, 0.000000;;, + 159;3;-2.000000, 6.750000, 0.000000;;, + 160;3;-2.000000, 6.750000, 0.000000;;, + 161;3;-2.000000, 6.750000, 0.000000;;, + 162;3;-2.000000, 6.750000, 0.000000;;, + 163;3;-2.000000, 6.750000, 0.000000;;, + 164;3;-2.000000, 6.750000, 0.000000;;, + 165;3;-2.000000, 6.750000, 0.000000;;, + 166;3;-2.000000, 6.750000, 0.000000;;, + 167;3;-2.000000, 6.750000, 0.000000;;, + 168;3;-2.000000, 6.750000,-0.000000;;, + 169;3;-2.000000, 6.750000,-0.000000;;, + 170;3;-2.000000, 6.750000,-0.000000;;, + 171;3;-2.000000, 6.750000,-0.000000;;, + 172;3;-2.000000, 6.750000,-0.000000;;, + 173;3;-2.000000, 6.750000,-0.000000;;, + 174;3;-2.000000, 6.750000,-0.000000;;, + 175;3;-2.000000, 6.750000,-0.000000;;, + 176;3;-2.000000, 6.750000,-0.000000;;, + 177;3;-2.000000, 6.750000,-0.000000;;, + 178;3;-2.000000, 6.750000,-0.000000;;, + 179;3;-2.000000, 6.750000,-0.000000;;, + 180;3;-2.000000, 6.750000,-0.000000;;, + 181;3;-2.000000, 6.750000,-0.000000;;, + 182;3;-2.000000, 6.750000,-0.000000;;, + 183;3;-2.000000, 6.750000,-0.000000;;, + 184;3;-2.000000, 6.750000,-0.000000;;, + 185;3;-2.000000, 6.750000,-0.000000;;, + 186;3;-2.000000, 6.750000,-0.000000;;, + 187;3;-2.000000, 6.750000,-0.000000;;, + 188;3;-2.000000, 6.750000,-0.000000;;, + 189;3;-2.000000, 6.750000,-0.000000;;, + 190;3;-2.000000, 6.750000, 0.000000;;, + 191;3;-2.000000, 6.750000, 0.000000;;, + 192;3;-2.000000, 6.750000,-0.000000;;, + 193;3;-2.000000, 6.750001, 0.000000;;, + 194;3;-2.000000, 6.750001, 0.000000;;, + 195;3;-2.000000, 6.750001, 0.000000;;, + 196;3;-2.000000, 6.750000,-0.000000;;, + 197;3;-2.000000, 6.750000, 0.000000;;, + 198;3;-2.000000, 6.750000, 0.000000;;, + 199;3;-2.000000, 6.750000,-0.000000;;, + 200;3;-2.000000, 6.750000,-0.000000;;, + 201;3;-2.000000, 6.750000,-0.000000;;, + 202;3;-2.000000, 6.750000,-0.000000;;, + 203;3;-2.000000, 6.750000, 0.000000;;, + 204;3;-2.000000, 6.750000,-0.000000;;, + 205;3;-2.000000, 6.750000,-0.000000;;, + 206;3;-2.000000, 6.750000, 0.000000;;, + 207;3;-2.000000, 6.750000,-0.000000;;, + 208;3;-2.000000, 6.750000, 0.000000;;, + 209;3;-2.000000, 6.750000,-0.000000;;, + 210;3;-2.000000, 6.750001, 0.000000;;, + 211;3;-2.000000, 6.750000,-0.000000;;, + 212;3;-2.000000, 6.750000, 0.000000;;, + 213;3;-2.000000, 6.750000, 0.000000;;, + 214;3;-2.000000, 6.750000, 0.000000;;, + 215;3;-2.000000, 6.750000,-0.000000;;, + 216;3;-2.000000, 6.750000,-0.000000;;, + 217;3;-2.000000, 6.750000, 0.000000;;, + 218;3;-2.000000, 6.750000, 0.000000;;, + 219;3;-2.000000, 6.750000, 0.000000;;, + 220;3;-2.000000, 6.750000,-0.000000;;; + } + } + Animation { + {Armature_Arm_Right} + AnimationKey { // Rotation + 0; + 221; + 0;4;-0.000993,-0.997299,-0.072152,-0.013698;;, + 1;4;-0.000771,-0.997293,-0.072149,-0.013790;;, + 2;4;-0.000100,-0.997275,-0.072138,-0.014069;;, + 3;4; 0.001022,-0.997244,-0.072120,-0.014535;;, + 4;4; 0.002587,-0.997202,-0.072094,-0.015185;;, + 5;4; 0.004576,-0.997147,-0.072062,-0.016011;;, + 6;4; 0.006956,-0.997083,-0.072024,-0.017000;;, + 7;4; 0.009676,-0.997008,-0.071980,-0.018130;;, + 8;4; 0.012671,-0.996927,-0.071932,-0.019373;;, + 9;4; 0.015858,-0.996840,-0.071881,-0.020697;;, + 10;4; 0.019145,-0.996751,-0.071828,-0.022062;;, + 11;4; 0.022431,-0.996661,-0.071775,-0.023428;;, + 12;4; 0.025618,-0.996574,-0.071723,-0.024751;;, + 13;4; 0.028613,-0.996493,-0.071675,-0.025995;;, + 14;4; 0.031333,-0.996419,-0.071631,-0.027125;;, + 15;4; 0.033713,-0.996354,-0.071593,-0.028114;;, + 16;4; 0.035702,-0.996300,-0.071561,-0.028940;;, + 17;4; 0.037267,-0.996257,-0.071535,-0.029590;;, + 18;4; 0.038389,-0.996226,-0.071517,-0.030056;;, + 19;4; 0.039060,-0.996208,-0.071507,-0.030335;;, + 20;4; 0.039282,-0.996202,-0.071503,-0.030427;;, + 21;4; 0.039060,-0.996208,-0.071507,-0.030335;;, + 22;4; 0.038389,-0.996226,-0.071517,-0.030056;;, + 23;4; 0.037267,-0.996257,-0.071535,-0.029590;;, + 24;4; 0.035702,-0.996300,-0.071561,-0.028940;;, + 25;4; 0.033713,-0.996354,-0.071593,-0.028114;;, + 26;4; 0.031333,-0.996419,-0.071631,-0.027125;;, + 27;4; 0.028613,-0.996493,-0.071675,-0.025995;;, + 28;4; 0.025618,-0.996574,-0.071723,-0.024751;;, + 29;4; 0.022431,-0.996661,-0.071775,-0.023428;;, + 30;4; 0.019145,-0.996751,-0.071828,-0.022062;;, + 31;4; 0.015858,-0.996840,-0.071881,-0.020697;;, + 32;4; 0.012671,-0.996927,-0.071932,-0.019373;;, + 33;4; 0.009676,-0.997008,-0.071980,-0.018130;;, + 34;4; 0.006956,-0.997083,-0.072024,-0.017000;;, + 35;4; 0.004576,-0.997147,-0.072062,-0.016011;;, + 36;4; 0.002587,-0.997202,-0.072094,-0.015185;;, + 37;4; 0.001022,-0.997244,-0.072120,-0.014535;;, + 38;4;-0.000100,-0.997275,-0.072138,-0.014069;;, + 39;4;-0.000771,-0.997293,-0.072149,-0.013790;;, + 40;4;-0.000993,-0.997299,-0.072152,-0.013698;;, + 41;4;-0.000771,-0.997293,-0.072149,-0.013790;;, + 42;4;-0.000100,-0.997275,-0.072138,-0.014069;;, + 43;4; 0.001022,-0.997244,-0.072120,-0.014535;;, + 44;4; 0.002587,-0.997202,-0.072094,-0.015185;;, + 45;4; 0.004576,-0.997147,-0.072062,-0.016011;;, + 46;4; 0.006956,-0.997083,-0.072024,-0.017000;;, + 47;4; 0.009676,-0.997008,-0.071980,-0.018130;;, + 48;4; 0.012671,-0.996927,-0.071932,-0.019373;;, + 49;4; 0.015858,-0.996840,-0.071881,-0.020697;;, + 50;4; 0.019145,-0.996751,-0.071828,-0.022062;;, + 51;4; 0.022431,-0.996661,-0.071775,-0.023428;;, + 52;4; 0.025618,-0.996574,-0.071723,-0.024751;;, + 53;4; 0.028613,-0.996493,-0.071675,-0.025995;;, + 54;4; 0.031333,-0.996419,-0.071631,-0.027125;;, + 55;4; 0.033713,-0.996354,-0.071593,-0.028114;;, + 56;4; 0.035702,-0.996300,-0.071561,-0.028940;;, + 57;4; 0.037267,-0.996257,-0.071535,-0.029590;;, + 58;4; 0.038389,-0.996226,-0.071517,-0.030056;;, + 59;4; 0.039060,-0.996208,-0.071507,-0.030335;;, + 60;4; 0.039282,-0.996202,-0.071503,-0.030427;;, + 61;4; 0.039073,-0.996208,-0.071506,-0.030340;;, + 62;4; 0.038487,-0.996224,-0.071516,-0.030097;;, + 63;4; 0.037574,-0.996249,-0.071530,-0.029717;;, + 64;4; 0.036375,-0.996281,-0.071550,-0.029219;;, + 65;4; 0.034924,-0.996321,-0.071573,-0.028617;;, + 66;4; 0.033248,-0.996366,-0.071600,-0.027921;;, + 67;4; 0.031373,-0.996417,-0.071630,-0.027142;;, + 68;4; 0.029318,-0.996473,-0.071664,-0.026288;;, + 69;4; 0.027103,-0.996534,-0.071699,-0.025368;;, + 70;4; 0.024745,-0.996598,-0.071737,-0.024389;;, + 71;4; 0.022261,-0.996666,-0.071777,-0.023357;;, + 72;4; 0.019665,-0.996736,-0.071819,-0.022279;;, + 73;4; 0.016975,-0.996810,-0.071863,-0.021161;;, + 74;4; 0.014209,-0.996885,-0.071907,-0.020013;;, + 75;4; 0.011390,-0.996962,-0.071953,-0.018841;;, + 76;4; 0.008545,-0.997039,-0.071998,-0.017659;;, + 77;4; 0.005717,-0.997116,-0.072044,-0.016485;;, + 78;4; 0.002983,-0.997191,-0.072088,-0.015349;;, + 79;4; 0.000513,-0.997258,-0.072128,-0.014324;;, + 80;4;-0.000993,-0.997299,-0.072152,-0.013698;;, + 81;4;-0.000993,-0.997299,-0.072152,-0.013698;;, + 82;4; 0.000513,-0.997258,-0.072128,-0.014324;;, + 83;4; 0.002983,-0.997191,-0.072088,-0.015349;;, + 84;4; 0.005717,-0.997116,-0.072044,-0.016485;;, + 85;4; 0.008545,-0.997039,-0.071998,-0.017659;;, + 86;4; 0.011390,-0.996962,-0.071953,-0.018841;;, + 87;4; 0.014209,-0.996885,-0.071907,-0.020013;;, + 88;4; 0.016975,-0.996810,-0.071863,-0.021161;;, + 89;4; 0.019665,-0.996736,-0.071819,-0.022279;;, + 90;4; 0.022261,-0.996666,-0.071777,-0.023357;;, + 91;4; 0.024745,-0.996598,-0.071737,-0.024389;;, + 92;4; 0.027103,-0.996534,-0.071699,-0.025368;;, + 93;4; 0.029318,-0.996473,-0.071664,-0.026288;;, + 94;4; 0.031373,-0.996417,-0.071630,-0.027142;;, + 95;4; 0.033248,-0.996366,-0.071600,-0.027921;;, + 96;4; 0.034924,-0.996321,-0.071573,-0.028617;;, + 97;4; 0.036375,-0.996281,-0.071550,-0.029219;;, + 98;4; 0.037574,-0.996249,-0.071530,-0.029717;;, + 99;4; 0.038487,-0.996224,-0.071516,-0.030097;;, + 100;4; 0.039073,-0.996208,-0.071506,-0.030340;;, + 101;4; 0.039282,-0.996202,-0.071503,-0.030427;;, + 102;4; 0.039060,-0.996208,-0.071507,-0.030335;;, + 103;4; 0.038389,-0.996226,-0.071517,-0.030056;;, + 104;4; 0.037267,-0.996257,-0.071535,-0.029590;;, + 105;4; 0.035702,-0.996300,-0.071561,-0.028940;;, + 106;4; 0.033713,-0.996354,-0.071593,-0.028114;;, + 107;4; 0.031333,-0.996419,-0.071631,-0.027125;;, + 108;4; 0.028613,-0.996493,-0.071675,-0.025995;;, + 109;4; 0.025618,-0.996574,-0.071723,-0.024751;;, + 110;4; 0.022431,-0.996661,-0.071775,-0.023428;;, + 111;4; 0.019145,-0.996751,-0.071828,-0.022062;;, + 112;4; 0.015858,-0.996840,-0.071881,-0.020697;;, + 113;4; 0.012671,-0.996927,-0.071932,-0.019373;;, + 114;4; 0.009676,-0.997008,-0.071980,-0.018130;;, + 115;4; 0.006956,-0.997083,-0.072024,-0.017000;;, + 116;4; 0.004576,-0.997147,-0.072062,-0.016011;;, + 117;4; 0.002587,-0.997202,-0.072094,-0.015185;;, + 118;4; 0.001022,-0.997244,-0.072120,-0.014535;;, + 119;4;-0.000100,-0.997275,-0.072138,-0.014069;;, + 120;4;-0.000771,-0.997293,-0.072149,-0.013790;;, + 121;4;-0.000993,-0.997299,-0.072152,-0.013698;;, + 122;4;-0.000771,-0.997293,-0.072149,-0.013790;;, + 123;4;-0.000100,-0.997275,-0.072138,-0.014069;;, + 124;4; 0.001022,-0.997244,-0.072120,-0.014535;;, + 125;4; 0.002587,-0.997202,-0.072094,-0.015185;;, + 126;4; 0.004576,-0.997147,-0.072062,-0.016011;;, + 127;4; 0.006956,-0.997083,-0.072024,-0.017000;;, + 128;4; 0.009676,-0.997008,-0.071980,-0.018130;;, + 129;4; 0.012671,-0.996927,-0.071932,-0.019373;;, + 130;4; 0.015858,-0.996840,-0.071881,-0.020697;;, + 131;4; 0.019145,-0.996751,-0.071828,-0.022062;;, + 132;4; 0.022431,-0.996661,-0.071775,-0.023428;;, + 133;4; 0.025618,-0.996574,-0.071723,-0.024751;;, + 134;4; 0.028613,-0.996493,-0.071675,-0.025995;;, + 135;4; 0.031333,-0.996419,-0.071631,-0.027125;;, + 136;4; 0.033713,-0.996354,-0.071593,-0.028114;;, + 137;4; 0.035702,-0.996300,-0.071561,-0.028940;;, + 138;4; 0.037267,-0.996257,-0.071535,-0.029590;;, + 139;4; 0.038389,-0.996226,-0.071517,-0.030056;;, + 140;4; 0.039060,-0.996208,-0.071507,-0.030335;;, + 141;4; 0.039282,-0.996202,-0.071503,-0.030427;;, + 142;4; 0.039113,-0.996208,-0.071506,-0.030343;;, + 143;4; 0.038636,-0.996224,-0.071514,-0.030108;;, + 144;4; 0.037890,-0.996249,-0.071526,-0.029740;;, + 145;4; 0.036903,-0.996282,-0.071543,-0.029258;;, + 146;4; 0.035701,-0.996321,-0.071563,-0.028673;;, + 147;4; 0.034303,-0.996367,-0.071586,-0.027997;;, + 148;4; 0.032725,-0.996419,-0.071612,-0.027240;;, + 149;4; 0.030981,-0.996475,-0.071641,-0.026409;;, + 150;4; 0.029082,-0.996536,-0.071672,-0.025511;;, + 151;4; 0.027037,-0.996600,-0.071706,-0.024555;;, + 152;4; 0.024854,-0.996668,-0.071742,-0.023544;;, + 153;4; 0.022538,-0.996739,-0.071780,-0.022486;;, + 154;4; 0.020093,-0.996813,-0.071820,-0.021387;;, + 155;4; 0.017523,-0.996888,-0.071862,-0.020252;;, + 156;4; 0.014827,-0.996965,-0.071905,-0.019090;;, + 157;4; 0.012003,-0.997043,-0.071951,-0.017910;;, + 158;4; 0.009044,-0.997120,-0.071998,-0.016726;;, + 159;4; 0.005935,-0.997194,-0.072048,-0.015563;;, + 160;4; 0.002637,-0.997260,-0.072099,-0.014477;;, + 161;4;-0.000993,-0.997299,-0.072152,-0.013698;;, + 162;4;-0.003931,-0.958043,-0.286297,-0.013159;;, + 163;4;-0.003931,-0.958043,-0.286297,-0.013159;;, + 164;4;-0.003931,-0.958043,-0.286297,-0.013159;;, + 165;4;-0.003931,-0.958043,-0.286297,-0.013159;;, + 166;4;-0.003931,-0.958043,-0.286297,-0.013159;;, + 167;4;-0.003931,-0.958043,-0.286297,-0.013159;;, + 168;4;-0.000993,-0.997299,-0.072152,-0.013698;;, + 169;4; 0.036332,-0.993297,-0.071786,-0.010879;;, + 170;4; 0.112793,-0.981996,-0.071141,-0.000866;;, + 171;4; 0.203761,-0.967480,-0.070405, 0.012512;;, + 172;4; 0.272366,-0.956172,-0.069860, 0.023094;;, + 173;4; 0.296344,-0.952157,-0.069673, 0.026878;;, + 174;4; 0.279502,-0.956188,-0.070025, 0.024561;;, + 175;4; 0.227904,-0.967532,-0.070959, 0.017470;;, + 176;4; 0.150399,-0.982078,-0.072003, 0.006850;;, + 177;4; 0.068082,-0.993365,-0.072516,-0.004364;;, + 178;4;-0.000993,-0.997299,-0.072152,-0.013698;;, + 179;4;-0.070052,-0.993110,-0.070622,-0.022920;;, + 180;4;-0.152323,-0.981518,-0.067852,-0.033820;;, + 181;4;-0.229770,-0.966686,-0.064680,-0.044036;;, + 182;4;-0.281324,-0.955151,-0.062330,-0.050813;;, + 183;4;-0.298149,-0.951058,-0.061516,-0.053018;;, + 184;4;-0.272274,-0.955135,-0.062466,-0.049489;;, + 185;4;-0.200485,-0.966552,-0.065153,-0.039481;;, + 186;4;-0.106850,-0.981306,-0.068589,-0.026720;;, + 187;4;-0.029983,-0.993038,-0.071230,-0.017030;;, + 188;4;-0.000993,-0.997299,-0.072152,-0.013698;;, + 189;4;-0.835223,-0.536092, 0.025756,-0.119768;;, + 190;4;-0.803190,-0.565877, 0.021817,-0.111188;;, + 191;4;-0.718123,-0.648320, 0.010758,-0.086705;;, + 192;4;-0.614364,-0.752494,-0.003390,-0.054941;;, + 193;4;-0.534783,-0.833219,-0.014396,-0.030130;;, + 194;4;-0.506110,-0.862010,-0.018307,-0.021347;;, + 195;4;-0.535306,-0.833106,-0.014394,-0.030099;;, + 196;4;-0.617424,-0.751827,-0.003381,-0.054756;;, + 197;4;-0.723034,-0.647269, 0.010771,-0.086406;;, + 198;4;-0.805709,-0.565357, 0.021822,-0.111033;;, + 199;4;-0.835223,-0.536092, 0.025756,-0.119768;;, + 200;4;-0.538721,-0.840702,-0.006530,-0.054381;;, + 201;4;-0.565325,-0.813340,-0.003643,-0.060179;;, + 202;4;-0.639822,-0.736773, 0.004459,-0.076535;;, + 203;4;-0.734957,-0.639059, 0.014825,-0.097566;;, + 204;4;-0.808923,-0.563104, 0.022890,-0.113952;;, + 205;4;-0.835223,-0.536092, 0.025756,-0.119768;;, + 206;4;-0.805969,-0.565062, 0.021840,-0.111019;;, + 207;4;-0.723567,-0.646663, 0.010807,-0.086377;;, + 208;4;-0.617765,-0.751439,-0.003358,-0.054737;;, + 209;4;-0.535365,-0.833040,-0.014390,-0.030096;;, + 210;4;-0.506110,-0.862010,-0.018307,-0.021347;;, + 211;4;-0.535365,-0.833040,-0.014390,-0.030096;;, + 212;4;-0.617765,-0.751439,-0.003358,-0.054737;;, + 213;4;-0.723567,-0.646663, 0.010807,-0.086377;;, + 214;4;-0.805969,-0.565062, 0.021840,-0.111019;;, + 215;4;-0.835223,-0.536092, 0.025756,-0.119768;;, + 216;4;-0.808881,-0.563152, 0.022887,-0.113955;;, + 217;4;-0.734713,-0.639339, 0.014809,-0.097580;;, + 218;4;-0.639441,-0.737212, 0.004432,-0.076557;;, + 219;4;-0.565139,-0.813554,-0.003656,-0.060190;;, + 220;4;-0.538721,-0.840702,-0.006530,-0.054381;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3; 2.000000, 6.750000,-0.000000;;, + 1;3; 2.000000, 6.750000, 0.000000;;, + 2;3; 2.000000, 6.750000,-0.000000;;, + 3;3; 2.000000, 6.750000, 0.000000;;, + 4;3; 2.000000, 6.750000, 0.000000;;, + 5;3; 2.000000, 6.750000, 0.000000;;, + 6;3; 2.000000, 6.750000, 0.000000;;, + 7;3; 2.000000, 6.750000, 0.000000;;, + 8;3; 2.000000, 6.750000,-0.000000;;, + 9;3; 2.000000, 6.750000,-0.000000;;, + 10;3; 2.000000, 6.750000,-0.000000;;, + 11;3; 2.000000, 6.750000,-0.000000;;, + 12;3; 2.000000, 6.750000, 0.000000;;, + 13;3; 2.000000, 6.750000,-0.000000;;, + 14;3; 2.000000, 6.750000, 0.000000;;, + 15;3; 2.000000, 6.750000,-0.000000;;, + 16;3; 2.000000, 6.750000,-0.000000;;, + 17;3; 2.000000, 6.750000,-0.000000;;, + 18;3; 2.000000, 6.750000,-0.000000;;, + 19;3; 2.000000, 6.750000, 0.000000;;, + 20;3; 2.000000, 6.750000,-0.000000;;, + 21;3; 2.000000, 6.750000, 0.000000;;, + 22;3; 2.000000, 6.750000,-0.000000;;, + 23;3; 2.000000, 6.750000,-0.000000;;, + 24;3; 2.000000, 6.750000,-0.000000;;, + 25;3; 2.000000, 6.750000, 0.000000;;, + 26;3; 2.000000, 6.750000, 0.000000;;, + 27;3; 2.000000, 6.750000, 0.000000;;, + 28;3; 2.000000, 6.750000, 0.000000;;, + 29;3; 2.000000, 6.750000,-0.000000;;, + 30;3; 2.000000, 6.750000,-0.000000;;, + 31;3; 2.000000, 6.750000, 0.000000;;, + 32;3; 2.000000, 6.750000, 0.000000;;, + 33;3; 2.000000, 6.750000,-0.000000;;, + 34;3; 2.000000, 6.750000,-0.000000;;, + 35;3; 2.000000, 6.750000, 0.000000;;, + 36;3; 2.000000, 6.750000, 0.000000;;, + 37;3; 2.000000, 6.750000, 0.000000;;, + 38;3; 2.000000, 6.750000,-0.000000;;, + 39;3; 2.000000, 6.750000, 0.000000;;, + 40;3; 2.000000, 6.750000,-0.000000;;, + 41;3; 2.000000, 6.750000, 0.000000;;, + 42;3; 2.000000, 6.750000, 0.000000;;, + 43;3; 2.000000, 6.750000, 0.000000;;, + 44;3; 2.000000, 6.750000, 0.000000;;, + 45;3; 2.000000, 6.750000,-0.000000;;, + 46;3; 2.000000, 6.750000,-0.000000;;, + 47;3; 2.000000, 6.750000, 0.000000;;, + 48;3; 2.000000, 6.750000,-0.000000;;, + 49;3; 2.000000, 6.750000,-0.000000;;, + 50;3; 2.000000, 6.750000,-0.000000;;, + 51;3; 2.000000, 6.750000,-0.000000;;, + 52;3; 2.000000, 6.750000, 0.000000;;, + 53;3; 2.000000, 6.750000, 0.000000;;, + 54;3; 2.000000, 6.750000,-0.000000;;, + 55;3; 2.000000, 6.750000, 0.000000;;, + 56;3; 2.000000, 6.750000,-0.000000;;, + 57;3; 2.000000, 6.750000,-0.000000;;, + 58;3; 2.000000, 6.750000,-0.000000;;, + 59;3; 2.000000, 6.750000, 0.000000;;, + 60;3; 2.000000, 6.750000,-0.000000;;, + 61;3; 2.000000, 6.750000,-0.000000;;, + 62;3; 2.000000, 6.750000, 0.000000;;, + 63;3; 2.000000, 6.750000, 0.000000;;, + 64;3; 2.000000, 6.750000, 0.000000;;, + 65;3; 2.000000, 6.750000, 0.000000;;, + 66;3; 2.000000, 6.750000, 0.000000;;, + 67;3; 2.000000, 6.750000,-0.000000;;, + 68;3; 2.000000, 6.750000, 0.000000;;, + 69;3; 2.000000, 6.750000,-0.000000;;, + 70;3; 2.000000, 6.750000, 0.000000;;, + 71;3; 2.000000, 6.750000, 0.000000;;, + 72;3; 2.000000, 6.750000, 0.000000;;, + 73;3; 2.000000, 6.750000,-0.000000;;, + 74;3; 2.000000, 6.750000,-0.000000;;, + 75;3; 2.000000, 6.750000, 0.000000;;, + 76;3; 2.000000, 6.750000, 0.000000;;, + 77;3; 2.000000, 6.750000,-0.000000;;, + 78;3; 2.000000, 6.750001,-0.000000;;, + 79;3; 2.000000, 6.750000, 0.000000;;, + 80;3; 2.000000, 6.750000,-0.000000;;, + 81;3; 2.000000, 6.750000, 0.000000;;, + 82;3; 2.000000, 6.750000, 0.000000;;, + 83;3; 2.000000, 6.750000, 0.000000;;, + 84;3; 2.000000, 6.750000, 0.000000;;, + 85;3; 2.000000, 6.750000,-0.000000;;, + 86;3; 2.000000, 6.750000, 0.000000;;, + 87;3; 2.000000, 6.750000,-0.000000;;, + 88;3; 2.000000, 6.750000, 0.000000;;, + 89;3; 2.000000, 6.750000,-0.000000;;, + 90;3; 2.000000, 6.750000,-0.000000;;, + 91;3; 2.000000, 6.750000, 0.000000;;, + 92;3; 2.000000, 6.750000,-0.000000;;, + 93;3; 2.000000, 6.750000, 0.000000;;, + 94;3; 2.000000, 6.750000,-0.000000;;, + 95;3; 2.000000, 6.750000, 0.000000;;, + 96;3; 2.000000, 6.750000,-0.000000;;, + 97;3; 2.000000, 6.750000, 0.000000;;, + 98;3; 2.000000, 6.750000,-0.000000;;, + 99;3; 2.000000, 6.750000,-0.000000;;, + 100;3; 2.000000, 6.750000, 0.000000;;, + 101;3; 2.000000, 6.750000,-0.000000;;, + 102;3; 2.000000, 6.750000, 0.000000;;, + 103;3; 2.000000, 6.750000,-0.000000;;, + 104;3; 2.000000, 6.750000, 0.000000;;, + 105;3; 2.000000, 6.750000,-0.000000;;, + 106;3; 2.000000, 6.750000,-0.000000;;, + 107;3; 2.000000, 6.750000, 0.000000;;, + 108;3; 2.000000, 6.750000, 0.000000;;, + 109;3; 2.000000, 6.750000,-0.000000;;, + 110;3; 2.000000, 6.750000,-0.000000;;, + 111;3; 2.000000, 6.750000,-0.000000;;, + 112;3; 2.000000, 6.750000,-0.000000;;, + 113;3; 2.000000, 6.750000,-0.000000;;, + 114;3; 2.000000, 6.750000,-0.000000;;, + 115;3; 2.000000, 6.750000,-0.000000;;, + 116;3; 2.000000, 6.750000,-0.000000;;, + 117;3; 2.000000, 6.750000,-0.000000;;, + 118;3; 2.000000, 6.750000, 0.000000;;, + 119;3; 2.000000, 6.750000,-0.000000;;, + 120;3; 2.000000, 6.750000, 0.000000;;, + 121;3; 2.000000, 6.750000, 0.000000;;, + 122;3; 2.000000, 6.750000, 0.000000;;, + 123;3; 2.000000, 6.750000,-0.000000;;, + 124;3; 2.000000, 6.750000,-0.000000;;, + 125;3; 2.000000, 6.750000,-0.000000;;, + 126;3; 2.000000, 6.750000, 0.000000;;, + 127;3; 2.000000, 6.750000,-0.000000;;, + 128;3; 2.000000, 6.750000, 0.000000;;, + 129;3; 2.000000, 6.750000,-0.000000;;, + 130;3; 2.000000, 6.750000, 0.000000;;, + 131;3; 2.000000, 6.750000, 0.000000;;, + 132;3; 2.000000, 6.750000,-0.000000;;, + 133;3; 2.000000, 6.750000,-0.000000;;, + 134;3; 2.000000, 6.750000, 0.000000;;, + 135;3; 2.000000, 6.750000, 0.000000;;, + 136;3; 2.000000, 6.750000,-0.000000;;, + 137;3; 2.000000, 6.750000, 0.000000;;, + 138;3; 2.000000, 6.750000,-0.000000;;, + 139;3; 2.000000, 6.750000, 0.000000;;, + 140;3; 2.000000, 6.750000,-0.000000;;, + 141;3; 2.000000, 6.750000,-0.000000;;, + 142;3; 2.000000, 6.750000,-0.000000;;, + 143;3; 2.000000, 6.750000,-0.000000;;, + 144;3; 2.000000, 6.750000, 0.000000;;, + 145;3; 2.000000, 6.750000,-0.000000;;, + 146;3; 2.000000, 6.750000, 0.000000;;, + 147;3; 2.000000, 6.750000, 0.000000;;, + 148;3; 2.000000, 6.750000,-0.000000;;, + 149;3; 2.000000, 6.750000,-0.000000;;, + 150;3; 2.000000, 6.750000,-0.000000;;, + 151;3; 2.000000, 6.750000,-0.000000;;, + 152;3; 2.000000, 6.750000,-0.000000;;, + 153;3; 2.000000, 6.750000, 0.000000;;, + 154;3; 2.000000, 6.750000,-0.000000;;, + 155;3; 2.000000, 6.750000,-0.000000;;, + 156;3; 2.000000, 6.750000,-0.000000;;, + 157;3; 2.000000, 6.750000,-0.000000;;, + 158;3; 2.000000, 6.750000, 0.000000;;, + 159;3; 2.000000, 6.750000, 0.000000;;, + 160;3; 2.000000, 6.750000, 0.000000;;, + 161;3; 2.000000, 6.750000, 0.000000;;, + 162;3; 2.000000, 6.750000, 0.000000;;, + 163;3; 2.000000, 6.750000, 0.000000;;, + 164;3; 2.000000, 6.750000, 0.000000;;, + 165;3; 2.000000, 6.750000, 0.000000;;, + 166;3; 2.000000, 6.750000, 0.000000;;, + 167;3; 2.000000, 6.750000, 0.000000;;, + 168;3; 2.000000, 6.750000,-0.000000;;, + 169;3; 2.000000, 6.750000,-0.000000;;, + 170;3; 2.000000, 6.750000,-0.000000;;, + 171;3; 2.000000, 6.750000,-0.000000;;, + 172;3; 2.000000, 6.750000,-0.000000;;, + 173;3; 2.000000, 6.750000,-0.000000;;, + 174;3; 2.000000, 6.750000,-0.000000;;, + 175;3; 2.000000, 6.750000,-0.000000;;, + 176;3; 2.000000, 6.750000,-0.000000;;, + 177;3; 2.000000, 6.750000,-0.000000;;, + 178;3; 2.000000, 6.750000,-0.000000;;, + 179;3; 2.000000, 6.750000,-0.000000;;, + 180;3; 2.000000, 6.750000,-0.000000;;, + 181;3; 2.000000, 6.750000,-0.000000;;, + 182;3; 2.000000, 6.750000,-0.000000;;, + 183;3; 2.000000, 6.750000,-0.000000;;, + 184;3; 2.000000, 6.750000,-0.000000;;, + 185;3; 2.000000, 6.750000,-0.000000;;, + 186;3; 2.000000, 6.750000,-0.000000;;, + 187;3; 2.000000, 6.750000,-0.000000;;, + 188;3; 2.000000, 6.750000,-0.000000;;, + 189;3; 2.000000, 6.750000,-0.000000;;, + 190;3; 2.000000, 6.750000, 0.000000;;, + 191;3; 2.000000, 6.750000, 0.000000;;, + 192;3; 2.000000, 6.750000,-0.000000;;, + 193;3; 2.000000, 6.750001, 0.000000;;, + 194;3; 2.000000, 6.750001, 0.000000;;, + 195;3; 2.000000, 6.750001, 0.000000;;, + 196;3; 2.000000, 6.750000,-0.000000;;, + 197;3; 2.000000, 6.750000, 0.000000;;, + 198;3; 2.000000, 6.750000, 0.000000;;, + 199;3; 2.000000, 6.750000,-0.000000;;, + 200;3; 2.000000, 6.750000,-0.000000;;, + 201;3; 2.000000, 6.750000,-0.000000;;, + 202;3; 2.000000, 6.750000,-0.000000;;, + 203;3; 2.000000, 6.750000, 0.000000;;, + 204;3; 2.000000, 6.750000,-0.000000;;, + 205;3; 2.000000, 6.750000,-0.000000;;, + 206;3; 2.000000, 6.750000, 0.000000;;, + 207;3; 2.000000, 6.750000,-0.000000;;, + 208;3; 2.000000, 6.750000, 0.000000;;, + 209;3; 2.000000, 6.750000,-0.000000;;, + 210;3; 2.000000, 6.750001, 0.000000;;, + 211;3; 2.000000, 6.750000,-0.000000;;, + 212;3; 2.000000, 6.750000, 0.000000;;, + 213;3; 2.000000, 6.750000, 0.000000;;, + 214;3; 2.000000, 6.750000, 0.000000;;, + 215;3; 2.000000, 6.750000,-0.000000;;, + 216;3; 2.000000, 6.750000,-0.000000;;, + 217;3; 2.000000, 6.750000, 0.000000;;, + 218;3; 2.000000, 6.750000, 0.000000;;, + 219;3; 2.000000, 6.750000, 0.000000;;, + 220;3; 2.000000, 6.750000,-0.000000;;; + } + } + Animation { + {Armature_Leg_Right} + AnimationKey { // Rotation + 0; + 221; + 0;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 1;4;-0.000240, 0.999995,-0.000000,-0.000000;;, + 2;4;-0.000967, 0.999979,-0.000000,-0.000000;;, + 3;4;-0.002182, 0.999952,-0.000000,-0.000000;;, + 4;4;-0.003877, 0.999915,-0.000000,-0.000000;;, + 5;4;-0.006032, 0.999868,-0.000000,-0.000000;;, + 6;4;-0.008609, 0.999812,-0.000000,-0.000000;;, + 7;4;-0.011555, 0.999748,-0.000000,-0.000000;;, + 8;4;-0.014798, 0.999677,-0.000000,-0.000000;;, + 9;4;-0.018250, 0.999602,-0.000000,-0.000000;;, + 10;4;-0.021810, 0.999524,-0.000000,-0.000000;;, + 11;4;-0.025369, 0.999446,-0.000000,-0.000000;;, + 12;4;-0.028821, 0.999371,-0.000000,-0.000000;;, + 13;4;-0.032064, 0.999300,-0.000000,-0.000000;;, + 14;4;-0.035010, 0.999236,-0.000000,-0.000000;;, + 15;4;-0.037588, 0.999180,-0.000000,-0.000000;;, + 16;4;-0.039742, 0.999133,-0.000000,-0.000000;;, + 17;4;-0.041437, 0.999096,-0.000000,-0.000000;;, + 18;4;-0.042652, 0.999069,-0.000000,-0.000000;;, + 19;4;-0.043379, 0.999053,-0.000000,-0.000000;;, + 20;4;-0.043619, 0.999048,-0.000000,-0.000000;;, + 21;4;-0.043379, 0.999053,-0.000000,-0.000000;;, + 22;4;-0.042652, 0.999069,-0.000000,-0.000000;;, + 23;4;-0.041437, 0.999096,-0.000000,-0.000000;;, + 24;4;-0.039742, 0.999133,-0.000000,-0.000000;;, + 25;4;-0.037588, 0.999180,-0.000000,-0.000000;;, + 26;4;-0.035010, 0.999236,-0.000000,-0.000000;;, + 27;4;-0.032064, 0.999300,-0.000000,-0.000000;;, + 28;4;-0.028821, 0.999371,-0.000000,-0.000000;;, + 29;4;-0.025369, 0.999446,-0.000000,-0.000000;;, + 30;4;-0.021810, 0.999524,-0.000000,-0.000000;;, + 31;4;-0.018250, 0.999602,-0.000000,-0.000000;;, + 32;4;-0.014798, 0.999677,-0.000000,-0.000000;;, + 33;4;-0.011555, 0.999748,-0.000000,-0.000000;;, + 34;4;-0.008609, 0.999812,-0.000000,-0.000000;;, + 35;4;-0.006032, 0.999868,-0.000000,-0.000000;;, + 36;4;-0.003877, 0.999915,-0.000000,-0.000000;;, + 37;4;-0.002182, 0.999952,-0.000000,-0.000000;;, + 38;4;-0.000967, 0.999979,-0.000000,-0.000000;;, + 39;4;-0.000240, 0.999995,-0.000000,-0.000000;;, + 40;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 41;4;-0.000240, 0.999995,-0.000000,-0.000000;;, + 42;4;-0.000967, 0.999979,-0.000000,-0.000000;;, + 43;4;-0.002182, 0.999952,-0.000000,-0.000000;;, + 44;4;-0.003877, 0.999915,-0.000000,-0.000000;;, + 45;4;-0.006032, 0.999868,-0.000000,-0.000000;;, + 46;4;-0.008609, 0.999812,-0.000000,-0.000000;;, + 47;4;-0.011555, 0.999748,-0.000000,-0.000000;;, + 48;4;-0.014798, 0.999677,-0.000000,-0.000000;;, + 49;4;-0.018250, 0.999602,-0.000000,-0.000000;;, + 50;4;-0.021810, 0.999524,-0.000000,-0.000000;;, + 51;4;-0.025369, 0.999446,-0.000000,-0.000000;;, + 52;4;-0.028821, 0.999371,-0.000000,-0.000000;;, + 53;4;-0.032064, 0.999300,-0.000000,-0.000000;;, + 54;4;-0.035010, 0.999236,-0.000000,-0.000000;;, + 55;4;-0.037588, 0.999180,-0.000000,-0.000000;;, + 56;4;-0.039742, 0.999133,-0.000000,-0.000000;;, + 57;4;-0.041437, 0.999096,-0.000000,-0.000000;;, + 58;4;-0.042652, 0.999069,-0.000000,-0.000000;;, + 59;4;-0.043379, 0.999053,-0.000000,-0.000000;;, + 60;4;-0.043619, 0.999048,-0.000000,-0.000000;;, + 61;4;-0.043616, 0.999053,-0.000000,-0.000000;;, + 62;4;-0.043594, 0.999067,-0.000000,-0.000000;;, + 63;4;-0.043536, 0.999089,-0.000000,-0.000000;;, + 64;4;-0.043427, 0.999117,-0.000000,-0.000000;;, + 65;4;-0.043250, 0.999151,-0.000000,-0.000000;;, + 66;4;-0.042989, 0.999191,-0.000000,-0.000000;;, + 67;4;-0.042627, 0.999235,-0.000000,-0.000000;;, + 68;4;-0.042144, 0.999283,-0.000000,-0.000000;;, + 69;4;-0.041519, 0.999336,-0.000000,-0.000000;;, + 70;4;-0.040726, 0.999391,-0.000000,-0.000000;;, + 71;4;-0.039733, 0.999450,-0.000000,-0.000000;;, + 72;4;-0.038501, 0.999511,-0.000000,-0.000000;;, + 73;4;-0.036980, 0.999575,-0.000000,-0.000000;;, + 74;4;-0.035101, 0.999640,-0.000000,-0.000000;;, + 75;4;-0.032770, 0.999707,-0.000000,-0.000000;;, + 76;4;-0.029842, 0.999774,-0.000000,-0.000000;;, + 77;4;-0.026086, 0.999841,-0.000000,-0.000000;;, + 78;4;-0.021070, 0.999906,-0.000000,-0.000000;;, + 79;4;-0.013794, 0.999964,-0.000000,-0.000000;;, + 80;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 81;4; 0.707107, 0.707107, 0.000000,-0.000000;;, + 82;4; 0.705874, 0.708245, 0.000000,-0.000000;;, + 83;4; 0.703907, 0.710101, 0.000000,-0.000000;;, + 84;4; 0.701752, 0.712152, 0.000000,-0.000000;;, + 85;4; 0.699533, 0.714271, 0.000000,-0.000000;;, + 86;4; 0.697308, 0.716402, 0.000000,-0.000000;;, + 87;4; 0.695107, 0.718513, 0.000000,-0.000000;;, + 88;4; 0.692951, 0.720584, 0.000000,-0.000000;;, + 89;4; 0.690857, 0.722597, 0.000000,-0.000000;;, + 90;4; 0.688837, 0.724539, 0.000000,-0.000000;;, + 91;4; 0.686904, 0.726399, 0.000000,-0.000000;;, + 92;4; 0.685070, 0.728163, 0.000000,-0.000000;;, + 93;4; 0.683348, 0.729820, 0.000000,-0.000000;;, + 94;4; 0.681750, 0.731358, 0.000000,-0.000000;;, + 95;4; 0.680291, 0.732761, 0.000000,-0.000000;;, + 96;4; 0.678987, 0.734015, 0.000000,-0.000000;;, + 97;4; 0.677857, 0.735101, 0.000000,-0.000000;;, + 98;4; 0.676923, 0.735999, 0.000000,-0.000000;;, + 99;4; 0.676211, 0.736682, 0.000000,-0.000000;;, + 100;4; 0.675753, 0.737121, 0.000000,-0.000000;;, + 101;4; 0.675590, 0.737277, 0.000000,-0.000000;;, + 102;4; 0.675764, 0.737111, 0.000000,-0.000000;;, + 103;4; 0.676289, 0.736609, 0.000000,-0.000000;;, + 104;4; 0.677167, 0.735768, 0.000000,-0.000000;;, + 105;4; 0.678392, 0.734596, 0.000000,-0.000000;;, + 106;4; 0.679948, 0.733105, 0.000000,-0.000000;;, + 107;4; 0.681811, 0.731323, 0.000000,-0.000000;;, + 108;4; 0.683939, 0.729285, 0.000000,-0.000000;;, + 109;4; 0.686283, 0.727042, 0.000000,-0.000000;;, + 110;4; 0.688777, 0.724654, 0.000000,-0.000000;;, + 111;4; 0.691348, 0.722192, 0.000000,-0.000000;;, + 112;4; 0.693920, 0.719730, 0.000000,-0.000000;;, + 113;4; 0.696414, 0.717343, 0.000000,-0.000000;;, + 114;4; 0.698758, 0.715099, 0.000000,-0.000000;;, + 115;4; 0.700886, 0.713062, 0.000000,-0.000000;;, + 116;4; 0.702749, 0.711279, 0.000000,-0.000000;;, + 117;4; 0.704305, 0.709789, 0.000000,-0.000000;;, + 118;4; 0.705530, 0.708616, 0.000000,-0.000000;;, + 119;4; 0.706408, 0.707776, 0.000000,-0.000000;;, + 120;4; 0.706933, 0.707273, 0.000000,-0.000000;;, + 121;4; 0.707107, 0.707107, 0.000000,-0.000000;;, + 122;4; 0.706933, 0.707273, 0.000000,-0.000000;;, + 123;4; 0.706408, 0.707776, 0.000000,-0.000000;;, + 124;4; 0.705530, 0.708616, 0.000000,-0.000000;;, + 125;4; 0.704305, 0.709789, 0.000000,-0.000000;;, + 126;4; 0.702749, 0.711279, 0.000000,-0.000000;;, + 127;4; 0.700886, 0.713062, 0.000000,-0.000000;;, + 128;4; 0.698758, 0.715099, 0.000000,-0.000000;;, + 129;4; 0.696414, 0.717343, 0.000000,-0.000000;;, + 130;4; 0.693920, 0.719730, 0.000000,-0.000000;;, + 131;4; 0.691348, 0.722192, 0.000000,-0.000000;;, + 132;4; 0.688777, 0.724654, 0.000000,-0.000000;;, + 133;4; 0.686283, 0.727042, 0.000000,-0.000000;;, + 134;4; 0.683939, 0.729285, 0.000000,-0.000000;;, + 135;4; 0.681811, 0.731323, 0.000000,-0.000000;;, + 136;4; 0.679948, 0.733105, 0.000000,-0.000000;;, + 137;4; 0.678392, 0.734596, 0.000000,-0.000000;;, + 138;4; 0.677167, 0.735768, 0.000000,-0.000000;;, + 139;4; 0.676289, 0.736609, 0.000000,-0.000000;;, + 140;4; 0.675764, 0.737111, 0.000000,-0.000000;;, + 141;4; 0.675590, 0.737277, 0.000000,-0.000000;;, + 142;4; 0.675753, 0.737121, 0.000000,-0.000000;;, + 143;4; 0.676211, 0.736682, 0.000000,-0.000000;;, + 144;4; 0.676923, 0.735999, 0.000000,-0.000000;;, + 145;4; 0.677857, 0.735101, 0.000000,-0.000000;;, + 146;4; 0.678987, 0.734015, 0.000000,-0.000000;;, + 147;4; 0.680291, 0.732761, 0.000000,-0.000000;;, + 148;4; 0.681750, 0.731357, 0.000000,-0.000000;;, + 149;4; 0.683348, 0.729820, 0.000000,-0.000000;;, + 150;4; 0.685070, 0.728163, 0.000000,-0.000000;;, + 151;4; 0.686904, 0.726398, 0.000000,-0.000000;;, + 152;4; 0.688837, 0.724539, 0.000000,-0.000000;;, + 153;4; 0.690857, 0.722596, 0.000000,-0.000000;;, + 154;4; 0.692951, 0.720583, 0.000000,-0.000000;;, + 155;4; 0.695107, 0.718512, 0.000000,-0.000000;;, + 156;4; 0.697308, 0.716401, 0.000000,-0.000000;;, + 157;4; 0.699533, 0.714270, 0.000000,-0.000000;;, + 158;4; 0.701752, 0.712151, 0.000000,-0.000000;;, + 159;4; 0.703907, 0.710100, 0.000000,-0.000000;;, + 160;4; 0.705874, 0.708244, 0.000000,-0.000000;;, + 161;4; 0.707107, 0.707107, 0.000000,-0.000000;;, + 162;4;-0.000000, 0.991445, 0.130526,-0.000000;;, + 163;4;-0.000000, 0.991445, 0.130526,-0.000000;;, + 164;4;-0.000000, 0.991445, 0.130526,-0.000000;;, + 165;4;-0.000000, 0.991445, 0.130526,-0.000000;;, + 166;4;-0.000000, 0.991445, 0.130526,-0.000000;;, + 167;4;-0.000000, 0.991445, 0.130526,-0.000000;;, + 168;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 169;4; 0.034052, 0.993234, 0.000000,-0.000000;;, + 170;4; 0.129903, 0.974175, 0.000000,-0.000000;;, + 171;4; 0.252901, 0.949704, 0.000000,-0.000000;;, + 172;4; 0.348675, 0.930646, 0.000000,-0.000000;;, + 173;4; 0.382683, 0.923880, 0.000000,-0.000000;;, + 174;4; 0.361005, 0.930646, 0.000000,-0.000000;;, + 175;4; 0.294618, 0.949704, 0.000000,-0.000000;;, + 176;4; 0.194899, 0.974175, 0.000000,-0.000000;;, + 177;4; 0.088939, 0.993234, 0.000000,-0.000000;;, + 178;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 179;4;-0.088939, 0.993234,-0.000000,-0.000000;;, + 180;4;-0.194899, 0.974175,-0.000000,-0.000000;;, + 181;4;-0.294618, 0.949704,-0.000000,-0.000000;;, + 182;4;-0.361005, 0.930646,-0.000000,-0.000000;;, + 183;4;-0.382683, 0.923880,-0.000000,-0.000000;;, + 184;4;-0.348675, 0.930646,-0.000000,-0.000000;;, + 185;4;-0.252901, 0.949704,-0.000000,-0.000000;;, + 186;4;-0.129903, 0.974175,-0.000000,-0.000000;;, + 187;4;-0.034052, 0.993233,-0.000000,-0.000000;;, + 188;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 189;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 190;4; 0.003877, 0.999915, 0.000000,-0.000000;;, + 191;4; 0.014798, 0.999677, 0.000000,-0.000000;;, + 192;4; 0.028821, 0.999371, 0.000000,-0.000000;;, + 193;4; 0.039742, 0.999133, 0.000000,-0.000000;;, + 194;4; 0.043619, 0.999048, 0.000000,-0.000000;;, + 195;4; 0.039742, 0.999133, 0.000000,-0.000000;;, + 196;4; 0.028821, 0.999371, 0.000000,-0.000000;;, + 197;4; 0.014798, 0.999677, 0.000000,-0.000000;;, + 198;4; 0.003877, 0.999915, 0.000000,-0.000000;;, + 199;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 200;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 201;4; 0.034052, 0.993233, 0.000000,-0.000000;;, + 202;4; 0.129903, 0.974175, 0.000000,-0.000000;;, + 203;4; 0.252901, 0.949704, 0.000000,-0.000000;;, + 204;4; 0.348675, 0.930646, 0.000000,-0.000000;;, + 205;4; 0.382683, 0.923880, 0.000000,-0.000000;;, + 206;4; 0.361005, 0.930646, 0.000000,-0.000000;;, + 207;4; 0.294618, 0.949704, 0.000000,-0.000000;;, + 208;4; 0.194899, 0.974175, 0.000000,-0.000000;;, + 209;4; 0.088939, 0.993234, 0.000000,-0.000000;;, + 210;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 211;4;-0.088939, 0.993234,-0.000000,-0.000000;;, + 212;4;-0.194899, 0.974175,-0.000000,-0.000000;;, + 213;4;-0.294618, 0.949704,-0.000000,-0.000000;;, + 214;4;-0.361005, 0.930646,-0.000000,-0.000000;;, + 215;4;-0.382683, 0.923880,-0.000000,-0.000000;;, + 216;4;-0.348699, 0.930646,-0.000000,-0.000000;;, + 217;4;-0.253041, 0.949703,-0.000000,-0.000000;;, + 218;4;-0.130122, 0.974173,-0.000000,-0.000000;;, + 219;4;-0.034158, 0.993233,-0.000000,-0.000000;;, + 220;4;-0.000000, 1.000000,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 0.999999;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 0.999999;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3; 1.000000, 0.000000,-0.000001;;, + 1;3; 1.000000, 0.000000,-0.000001;;, + 2;3; 1.000000,-0.000000,-0.000001;;, + 3;3; 1.000000,-0.000000,-0.000001;;, + 4;3; 1.000000,-0.000000,-0.000001;;, + 5;3; 1.000000,-0.000000,-0.000001;;, + 6;3; 1.000000,-0.000000,-0.000001;;, + 7;3; 1.000000, 0.000000,-0.000001;;, + 8;3; 1.000000,-0.000000,-0.000001;;, + 9;3; 1.000000,-0.000000,-0.000001;;, + 10;3; 1.000000,-0.000000,-0.000001;;, + 11;3; 1.000000,-0.000000,-0.000000;;, + 12;3; 1.000000,-0.000000,-0.000001;;, + 13;3; 1.000000, 0.000000,-0.000001;;, + 14;3; 1.000000,-0.000000,-0.000001;;, + 15;3; 1.000000,-0.000000,-0.000001;;, + 16;3; 1.000000,-0.000000,-0.000001;;, + 17;3; 1.000000,-0.000000,-0.000000;;, + 18;3; 1.000000, 0.000000,-0.000000;;, + 19;3; 1.000000,-0.000000,-0.000000;;, + 20;3; 1.000000, 0.000000,-0.000000;;, + 21;3; 1.000000,-0.000000,-0.000001;;, + 22;3; 1.000000, 0.000000,-0.000000;;, + 23;3; 1.000000,-0.000000,-0.000000;;, + 24;3; 1.000000,-0.000000,-0.000001;;, + 25;3; 1.000000,-0.000000,-0.000000;;, + 26;3; 1.000000,-0.000000,-0.000000;;, + 27;3; 1.000000, 0.000000,-0.000001;;, + 28;3; 1.000000,-0.000000,-0.000001;;, + 29;3; 1.000000,-0.000000,-0.000001;;, + 30;3; 1.000000,-0.000000,-0.000001;;, + 31;3; 1.000000,-0.000000,-0.000001;;, + 32;3; 1.000000,-0.000000,-0.000001;;, + 33;3; 1.000000, 0.000000,-0.000001;;, + 34;3; 1.000000,-0.000000,-0.000001;;, + 35;3; 1.000000,-0.000000,-0.000001;;, + 36;3; 1.000000,-0.000000,-0.000001;;, + 37;3; 1.000000,-0.000000,-0.000001;;, + 38;3; 1.000000,-0.000000,-0.000001;;, + 39;3; 1.000000, 0.000000,-0.000001;;, + 40;3; 1.000000, 0.000000,-0.000001;;, + 41;3; 1.000000, 0.000000,-0.000001;;, + 42;3; 1.000000,-0.000000,-0.000001;;, + 43;3; 1.000000,-0.000000,-0.000001;;, + 44;3; 1.000000,-0.000000,-0.000001;;, + 45;3; 1.000000,-0.000000,-0.000001;;, + 46;3; 1.000000,-0.000000,-0.000001;;, + 47;3; 1.000000, 0.000000,-0.000001;;, + 48;3; 1.000000,-0.000000,-0.000001;;, + 49;3; 1.000000,-0.000000,-0.000001;;, + 50;3; 1.000000,-0.000000,-0.000001;;, + 51;3; 1.000000,-0.000000,-0.000001;;, + 52;3; 1.000000,-0.000000,-0.000001;;, + 53;3; 1.000000, 0.000000,-0.000001;;, + 54;3; 1.000000,-0.000000,-0.000001;;, + 55;3; 1.000000,-0.000000,-0.000000;;, + 56;3; 1.000000,-0.000000,-0.000001;;, + 57;3; 1.000000,-0.000000,-0.000000;;, + 58;3; 1.000000, 0.000000,-0.000000;;, + 59;3; 1.000000,-0.000000,-0.000000;;, + 60;3; 1.000000, 0.000000,-0.000000;;, + 61;3; 1.000000, 0.000000,-0.000001;;, + 62;3; 1.000000,-0.000000,-0.000001;;, + 63;3; 1.000000,-0.000000,-0.000001;;, + 64;3; 1.000000, 0.000000,-0.000001;;, + 65;3; 1.000000,-0.000000,-0.000000;;, + 66;3; 1.000000,-0.000000,-0.000001;;, + 67;3; 1.000000,-0.000000,-0.000001;;, + 68;3; 1.000000, 0.000000,-0.000001;;, + 69;3; 1.000000,-0.000000,-0.000001;;, + 70;3; 1.000000,-0.000000,-0.000001;;, + 71;3; 1.000000,-0.000000,-0.000001;;, + 72;3; 1.000000,-0.000000,-0.000001;;, + 73;3; 1.000000, 0.000000,-0.000001;;, + 74;3; 1.000000,-0.000000,-0.000001;;, + 75;3; 1.000000, 0.000000,-0.000001;;, + 76;3; 1.000000,-0.000000,-0.000001;;, + 77;3; 1.000000,-0.000000,-0.000001;;, + 78;3; 1.000000, 0.000000,-0.000001;;, + 79;3; 1.000000,-0.000000,-0.000001;;, + 80;3; 1.000000, 0.000000,-0.000001;;, + 81;3; 1.000000, 0.000000,-0.000001;;, + 82;3; 1.000000,-0.000000,-0.000001;;, + 83;3; 1.000000,-0.000000,-0.000001;;, + 84;3; 1.000000,-0.000000,-0.000001;;, + 85;3; 1.000000,-0.000000,-0.000001;;, + 86;3; 1.000000,-0.000000,-0.000001;;, + 87;3; 1.000000,-0.000000,-0.000001;;, + 88;3; 1.000000,-0.000000,-0.000001;;, + 89;3; 1.000000,-0.000000,-0.000001;;, + 90;3; 1.000000,-0.000000,-0.000001;;, + 91;3; 1.000000,-0.000000,-0.000001;;, + 92;3; 1.000000,-0.000000,-0.000001;;, + 93;3; 1.000000,-0.000000,-0.000001;;, + 94;3; 1.000000,-0.000000,-0.000001;;, + 95;3; 1.000000,-0.000000,-0.000001;;, + 96;3; 1.000000,-0.000000,-0.000001;;, + 97;3; 1.000000,-0.000000,-0.000001;;, + 98;3; 1.000000,-0.000000,-0.000001;;, + 99;3; 1.000000,-0.000000,-0.000001;;, + 100;3; 1.000000,-0.000000,-0.000001;;, + 101;3; 1.000000,-0.000000,-0.000001;;, + 102;3; 1.000000,-0.000000,-0.000001;;, + 103;3; 1.000000,-0.000000,-0.000001;;, + 104;3; 1.000000,-0.000000,-0.000001;;, + 105;3; 1.000000,-0.000000,-0.000001;;, + 106;3; 1.000000,-0.000000,-0.000001;;, + 107;3; 1.000000,-0.000000,-0.000001;;, + 108;3; 1.000000,-0.000000,-0.000001;;, + 109;3; 1.000000,-0.000000,-0.000001;;, + 110;3; 1.000000,-0.000000,-0.000001;;, + 111;3; 1.000000,-0.000000,-0.000001;;, + 112;3; 1.000000,-0.000000,-0.000001;;, + 113;3; 1.000000,-0.000000,-0.000001;;, + 114;3; 1.000000,-0.000000,-0.000001;;, + 115;3; 1.000000,-0.000000,-0.000001;;, + 116;3; 1.000000,-0.000000,-0.000001;;, + 117;3; 1.000000,-0.000000,-0.000001;;, + 118;3; 1.000000,-0.000000,-0.000001;;, + 119;3; 1.000000,-0.000000,-0.000001;;, + 120;3; 1.000000,-0.000000,-0.000001;;, + 121;3; 1.000000, 0.000000,-0.000001;;, + 122;3; 1.000000,-0.000000,-0.000001;;, + 123;3; 1.000000,-0.000000,-0.000001;;, + 124;3; 1.000000,-0.000000,-0.000001;;, + 125;3; 1.000000,-0.000000,-0.000001;;, + 126;3; 1.000000,-0.000000,-0.000001;;, + 127;3; 1.000000,-0.000000,-0.000001;;, + 128;3; 1.000000,-0.000000,-0.000001;;, + 129;3; 1.000000,-0.000000,-0.000001;;, + 130;3; 1.000000,-0.000000,-0.000001;;, + 131;3; 1.000000,-0.000000,-0.000001;;, + 132;3; 1.000000,-0.000000,-0.000001;;, + 133;3; 1.000000,-0.000000,-0.000001;;, + 134;3; 1.000000,-0.000000,-0.000001;;, + 135;3; 1.000000,-0.000000,-0.000001;;, + 136;3; 1.000000,-0.000000,-0.000001;;, + 137;3; 1.000000,-0.000000,-0.000001;;, + 138;3; 1.000000,-0.000000,-0.000001;;, + 139;3; 1.000000,-0.000000,-0.000001;;, + 140;3; 1.000000,-0.000000,-0.000001;;, + 141;3; 1.000000,-0.000000,-0.000001;;, + 142;3; 1.000000,-0.000000,-0.000001;;, + 143;3; 1.000000,-0.000000,-0.000001;;, + 144;3; 1.000000,-0.000000,-0.000001;;, + 145;3; 1.000000,-0.000000,-0.000001;;, + 146;3; 1.000000,-0.000000,-0.000001;;, + 147;3; 1.000000,-0.000000,-0.000001;;, + 148;3; 1.000000,-0.000000,-0.000001;;, + 149;3; 1.000000,-0.000000,-0.000001;;, + 150;3; 1.000000,-0.000000,-0.000001;;, + 151;3; 1.000000,-0.000000,-0.000001;;, + 152;3; 1.000000,-0.000000,-0.000001;;, + 153;3; 1.000000,-0.000000,-0.000001;;, + 154;3; 1.000000,-0.000000,-0.000001;;, + 155;3; 1.000000,-0.000000,-0.000001;;, + 156;3; 1.000000,-0.000000,-0.000001;;, + 157;3; 1.000000,-0.000000,-0.000001;;, + 158;3; 1.000000,-0.000000,-0.000001;;, + 159;3; 1.000000,-0.000000,-0.000001;;, + 160;3; 1.000000,-0.000000,-0.000001;;, + 161;3; 1.000000, 0.000000,-0.000001;;, + 162;3; 1.000000,-0.000000,-0.000001;;, + 163;3; 1.000000,-0.000000,-0.000001;;, + 164;3; 1.000000,-0.000000,-0.000001;;, + 165;3; 1.000000,-0.000000,-0.000001;;, + 166;3; 1.000000,-0.000000,-0.000001;;, + 167;3; 1.000000,-0.000000,-0.000001;;, + 168;3; 1.000000, 0.000000,-0.000001;;, + 169;3; 1.000000, 0.000000,-0.000001;;, + 170;3; 1.000000, 0.000000,-0.000001;;, + 171;3; 1.000000, 0.000000,-0.000001;;, + 172;3; 1.000000, 0.000000,-0.000001;;, + 173;3; 1.000000, 0.000000,-0.000001;;, + 174;3; 1.000000, 0.000000,-0.000001;;, + 175;3; 1.000000, 0.000000,-0.000001;;, + 176;3; 1.000000, 0.000000,-0.000001;;, + 177;3; 1.000000, 0.000000,-0.000001;;, + 178;3; 1.000000, 0.000000,-0.000001;;, + 179;3; 1.000000, 0.000000,-0.000001;;, + 180;3; 1.000000, 0.000000,-0.000001;;, + 181;3; 1.000000, 0.000000,-0.000001;;, + 182;3; 1.000000, 0.000000,-0.000001;;, + 183;3; 1.000000, 0.000000,-0.000001;;, + 184;3; 1.000000, 0.000000,-0.000001;;, + 185;3; 1.000000, 0.000000,-0.000001;;, + 186;3; 1.000000, 0.000000,-0.000001;;, + 187;3; 1.000000, 0.000000,-0.000001;;, + 188;3; 1.000000, 0.000000,-0.000001;;, + 189;3; 1.000000, 0.000000,-0.000001;;, + 190;3; 1.000000,-0.000000,-0.000001;;, + 191;3; 1.000000,-0.000000,-0.000001;;, + 192;3; 1.000000,-0.000000,-0.000001;;, + 193;3; 1.000000, 0.000000,-0.000001;;, + 194;3; 1.000000, 0.000000,-0.000000;;, + 195;3; 1.000000, 0.000000,-0.000001;;, + 196;3; 1.000000,-0.000000,-0.000000;;, + 197;3; 1.000000,-0.000000,-0.000001;;, + 198;3; 1.000000,-0.000000,-0.000001;;, + 199;3; 1.000000, 0.000000,-0.000001;;, + 200;3; 1.000000, 0.000000,-0.000001;;, + 201;3; 1.000000,-0.000000,-0.000001;;, + 202;3; 1.000000,-0.000000,-0.000001;;, + 203;3; 1.000000,-0.000000,-0.000001;;, + 204;3; 1.000000,-0.000000,-0.000000;;, + 205;3; 1.000000, 0.000000,-0.000000;;, + 206;3; 1.000000,-0.000000,-0.000001;;, + 207;3; 1.000000,-0.000000,-0.000001;;, + 208;3; 1.000000,-0.000000,-0.000001;;, + 209;3; 1.000000, 0.000000,-0.000000;;, + 210;3; 1.000000, 0.000000,-0.000000;;, + 211;3; 1.000000, 0.000000,-0.000001;;, + 212;3; 1.000000,-0.000000,-0.000001;;, + 213;3; 1.000000,-0.000000,-0.000001;;, + 214;3; 1.000000,-0.000000,-0.000001;;, + 215;3; 1.000000, 0.000000,-0.000000;;, + 216;3; 1.000000,-0.000000,-0.000000;;, + 217;3; 1.000000,-0.000000,-0.000000;;, + 218;3; 1.000000,-0.000000,-0.000001;;, + 219;3; 1.000000,-0.000000,-0.000001;;, + 220;3; 1.000000, 0.000000,-0.000001;;; + } + } + Animation { + {Armature_Leg_Left} + AnimationKey { // Rotation + 0; + 221; + 0;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 1;4;-0.000240, 0.999995,-0.000000,-0.000000;;, + 2;4;-0.000967, 0.999979,-0.000000,-0.000000;;, + 3;4;-0.002182, 0.999952,-0.000000,-0.000000;;, + 4;4;-0.003877, 0.999915,-0.000000,-0.000000;;, + 5;4;-0.006032, 0.999868,-0.000000,-0.000000;;, + 6;4;-0.008609, 0.999812,-0.000000,-0.000000;;, + 7;4;-0.011555, 0.999748,-0.000000,-0.000000;;, + 8;4;-0.014798, 0.999677,-0.000000,-0.000000;;, + 9;4;-0.018250, 0.999602,-0.000000,-0.000000;;, + 10;4;-0.021810, 0.999524,-0.000000,-0.000000;;, + 11;4;-0.025369, 0.999446,-0.000000,-0.000000;;, + 12;4;-0.028821, 0.999371,-0.000000,-0.000000;;, + 13;4;-0.032064, 0.999300,-0.000000,-0.000000;;, + 14;4;-0.035010, 0.999236,-0.000000,-0.000000;;, + 15;4;-0.037588, 0.999180,-0.000000,-0.000000;;, + 16;4;-0.039742, 0.999133,-0.000000,-0.000000;;, + 17;4;-0.041437, 0.999096,-0.000000,-0.000000;;, + 18;4;-0.042652, 0.999069,-0.000000,-0.000000;;, + 19;4;-0.043379, 0.999053,-0.000000,-0.000000;;, + 20;4;-0.043619, 0.999048,-0.000000,-0.000000;;, + 21;4;-0.043379, 0.999053,-0.000000,-0.000000;;, + 22;4;-0.042652, 0.999069,-0.000000,-0.000000;;, + 23;4;-0.041437, 0.999096,-0.000000,-0.000000;;, + 24;4;-0.039742, 0.999133,-0.000000,-0.000000;;, + 25;4;-0.037588, 0.999180,-0.000000,-0.000000;;, + 26;4;-0.035010, 0.999236,-0.000000,-0.000000;;, + 27;4;-0.032064, 0.999300,-0.000000,-0.000000;;, + 28;4;-0.028821, 0.999371,-0.000000,-0.000000;;, + 29;4;-0.025369, 0.999446,-0.000000,-0.000000;;, + 30;4;-0.021810, 0.999524,-0.000000,-0.000000;;, + 31;4;-0.018250, 0.999602,-0.000000,-0.000000;;, + 32;4;-0.014798, 0.999677,-0.000000,-0.000000;;, + 33;4;-0.011555, 0.999748,-0.000000,-0.000000;;, + 34;4;-0.008609, 0.999812,-0.000000,-0.000000;;, + 35;4;-0.006032, 0.999868,-0.000000,-0.000000;;, + 36;4;-0.003877, 0.999915,-0.000000,-0.000000;;, + 37;4;-0.002182, 0.999952,-0.000000,-0.000000;;, + 38;4;-0.000967, 0.999979,-0.000000,-0.000000;;, + 39;4;-0.000240, 0.999995,-0.000000,-0.000000;;, + 40;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 41;4;-0.000240, 0.999995,-0.000000,-0.000000;;, + 42;4;-0.000967, 0.999979,-0.000000,-0.000000;;, + 43;4;-0.002182, 0.999952,-0.000000,-0.000000;;, + 44;4;-0.003877, 0.999915,-0.000000,-0.000000;;, + 45;4;-0.006032, 0.999868,-0.000000,-0.000000;;, + 46;4;-0.008609, 0.999812,-0.000000,-0.000000;;, + 47;4;-0.011555, 0.999748,-0.000000,-0.000000;;, + 48;4;-0.014798, 0.999677,-0.000000,-0.000000;;, + 49;4;-0.018250, 0.999602,-0.000000,-0.000000;;, + 50;4;-0.021810, 0.999524,-0.000000,-0.000000;;, + 51;4;-0.025369, 0.999446,-0.000000,-0.000000;;, + 52;4;-0.028821, 0.999371,-0.000000,-0.000000;;, + 53;4;-0.032064, 0.999300,-0.000000,-0.000000;;, + 54;4;-0.035010, 0.999236,-0.000000,-0.000000;;, + 55;4;-0.037588, 0.999180,-0.000000,-0.000000;;, + 56;4;-0.039742, 0.999133,-0.000000,-0.000000;;, + 57;4;-0.041437, 0.999096,-0.000000,-0.000000;;, + 58;4;-0.042652, 0.999069,-0.000000,-0.000000;;, + 59;4;-0.043379, 0.999053,-0.000000,-0.000000;;, + 60;4;-0.043619, 0.999048,-0.000000,-0.000000;;, + 61;4;-0.043616, 0.999053,-0.000000,-0.000000;;, + 62;4;-0.043594, 0.999067,-0.000000,-0.000000;;, + 63;4;-0.043536, 0.999089,-0.000000,-0.000000;;, + 64;4;-0.043427, 0.999117,-0.000000,-0.000000;;, + 65;4;-0.043250, 0.999151,-0.000000,-0.000000;;, + 66;4;-0.042989, 0.999191,-0.000000,-0.000000;;, + 67;4;-0.042627, 0.999235,-0.000000,-0.000000;;, + 68;4;-0.042144, 0.999283,-0.000000,-0.000000;;, + 69;4;-0.041519, 0.999336,-0.000000,-0.000000;;, + 70;4;-0.040726, 0.999391,-0.000000,-0.000000;;, + 71;4;-0.039733, 0.999450,-0.000000,-0.000000;;, + 72;4;-0.038501, 0.999511,-0.000000,-0.000000;;, + 73;4;-0.036980, 0.999575,-0.000000,-0.000000;;, + 74;4;-0.035101, 0.999640,-0.000000,-0.000000;;, + 75;4;-0.032770, 0.999707,-0.000000,-0.000000;;, + 76;4;-0.029842, 0.999774,-0.000000,-0.000000;;, + 77;4;-0.026086, 0.999841,-0.000000,-0.000000;;, + 78;4;-0.021070, 0.999906,-0.000000,-0.000000;;, + 79;4;-0.013794, 0.999964,-0.000000,-0.000000;;, + 80;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 81;4; 0.707107, 0.707107, 0.000000,-0.000000;;, + 82;4; 0.705874, 0.708245, 0.000000,-0.000000;;, + 83;4; 0.703907, 0.710101, 0.000000,-0.000000;;, + 84;4; 0.701752, 0.712152, 0.000000,-0.000000;;, + 85;4; 0.699533, 0.714271, 0.000000,-0.000000;;, + 86;4; 0.697308, 0.716402, 0.000000,-0.000000;;, + 87;4; 0.695107, 0.718513, 0.000000,-0.000000;;, + 88;4; 0.692951, 0.720584, 0.000000,-0.000000;;, + 89;4; 0.690857, 0.722597, 0.000000,-0.000000;;, + 90;4; 0.688837, 0.724539, 0.000000,-0.000000;;, + 91;4; 0.686904, 0.726399, 0.000000,-0.000000;;, + 92;4; 0.685070, 0.728163, 0.000000,-0.000000;;, + 93;4; 0.683348, 0.729820, 0.000000,-0.000000;;, + 94;4; 0.681750, 0.731358, 0.000000,-0.000000;;, + 95;4; 0.680291, 0.732761, 0.000000,-0.000000;;, + 96;4; 0.678987, 0.734015, 0.000000,-0.000000;;, + 97;4; 0.677857, 0.735101, 0.000000,-0.000000;;, + 98;4; 0.676923, 0.735999, 0.000000,-0.000000;;, + 99;4; 0.676211, 0.736682, 0.000000,-0.000000;;, + 100;4; 0.675753, 0.737121, 0.000000,-0.000000;;, + 101;4; 0.675590, 0.737277, 0.000000,-0.000000;;, + 102;4; 0.675764, 0.737111, 0.000000,-0.000000;;, + 103;4; 0.676289, 0.736609, 0.000000,-0.000000;;, + 104;4; 0.677167, 0.735768, 0.000000,-0.000000;;, + 105;4; 0.678392, 0.734596, 0.000000,-0.000000;;, + 106;4; 0.679948, 0.733105, 0.000000,-0.000000;;, + 107;4; 0.681811, 0.731323, 0.000000,-0.000000;;, + 108;4; 0.683939, 0.729285, 0.000000,-0.000000;;, + 109;4; 0.686283, 0.727042, 0.000000,-0.000000;;, + 110;4; 0.688777, 0.724654, 0.000000,-0.000000;;, + 111;4; 0.691348, 0.722192, 0.000000,-0.000000;;, + 112;4; 0.693920, 0.719730, 0.000000,-0.000000;;, + 113;4; 0.696414, 0.717343, 0.000000,-0.000000;;, + 114;4; 0.698758, 0.715099, 0.000000,-0.000000;;, + 115;4; 0.700886, 0.713062, 0.000000,-0.000000;;, + 116;4; 0.702749, 0.711279, 0.000000,-0.000000;;, + 117;4; 0.704305, 0.709789, 0.000000,-0.000000;;, + 118;4; 0.705530, 0.708616, 0.000000,-0.000000;;, + 119;4; 0.706408, 0.707776, 0.000000,-0.000000;;, + 120;4; 0.706933, 0.707273, 0.000000,-0.000000;;, + 121;4; 0.707107, 0.707107, 0.000000,-0.000000;;, + 122;4; 0.706933, 0.707273, 0.000000,-0.000000;;, + 123;4; 0.706408, 0.707776, 0.000000,-0.000000;;, + 124;4; 0.705530, 0.708616, 0.000000,-0.000000;;, + 125;4; 0.704305, 0.709789, 0.000000,-0.000000;;, + 126;4; 0.702749, 0.711279, 0.000000,-0.000000;;, + 127;4; 0.700886, 0.713062, 0.000000,-0.000000;;, + 128;4; 0.698758, 0.715099, 0.000000,-0.000000;;, + 129;4; 0.696414, 0.717343, 0.000000,-0.000000;;, + 130;4; 0.693920, 0.719730, 0.000000,-0.000000;;, + 131;4; 0.691348, 0.722192, 0.000000,-0.000000;;, + 132;4; 0.688777, 0.724654, 0.000000,-0.000000;;, + 133;4; 0.686283, 0.727042, 0.000000,-0.000000;;, + 134;4; 0.683939, 0.729285, 0.000000,-0.000000;;, + 135;4; 0.681811, 0.731323, 0.000000,-0.000000;;, + 136;4; 0.679948, 0.733105, 0.000000,-0.000000;;, + 137;4; 0.678392, 0.734596, 0.000000,-0.000000;;, + 138;4; 0.677167, 0.735768, 0.000000,-0.000000;;, + 139;4; 0.676289, 0.736609, 0.000000,-0.000000;;, + 140;4; 0.675764, 0.737111, 0.000000,-0.000000;;, + 141;4; 0.675590, 0.737277, 0.000000,-0.000000;;, + 142;4; 0.675753, 0.737121, 0.000000,-0.000000;;, + 143;4; 0.676211, 0.736682, 0.000000,-0.000000;;, + 144;4; 0.676923, 0.735999, 0.000000,-0.000000;;, + 145;4; 0.677857, 0.735101, 0.000000,-0.000000;;, + 146;4; 0.678987, 0.734015, 0.000000,-0.000000;;, + 147;4; 0.680291, 0.732761, 0.000000,-0.000000;;, + 148;4; 0.681750, 0.731357, 0.000000,-0.000000;;, + 149;4; 0.683348, 0.729820, 0.000000,-0.000000;;, + 150;4; 0.685070, 0.728163, 0.000000,-0.000000;;, + 151;4; 0.686904, 0.726398, 0.000000,-0.000000;;, + 152;4; 0.688837, 0.724539, 0.000000,-0.000000;;, + 153;4; 0.690857, 0.722596, 0.000000,-0.000000;;, + 154;4; 0.692951, 0.720583, 0.000000,-0.000000;;, + 155;4; 0.695107, 0.718512, 0.000000,-0.000000;;, + 156;4; 0.697308, 0.716401, 0.000000,-0.000000;;, + 157;4; 0.699533, 0.714270, 0.000000,-0.000000;;, + 158;4; 0.701752, 0.712151, 0.000000,-0.000000;;, + 159;4; 0.703907, 0.710100, 0.000000,-0.000000;;, + 160;4; 0.705874, 0.708244, 0.000000,-0.000000;;, + 161;4; 0.707107, 0.707107, 0.000000,-0.000000;;, + 162;4;-0.000000, 0.991445,-0.130526,-0.000000;;, + 163;4;-0.000000, 0.991445,-0.130526,-0.000000;;, + 164;4;-0.000000, 0.991445,-0.130526,-0.000000;;, + 165;4;-0.000000, 0.991445,-0.130526,-0.000000;;, + 166;4;-0.000000, 0.991445,-0.130526,-0.000000;;, + 167;4;-0.000000, 0.991445,-0.130526,-0.000000;;, + 168;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 169;4;-0.034052, 0.993234,-0.000000,-0.000000;;, + 170;4;-0.129904, 0.974175,-0.000000,-0.000000;;, + 171;4;-0.252901, 0.949704,-0.000000,-0.000000;;, + 172;4;-0.348675, 0.930646,-0.000000,-0.000000;;, + 173;4;-0.382683, 0.923880,-0.000000,-0.000000;;, + 174;4;-0.361005, 0.930646,-0.000000,-0.000000;;, + 175;4;-0.294618, 0.949704,-0.000000,-0.000000;;, + 176;4;-0.194899, 0.974175,-0.000000,-0.000000;;, + 177;4;-0.088939, 0.993234,-0.000000,-0.000000;;, + 178;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 179;4; 0.088939, 0.993234, 0.000000,-0.000000;;, + 180;4; 0.194899, 0.974175, 0.000000,-0.000000;;, + 181;4; 0.294618, 0.949704, 0.000000,-0.000000;;, + 182;4; 0.361005, 0.930646, 0.000000,-0.000000;;, + 183;4; 0.382683, 0.923880, 0.000000,-0.000000;;, + 184;4; 0.348675, 0.930646, 0.000000,-0.000000;;, + 185;4; 0.252901, 0.949704, 0.000000,-0.000000;;, + 186;4; 0.129903, 0.974175, 0.000000,-0.000000;;, + 187;4; 0.034052, 0.993233, 0.000000,-0.000000;;, + 188;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 189;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 190;4; 0.003877, 0.999915, 0.000000,-0.000000;;, + 191;4; 0.014798, 0.999677, 0.000000,-0.000000;;, + 192;4; 0.028821, 0.999371, 0.000000,-0.000000;;, + 193;4; 0.039742, 0.999133, 0.000000,-0.000000;;, + 194;4; 0.043619, 0.999048, 0.000000,-0.000000;;, + 195;4; 0.039742, 0.999133, 0.000000,-0.000000;;, + 196;4; 0.028821, 0.999371, 0.000000,-0.000000;;, + 197;4; 0.014798, 0.999677, 0.000000,-0.000000;;, + 198;4; 0.003877, 0.999915, 0.000000,-0.000000;;, + 199;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 200;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 201;4;-0.034052, 0.993233,-0.000000,-0.000000;;, + 202;4;-0.129903, 0.974175,-0.000000,-0.000000;;, + 203;4;-0.252901, 0.949704,-0.000000,-0.000000;;, + 204;4;-0.348675, 0.930646,-0.000000,-0.000000;;, + 205;4;-0.382683, 0.923880,-0.000000,-0.000000;;, + 206;4;-0.361005, 0.930646,-0.000000,-0.000000;;, + 207;4;-0.294618, 0.949704,-0.000000,-0.000000;;, + 208;4;-0.194899, 0.974175,-0.000000,-0.000000;;, + 209;4;-0.088939, 0.993234,-0.000000,-0.000000;;, + 210;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 211;4; 0.088939, 0.993234, 0.000000,-0.000000;;, + 212;4; 0.194899, 0.974175, 0.000000,-0.000000;;, + 213;4; 0.294618, 0.949704, 0.000000,-0.000000;;, + 214;4; 0.361005, 0.930646, 0.000000,-0.000000;;, + 215;4; 0.382683, 0.923880, 0.000000,-0.000000;;, + 216;4; 0.348699, 0.930646, 0.000000,-0.000000;;, + 217;4; 0.253041, 0.949703, 0.000000,-0.000000;;, + 218;4; 0.130122, 0.974173, 0.000000,-0.000000;;, + 219;4; 0.034158, 0.993233, 0.000000,-0.000000;;, + 220;4;-0.000000, 1.000000,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 0.999999;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 0.999999;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3;-1.000000, 0.000000,-0.000001;;, + 1;3;-1.000000, 0.000000,-0.000001;;, + 2;3;-1.000000,-0.000000,-0.000001;;, + 3;3;-1.000000,-0.000000,-0.000001;;, + 4;3;-1.000000,-0.000000,-0.000001;;, + 5;3;-1.000000,-0.000000,-0.000001;;, + 6;3;-1.000000,-0.000000,-0.000001;;, + 7;3;-1.000000, 0.000000,-0.000001;;, + 8;3;-1.000000,-0.000000,-0.000001;;, + 9;3;-1.000000,-0.000000,-0.000001;;, + 10;3;-1.000000,-0.000000,-0.000001;;, + 11;3;-1.000000,-0.000000,-0.000000;;, + 12;3;-1.000000,-0.000000,-0.000001;;, + 13;3;-1.000000, 0.000000,-0.000001;;, + 14;3;-1.000000,-0.000000,-0.000001;;, + 15;3;-1.000000,-0.000000,-0.000001;;, + 16;3;-1.000000,-0.000000,-0.000001;;, + 17;3;-1.000000,-0.000000,-0.000000;;, + 18;3;-1.000000, 0.000000,-0.000000;;, + 19;3;-1.000000,-0.000000,-0.000000;;, + 20;3;-1.000000, 0.000000,-0.000000;;, + 21;3;-1.000000,-0.000000,-0.000001;;, + 22;3;-1.000000, 0.000000,-0.000000;;, + 23;3;-1.000000,-0.000000,-0.000000;;, + 24;3;-1.000000,-0.000000,-0.000001;;, + 25;3;-1.000000,-0.000000,-0.000000;;, + 26;3;-1.000000,-0.000000,-0.000000;;, + 27;3;-1.000000, 0.000000,-0.000001;;, + 28;3;-1.000000,-0.000000,-0.000001;;, + 29;3;-1.000000,-0.000000,-0.000001;;, + 30;3;-1.000000,-0.000000,-0.000001;;, + 31;3;-1.000000,-0.000000,-0.000001;;, + 32;3;-1.000000,-0.000000,-0.000001;;, + 33;3;-1.000000, 0.000000,-0.000001;;, + 34;3;-1.000000,-0.000000,-0.000001;;, + 35;3;-1.000000,-0.000000,-0.000001;;, + 36;3;-1.000000,-0.000000,-0.000001;;, + 37;3;-1.000000,-0.000000,-0.000001;;, + 38;3;-1.000000,-0.000000,-0.000001;;, + 39;3;-1.000000, 0.000000,-0.000001;;, + 40;3;-1.000000, 0.000000,-0.000001;;, + 41;3;-1.000000, 0.000000,-0.000001;;, + 42;3;-1.000000,-0.000000,-0.000001;;, + 43;3;-1.000000,-0.000000,-0.000001;;, + 44;3;-1.000000,-0.000000,-0.000001;;, + 45;3;-1.000000,-0.000000,-0.000001;;, + 46;3;-1.000000,-0.000000,-0.000001;;, + 47;3;-1.000000, 0.000000,-0.000001;;, + 48;3;-1.000000,-0.000000,-0.000001;;, + 49;3;-1.000000,-0.000000,-0.000001;;, + 50;3;-1.000000,-0.000000,-0.000001;;, + 51;3;-1.000000,-0.000000,-0.000001;;, + 52;3;-1.000000,-0.000000,-0.000001;;, + 53;3;-1.000000, 0.000000,-0.000001;;, + 54;3;-1.000000,-0.000000,-0.000001;;, + 55;3;-1.000000,-0.000000,-0.000000;;, + 56;3;-1.000000,-0.000000,-0.000001;;, + 57;3;-1.000000,-0.000000,-0.000000;;, + 58;3;-1.000000, 0.000000,-0.000000;;, + 59;3;-1.000000,-0.000000,-0.000000;;, + 60;3;-1.000000, 0.000000,-0.000000;;, + 61;3;-1.000000, 0.000000,-0.000001;;, + 62;3;-1.000000,-0.000000,-0.000001;;, + 63;3;-1.000000,-0.000000,-0.000001;;, + 64;3;-1.000000, 0.000000,-0.000001;;, + 65;3;-1.000000,-0.000000,-0.000000;;, + 66;3;-1.000000,-0.000000,-0.000001;;, + 67;3;-1.000000,-0.000000,-0.000001;;, + 68;3;-1.000000, 0.000000,-0.000001;;, + 69;3;-1.000000,-0.000000,-0.000001;;, + 70;3;-1.000000,-0.000000,-0.000001;;, + 71;3;-1.000000,-0.000000,-0.000001;;, + 72;3;-1.000000,-0.000000,-0.000001;;, + 73;3;-1.000000, 0.000000,-0.000001;;, + 74;3;-1.000000,-0.000000,-0.000001;;, + 75;3;-1.000000, 0.000000,-0.000001;;, + 76;3;-1.000000,-0.000000,-0.000001;;, + 77;3;-1.000000,-0.000000,-0.000001;;, + 78;3;-1.000000, 0.000000,-0.000001;;, + 79;3;-1.000000,-0.000000,-0.000001;;, + 80;3;-1.000000, 0.000000,-0.000001;;, + 81;3;-1.000000, 0.000000,-0.000001;;, + 82;3;-1.000000,-0.000000,-0.000001;;, + 83;3;-1.000000,-0.000000,-0.000001;;, + 84;3;-1.000000,-0.000000,-0.000001;;, + 85;3;-1.000000,-0.000000,-0.000001;;, + 86;3;-1.000000,-0.000000,-0.000001;;, + 87;3;-1.000000,-0.000000,-0.000001;;, + 88;3;-1.000000,-0.000000,-0.000001;;, + 89;3;-1.000000,-0.000000,-0.000001;;, + 90;3;-1.000000,-0.000000,-0.000001;;, + 91;3;-1.000000,-0.000000,-0.000001;;, + 92;3;-1.000000,-0.000000,-0.000001;;, + 93;3;-1.000000,-0.000000,-0.000001;;, + 94;3;-1.000000,-0.000000,-0.000001;;, + 95;3;-1.000000,-0.000000,-0.000001;;, + 96;3;-1.000000,-0.000000,-0.000001;;, + 97;3;-1.000000,-0.000000,-0.000001;;, + 98;3;-1.000000,-0.000000,-0.000001;;, + 99;3;-1.000000,-0.000000,-0.000001;;, + 100;3;-1.000000,-0.000000,-0.000001;;, + 101;3;-1.000000,-0.000000,-0.000001;;, + 102;3;-1.000000,-0.000000,-0.000001;;, + 103;3;-1.000000,-0.000000,-0.000001;;, + 104;3;-1.000000,-0.000000,-0.000001;;, + 105;3;-1.000000,-0.000000,-0.000001;;, + 106;3;-1.000000,-0.000000,-0.000001;;, + 107;3;-1.000000,-0.000000,-0.000001;;, + 108;3;-1.000000,-0.000000,-0.000001;;, + 109;3;-1.000000,-0.000000,-0.000001;;, + 110;3;-1.000000,-0.000000,-0.000001;;, + 111;3;-1.000000,-0.000000,-0.000001;;, + 112;3;-1.000000,-0.000000,-0.000001;;, + 113;3;-1.000000,-0.000000,-0.000001;;, + 114;3;-1.000000,-0.000000,-0.000001;;, + 115;3;-1.000000,-0.000000,-0.000001;;, + 116;3;-1.000000,-0.000000,-0.000001;;, + 117;3;-1.000000,-0.000000,-0.000001;;, + 118;3;-1.000000,-0.000000,-0.000001;;, + 119;3;-1.000000,-0.000000,-0.000001;;, + 120;3;-1.000000,-0.000000,-0.000001;;, + 121;3;-1.000000, 0.000000,-0.000001;;, + 122;3;-1.000000,-0.000000,-0.000001;;, + 123;3;-1.000000,-0.000000,-0.000001;;, + 124;3;-1.000000,-0.000000,-0.000001;;, + 125;3;-1.000000,-0.000000,-0.000001;;, + 126;3;-1.000000,-0.000000,-0.000001;;, + 127;3;-1.000000,-0.000000,-0.000001;;, + 128;3;-1.000000,-0.000000,-0.000001;;, + 129;3;-1.000000,-0.000000,-0.000001;;, + 130;3;-1.000000,-0.000000,-0.000001;;, + 131;3;-1.000000,-0.000000,-0.000001;;, + 132;3;-1.000000,-0.000000,-0.000001;;, + 133;3;-1.000000,-0.000000,-0.000001;;, + 134;3;-1.000000,-0.000000,-0.000001;;, + 135;3;-1.000000,-0.000000,-0.000001;;, + 136;3;-1.000000,-0.000000,-0.000001;;, + 137;3;-1.000000,-0.000000,-0.000001;;, + 138;3;-1.000000,-0.000000,-0.000001;;, + 139;3;-1.000000,-0.000000,-0.000001;;, + 140;3;-1.000000,-0.000000,-0.000001;;, + 141;3;-1.000000,-0.000000,-0.000001;;, + 142;3;-1.000000,-0.000000,-0.000001;;, + 143;3;-1.000000,-0.000000,-0.000001;;, + 144;3;-1.000000,-0.000000,-0.000001;;, + 145;3;-1.000000,-0.000000,-0.000001;;, + 146;3;-1.000000,-0.000000,-0.000001;;, + 147;3;-1.000000,-0.000000,-0.000001;;, + 148;3;-1.000000,-0.000000,-0.000001;;, + 149;3;-1.000000,-0.000000,-0.000001;;, + 150;3;-1.000000,-0.000000,-0.000001;;, + 151;3;-1.000000,-0.000000,-0.000001;;, + 152;3;-1.000000,-0.000000,-0.000001;;, + 153;3;-1.000000,-0.000000,-0.000001;;, + 154;3;-1.000000,-0.000000,-0.000001;;, + 155;3;-1.000000,-0.000000,-0.000001;;, + 156;3;-1.000000,-0.000000,-0.000001;;, + 157;3;-1.000000,-0.000000,-0.000001;;, + 158;3;-1.000000,-0.000000,-0.000001;;, + 159;3;-1.000000,-0.000000,-0.000001;;, + 160;3;-1.000000,-0.000000,-0.000001;;, + 161;3;-1.000000, 0.000000,-0.000001;;, + 162;3;-1.000000,-0.000000,-0.000001;;, + 163;3;-1.000000,-0.000000,-0.000001;;, + 164;3;-1.000000,-0.000000,-0.000001;;, + 165;3;-1.000000,-0.000000,-0.000001;;, + 166;3;-1.000000,-0.000000,-0.000001;;, + 167;3;-1.000000,-0.000000,-0.000001;;, + 168;3;-1.000000, 0.000000,-0.000001;;, + 169;3;-1.000000, 0.000000,-0.000001;;, + 170;3;-1.000000, 0.000000,-0.000001;;, + 171;3;-1.000000, 0.000000,-0.000001;;, + 172;3;-1.000000, 0.000000,-0.000001;;, + 173;3;-1.000000, 0.000000,-0.000001;;, + 174;3;-1.000000, 0.000000,-0.000001;;, + 175;3;-1.000000, 0.000000,-0.000001;;, + 176;3;-1.000000, 0.000000,-0.000001;;, + 177;3;-1.000000, 0.000000,-0.000001;;, + 178;3;-1.000000, 0.000000,-0.000001;;, + 179;3;-1.000000, 0.000000,-0.000001;;, + 180;3;-1.000000, 0.000000,-0.000001;;, + 181;3;-1.000000, 0.000000,-0.000001;;, + 182;3;-1.000000, 0.000000,-0.000001;;, + 183;3;-1.000000, 0.000000,-0.000001;;, + 184;3;-1.000000, 0.000000,-0.000001;;, + 185;3;-1.000000, 0.000000,-0.000001;;, + 186;3;-1.000000, 0.000000,-0.000001;;, + 187;3;-1.000000, 0.000000,-0.000001;;, + 188;3;-1.000000, 0.000000,-0.000001;;, + 189;3;-1.000000, 0.000000,-0.000001;;, + 190;3;-1.000000,-0.000000,-0.000001;;, + 191;3;-1.000000,-0.000000,-0.000001;;, + 192;3;-1.000000,-0.000000,-0.000001;;, + 193;3;-1.000000, 0.000000,-0.000001;;, + 194;3;-1.000000, 0.000000,-0.000000;;, + 195;3;-1.000000, 0.000000,-0.000001;;, + 196;3;-1.000000,-0.000000,-0.000000;;, + 197;3;-1.000000,-0.000000,-0.000001;;, + 198;3;-1.000000,-0.000000,-0.000001;;, + 199;3;-1.000000, 0.000000,-0.000001;;, + 200;3;-1.000000, 0.000000,-0.000001;;, + 201;3;-1.000000,-0.000000,-0.000001;;, + 202;3;-1.000000,-0.000000,-0.000001;;, + 203;3;-1.000000,-0.000000,-0.000001;;, + 204;3;-1.000000,-0.000000,-0.000000;;, + 205;3;-1.000000, 0.000000,-0.000000;;, + 206;3;-1.000000,-0.000000,-0.000001;;, + 207;3;-1.000000,-0.000000,-0.000001;;, + 208;3;-1.000000,-0.000000,-0.000001;;, + 209;3;-1.000000, 0.000000,-0.000000;;, + 210;3;-1.000000, 0.000000,-0.000000;;, + 211;3;-1.000000, 0.000000,-0.000001;;, + 212;3;-1.000000,-0.000000,-0.000001;;, + 213;3;-1.000000,-0.000000,-0.000001;;, + 214;3;-1.000000,-0.000000,-0.000001;;, + 215;3;-1.000000, 0.000000,-0.000000;;, + 216;3;-1.000000,-0.000000,-0.000000;;, + 217;3;-1.000000,-0.000000,-0.000000;;, + 218;3;-1.000000,-0.000000,-0.000001;;, + 219;3;-1.000000,-0.000000,-0.000001;;, + 220;3;-1.000000, 0.000000,-0.000001;;; + } + } + Animation { + {Armature_Cape} + AnimationKey { // Rotation + 0; + 221; + 0;4; 0.000001, 1.000000, 0.000000,-0.000000;;, + 1;4;-0.000274, 1.000000, 0.000000,-0.000000;;, + 2;4;-0.001107, 1.000000, 0.000000,-0.000000;;, + 3;4;-0.002500, 1.000000, 0.000000,-0.000000;;, + 4;4;-0.004443, 1.000000, 0.000000,-0.000000;;, + 5;4;-0.006913, 1.000000, 0.000000,-0.000000;;, + 6;4;-0.009867, 1.000000, 0.000000,-0.000000;;, + 7;4;-0.013244, 1.000000, 0.000000,-0.000000;;, + 8;4;-0.016962, 1.000000, 0.000000,-0.000000;;, + 9;4;-0.020919, 1.000000, 0.000000,-0.000000;;, + 10;4;-0.024999, 1.000000, 0.000000,-0.000000;;, + 11;4;-0.029079, 1.000000, 0.000000,-0.000000;;, + 12;4;-0.033036, 1.000000, 0.000000,-0.000000;;, + 13;4;-0.036753, 1.000000, 0.000000,-0.000000;;, + 14;4;-0.040130, 1.000000, 0.000000,-0.000000;;, + 15;4;-0.043085, 1.000000, 0.000000,-0.000000;;, + 16;4;-0.045554, 1.000000, 0.000000,-0.000000;;, + 17;4;-0.047498, 1.000000, 0.000000,-0.000000;;, + 18;4;-0.048890, 1.000000, 0.000000,-0.000000;;, + 19;4;-0.049723, 1.000000, 0.000000,-0.000000;;, + 20;4;-0.049999, 1.000000, 0.000000,-0.000000;;, + 21;4;-0.049723, 1.000000, 0.000000,-0.000000;;, + 22;4;-0.048890, 1.000000, 0.000000,-0.000000;;, + 23;4;-0.047498, 1.000000, 0.000000,-0.000000;;, + 24;4;-0.045554, 1.000000, 0.000000,-0.000000;;, + 25;4;-0.043085, 1.000000, 0.000000,-0.000000;;, + 26;4;-0.040130, 1.000000, 0.000000,-0.000000;;, + 27;4;-0.036753, 1.000000, 0.000000,-0.000000;;, + 28;4;-0.033036, 1.000000, 0.000000,-0.000000;;, + 29;4;-0.029079, 1.000000, 0.000000,-0.000000;;, + 30;4;-0.024999, 1.000000, 0.000000,-0.000000;;, + 31;4;-0.020919, 1.000000, 0.000000,-0.000000;;, + 32;4;-0.016962, 1.000000, 0.000000,-0.000000;;, + 33;4;-0.013244, 1.000000, 0.000000,-0.000000;;, + 34;4;-0.009867, 1.000000, 0.000000,-0.000000;;, + 35;4;-0.006913, 1.000000, 0.000000,-0.000000;;, + 36;4;-0.004443, 1.000000, 0.000000,-0.000000;;, + 37;4;-0.002500, 1.000000, 0.000000,-0.000000;;, + 38;4;-0.001107, 1.000000, 0.000000,-0.000000;;, + 39;4;-0.000274, 1.000000, 0.000000,-0.000000;;, + 40;4; 0.000001, 1.000000, 0.000000,-0.000000;;, + 41;4;-0.000274, 1.000000, 0.000000,-0.000000;;, + 42;4;-0.001107, 1.000000, 0.000000,-0.000000;;, + 43;4;-0.002500, 1.000000, 0.000000,-0.000000;;, + 44;4;-0.004443, 1.000000, 0.000000,-0.000000;;, + 45;4;-0.006913, 1.000000, 0.000000,-0.000000;;, + 46;4;-0.009867, 1.000000, 0.000000,-0.000000;;, + 47;4;-0.013244, 1.000000, 0.000000,-0.000000;;, + 48;4;-0.016962, 1.000000, 0.000000,-0.000000;;, + 49;4;-0.020919, 1.000000, 0.000000,-0.000000;;, + 50;4;-0.024999, 1.000000, 0.000000,-0.000000;;, + 51;4;-0.029079, 1.000000, 0.000000,-0.000000;;, + 52;4;-0.033036, 1.000000, 0.000000,-0.000000;;, + 53;4;-0.036753, 1.000000, 0.000000,-0.000000;;, + 54;4;-0.040130, 1.000000, 0.000000,-0.000000;;, + 55;4;-0.043085, 1.000000, 0.000000,-0.000000;;, + 56;4;-0.045554, 1.000000, 0.000000,-0.000000;;, + 57;4;-0.047498, 1.000000, 0.000000,-0.000000;;, + 58;4;-0.048890, 1.000000, 0.000000,-0.000000;;, + 59;4;-0.049723, 1.000000, 0.000000,-0.000000;;, + 60;4;-0.049999, 1.000000, 0.000000,-0.000000;;, + 61;4;-0.049740, 1.000000, 0.000000,-0.000000;;, + 62;4;-0.049012, 1.000000, 0.000000,-0.000000;;, + 63;4;-0.047878, 1.000000, 0.000000,-0.000000;;, + 64;4;-0.046390, 1.000000, 0.000000,-0.000000;;, + 65;4;-0.044588, 1.000000, 0.000000,-0.000000;;, + 66;4;-0.042508, 1.000000, 0.000000,-0.000000;;, + 67;4;-0.040180, 1.000000, 0.000000,-0.000000;;, + 68;4;-0.037629, 1.000000, 0.000000,-0.000000;;, + 69;4;-0.034879, 1.000000, 0.000000,-0.000000;;, + 70;4;-0.031952, 1.000000, 0.000000,-0.000000;;, + 71;4;-0.028867, 1.000000, 0.000000,-0.000000;;, + 72;4;-0.025645, 1.000000, 0.000000,-0.000000;;, + 73;4;-0.022306, 1.000000, 0.000000,-0.000000;;, + 74;4;-0.018872, 1.000000, 0.000000,-0.000000;;, + 75;4;-0.015371, 1.000000, 0.000000,-0.000000;;, + 76;4;-0.011839, 1.000000, 0.000000,-0.000000;;, + 77;4;-0.008329, 1.000000, 0.000000,-0.000000;;, + 78;4;-0.004935, 1.000000, 0.000000,-0.000000;;, + 79;4;-0.001869, 1.000000, 0.000000,-0.000000;;, + 80;4; 0.000001, 1.000000, 0.000000,-0.000000;;, + 81;4; 0.000001, 1.000000, 0.000000,-0.000000;;, + 82;4;-0.001869, 1.000000, 0.000000,-0.000000;;, + 83;4;-0.004935, 1.000000, 0.000000,-0.000000;;, + 84;4;-0.008329, 1.000000, 0.000000,-0.000000;;, + 85;4;-0.011839, 1.000000, 0.000000,-0.000000;;, + 86;4;-0.015371, 1.000000, 0.000000,-0.000000;;, + 87;4;-0.018872, 1.000000, 0.000000,-0.000000;;, + 88;4;-0.022306, 1.000000, 0.000000,-0.000000;;, + 89;4;-0.025645, 1.000000, 0.000000,-0.000000;;, + 90;4;-0.028867, 1.000000, 0.000000,-0.000000;;, + 91;4;-0.031952, 1.000000, 0.000000,-0.000000;;, + 92;4;-0.034879, 1.000000, 0.000000,-0.000000;;, + 93;4;-0.037629, 1.000000, 0.000000,-0.000000;;, + 94;4;-0.040180, 1.000000, 0.000000,-0.000000;;, + 95;4;-0.042508, 1.000000, 0.000000,-0.000000;;, + 96;4;-0.044588, 1.000000, 0.000000,-0.000000;;, + 97;4;-0.046390, 1.000000, 0.000000,-0.000000;;, + 98;4;-0.047878, 1.000000, 0.000000,-0.000000;;, + 99;4;-0.049012, 1.000000, 0.000000,-0.000000;;, + 100;4;-0.049740, 1.000000, 0.000000,-0.000000;;, + 101;4;-0.049999, 1.000000, 0.000000,-0.000000;;, + 102;4;-0.049723, 1.000000, 0.000000,-0.000000;;, + 103;4;-0.048890, 1.000000, 0.000000,-0.000000;;, + 104;4;-0.047498, 1.000000, 0.000000,-0.000000;;, + 105;4;-0.045554, 1.000000, 0.000000,-0.000000;;, + 106;4;-0.043085, 1.000000, 0.000000,-0.000000;;, + 107;4;-0.040130, 1.000000, 0.000000,-0.000000;;, + 108;4;-0.036753, 1.000000, 0.000000,-0.000000;;, + 109;4;-0.033036, 1.000000, 0.000000,-0.000000;;, + 110;4;-0.029079, 1.000000, 0.000000,-0.000000;;, + 111;4;-0.024999, 1.000000, 0.000000,-0.000000;;, + 112;4;-0.020919, 1.000000, 0.000000,-0.000000;;, + 113;4;-0.016962, 1.000000, 0.000000,-0.000000;;, + 114;4;-0.013244, 1.000000, 0.000000,-0.000000;;, + 115;4;-0.009867, 1.000000, 0.000000,-0.000000;;, + 116;4;-0.006913, 1.000000, 0.000000,-0.000000;;, + 117;4;-0.004443, 1.000000, 0.000000,-0.000000;;, + 118;4;-0.002500, 1.000000, 0.000000,-0.000000;;, + 119;4;-0.001107, 1.000000, 0.000000,-0.000000;;, + 120;4;-0.000274, 1.000000, 0.000000,-0.000000;;, + 121;4; 0.000001, 1.000000, 0.000000,-0.000000;;, + 122;4;-0.000274, 1.000000, 0.000000,-0.000000;;, + 123;4;-0.001107, 1.000000, 0.000000,-0.000000;;, + 124;4;-0.002500, 1.000000, 0.000000,-0.000000;;, + 125;4;-0.004443, 1.000000, 0.000000,-0.000000;;, + 126;4;-0.006913, 1.000000, 0.000000,-0.000000;;, + 127;4;-0.009867, 1.000000, 0.000000,-0.000000;;, + 128;4;-0.013244, 1.000000, 0.000000,-0.000000;;, + 129;4;-0.016962, 1.000000, 0.000000,-0.000000;;, + 130;4;-0.020919, 1.000000, 0.000000,-0.000000;;, + 131;4;-0.024999, 1.000000, 0.000000,-0.000000;;, + 132;4;-0.029079, 1.000000, 0.000000,-0.000000;;, + 133;4;-0.033036, 1.000000, 0.000000,-0.000000;;, + 134;4;-0.036753, 1.000000, 0.000000,-0.000000;;, + 135;4;-0.040130, 1.000000, 0.000000,-0.000000;;, + 136;4;-0.043085, 1.000000, 0.000000,-0.000000;;, + 137;4;-0.045554, 1.000000, 0.000000,-0.000000;;, + 138;4;-0.047498, 1.000000, 0.000000,-0.000000;;, + 139;4;-0.048890, 1.000000, 0.000000,-0.000000;;, + 140;4;-0.049723, 1.000000, 0.000000,-0.000000;;, + 141;4;-0.049999, 1.000000, 0.000000,-0.000000;;, + 142;4;-0.049995, 1.000000, 0.000000,-0.000000;;, + 143;4;-0.049970, 1.000000, 0.000000,-0.000000;;, + 144;4;-0.049904, 1.000000, 0.000000,-0.000000;;, + 145;4;-0.049779, 1.000000, 0.000000,-0.000000;;, + 146;4;-0.049577, 1.000000, 0.000000,-0.000000;;, + 147;4;-0.049280, 1.000000, 0.000000,-0.000000;;, + 148;4;-0.048868, 1.000000, 0.000000,-0.000000;;, + 149;4;-0.048320, 1.000000, 0.000000,-0.000000;;, + 150;4;-0.047610, 1.000000, 0.000000,-0.000000;;, + 151;4;-0.046710, 1.000000, 0.000000,-0.000000;;, + 152;4;-0.045583, 1.000000, 0.000000,-0.000000;;, + 153;4;-0.044186, 1.000000, 0.000000,-0.000000;;, + 154;4;-0.042460, 1.000000, 0.000000,-0.000000;;, + 155;4;-0.040330, 1.000000, 0.000000,-0.000000;;, + 156;4;-0.037685, 1.000000, 0.000000,-0.000000;;, + 157;4;-0.034364, 1.000000, 0.000000,-0.000000;;, + 158;4;-0.030099, 1.000000, 0.000000,-0.000000;;, + 159;4;-0.024395, 1.000000, 0.000000,-0.000000;;, + 160;4;-0.016088, 1.000000, 0.000000,-0.000000;;, + 161;4; 0.000001, 1.000000, 0.000000,-0.000000;;, + 162;4; 1.000001, 0.999999,-0.000000,-0.000000;;, + 163;4; 1.000001, 0.999999,-0.000000,-0.000000;;, + 164;4; 1.000001, 0.999999,-0.000000,-0.000000;;, + 165;4; 1.000001, 0.999999,-0.000000,-0.000000;;, + 166;4; 1.000001, 0.999999,-0.000000,-0.000000;;, + 167;4; 1.000001, 0.999999,-0.000000,-0.000000;;, + 168;4; 0.000001, 1.000000, 0.000000,-0.000000;;, + 169;4;-0.147005, 1.000000, 0.000000,-0.000000;;, + 170;4;-0.239050, 1.000000, 0.000000,-0.000000;;, + 171;4;-0.283788, 1.000000, 0.000000,-0.000000;;, + 172;4;-0.298244, 1.000000, 0.000000,-0.000000;;, + 173;4;-0.299999, 1.000000, 0.000000,-0.000000;;, + 174;4;-0.273332, 1.000000, 0.000000,-0.000000;;, + 175;4;-0.198220, 1.000000, 0.000000,-0.000000;;, + 176;4;-0.101777, 1.000000, 0.000000,-0.000000;;, + 177;4;-0.026665, 1.000000, 0.000000,-0.000000;;, + 178;4; 0.000001, 1.000000, 0.000000,-0.000000;;, + 179;4;-0.026665, 1.000000, 0.000000,-0.000000;;, + 180;4;-0.101777, 1.000000, 0.000000,-0.000000;;, + 181;4;-0.198220, 1.000000, 0.000000,-0.000000;;, + 182;4;-0.273332, 1.000000, 0.000000,-0.000000;;, + 183;4;-0.299999, 1.000000, 0.000000,-0.000000;;, + 184;4;-0.273336, 1.000000, 0.000000,-0.000000;;, + 185;4;-0.198243, 1.000000, 0.000000,-0.000000;;, + 186;4;-0.101812, 1.000000, 0.000000,-0.000000;;, + 187;4;-0.026682, 1.000000, 0.000000,-0.000000;;, + 188;4; 0.000001, 1.000000, 0.000000,-0.000000;;, + 189;4; 0.000001, 1.000000, 0.000000,-0.000000;;, + 190;4;-0.008888, 1.000000, 0.000000,-0.000000;;, + 191;4;-0.033926, 1.000000, 0.000000,-0.000000;;, + 192;4;-0.066073, 1.000000, 0.000000,-0.000000;;, + 193;4;-0.091110, 1.000000, 0.000000,-0.000000;;, + 194;4;-0.099999, 1.000000, 0.000000,-0.000000;;, + 195;4;-0.091110, 1.000000, 0.000000,-0.000000;;, + 196;4;-0.066073, 1.000000, 0.000000,-0.000000;;, + 197;4;-0.033926, 1.000000, 0.000000,-0.000000;;, + 198;4;-0.008888, 1.000000, 0.000000,-0.000000;;, + 199;4; 0.000001, 1.000000, 0.000000,-0.000000;;, + 200;4; 0.000001, 1.000000, 0.000000,-0.000000;;, + 201;4;-0.026681, 1.000000, 0.000000,-0.000000;;, + 202;4;-0.101802, 1.000000, 0.000000,-0.000000;;, + 203;4;-0.198227, 1.000000, 0.000000,-0.000000;;, + 204;4;-0.273328, 1.000000, 0.000000,-0.000000;;, + 205;4;-0.299999, 1.000000, 0.000000,-0.000000;;, + 206;4;-0.291107, 1.000000, 0.000000,-0.000000;;, + 207;4;-0.266067, 1.000000, 0.000000,-0.000000;;, + 208;4;-0.233922, 1.000000, 0.000000,-0.000000;;, + 209;4;-0.208887, 1.000000, 0.000000,-0.000000;;, + 210;4;-0.199999, 1.000000, 0.000000,-0.000000;;, + 211;4;-0.208887, 1.000000, 0.000000,-0.000000;;, + 212;4;-0.233922, 1.000000, 0.000000,-0.000000;;, + 213;4;-0.266067, 1.000000, 0.000000,-0.000000;;, + 214;4;-0.291107, 1.000000, 0.000000,-0.000000;;, + 215;4;-0.299999, 1.000000, 0.000000,-0.000000;;, + 216;4;-0.273340, 1.000000, 0.000000,-0.000000;;, + 217;4;-0.198295, 1.000000, 0.000000,-0.000000;;, + 218;4;-0.101908, 1.000000, 0.000000,-0.000000;;, + 219;4;-0.026732, 1.000000, 0.000000,-0.000000;;, + 220;4; 0.000001, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3; 0.000000, 6.750000, 0.976707;;, + 1;3; 0.000000, 6.750000, 0.976707;;, + 2;3; 0.000000, 6.750000, 0.976707;;, + 3;3; 0.000000, 6.750000, 0.976707;;, + 4;3; 0.000000, 6.750000, 0.976707;;, + 5;3; 0.000000, 6.750000, 0.976707;;, + 6;3; 0.000000, 6.750000, 0.976707;;, + 7;3; 0.000000, 6.750000, 0.976707;;, + 8;3; 0.000000, 6.750000, 0.976707;;, + 9;3; 0.000000, 6.750000, 0.976707;;, + 10;3; 0.000000, 6.750000, 0.976707;;, + 11;3; 0.000000, 6.750000, 0.976707;;, + 12;3; 0.000000, 6.750000, 0.976707;;, + 13;3; 0.000000, 6.750000, 0.976707;;, + 14;3; 0.000000, 6.750000, 0.976707;;, + 15;3; 0.000000, 6.750000, 0.976707;;, + 16;3; 0.000000, 6.750000, 0.976707;;, + 17;3; 0.000000, 6.750000, 0.976707;;, + 18;3; 0.000000, 6.750000, 0.976707;;, + 19;3; 0.000000, 6.750000, 0.976707;;, + 20;3; 0.000000, 6.750000, 0.976707;;, + 21;3; 0.000000, 6.750000, 0.976707;;, + 22;3; 0.000000, 6.750000, 0.976707;;, + 23;3; 0.000000, 6.750000, 0.976707;;, + 24;3; 0.000000, 6.750000, 0.976707;;, + 25;3; 0.000000, 6.750000, 0.976707;;, + 26;3; 0.000000, 6.750000, 0.976707;;, + 27;3; 0.000000, 6.750000, 0.976707;;, + 28;3; 0.000000, 6.750000, 0.976707;;, + 29;3; 0.000000, 6.750000, 0.976707;;, + 30;3; 0.000000, 6.750000, 0.976707;;, + 31;3; 0.000000, 6.750000, 0.976707;;, + 32;3; 0.000000, 6.750000, 0.976707;;, + 33;3; 0.000000, 6.750000, 0.976707;;, + 34;3; 0.000000, 6.750000, 0.976707;;, + 35;3; 0.000000, 6.750000, 0.976707;;, + 36;3; 0.000000, 6.750000, 0.976707;;, + 37;3; 0.000000, 6.750000, 0.976707;;, + 38;3; 0.000000, 6.750000, 0.976707;;, + 39;3; 0.000000, 6.750000, 0.976707;;, + 40;3; 0.000000, 6.750000, 0.976707;;, + 41;3; 0.000000, 6.750000, 0.976707;;, + 42;3; 0.000000, 6.750000, 0.976707;;, + 43;3; 0.000000, 6.750000, 0.976707;;, + 44;3; 0.000000, 6.750000, 0.976707;;, + 45;3; 0.000000, 6.750000, 0.976707;;, + 46;3; 0.000000, 6.750000, 0.976707;;, + 47;3; 0.000000, 6.750000, 0.976707;;, + 48;3; 0.000000, 6.750000, 0.976707;;, + 49;3; 0.000000, 6.750000, 0.976707;;, + 50;3; 0.000000, 6.750000, 0.976707;;, + 51;3; 0.000000, 6.750000, 0.976707;;, + 52;3; 0.000000, 6.750000, 0.976707;;, + 53;3; 0.000000, 6.750000, 0.976707;;, + 54;3; 0.000000, 6.750000, 0.976707;;, + 55;3; 0.000000, 6.750000, 0.976707;;, + 56;3; 0.000000, 6.750000, 0.976707;;, + 57;3; 0.000000, 6.750000, 0.976707;;, + 58;3; 0.000000, 6.750000, 0.976707;;, + 59;3; 0.000000, 6.750000, 0.976707;;, + 60;3; 0.000000, 6.750000, 0.976707;;, + 61;3; 0.000000, 6.750000, 0.976707;;, + 62;3; 0.000000, 6.750000, 0.976707;;, + 63;3; 0.000000, 6.750000, 0.976707;;, + 64;3; 0.000000, 6.750000, 0.976707;;, + 65;3; 0.000000, 6.750000, 0.976707;;, + 66;3; 0.000000, 6.750000, 0.976707;;, + 67;3; 0.000000, 6.750000, 0.976707;;, + 68;3; 0.000000, 6.750000, 0.976707;;, + 69;3; 0.000000, 6.750000, 0.976707;;, + 70;3; 0.000000, 6.750000, 0.976707;;, + 71;3; 0.000000, 6.750000, 0.976707;;, + 72;3; 0.000000, 6.750000, 0.976707;;, + 73;3; 0.000000, 6.750000, 0.976707;;, + 74;3; 0.000000, 6.750000, 0.976707;;, + 75;3; 0.000000, 6.750000, 0.976707;;, + 76;3; 0.000000, 6.750000, 0.976707;;, + 77;3; 0.000000, 6.750000, 0.976707;;, + 78;3; 0.000000, 6.750000, 0.976707;;, + 79;3; 0.000000, 6.750000, 0.976707;;, + 80;3; 0.000000, 6.750000, 0.976707;;, + 81;3; 0.000000, 6.750000, 0.976707;;, + 82;3; 0.000000, 6.750000, 0.976707;;, + 83;3; 0.000000, 6.750000, 0.976707;;, + 84;3; 0.000000, 6.750000, 0.976707;;, + 85;3; 0.000000, 6.750000, 0.976707;;, + 86;3; 0.000000, 6.750000, 0.976707;;, + 87;3; 0.000000, 6.750000, 0.976707;;, + 88;3; 0.000000, 6.750000, 0.976707;;, + 89;3; 0.000000, 6.750000, 0.976707;;, + 90;3; 0.000000, 6.750000, 0.976707;;, + 91;3; 0.000000, 6.750000, 0.976707;;, + 92;3; 0.000000, 6.750000, 0.976707;;, + 93;3; 0.000000, 6.750000, 0.976707;;, + 94;3; 0.000000, 6.750000, 0.976707;;, + 95;3; 0.000000, 6.750000, 0.976707;;, + 96;3; 0.000000, 6.750000, 0.976707;;, + 97;3; 0.000000, 6.750000, 0.976707;;, + 98;3; 0.000000, 6.750000, 0.976707;;, + 99;3; 0.000000, 6.750000, 0.976707;;, + 100;3; 0.000000, 6.750000, 0.976707;;, + 101;3; 0.000000, 6.750000, 0.976707;;, + 102;3; 0.000000, 6.750000, 0.976707;;, + 103;3; 0.000000, 6.750000, 0.976707;;, + 104;3; 0.000000, 6.750000, 0.976707;;, + 105;3; 0.000000, 6.750000, 0.976707;;, + 106;3; 0.000000, 6.750000, 0.976707;;, + 107;3; 0.000000, 6.750000, 0.976707;;, + 108;3; 0.000000, 6.750000, 0.976707;;, + 109;3; 0.000000, 6.750000, 0.976707;;, + 110;3; 0.000000, 6.750000, 0.976707;;, + 111;3; 0.000000, 6.750000, 0.976707;;, + 112;3; 0.000000, 6.750000, 0.976707;;, + 113;3; 0.000000, 6.750000, 0.976707;;, + 114;3; 0.000000, 6.750000, 0.976707;;, + 115;3; 0.000000, 6.750000, 0.976707;;, + 116;3; 0.000000, 6.750000, 0.976707;;, + 117;3; 0.000000, 6.750000, 0.976707;;, + 118;3; 0.000000, 6.750000, 0.976707;;, + 119;3; 0.000000, 6.750000, 0.976707;;, + 120;3; 0.000000, 6.750000, 0.976707;;, + 121;3; 0.000000, 6.750000, 0.976707;;, + 122;3; 0.000000, 6.750000, 0.976707;;, + 123;3; 0.000000, 6.750000, 0.976707;;, + 124;3; 0.000000, 6.750000, 0.976707;;, + 125;3; 0.000000, 6.750000, 0.976707;;, + 126;3; 0.000000, 6.750000, 0.976707;;, + 127;3; 0.000000, 6.750000, 0.976707;;, + 128;3; 0.000000, 6.750000, 0.976707;;, + 129;3; 0.000000, 6.750000, 0.976707;;, + 130;3; 0.000000, 6.750000, 0.976707;;, + 131;3; 0.000000, 6.750000, 0.976707;;, + 132;3; 0.000000, 6.750000, 0.976707;;, + 133;3; 0.000000, 6.750000, 0.976707;;, + 134;3; 0.000000, 6.750000, 0.976707;;, + 135;3; 0.000000, 6.750000, 0.976707;;, + 136;3; 0.000000, 6.750000, 0.976707;;, + 137;3; 0.000000, 6.750000, 0.976707;;, + 138;3; 0.000000, 6.750000, 0.976707;;, + 139;3; 0.000000, 6.750000, 0.976707;;, + 140;3; 0.000000, 6.750000, 0.976707;;, + 141;3; 0.000000, 6.750000, 0.976707;;, + 142;3; 0.000000, 6.750000, 0.976707;;, + 143;3; 0.000000, 6.750000, 0.976707;;, + 144;3; 0.000000, 6.750000, 0.976707;;, + 145;3; 0.000000, 6.750000, 0.976707;;, + 146;3; 0.000000, 6.750000, 0.976707;;, + 147;3; 0.000000, 6.750000, 0.976707;;, + 148;3; 0.000000, 6.750000, 0.976707;;, + 149;3; 0.000000, 6.750000, 0.976707;;, + 150;3; 0.000000, 6.750000, 0.976707;;, + 151;3; 0.000000, 6.750000, 0.976707;;, + 152;3; 0.000000, 6.750000, 0.976707;;, + 153;3; 0.000000, 6.750000, 0.976707;;, + 154;3; 0.000000, 6.750000, 0.976707;;, + 155;3; 0.000000, 6.750000, 0.976707;;, + 156;3; 0.000000, 6.750000, 0.976707;;, + 157;3; 0.000000, 6.750000, 0.976707;;, + 158;3; 0.000000, 6.750000, 0.976707;;, + 159;3; 0.000000, 6.750000, 0.976707;;, + 160;3; 0.000000, 6.750000, 0.976707;;, + 161;3; 0.000000, 6.750000, 0.976707;;, + 162;3; 0.000000, 6.750000, 0.976707;;, + 163;3; 0.000000, 6.750000, 0.976707;;, + 164;3; 0.000000, 6.750000, 0.976707;;, + 165;3; 0.000000, 6.750000, 0.976707;;, + 166;3; 0.000000, 6.750000, 0.976707;;, + 167;3; 0.000000, 6.750000, 0.976707;;, + 168;3; 0.000000, 6.750000, 0.976707;;, + 169;3; 0.000000, 6.750000, 0.976707;;, + 170;3; 0.000000, 6.750000, 0.976707;;, + 171;3; 0.000000, 6.750000, 0.976707;;, + 172;3; 0.000000, 6.750000, 0.976707;;, + 173;3; 0.000000, 6.750000, 0.976707;;, + 174;3; 0.000000, 6.750000, 0.976707;;, + 175;3; 0.000000, 6.750000, 0.976707;;, + 176;3; 0.000000, 6.750000, 0.976707;;, + 177;3; 0.000000, 6.750000, 0.976707;;, + 178;3; 0.000000, 6.750000, 0.976707;;, + 179;3; 0.000000, 6.750000, 0.976707;;, + 180;3; 0.000000, 6.750000, 0.976707;;, + 181;3; 0.000000, 6.750000, 0.976707;;, + 182;3; 0.000000, 6.750000, 0.976707;;, + 183;3; 0.000000, 6.750000, 0.976707;;, + 184;3; 0.000000, 6.750000, 0.976707;;, + 185;3; 0.000000, 6.750000, 0.976707;;, + 186;3; 0.000000, 6.750000, 0.976707;;, + 187;3; 0.000000, 6.750000, 0.976707;;, + 188;3; 0.000000, 6.750000, 0.976707;;, + 189;3; 0.000000, 6.750000, 0.976707;;, + 190;3; 0.000000, 6.750000, 0.976707;;, + 191;3; 0.000000, 6.750000, 0.976707;;, + 192;3; 0.000000, 6.750000, 0.976707;;, + 193;3; 0.000000, 6.750000, 0.976707;;, + 194;3; 0.000000, 6.750000, 0.976707;;, + 195;3; 0.000000, 6.750000, 0.976707;;, + 196;3; 0.000000, 6.750000, 0.976707;;, + 197;3; 0.000000, 6.750000, 0.976707;;, + 198;3; 0.000000, 6.750000, 0.976707;;, + 199;3; 0.000000, 6.750000, 0.976707;;, + 200;3; 0.000000, 6.750000, 0.976707;;, + 201;3; 0.000000, 6.750000, 0.976707;;, + 202;3; 0.000000, 6.750000, 0.976707;;, + 203;3; 0.000000, 6.750000, 0.976707;;, + 204;3; 0.000000, 6.750000, 0.976707;;, + 205;3; 0.000000, 6.750000, 0.976707;;, + 206;3; 0.000000, 6.750000, 0.976707;;, + 207;3; 0.000000, 6.750000, 0.976707;;, + 208;3; 0.000000, 6.750000, 0.976707;;, + 209;3; 0.000000, 6.750000, 0.976707;;, + 210;3; 0.000000, 6.750000, 0.976707;;, + 211;3; 0.000000, 6.750000, 0.976707;;, + 212;3; 0.000000, 6.750000, 0.976707;;, + 213;3; 0.000000, 6.750000, 0.976707;;, + 214;3; 0.000000, 6.750000, 0.976707;;, + 215;3; 0.000000, 6.750000, 0.976707;;, + 216;3; 0.000000, 6.750000, 0.976707;;, + 217;3; 0.000000, 6.750000, 0.976707;;, + 218;3; 0.000000, 6.750000, 0.976707;;, + 219;3; 0.000000, 6.750000, 0.976707;;, + 220;3; 0.000000, 6.750000, 0.976707;;; + } + } +} // End of AnimationSet ArmatureAction +AnimationSet Default_Action { + Animation { + {Player} + AnimationKey { // Rotation + 0; + 221; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 190;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 191;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 192;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 193;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 194;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 195;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 196;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 197;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 198;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 199;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 200;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 201;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 202;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 203;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 204;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 205;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 206;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 207;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 208;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 209;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 210;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 211;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 212;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 213;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 214;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 215;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 216;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 217;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 218;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 219;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 220;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;, + 180;3; 0.000000, 0.000000, 0.000000;;, + 181;3; 0.000000, 0.000000, 0.000000;;, + 182;3; 0.000000, 0.000000, 0.000000;;, + 183;3; 0.000000, 0.000000, 0.000000;;, + 184;3; 0.000000, 0.000000, 0.000000;;, + 185;3; 0.000000, 0.000000, 0.000000;;, + 186;3; 0.000000, 0.000000, 0.000000;;, + 187;3; 0.000000, 0.000000, 0.000000;;, + 188;3; 0.000000, 0.000000, 0.000000;;, + 189;3; 0.000000, 0.000000, 0.000000;;, + 190;3; 0.000000, 0.000000, 0.000000;;, + 191;3; 0.000000, 0.000000, 0.000000;;, + 192;3; 0.000000, 0.000000, 0.000000;;, + 193;3; 0.000000, 0.000000, 0.000000;;, + 194;3; 0.000000, 0.000000, 0.000000;;, + 195;3; 0.000000, 0.000000, 0.000000;;, + 196;3; 0.000000, 0.000000, 0.000000;;, + 197;3; 0.000000, 0.000000, 0.000000;;, + 198;3; 0.000000, 0.000000, 0.000000;;, + 199;3; 0.000000, 0.000000, 0.000000;;, + 200;3; 0.000000, 0.000000, 0.000000;;, + 201;3; 0.000000, 0.000000, 0.000000;;, + 202;3; 0.000000, 0.000000, 0.000000;;, + 203;3; 0.000000, 0.000000, 0.000000;;, + 204;3; 0.000000, 0.000000, 0.000000;;, + 205;3; 0.000000, 0.000000, 0.000000;;, + 206;3; 0.000000, 0.000000, 0.000000;;, + 207;3; 0.000000, 0.000000, 0.000000;;, + 208;3; 0.000000, 0.000000, 0.000000;;, + 209;3; 0.000000, 0.000000, 0.000000;;, + 210;3; 0.000000, 0.000000, 0.000000;;, + 211;3; 0.000000, 0.000000, 0.000000;;, + 212;3; 0.000000, 0.000000, 0.000000;;, + 213;3; 0.000000, 0.000000, 0.000000;;, + 214;3; 0.000000, 0.000000, 0.000000;;, + 215;3; 0.000000, 0.000000, 0.000000;;, + 216;3; 0.000000, 0.000000, 0.000000;;, + 217;3; 0.000000, 0.000000, 0.000000;;, + 218;3; 0.000000, 0.000000, 0.000000;;, + 219;3; 0.000000, 0.000000, 0.000000;;, + 220;3; 0.000000, 0.000000, 0.000000;;; + } + } +} // End of AnimationSet Default_Action diff --git a/games/minetest_game/mods/default/nodes.lua b/games/minetest_game/mods/default/nodes.lua new file mode 100644 index 0000000..19bad14 --- /dev/null +++ b/games/minetest_game/mods/default/nodes.lua @@ -0,0 +1,1220 @@ +-- mods/default/nodes.lua + +minetest.register_node("default:stone", { + description = "Stone", + tiles = {"default_stone.png"}, + is_ground_content = true, + groups = {cracky=3, stone=1}, + drop = 'default:cobble', + legacy_mineral = true, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:desert_stone", { + description = "Desert Stone", + tiles = {"default_desert_stone.png"}, + is_ground_content = true, + groups = {cracky=3, stone=1}, + drop = 'default:desert_cobble', + legacy_mineral = true, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:stone_with_coal", { + description = "Coal Ore", + tiles = {"default_stone.png^default_mineral_coal.png"}, + is_ground_content = true, + groups = {cracky=3}, + drop = 'default:coal_lump', + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:stone_with_iron", { + description = "Iron Ore", + tiles = {"default_stone.png^default_mineral_iron.png"}, + is_ground_content = true, + groups = {cracky=2}, + drop = 'default:iron_lump', + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:stone_with_copper", { + description = "Copper Ore", + tiles = {"default_stone.png^default_mineral_copper.png"}, + is_ground_content = true, + groups = {cracky=2}, + drop = 'default:copper_lump', + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:stone_with_mese", { + description = "Mese Ore", + tiles = {"default_stone.png^default_mineral_mese.png"}, + is_ground_content = true, + groups = {cracky=1}, + drop = "default:mese_crystal", + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:stone_with_gold", { + description = "Gold Ore", + tiles = {"default_stone.png^default_mineral_gold.png"}, + is_ground_content = true, + groups = {cracky=2}, + drop = "default:gold_lump", + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:stone_with_diamond", { + description = "Diamond Ore", + tiles = {"default_stone.png^default_mineral_diamond.png"}, + is_ground_content = true, + groups = {cracky=1}, + drop = "default:diamond", + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:stonebrick", { + description = "Stone Brick", + tiles = {"default_stone_brick.png"}, + groups = {cracky=2, stone=1}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:desert_stonebrick", { + description = "Desert Stone Brick", + tiles = {"default_desert_stone_brick.png"}, + groups = {cracky=2, stone=1}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:dirt_with_grass", { + description = "Dirt with Grass", + tiles = {"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"}, + is_ground_content = true, + groups = {crumbly=3,soil=1}, + drop = 'default:dirt', + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_grass_footstep", gain=0.25}, + }), +}) + +minetest.register_node("default:dirt_with_grass_footsteps", { + description = "Dirt with Grass and Footsteps", + tiles = {"default_grass_footsteps.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"}, + is_ground_content = true, + groups = {crumbly=3,soil=1,not_in_creative_inventory=1}, + drop = 'default:dirt', + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_grass_footstep", gain=0.25}, + }), +}) + +minetest.register_node("default:dirt_with_snow", { + description = "Dirt with Snow", + tiles = {"default_snow.png", "default_dirt.png", "default_dirt.png^default_snow_side.png"}, + is_ground_content = true, + groups = {crumbly=3,soil=1}, + drop = 'default:dirt', + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_snow_footstep", gain=0.25}, + }), +}) + +minetest.register_node("default:dirt", { + description = "Dirt", + tiles = {"default_dirt.png"}, + is_ground_content = true, + groups = {crumbly=3,soil=1}, + sounds = default.node_sound_dirt_defaults(), +}) + +minetest.register_abm({ + nodenames = {"default:dirt"}, + interval = 2, + chance = 200, + action = function(pos, node) + local above = {x=pos.x, y=pos.y+1, z=pos.z} + local name = minetest.get_node(above).name + local nodedef = minetest.registered_nodes[name] + if nodedef and (nodedef.sunlight_propagates or nodedef.paramtype == "light") + and nodedef.liquidtype == "none" + and (minetest.get_node_light(above) or 0) >= 13 then + if name == "default:snow" or name == "default:snowblock" then + minetest.set_node(pos, {name = "default:dirt_with_snow"}) + else + minetest.set_node(pos, {name = "default:dirt_with_grass"}) + end + end + end +}) + +minetest.register_abm({ + nodenames = {"default:dirt_with_grass"}, + interval = 2, + chance = 20, + action = function(pos, node) + local above = {x=pos.x, y=pos.y+1, z=pos.z} + local name = minetest.get_node(above).name + local nodedef = minetest.registered_nodes[name] + if name ~= "ignore" and nodedef + and not ((nodedef.sunlight_propagates or nodedef.paramtype == "light") + and nodedef.liquidtype == "none") then + minetest.set_node(pos, {name = "default:dirt"}) + end + end +}) + +minetest.register_node("default:sand", { + description = "Sand", + tiles = {"default_sand.png"}, + is_ground_content = true, + groups = {crumbly=3, falling_node=1, sand=1}, + sounds = default.node_sound_sand_defaults(), +}) + +minetest.register_node("default:desert_sand", { + description = "Desert Sand", + tiles = {"default_desert_sand.png"}, + is_ground_content = true, + groups = {crumbly=3, falling_node=1, sand=1}, + sounds = default.node_sound_sand_defaults(), +}) + +minetest.register_node("default:gravel", { + description = "Gravel", + tiles = {"default_gravel.png"}, + is_ground_content = true, + groups = {crumbly=2, falling_node=1}, + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_gravel_footstep", gain=0.5}, + dug = {name="default_gravel_footstep", gain=1.0}, + }), +}) + +minetest.register_node("default:sandstone", { + description = "Sandstone", + tiles = {"default_sandstone.png"}, + is_ground_content = true, + groups = {crumbly=2,cracky=3}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:sandstonebrick", { + description = "Sandstone Brick", + tiles = {"default_sandstone_brick.png"}, + is_ground_content = true, + groups = {cracky=2}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:clay", { + description = "Clay", + tiles = {"default_clay.png"}, + is_ground_content = true, + groups = {crumbly=3}, + drop = 'default:clay_lump 4', + sounds = default.node_sound_dirt_defaults(), +}) + +minetest.register_node("default:brick", { + description = "Brick Block", + tiles = {"default_brick.png"}, + is_ground_content = false, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:tree", { + description = "Tree", + tiles = {"default_tree_top.png", "default_tree_top.png", "default_tree.png"}, + paramtype2 = "facedir", + is_ground_content = false, + groups = {tree=1,choppy=2,oddly_breakable_by_hand=1,flammable=2}, + sounds = default.node_sound_wood_defaults(), + on_place = minetest.rotate_node +}) + +minetest.register_node("default:jungletree", { + description = "Jungle Tree", + tiles = {"default_jungletree_top.png", "default_jungletree_top.png", "default_jungletree.png"}, + paramtype2 = "facedir", + is_ground_content = false, + groups = {tree=1,choppy=2,oddly_breakable_by_hand=1,flammable=2}, + sounds = default.node_sound_wood_defaults(), + on_place = minetest.rotate_node +}) + +minetest.register_node("default:junglewood", { + description = "Junglewood Planks", + tiles = {"default_junglewood.png"}, + groups = {choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1}, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("default:jungleleaves", { + description = "Jungle Leaves", + drawtype = "allfaces_optional", + waving = 1, + visual_scale = 1.3, + tiles = {"default_jungleleaves.png"}, + paramtype = "light", + is_ground_content = false, + groups = {snappy=3, leafdecay=3, flammable=2, leaves=1}, + drop = { + max_items = 1, + items = { + { + -- player will get sapling with 1/20 chance + items = {'default:junglesapling'}, + rarity = 20, + }, + { + -- player will get leaves only if he get no saplings, + -- this is because max_items is 1 + items = {'default:jungleleaves'}, + } + } + }, + sounds = default.node_sound_leaves_defaults(), + after_place_node = default.after_place_leaves, +}) + +minetest.register_node("default:junglesapling", { + description = "Jungle Sapling", + drawtype = "plantlike", + visual_scale = 1.0, + tiles = {"default_junglesapling.png"}, + inventory_image = "default_junglesapling.png", + wield_image = "default_junglesapling.png", + paramtype = "light", + walkable = false, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3} + }, + groups = {snappy=2,dig_immediate=3,flammable=2,attached_node=1,sapling=1}, + sounds = default.node_sound_leaves_defaults(), +}) + +minetest.register_node("default:junglegrass", { + description = "Jungle Grass", + drawtype = "plantlike", + waving = 1, + visual_scale = 1.3, + tiles = {"default_junglegrass.png"}, + inventory_image = "default_junglegrass.png", + wield_image = "default_junglegrass.png", + paramtype = "light", + walkable = false, + buildable_to = true, + is_ground_content = true, + groups = {snappy=3,flammable=2,flora=1,attached_node=1}, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, + }, +}) + +minetest.register_node("default:leaves", { + description = "Leaves", + drawtype = "allfaces_optional", + waving = 1, + visual_scale = 1.3, + tiles = {"default_leaves.png"}, + paramtype = "light", + is_ground_content = false, + groups = {snappy=3, leafdecay=3, flammable=2, leaves=1}, + drop = { + max_items = 1, + items = { + { + -- player will get sapling with 1/20 chance + items = {'default:sapling'}, + rarity = 20, + }, + { + -- player will get leaves only if he get no saplings, + -- this is because max_items is 1 + items = {'default:leaves'}, + } + } + }, + sounds = default.node_sound_leaves_defaults(), + after_place_node = default.after_place_leaves, +}) + +minetest.register_node("default:cactus", { + description = "Cactus", + tiles = {"default_cactus_top.png", "default_cactus_top.png", "default_cactus_side.png"}, + paramtype2 = "facedir", + is_ground_content = true, + groups = {snappy=1,choppy=3,flammable=2}, + sounds = default.node_sound_wood_defaults(), + on_place = minetest.rotate_node, + after_dig_node = function(pos, node, metadata, digger) + default.dig_up(pos, node, digger) + end, +}) + +minetest.register_node("default:papyrus", { + description = "Papyrus", + drawtype = "plantlike", + tiles = {"default_papyrus.png"}, + inventory_image = "default_papyrus.png", + wield_image = "default_papyrus.png", + paramtype = "light", + walkable = false, + is_ground_content = true, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3} + }, + groups = {snappy=3,flammable=2}, + sounds = default.node_sound_leaves_defaults(), + after_dig_node = function(pos, node, metadata, digger) + default.dig_up(pos, node, digger) + end, +}) + +default.bookshelf_formspec = + "size[8,7;]".. + default.gui_bg.. + default.gui_bg_img.. + default.gui_slots.. + "list[context;books;0,0.3;8,2;]".. + "list[current_player;main;0,2.85;8,1;]".. + "list[current_player;main;0,4.08;8,3;8]".. + default.get_hotbar_bg(0,2.85) + +minetest.register_node("default:bookshelf", { + description = "Bookshelf", + tiles = {"default_wood.png", "default_wood.png", "default_bookshelf.png"}, + is_ground_content = false, + groups = {choppy=3,oddly_breakable_by_hand=2,flammable=3}, + sounds = default.node_sound_wood_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", default.bookshelf_formspec) + local inv = meta:get_inventory() + inv:set_size("books", 8*2) + end, + can_dig = function(pos,player) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + return inv:is_empty("books") + end, + + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local to_stack = inv:get_stack(listname, index) + if listname == "books" then + if minetest.get_item_group(stack:get_name(), "book") ~= 0 + and to_stack:is_empty() then + return 1 + else + return 0 + end + end + end, + + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local stack = inv:get_stack(from_list, from_index) + local to_stack = inv:get_stack(to_list, to_index) + if to_list == "books" then + if stack:get_name() == "default:book" and to_stack:is_empty() then + return 1 + else + return 0 + end + end + end, + + on_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + minetest.log("action", player:get_player_name().. + " moves stuff in bookshelf at "..minetest.pos_to_string(pos)) + end, + on_metadata_inventory_put = function(pos, listname, index, stack, player) + minetest.log("action", player:get_player_name().. + " moves stuff to bookshelf at "..minetest.pos_to_string(pos)) + end, + on_metadata_inventory_take = function(pos, listname, index, stack, player) + minetest.log("action", player:get_player_name().. + " takes stuff from bookshelf at "..minetest.pos_to_string(pos)) + end, +}) + +minetest.register_node("default:glass", { + description = "Glass", + drawtype = "glasslike_framed_optional", + tiles = {"default_glass.png", "default_glass_detail.png"}, + inventory_image = minetest.inventorycube("default_glass.png"), + paramtype = "light", + sunlight_propagates = true, + is_ground_content = false, + groups = {cracky=3,oddly_breakable_by_hand=3}, + sounds = default.node_sound_glass_defaults(), +}) + +local fence_texture = "default_fence_overlay.png^default_wood.png^default_fence_overlay.png^[makealpha:255,126,126" +minetest.register_node("default:fence_wood", { + description = "Wooden Fence", + drawtype = "fencelike", + tiles = {"default_wood.png"}, + inventory_image = fence_texture, + wield_image = fence_texture, + paramtype = "light", + is_ground_content = false, + selection_box = { + type = "fixed", + fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7}, + }, + groups = {choppy=2,oddly_breakable_by_hand=2,flammable=2}, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("default:rail", { + description = "Rail", + drawtype = "raillike", + tiles = {"default_rail.png", "default_rail_curved.png", "default_rail_t_junction.png", "default_rail_crossing.png"}, + inventory_image = "default_rail.png", + wield_image = "default_rail.png", + paramtype = "light", + walkable = false, + is_ground_content = false, + selection_box = { + type = "fixed", + -- but how to specify the dimensions for curved and sideways rails? + fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, + }, + groups = {bendy=2,dig_immediate=2,attached_node=1}, +}) + +minetest.register_node("default:ladder", { + description = "Ladder", + drawtype = "signlike", + tiles = {"default_ladder.png"}, + inventory_image = "default_ladder.png", + wield_image = "default_ladder.png", + paramtype = "light", + paramtype2 = "wallmounted", + walkable = false, + climbable = true, + is_ground_content = false, + selection_box = { + type = "wallmounted", + --wall_top = = + --wall_bottom = = + --wall_side = = + }, + groups = {choppy=2,oddly_breakable_by_hand=3,flammable=2}, + legacy_wallmounted = true, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("default:wood", { + description = "Wooden Planks", + tiles = {"default_wood.png"}, + groups = {choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1}, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("default:cloud", { + description = "Cloud", + tiles = {"default_cloud.png"}, + sounds = default.node_sound_defaults(), + groups = {not_in_creative_inventory=1}, +}) + +minetest.register_node("default:water_flowing", { + description = "Flowing Water", + inventory_image = minetest.inventorycube("default_water.png"), + drawtype = "flowingliquid", + tiles = {"default_water.png"}, + special_tiles = { + { + image="default_water_flowing_animated.png", + backface_culling=false, + animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=0.8} + }, + { + image="default_water_flowing_animated.png", + backface_culling=true, + animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=0.8} + }, + }, + alpha = WATER_ALPHA, + paramtype = "light", + paramtype2 = "flowingliquid", + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + drop = "", + drowning = 1, + liquidtype = "flowing", + liquid_alternative_flowing = "default:water_flowing", + liquid_alternative_source = "default:water_source", + liquid_viscosity = WATER_VISC, + post_effect_color = {a=64, r=100, g=100, b=200}, + groups = {water=3, liquid=3, puts_out_fire=1, not_in_creative_inventory=1}, +}) + +minetest.register_node("default:water_source", { + description = "Water Source", + inventory_image = minetest.inventorycube("default_water.png"), + drawtype = "liquid", + tiles = { + {name="default_water_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}} + }, + special_tiles = { + -- New-style water source material (mostly unused) + { + name="default_water_source_animated.png", + animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}, + backface_culling = false, + } + }, + alpha = WATER_ALPHA, + paramtype = "light", + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + drop = "", + drowning = 1, + liquidtype = "source", + liquid_alternative_flowing = "default:water_flowing", + liquid_alternative_source = "default:water_source", + liquid_viscosity = WATER_VISC, + post_effect_color = {a=64, r=100, g=100, b=200}, + groups = {water=3, liquid=3, puts_out_fire=1}, +}) + +minetest.register_node("default:lava_flowing", { + description = "Flowing Lava", + inventory_image = minetest.inventorycube("default_lava.png"), + drawtype = "flowingliquid", + tiles = {"default_lava.png"}, + special_tiles = { + { + image="default_lava_flowing_animated.png", + backface_culling=false, + animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.3} + }, + { + image="default_lava_flowing_animated.png", + backface_culling=true, + animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.3} + }, + }, + paramtype = "light", + paramtype2 = "flowingliquid", + light_source = LIGHT_MAX - 1, + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + drop = "", + drowning = 1, + liquidtype = "flowing", + liquid_alternative_flowing = "default:lava_flowing", + liquid_alternative_source = "default:lava_source", + liquid_viscosity = LAVA_VISC*2, + liquid_renewable = false, + damage_per_second = 4*2, + post_effect_color = {a=192, r=255, g=64, b=0}, + groups = {lava=3, liquid=2, hot=3, igniter=1, not_in_creative_inventory=1}, +}) + +minetest.register_node("default:lava_source", { + description = "Lava Source", + inventory_image = minetest.inventorycube("default_lava.png"), + drawtype = "liquid", + tiles = { + {name="default_lava_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}} + }, + special_tiles = { + -- New-style lava source material (mostly unused) + { + name="default_lava_source_animated.png", + animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}, + backface_culling = false, + } + }, + paramtype = "light", + light_source = LIGHT_MAX - 1, + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + drop = "", + drowning = 1, + liquidtype = "source", + liquid_alternative_flowing = "default:lava_flowing", + liquid_alternative_source = "default:lava_source", + liquid_viscosity = LAVA_VISC, + liquid_renewable = false, + damage_per_second = 4*2, + post_effect_color = {a=192, r=255, g=64, b=0}, + groups = {lava=3, liquid=2, hot=3, igniter=1}, +}) + +minetest.register_node("default:torch", { + description = "Torch", + drawtype = "torchlike", + --tiles = {"default_torch_on_floor.png", "default_torch_on_ceiling.png", "default_torch.png"}, + tiles = { + {name="default_torch_on_floor_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}}, + {name="default_torch_on_ceiling_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}}, + {name="default_torch_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}} + }, + inventory_image = "default_torch_on_floor.png", + wield_image = "default_torch_on_floor.png", + paramtype = "light", + paramtype2 = "wallmounted", + sunlight_propagates = true, + is_ground_content = false, + walkable = false, + light_source = LIGHT_MAX-1, + selection_box = { + type = "wallmounted", + wall_top = {-0.1, 0.5-0.6, -0.1, 0.1, 0.5, 0.1}, + wall_bottom = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1}, + wall_side = {-0.5, -0.3, -0.1, -0.5+0.3, 0.3, 0.1}, + }, + groups = {choppy=2,dig_immediate=3,flammable=1,attached_node=1}, + legacy_wallmounted = true, + sounds = default.node_sound_defaults(), +}) + +minetest.register_node("default:sign_wall", { + description = "Sign", + drawtype = "nodebox", + tiles = {"default_sign.png"}, + inventory_image = "default_sign_wall.png", + wield_image = "default_sign_wall.png", + paramtype = "light", + paramtype2 = "wallmounted", + sunlight_propagates = true, + is_ground_content = false, + walkable = false, + node_box = { + type = "wallmounted", + wall_top = {-0.4375, 0.4375, -0.3125, 0.4375, 0.5, 0.3125}, + wall_bottom = {-0.4375, -0.5, -0.3125, 0.4375, -0.4375, 0.3125}, + wall_side = {-0.5, -0.3125, -0.4375, -0.4375, 0.3125, 0.4375}, + }, + groups = {choppy=2,dig_immediate=2,attached_node=1}, + legacy_wallmounted = true, + sounds = default.node_sound_defaults(), + on_construct = function(pos) + --local n = minetest.get_node(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", "field[text;;${text}]") + meta:set_string("infotext", "\"\"") + end, + on_receive_fields = function(pos, formname, fields, sender) + --print("Sign at "..minetest.pos_to_string(pos).." got "..dump(fields)) + if minetest.is_protected(pos, sender:get_player_name()) then + minetest.record_protection_violation(pos, sender:get_player_name()) + return + end + local meta = minetest.get_meta(pos) + if not fields.text then return end + minetest.log("action", (sender:get_player_name() or "").." wrote \""..fields.text.. + "\" to sign at "..minetest.pos_to_string(pos)) + meta:set_string("text", fields.text) + meta:set_string("infotext", '"'..fields.text..'"') + end, +}) + +default.chest_formspec = + "size[8,9]".. + default.gui_bg.. + default.gui_bg_img.. + default.gui_slots.. + "list[current_name;main;0,0.3;8,4;]".. + "list[current_player;main;0,4.85;8,1;]".. + "list[current_player;main;0,6.08;8,3;8]".. + default.get_hotbar_bg(0,4.85) + +function default.get_locked_chest_formspec(pos) + local spos = pos.x .. "," .. pos.y .. "," ..pos.z + local formspec = + "size[8,9]".. + default.gui_bg.. + default.gui_bg_img.. + default.gui_slots.. + "list[nodemeta:".. spos .. ";main;0,0.3;8,4;]".. + "list[current_player;main;0,4.85;8,1;]".. + "list[current_player;main;0,6.08;8,3;8]".. + default.get_hotbar_bg(0,4.85) + return formspec +end + + +minetest.register_node("default:chest", { + description = "Chest", + tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png", + "default_chest_side.png", "default_chest_side.png", "default_chest_front.png"}, + paramtype2 = "facedir", + groups = {choppy=2,oddly_breakable_by_hand=2}, + legacy_facedir_simple = true, + is_ground_content = false, + sounds = default.node_sound_wood_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec",default.chest_formspec) + meta:set_string("infotext", "Chest") + local inv = meta:get_inventory() + inv:set_size("main", 8*4) + end, + can_dig = function(pos,player) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + return inv:is_empty("main") + end, + on_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + minetest.log("action", player:get_player_name().. + " moves stuff in chest at "..minetest.pos_to_string(pos)) + end, + on_metadata_inventory_put = function(pos, listname, index, stack, player) + minetest.log("action", player:get_player_name().. + " moves stuff to chest at "..minetest.pos_to_string(pos)) + end, + on_metadata_inventory_take = function(pos, listname, index, stack, player) + minetest.log("action", player:get_player_name().. + " takes stuff from chest at "..minetest.pos_to_string(pos)) + end, +}) + +local function has_locked_chest_privilege(meta, player) + if player:get_player_name() ~= meta:get_string("owner") then + return false + end + return true +end + +minetest.register_node("default:chest_locked", { + description = "Locked Chest", + tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png", + "default_chest_side.png", "default_chest_side.png", "default_chest_lock.png"}, + paramtype2 = "facedir", + groups = {choppy=2,oddly_breakable_by_hand=2}, + legacy_facedir_simple = true, + is_ground_content = false, + sounds = default.node_sound_wood_defaults(), + after_place_node = function(pos, placer) + local meta = minetest.get_meta(pos) + meta:set_string("owner", placer:get_player_name() or "") + meta:set_string("infotext", "Locked Chest (owned by ".. + meta:get_string("owner")..")") + end, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", "Locked Chest") + meta:set_string("owner", "") + local inv = meta:get_inventory() + inv:set_size("main", 8*4) + end, + can_dig = function(pos,player) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + return inv:is_empty("main") and has_locked_chest_privilege(meta, player) + end, + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + local meta = minetest.get_meta(pos) + if not has_locked_chest_privilege(meta, player) then + return 0 + end + return count + end, + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + if not has_locked_chest_privilege(meta, player) then + return 0 + end + return stack:get_count() + end, + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + if not has_locked_chest_privilege(meta, player) then + return 0 + end + return stack:get_count() + end, + on_metadata_inventory_put = function(pos, listname, index, stack, player) + minetest.log("action", player:get_player_name().. + " moves stuff to locked chest at "..minetest.pos_to_string(pos)) + end, + on_metadata_inventory_take = function(pos, listname, index, stack, player) + minetest.log("action", player:get_player_name().. + " takes stuff from locked chest at "..minetest.pos_to_string(pos)) + end, + on_rightclick = function(pos, node, clicker) + local meta = minetest.get_meta(pos) + if has_locked_chest_privilege(meta, clicker) then + minetest.show_formspec( + clicker:get_player_name(), + "default:chest_locked", + default.get_locked_chest_formspec(pos) + ) + end + end, +}) + +minetest.register_node("default:cobble", { + description = "Cobblestone", + tiles = {"default_cobble.png"}, + is_ground_content = true, + groups = {cracky=3, stone=2}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:desert_cobble", { + description = "Desert Cobblestone", + tiles = {"default_desert_cobble.png"}, + is_ground_content = true, + groups = {cracky=3, stone=2}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:mossycobble", { + description = "Mossy Cobblestone", + tiles = {"default_mossycobble.png"}, + is_ground_content = true, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:coalblock", { + description = "Coal Block", + tiles = {"default_coal_block.png"}, + is_ground_content = true, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:steelblock", { + description = "Steel Block", + tiles = {"default_steel_block.png"}, + is_ground_content = true, + groups = {cracky=1,level=2}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:copperblock", { + description = "Copper Block", + tiles = {"default_copper_block.png"}, + is_ground_content = true, + groups = {cracky=1,level=2}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:bronzeblock", { + description = "Bronze Block", + tiles = {"default_bronze_block.png"}, + is_ground_content = true, + groups = {cracky=1,level=2}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:mese", { + description = "Mese Block", + tiles = {"default_mese_block.png"}, + is_ground_content = true, + groups = {cracky=1,level=2}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_alias("default:mese_block", "default:mese") + +minetest.register_node("default:goldblock", { + description = "Gold Block", + tiles = {"default_gold_block.png"}, + is_ground_content = true, + groups = {cracky=1}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:diamondblock", { + description = "Diamond Block", + tiles = {"default_diamond_block.png"}, + is_ground_content = true, + groups = {cracky=1,level=3}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:obsidian_glass", { + description = "Obsidian Glass", + drawtype = "glasslike", + tiles = {"default_obsidian_glass.png"}, + paramtype = "light", + is_ground_content = false, + sunlight_propagates = true, + sounds = default.node_sound_glass_defaults(), + groups = {cracky=3,oddly_breakable_by_hand=3}, +}) + +minetest.register_node("default:obsidian", { + description = "Obsidian", + tiles = {"default_obsidian.png"}, + is_ground_content = true, + sounds = default.node_sound_stone_defaults(), + groups = {cracky=1,level=2}, +}) + +minetest.register_node("default:obsidianbrick", { + description = "Obsidian Brick", + tiles = {"default_obsidian_brick.png"}, + sounds = default.node_sound_stone_defaults(), + groups = {cracky=1,level=2}, +}) + +minetest.register_node("default:nyancat", { + description = "Nyan Cat", + tiles = {"default_nc_side.png", "default_nc_side.png", "default_nc_side.png", + "default_nc_side.png", "default_nc_back.png", "default_nc_front.png"}, + paramtype2 = "facedir", + groups = {cracky=2}, + is_ground_content = false, + legacy_facedir_simple = true, + sounds = default.node_sound_defaults(), +}) + +minetest.register_node("default:nyancat_rainbow", { + description = "Nyan Cat Rainbow", + tiles = {"default_nc_rb.png^[transformR90", "default_nc_rb.png^[transformR90", + "default_nc_rb.png", "default_nc_rb.png"}, + paramtype2 = "facedir", + groups = {cracky=2}, + is_ground_content = false, + sounds = default.node_sound_defaults(), +}) + +minetest.register_node("default:sapling", { + description = "Sapling", + drawtype = "plantlike", + visual_scale = 1.0, + tiles = {"default_sapling.png"}, + inventory_image = "default_sapling.png", + wield_image = "default_sapling.png", + paramtype = "light", + walkable = false, + is_ground_content = true, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3} + }, + groups = {snappy=2,dig_immediate=3,flammable=2,attached_node=1,sapling=1}, + sounds = default.node_sound_leaves_defaults(), +}) + +minetest.register_node("default:apple", { + description = "Apple", + drawtype = "plantlike", + visual_scale = 1.0, + tiles = {"default_apple.png"}, + inventory_image = "default_apple.png", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + is_ground_content = true, + selection_box = { + type = "fixed", + fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2} + }, + groups = {fleshy=3,dig_immediate=3,flammable=2,leafdecay=3,leafdecay_drop=1}, + on_use = minetest.item_eat(2), + sounds = default.node_sound_leaves_defaults(), + after_place_node = function(pos, placer, itemstack) + if placer:is_player() then + minetest.set_node(pos, {name="default:apple", param2=1}) + end + end, +}) + +minetest.register_node("default:dry_shrub", { + description = "Dry Shrub", + drawtype = "plantlike", + waving = 1, + visual_scale = 1.0, + tiles = {"default_dry_shrub.png"}, + inventory_image = "default_dry_shrub.png", + wield_image = "default_dry_shrub.png", + paramtype = "light", + walkable = false, + is_ground_content = true, + buildable_to = true, + groups = {snappy=3,flammable=3,attached_node=1}, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, + }, +}) + +minetest.register_node("default:grass_1", { + description = "Grass", + drawtype = "plantlike", + waving = 1, + tiles = {"default_grass_1.png"}, + -- use a bigger inventory image + inventory_image = "default_grass_3.png", + wield_image = "default_grass_3.png", + paramtype = "light", + walkable = false, + is_ground_content = true, + buildable_to = true, + groups = {snappy=3,flammable=3,flora=1,attached_node=1}, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, + }, + on_place = function(itemstack, placer, pointed_thing) + -- place a random grass node + local stack = ItemStack("default:grass_"..math.random(1,5)) + local ret = minetest.item_place(stack, placer, pointed_thing) + return ItemStack("default:grass_1 "..itemstack:get_count()-(1-ret:get_count())) + end, +}) + +for i=2,5 do + minetest.register_node("default:grass_"..i, { + description = "Grass", + drawtype = "plantlike", + waving = 1, + tiles = {"default_grass_"..i..".png"}, + inventory_image = "default_grass_"..i..".png", + wield_image = "default_grass_"..i..".png", + paramtype = "light", + walkable = false, + buildable_to = true, + is_ground_content = true, + drop = "default:grass_1", + groups = {snappy=3,flammable=3,flora=1,attached_node=1,not_in_creative_inventory=1}, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, + }, + }) +end + +minetest.register_node("default:ice", { + description = "Ice", + tiles = {"default_ice.png"}, + is_ground_content = true, + paramtype = "light", + groups = {immortal = 1}, --cracky=3 RND + sounds = default.node_sound_glass_defaults(), +}) + +minetest.register_node("default:snow", { + description = "Snow", + tiles = {"default_snow.png"}, + inventory_image = "default_snowball.png", + wield_image = "default_snowball.png", + is_ground_content = true, + paramtype = "light", + buildable_to = true, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, -0.5+2/16, 0.5}, + }, + }, + groups = {crumbly=3,falling_node=1}, + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_snow_footstep", gain=0.25}, + dug = {name="default_snow_footstep", gain=0.75}, + }), + on_construct = function(pos) + pos.y = pos.y - 1 + if minetest.get_node(pos).name == "default:dirt_with_grass" then + minetest.set_node(pos, {name="default:dirt_with_snow"}) + end + end, +}) +minetest.register_alias("snow", "default:snow") + +minetest.register_node("default:snowblock", { + description = "Snow Block", + tiles = {"default_snow.png"}, + is_ground_content = true, + groups = {crumbly=3}, + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_snow_footstep", gain=0.25}, + dug = {name="default_snow_footstep", gain=0.75}, + }), +}) + +minetest.register_node("default:pine_needles",{ + description = "Pine Needles", + drawtype = "allfaces_optional", + visual_scale = 1.3, + tiles = {"default_pine_needles.png"}, + waving = 1, + paramtype = "light", + is_ground_content = false, + groups = {snappy=3, leafdecay=3, flammable=2, leaves=1}, + drop = { + max_items = 1, + items = { + { + -- player will get sapling with 1/20 chance + items = {"default:pine_sapling"}, + rarity = 20, + }, + { + -- player will get leaves only if he get no saplings, + -- this is because max_items is 1 + items = {"default:pine_needles"}, + } + } + }, + sounds = default.node_sound_leaves_defaults(), + after_place_node = default.after_place_leaves, +}) + +minetest.register_node("default:pine_sapling", { + description = "Pine Sapling", + drawtype = "plantlike", + visual_scale = 1.0, + tiles = {"default_pine_sapling.png"}, + inventory_image = "default_pine_sapling.png", + wield_image = "default_pine_sapling.png", + paramtype = "light", + walkable = false, + is_ground_content = true, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3} + }, + groups = {snappy=2,dig_immediate=3,flammable=2,attached_node=1,sapling=1}, + sounds = default.node_sound_leaves_defaults(), +}) + +minetest.register_node("default:pinetree", { + description = "Pine Tree", + tiles = {"default_pinetree_top.png", "default_pinetree_top.png", "default_pinetree.png"}, + paramtype2 = "facedir", + is_ground_content = false, + groups = {tree=1,choppy=2,oddly_breakable_by_hand=1,flammable=2}, + sounds = default.node_sound_wood_defaults(), + on_place = minetest.rotate_node +}) + +minetest.register_node("default:pinewood", { + description = "Pinewood Planks", + tiles = {"default_pinewood.png"}, + groups = {choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1}, + sounds = default.node_sound_wood_defaults(), +}) + diff --git a/games/minetest_game/mods/default/player.lua b/games/minetest_game/mods/default/player.lua new file mode 100644 index 0000000..688ef62 --- /dev/null +++ b/games/minetest_game/mods/default/player.lua @@ -0,0 +1,159 @@ +-- Minetest 0.4 mod: player +-- See README.txt for licensing and other information. + +-- Player animation blending +-- Note: This is currently broken due to a bug in Irrlicht, leave at 0 +local animation_blend = 0 + +default.registered_player_models = { } + +-- Local for speed. +local models = default.registered_player_models + +function default.player_register_model(name, def) + models[name] = def +end + +-- Default player appearance +default.player_register_model("character.x", { + animation_speed = 30, + textures = {"character.png", }, + animations = { + -- Standard animations. + stand = { x= 0, y= 79, }, + lay = { x=162, y=166, }, + walk = { x=168, y=187, }, + mine = { x=189, y=198, }, + walk_mine = { x=200, y=219, }, + -- Extra animations (not currently used by the game). + sit = { x= 81, y=160, }, + }, +}) + +-- Player stats and animations +local player_model = {} +local player_textures = {} +local player_anim = {} +local player_sneak = {} +default.player_attached = {} + +function default.player_get_animation(player) + local name = player:get_player_name() + return { + model = player_model[name], + textures = player_textures[name], + animation = player_anim[name], + } +end + +-- Called when a player's appearance needs to be updated +function default.player_set_model(player, model_name) + local name = player:get_player_name() + local model = models[model_name] + if model then + if player_model[name] == model_name then + return + end + player:set_properties({ + mesh = model_name, + textures = player_textures[name] or model.textures, + visual = "mesh", + visual_size = model.visual_size or {x=1, y=1}, + }) + default.player_set_animation(player, "stand") + else + player:set_properties({ + textures = { "player.png", "player_back.png", }, + visual = "upright_sprite", + }) + end + player_model[name] = model_name +end + +function default.player_set_textures(player, textures) + local name = player:get_player_name() + player_textures[name] = textures + player:set_properties({textures = textures,}) +end + +function default.player_set_animation(player, anim_name, speed) + local name = player:get_player_name() + if player_anim[name] == anim_name then + return + end + local model = player_model[name] and models[player_model[name]] + if not (model and model.animations[anim_name]) then + return + end + local anim = model.animations[anim_name] + player_anim[name] = anim_name + player:set_animation(anim, speed or model.animation_speed, animation_blend) +end + +-- Update appearance when the player joins +minetest.register_on_joinplayer(function(player) + default.player_attached[player:get_player_name()] = false + default.player_set_model(player, "character.x") + player:set_local_animation({x=0, y=79}, {x=168, y=187}, {x=189, y=198}, {x=200, y=219}, 30) + + -- set GUI + if not minetest.setting_getbool("creative_mode") then + player:set_inventory_formspec(default.gui_suvival_form) + end + player:hud_set_hotbar_image("gui_hotbar.png") + player:hud_set_hotbar_selected_image("gui_hotbar_selected.png") +end) + +minetest.register_on_leaveplayer(function(player) + local name = player:get_player_name() + player_model[name] = nil + player_anim[name] = nil + player_textures[name] = nil +end) + +-- Localize for better performance. +local player_set_animation = default.player_set_animation +local player_attached = default.player_attached + +-- Check each player and apply animations +minetest.register_globalstep(function(dtime) + for _, player in pairs(minetest.get_connected_players()) do + local name = player:get_player_name() + local model_name = player_model[name] + local model = model_name and models[model_name] + if model and not player_attached[name] then + local controls = player:get_player_control() + local walking = false + local animation_speed_mod = model.animation_speed or 30 + + -- Determine if the player is walking + if controls.up or controls.down or controls.left or controls.right then + walking = true + end + + -- Determine if the player is sneaking, and reduce animation speed if so + if controls.sneak then + animation_speed_mod = animation_speed_mod / 2 + end + + -- Apply animations based on what the player is doing + if player:get_hp() == 0 then + player_set_animation(player, "lay") + elseif walking then + if player_sneak[name] ~= controls.sneak then + player_anim[name] = nil + player_sneak[name] = controls.sneak + end + if controls.LMB then + player_set_animation(player, "walk_mine", animation_speed_mod) + else + player_set_animation(player, "walk", animation_speed_mod) + end + elseif controls.LMB then + player_set_animation(player, "mine") + else + player_set_animation(player, "stand", animation_speed_mod) + end + end + end +end) diff --git a/games/minetest_game/mods/default/sounds/default_break_glass.1.ogg b/games/minetest_game/mods/default/sounds/default_break_glass.1.ogg new file mode 100644 index 0000000..b1ccc5f Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_break_glass.1.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_break_glass.2.ogg b/games/minetest_game/mods/default/sounds/default_break_glass.2.ogg new file mode 100644 index 0000000..b6cc9e8 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_break_glass.2.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_break_glass.3.ogg b/games/minetest_game/mods/default/sounds/default_break_glass.3.ogg new file mode 100644 index 0000000..ae6a6bf Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_break_glass.3.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_cool_lava.1.ogg b/games/minetest_game/mods/default/sounds/default_cool_lava.1.ogg new file mode 100644 index 0000000..42506dd Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_cool_lava.1.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_cool_lava.2.ogg b/games/minetest_game/mods/default/sounds/default_cool_lava.2.ogg new file mode 100644 index 0000000..2747ab8 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_cool_lava.2.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_cool_lava.3.ogg b/games/minetest_game/mods/default/sounds/default_cool_lava.3.ogg new file mode 100644 index 0000000..8baeac3 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_cool_lava.3.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_dig_choppy.ogg b/games/minetest_game/mods/default/sounds/default_dig_choppy.ogg new file mode 100644 index 0000000..e2ecd84 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_dig_choppy.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_dig_cracky.ogg b/games/minetest_game/mods/default/sounds/default_dig_cracky.ogg new file mode 100644 index 0000000..da11679 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_dig_cracky.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_dig_crumbly.ogg b/games/minetest_game/mods/default/sounds/default_dig_crumbly.ogg new file mode 100644 index 0000000..a0b2a1f Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_dig_crumbly.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_dig_dig_immediate.ogg b/games/minetest_game/mods/default/sounds/default_dig_dig_immediate.ogg new file mode 100644 index 0000000..e65d766 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_dig_dig_immediate.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_dig_oddly_breakable_by_hand.ogg b/games/minetest_game/mods/default/sounds/default_dig_oddly_breakable_by_hand.ogg new file mode 100644 index 0000000..ef4d7b1 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_dig_oddly_breakable_by_hand.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_dirt_footstep.1.ogg b/games/minetest_game/mods/default/sounds/default_dirt_footstep.1.ogg new file mode 100644 index 0000000..84a197d Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_dirt_footstep.1.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_dirt_footstep.2.ogg b/games/minetest_game/mods/default/sounds/default_dirt_footstep.2.ogg new file mode 100644 index 0000000..2e23b8a Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_dirt_footstep.2.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_dug_node.1.ogg b/games/minetest_game/mods/default/sounds/default_dug_node.1.ogg new file mode 100644 index 0000000..c04975d Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_dug_node.1.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_dug_node.2.ogg b/games/minetest_game/mods/default/sounds/default_dug_node.2.ogg new file mode 100644 index 0000000..9f20926 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_dug_node.2.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_glass_footstep.ogg b/games/minetest_game/mods/default/sounds/default_glass_footstep.ogg new file mode 100644 index 0000000..191287a Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_glass_footstep.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_grass_footstep.1.ogg b/games/minetest_game/mods/default/sounds/default_grass_footstep.1.ogg new file mode 100644 index 0000000..22d1ad6 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_grass_footstep.1.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_grass_footstep.2.ogg b/games/minetest_game/mods/default/sounds/default_grass_footstep.2.ogg new file mode 100644 index 0000000..4ccd8a0 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_grass_footstep.2.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_grass_footstep.3.ogg b/games/minetest_game/mods/default/sounds/default_grass_footstep.3.ogg new file mode 100644 index 0000000..20db84e Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_grass_footstep.3.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_gravel_footstep.1.ogg b/games/minetest_game/mods/default/sounds/default_gravel_footstep.1.ogg new file mode 100644 index 0000000..8d260ce Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_gravel_footstep.1.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_gravel_footstep.2.ogg b/games/minetest_game/mods/default/sounds/default_gravel_footstep.2.ogg new file mode 100644 index 0000000..2aba2c6 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_gravel_footstep.2.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_gravel_footstep.3.ogg b/games/minetest_game/mods/default/sounds/default_gravel_footstep.3.ogg new file mode 100644 index 0000000..1bcd8a1 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_gravel_footstep.3.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_gravel_footstep.4.ogg b/games/minetest_game/mods/default/sounds/default_gravel_footstep.4.ogg new file mode 100644 index 0000000..696c9ff Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_gravel_footstep.4.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_hard_footstep.1.ogg b/games/minetest_game/mods/default/sounds/default_hard_footstep.1.ogg new file mode 100644 index 0000000..1748bc5 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_hard_footstep.1.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_hard_footstep.2.ogg b/games/minetest_game/mods/default/sounds/default_hard_footstep.2.ogg new file mode 100644 index 0000000..fe39fd7 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_hard_footstep.2.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_hard_footstep.3.ogg b/games/minetest_game/mods/default/sounds/default_hard_footstep.3.ogg new file mode 100644 index 0000000..5030e06 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_hard_footstep.3.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_place_node.1.ogg b/games/minetest_game/mods/default/sounds/default_place_node.1.ogg new file mode 100644 index 0000000..46b9756 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_place_node.1.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_place_node.2.ogg b/games/minetest_game/mods/default/sounds/default_place_node.2.ogg new file mode 100644 index 0000000..d34c01a Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_place_node.2.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_place_node.3.ogg b/games/minetest_game/mods/default/sounds/default_place_node.3.ogg new file mode 100644 index 0000000..fc29365 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_place_node.3.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_place_node_hard.1.ogg b/games/minetest_game/mods/default/sounds/default_place_node_hard.1.ogg new file mode 100644 index 0000000..76eecf9 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_place_node_hard.1.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_place_node_hard.2.ogg b/games/minetest_game/mods/default/sounds/default_place_node_hard.2.ogg new file mode 100644 index 0000000..1d3b3de Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_place_node_hard.2.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_sand_footstep.1.ogg b/games/minetest_game/mods/default/sounds/default_sand_footstep.1.ogg new file mode 100644 index 0000000..65b68c7 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_sand_footstep.1.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_sand_footstep.2.ogg b/games/minetest_game/mods/default/sounds/default_sand_footstep.2.ogg new file mode 100644 index 0000000..57f35f3 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_sand_footstep.2.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_snow_footstep.1.ogg b/games/minetest_game/mods/default/sounds/default_snow_footstep.1.ogg new file mode 100644 index 0000000..3260b91 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_snow_footstep.1.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_snow_footstep.2.ogg b/games/minetest_game/mods/default/sounds/default_snow_footstep.2.ogg new file mode 100644 index 0000000..4aac1e7 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_snow_footstep.2.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_snow_footstep.3.ogg b/games/minetest_game/mods/default/sounds/default_snow_footstep.3.ogg new file mode 100644 index 0000000..cf4235b Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_snow_footstep.3.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_wood_footstep.1.ogg b/games/minetest_game/mods/default/sounds/default_wood_footstep.1.ogg new file mode 100644 index 0000000..34f63a1 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_wood_footstep.1.ogg differ diff --git a/games/minetest_game/mods/default/sounds/default_wood_footstep.2.ogg b/games/minetest_game/mods/default/sounds/default_wood_footstep.2.ogg new file mode 100644 index 0000000..124fc29 Binary files /dev/null and b/games/minetest_game/mods/default/sounds/default_wood_footstep.2.ogg differ diff --git a/games/minetest_game/mods/default/textures/bubble.png b/games/minetest_game/mods/default/textures/bubble.png new file mode 100644 index 0000000..f48aa35 Binary files /dev/null and b/games/minetest_game/mods/default/textures/bubble.png differ diff --git a/games/minetest_game/mods/default/textures/crack_anylength.png b/games/minetest_game/mods/default/textures/crack_anylength.png new file mode 100644 index 0000000..d07d65e Binary files /dev/null and b/games/minetest_game/mods/default/textures/crack_anylength.png differ diff --git a/games/minetest_game/mods/default/textures/default_apple.png b/games/minetest_game/mods/default/textures/default_apple.png new file mode 100644 index 0000000..962cf7f Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_apple.png differ diff --git a/games/minetest_game/mods/default/textures/default_book.png b/games/minetest_game/mods/default/textures/default_book.png new file mode 100644 index 0000000..db96636 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_book.png differ diff --git a/games/minetest_game/mods/default/textures/default_bookshelf.png b/games/minetest_game/mods/default/textures/default_bookshelf.png new file mode 100644 index 0000000..7afbcda Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_bookshelf.png differ diff --git a/games/minetest_game/mods/default/textures/default_brick.png b/games/minetest_game/mods/default/textures/default_brick.png new file mode 100644 index 0000000..d5850a0 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_brick.png differ diff --git a/games/minetest_game/mods/default/textures/default_bronze_block.png b/games/minetest_game/mods/default/textures/default_bronze_block.png new file mode 100644 index 0000000..9c78911 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_bronze_block.png differ diff --git a/games/minetest_game/mods/default/textures/default_bronze_ingot.png b/games/minetest_game/mods/default/textures/default_bronze_ingot.png new file mode 100644 index 0000000..527641b Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_bronze_ingot.png differ diff --git a/games/minetest_game/mods/default/textures/default_cactus_side.png b/games/minetest_game/mods/default/textures/default_cactus_side.png new file mode 100644 index 0000000..1fc8f27 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_cactus_side.png differ diff --git a/games/minetest_game/mods/default/textures/default_cactus_top.png b/games/minetest_game/mods/default/textures/default_cactus_top.png new file mode 100644 index 0000000..df48b73 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_cactus_top.png differ diff --git a/games/minetest_game/mods/default/textures/default_chest_front.png b/games/minetest_game/mods/default/textures/default_chest_front.png new file mode 100644 index 0000000..baa8b2a Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_chest_front.png differ diff --git a/games/minetest_game/mods/default/textures/default_chest_lock.png b/games/minetest_game/mods/default/textures/default_chest_lock.png new file mode 100644 index 0000000..44819c2 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_chest_lock.png differ diff --git a/games/minetest_game/mods/default/textures/default_chest_side.png b/games/minetest_game/mods/default/textures/default_chest_side.png new file mode 100644 index 0000000..2653b9d Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_chest_side.png differ diff --git a/games/minetest_game/mods/default/textures/default_chest_top.png b/games/minetest_game/mods/default/textures/default_chest_top.png new file mode 100644 index 0000000..46f1f19 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_chest_top.png differ diff --git a/games/minetest_game/mods/default/textures/default_clay.png b/games/minetest_game/mods/default/textures/default_clay.png new file mode 100644 index 0000000..070b69e Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_clay.png differ diff --git a/games/minetest_game/mods/default/textures/default_clay_brick.png b/games/minetest_game/mods/default/textures/default_clay_brick.png new file mode 100644 index 0000000..fd14ea1 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_clay_brick.png differ diff --git a/games/minetest_game/mods/default/textures/default_clay_lump.png b/games/minetest_game/mods/default/textures/default_clay_lump.png new file mode 100644 index 0000000..aef6efd Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_clay_lump.png differ diff --git a/games/minetest_game/mods/default/textures/default_cloud.png b/games/minetest_game/mods/default/textures/default_cloud.png new file mode 100644 index 0000000..faf0ec1 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_cloud.png differ diff --git a/games/minetest_game/mods/default/textures/default_coal_block.png b/games/minetest_game/mods/default/textures/default_coal_block.png new file mode 100644 index 0000000..08fcd92 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_coal_block.png differ diff --git a/games/minetest_game/mods/default/textures/default_coal_lump.png b/games/minetest_game/mods/default/textures/default_coal_lump.png new file mode 100644 index 0000000..487f458 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_coal_lump.png differ diff --git a/games/minetest_game/mods/default/textures/default_cobble.png b/games/minetest_game/mods/default/textures/default_cobble.png new file mode 100644 index 0000000..bfb8632 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_cobble.png differ diff --git a/games/minetest_game/mods/default/textures/default_copper_block.png b/games/minetest_game/mods/default/textures/default_copper_block.png new file mode 100644 index 0000000..0e28a82 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_copper_block.png differ diff --git a/games/minetest_game/mods/default/textures/default_copper_ingot.png b/games/minetest_game/mods/default/textures/default_copper_ingot.png new file mode 100644 index 0000000..5f2cf03 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_copper_ingot.png differ diff --git a/games/minetest_game/mods/default/textures/default_copper_lump.png b/games/minetest_game/mods/default/textures/default_copper_lump.png new file mode 100644 index 0000000..8a706fe Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_copper_lump.png differ diff --git a/games/minetest_game/mods/default/textures/default_desert_cobble.png b/games/minetest_game/mods/default/textures/default_desert_cobble.png new file mode 100644 index 0000000..4cbab56 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_desert_cobble.png differ diff --git a/games/minetest_game/mods/default/textures/default_desert_sand.png b/games/minetest_game/mods/default/textures/default_desert_sand.png new file mode 100644 index 0000000..d9049b4 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_desert_sand.png differ diff --git a/games/minetest_game/mods/default/textures/default_desert_stone.png b/games/minetest_game/mods/default/textures/default_desert_stone.png new file mode 100644 index 0000000..5d3aded Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_desert_stone.png differ diff --git a/games/minetest_game/mods/default/textures/default_desert_stone_brick.png b/games/minetest_game/mods/default/textures/default_desert_stone_brick.png new file mode 100644 index 0000000..366c88b Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_desert_stone_brick.png differ diff --git a/games/minetest_game/mods/default/textures/default_diamond.png b/games/minetest_game/mods/default/textures/default_diamond.png new file mode 100644 index 0000000..fcfa2ab Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_diamond.png differ diff --git a/games/minetest_game/mods/default/textures/default_diamond_block.png b/games/minetest_game/mods/default/textures/default_diamond_block.png new file mode 100644 index 0000000..7437f4d Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_diamond_block.png differ diff --git a/games/minetest_game/mods/default/textures/default_dirt.png b/games/minetest_game/mods/default/textures/default_dirt.png new file mode 100644 index 0000000..4636d9f Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_dirt.png differ diff --git a/games/minetest_game/mods/default/textures/default_dry_shrub.png b/games/minetest_game/mods/default/textures/default_dry_shrub.png new file mode 100644 index 0000000..f8c39a2 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_dry_shrub.png differ diff --git a/games/minetest_game/mods/default/textures/default_fence_overlay.png b/games/minetest_game/mods/default/textures/default_fence_overlay.png new file mode 100644 index 0000000..034fbb0 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_fence_overlay.png differ diff --git a/games/minetest_game/mods/default/textures/default_furnace_bottom.png b/games/minetest_game/mods/default/textures/default_furnace_bottom.png new file mode 100644 index 0000000..1e482da Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_furnace_bottom.png differ diff --git a/games/minetest_game/mods/default/textures/default_furnace_fire_bg.png b/games/minetest_game/mods/default/textures/default_furnace_fire_bg.png new file mode 100644 index 0000000..091679b Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_furnace_fire_bg.png differ diff --git a/games/minetest_game/mods/default/textures/default_furnace_fire_fg.png b/games/minetest_game/mods/default/textures/default_furnace_fire_fg.png new file mode 100644 index 0000000..7a126e3 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_furnace_fire_fg.png differ diff --git a/games/minetest_game/mods/default/textures/default_furnace_front.png b/games/minetest_game/mods/default/textures/default_furnace_front.png new file mode 100644 index 0000000..ddb1d0e Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_furnace_front.png differ diff --git a/games/minetest_game/mods/default/textures/default_furnace_front_active.png b/games/minetest_game/mods/default/textures/default_furnace_front_active.png new file mode 100644 index 0000000..1720a9b Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_furnace_front_active.png differ diff --git a/games/minetest_game/mods/default/textures/default_furnace_side.png b/games/minetest_game/mods/default/textures/default_furnace_side.png new file mode 100644 index 0000000..75f46ec Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_furnace_side.png differ diff --git a/games/minetest_game/mods/default/textures/default_furnace_top.png b/games/minetest_game/mods/default/textures/default_furnace_top.png new file mode 100644 index 0000000..1e482da Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_furnace_top.png differ diff --git a/games/minetest_game/mods/default/textures/default_glass.png b/games/minetest_game/mods/default/textures/default_glass.png new file mode 100644 index 0000000..b4c7fb5 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_glass.png differ diff --git a/games/minetest_game/mods/default/textures/default_glass_detail.png b/games/minetest_game/mods/default/textures/default_glass_detail.png new file mode 100644 index 0000000..b459665 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_glass_detail.png differ diff --git a/games/minetest_game/mods/default/textures/default_gold_block.png b/games/minetest_game/mods/default/textures/default_gold_block.png new file mode 100644 index 0000000..2337f00 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_gold_block.png differ diff --git a/games/minetest_game/mods/default/textures/default_gold_ingot.png b/games/minetest_game/mods/default/textures/default_gold_ingot.png new file mode 100644 index 0000000..04117bc Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_gold_ingot.png differ diff --git a/games/minetest_game/mods/default/textures/default_gold_lump.png b/games/minetest_game/mods/default/textures/default_gold_lump.png new file mode 100644 index 0000000..5c5afef Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_gold_lump.png differ diff --git a/games/minetest_game/mods/default/textures/default_grass.png b/games/minetest_game/mods/default/textures/default_grass.png new file mode 100644 index 0000000..8cd9e1f Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_grass.png differ diff --git a/games/minetest_game/mods/default/textures/default_grass_1.png b/games/minetest_game/mods/default/textures/default_grass_1.png new file mode 100644 index 0000000..f79307d Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_grass_1.png differ diff --git a/games/minetest_game/mods/default/textures/default_grass_2.png b/games/minetest_game/mods/default/textures/default_grass_2.png new file mode 100644 index 0000000..41d6be5 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_grass_2.png differ diff --git a/games/minetest_game/mods/default/textures/default_grass_3.png b/games/minetest_game/mods/default/textures/default_grass_3.png new file mode 100644 index 0000000..3e96869 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_grass_3.png differ diff --git a/games/minetest_game/mods/default/textures/default_grass_4.png b/games/minetest_game/mods/default/textures/default_grass_4.png new file mode 100644 index 0000000..f358193 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_grass_4.png differ diff --git a/games/minetest_game/mods/default/textures/default_grass_5.png b/games/minetest_game/mods/default/textures/default_grass_5.png new file mode 100644 index 0000000..2c15c56 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_grass_5.png differ diff --git a/games/minetest_game/mods/default/textures/default_grass_footsteps.png b/games/minetest_game/mods/default/textures/default_grass_footsteps.png new file mode 100644 index 0000000..4e44c1f Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_grass_footsteps.png differ diff --git a/games/minetest_game/mods/default/textures/default_grass_side.png b/games/minetest_game/mods/default/textures/default_grass_side.png new file mode 100644 index 0000000..a8a2bb3 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_grass_side.png differ diff --git a/games/minetest_game/mods/default/textures/default_gravel.png b/games/minetest_game/mods/default/textures/default_gravel.png new file mode 100644 index 0000000..752c47c Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_gravel.png differ diff --git a/games/minetest_game/mods/default/textures/default_ice.png b/games/minetest_game/mods/default/textures/default_ice.png new file mode 100644 index 0000000..14e4f56 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_ice.png differ diff --git a/games/minetest_game/mods/default/textures/default_iron_lump.png b/games/minetest_game/mods/default/textures/default_iron_lump.png new file mode 100644 index 0000000..fcc799c Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_iron_lump.png differ diff --git a/games/minetest_game/mods/default/textures/default_junglegrass.png b/games/minetest_game/mods/default/textures/default_junglegrass.png new file mode 100644 index 0000000..25abb71 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_junglegrass.png differ diff --git a/games/minetest_game/mods/default/textures/default_jungleleaves.png b/games/minetest_game/mods/default/textures/default_jungleleaves.png new file mode 100644 index 0000000..65ad848 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_jungleleaves.png differ diff --git a/games/minetest_game/mods/default/textures/default_junglesapling.png b/games/minetest_game/mods/default/textures/default_junglesapling.png new file mode 100644 index 0000000..fbb74d5 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_junglesapling.png differ diff --git a/games/minetest_game/mods/default/textures/default_jungletree.png b/games/minetest_game/mods/default/textures/default_jungletree.png new file mode 100644 index 0000000..bf0403e Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_jungletree.png differ diff --git a/games/minetest_game/mods/default/textures/default_jungletree_top.png b/games/minetest_game/mods/default/textures/default_jungletree_top.png new file mode 100644 index 0000000..e3a3ccc Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_jungletree_top.png differ diff --git a/games/minetest_game/mods/default/textures/default_junglewood.png b/games/minetest_game/mods/default/textures/default_junglewood.png new file mode 100644 index 0000000..1f22d9a Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_junglewood.png differ diff --git a/games/minetest_game/mods/default/textures/default_ladder.png b/games/minetest_game/mods/default/textures/default_ladder.png new file mode 100644 index 0000000..d04c603 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_ladder.png differ diff --git a/games/minetest_game/mods/default/textures/default_lava.png b/games/minetest_game/mods/default/textures/default_lava.png new file mode 100644 index 0000000..b0d429e Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_lava.png differ diff --git a/games/minetest_game/mods/default/textures/default_lava_flowing_animated.png b/games/minetest_game/mods/default/textures/default_lava_flowing_animated.png new file mode 100644 index 0000000..36b081b Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_lava_flowing_animated.png differ diff --git a/games/minetest_game/mods/default/textures/default_lava_source_animated.png b/games/minetest_game/mods/default/textures/default_lava_source_animated.png new file mode 100644 index 0000000..e69369a Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_lava_source_animated.png differ diff --git a/games/minetest_game/mods/default/textures/default_leaves.png b/games/minetest_game/mods/default/textures/default_leaves.png new file mode 100644 index 0000000..dc737ce Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_leaves.png differ diff --git a/games/minetest_game/mods/default/textures/default_mese_block.png b/games/minetest_game/mods/default/textures/default_mese_block.png new file mode 100644 index 0000000..4b05214 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_mese_block.png differ diff --git a/games/minetest_game/mods/default/textures/default_mese_crystal.png b/games/minetest_game/mods/default/textures/default_mese_crystal.png new file mode 100644 index 0000000..a177731 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_mese_crystal.png differ diff --git a/games/minetest_game/mods/default/textures/default_mese_crystal_fragment.png b/games/minetest_game/mods/default/textures/default_mese_crystal_fragment.png new file mode 100644 index 0000000..d5416ab Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_mese_crystal_fragment.png differ diff --git a/games/minetest_game/mods/default/textures/default_mineral_coal.png b/games/minetest_game/mods/default/textures/default_mineral_coal.png new file mode 100644 index 0000000..6d1386b Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_mineral_coal.png differ diff --git a/games/minetest_game/mods/default/textures/default_mineral_copper.png b/games/minetest_game/mods/default/textures/default_mineral_copper.png new file mode 100644 index 0000000..c4c518e Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_mineral_copper.png differ diff --git a/games/minetest_game/mods/default/textures/default_mineral_diamond.png b/games/minetest_game/mods/default/textures/default_mineral_diamond.png new file mode 100644 index 0000000..fca966b Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_mineral_diamond.png differ diff --git a/games/minetest_game/mods/default/textures/default_mineral_gold.png b/games/minetest_game/mods/default/textures/default_mineral_gold.png new file mode 100644 index 0000000..2220add Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_mineral_gold.png differ diff --git a/games/minetest_game/mods/default/textures/default_mineral_iron.png b/games/minetest_game/mods/default/textures/default_mineral_iron.png new file mode 100644 index 0000000..6c894ce Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_mineral_iron.png differ diff --git a/games/minetest_game/mods/default/textures/default_mineral_mese.png b/games/minetest_game/mods/default/textures/default_mineral_mese.png new file mode 100644 index 0000000..b14488e Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_mineral_mese.png differ diff --git a/games/minetest_game/mods/default/textures/default_mossycobble.png b/games/minetest_game/mods/default/textures/default_mossycobble.png new file mode 100644 index 0000000..fa5e7af Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_mossycobble.png differ diff --git a/games/minetest_game/mods/default/textures/default_nc_back.png b/games/minetest_game/mods/default/textures/default_nc_back.png new file mode 100644 index 0000000..e479ace Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_nc_back.png differ diff --git a/games/minetest_game/mods/default/textures/default_nc_front.png b/games/minetest_game/mods/default/textures/default_nc_front.png new file mode 100644 index 0000000..c9dd6a3 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_nc_front.png differ diff --git a/games/minetest_game/mods/default/textures/default_nc_rb.png b/games/minetest_game/mods/default/textures/default_nc_rb.png new file mode 100644 index 0000000..685a22c Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_nc_rb.png differ diff --git a/games/minetest_game/mods/default/textures/default_nc_side.png b/games/minetest_game/mods/default/textures/default_nc_side.png new file mode 100644 index 0000000..3152c33 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_nc_side.png differ diff --git a/games/minetest_game/mods/default/textures/default_obsidian.png b/games/minetest_game/mods/default/textures/default_obsidian.png new file mode 100644 index 0000000..cb170ea Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_obsidian.png differ diff --git a/games/minetest_game/mods/default/textures/default_obsidian_brick.png b/games/minetest_game/mods/default/textures/default_obsidian_brick.png new file mode 100644 index 0000000..2d938af Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_obsidian_brick.png differ diff --git a/games/minetest_game/mods/default/textures/default_obsidian_glass.png b/games/minetest_game/mods/default/textures/default_obsidian_glass.png new file mode 100644 index 0000000..ef5f8b5 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_obsidian_glass.png differ diff --git a/games/minetest_game/mods/default/textures/default_obsidian_shard.png b/games/minetest_game/mods/default/textures/default_obsidian_shard.png new file mode 100644 index 0000000..a988d8c Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_obsidian_shard.png differ diff --git a/games/minetest_game/mods/default/textures/default_paper.png b/games/minetest_game/mods/default/textures/default_paper.png new file mode 100644 index 0000000..db32a23 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_paper.png differ diff --git a/games/minetest_game/mods/default/textures/default_papyrus.png b/games/minetest_game/mods/default/textures/default_papyrus.png new file mode 100644 index 0000000..96b23c4 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_papyrus.png differ diff --git a/games/minetest_game/mods/default/textures/default_pine_needles.png b/games/minetest_game/mods/default/textures/default_pine_needles.png new file mode 100644 index 0000000..2b007be Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_pine_needles.png differ diff --git a/games/minetest_game/mods/default/textures/default_pine_sapling.png b/games/minetest_game/mods/default/textures/default_pine_sapling.png new file mode 100644 index 0000000..cd8167a Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_pine_sapling.png differ diff --git a/games/minetest_game/mods/default/textures/default_pinetree.png b/games/minetest_game/mods/default/textures/default_pinetree.png new file mode 100644 index 0000000..5a2a8b2 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_pinetree.png differ diff --git a/games/minetest_game/mods/default/textures/default_pinetree_top.png b/games/minetest_game/mods/default/textures/default_pinetree_top.png new file mode 100644 index 0000000..9e2f864 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_pinetree_top.png differ diff --git a/games/minetest_game/mods/default/textures/default_pinewood.png b/games/minetest_game/mods/default/textures/default_pinewood.png new file mode 100644 index 0000000..4225296 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_pinewood.png differ diff --git a/games/minetest_game/mods/default/textures/default_rail.png b/games/minetest_game/mods/default/textures/default_rail.png new file mode 100644 index 0000000..061949e Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_rail.png differ diff --git a/games/minetest_game/mods/default/textures/default_rail_crossing.png b/games/minetest_game/mods/default/textures/default_rail_crossing.png new file mode 100644 index 0000000..3774beb Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_rail_crossing.png differ diff --git a/games/minetest_game/mods/default/textures/default_rail_curved.png b/games/minetest_game/mods/default/textures/default_rail_curved.png new file mode 100644 index 0000000..b721289 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_rail_curved.png differ diff --git a/games/minetest_game/mods/default/textures/default_rail_t_junction.png b/games/minetest_game/mods/default/textures/default_rail_t_junction.png new file mode 100644 index 0000000..d692241 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_rail_t_junction.png differ diff --git a/games/minetest_game/mods/default/textures/default_sand.png b/games/minetest_game/mods/default/textures/default_sand.png new file mode 100644 index 0000000..ba5eb0e Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_sand.png differ diff --git a/games/minetest_game/mods/default/textures/default_sandstone.png b/games/minetest_game/mods/default/textures/default_sandstone.png new file mode 100644 index 0000000..90f6dc6 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_sandstone.png differ diff --git a/games/minetest_game/mods/default/textures/default_sandstone_brick.png b/games/minetest_game/mods/default/textures/default_sandstone_brick.png new file mode 100644 index 0000000..82a1e6e Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_sandstone_brick.png differ diff --git a/games/minetest_game/mods/default/textures/default_sapling.png b/games/minetest_game/mods/default/textures/default_sapling.png new file mode 100644 index 0000000..b58b51c Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_sapling.png differ diff --git a/games/minetest_game/mods/default/textures/default_sign.png b/games/minetest_game/mods/default/textures/default_sign.png new file mode 100644 index 0000000..be5e916 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_sign.png differ diff --git a/games/minetest_game/mods/default/textures/default_sign_wall.png b/games/minetest_game/mods/default/textures/default_sign_wall.png new file mode 100644 index 0000000..e36361e Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_sign_wall.png differ diff --git a/games/minetest_game/mods/default/textures/default_snow.png b/games/minetest_game/mods/default/textures/default_snow.png new file mode 100644 index 0000000..2a2439f Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_snow.png differ diff --git a/games/minetest_game/mods/default/textures/default_snow_side.png b/games/minetest_game/mods/default/textures/default_snow_side.png new file mode 100644 index 0000000..3e98915 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_snow_side.png differ diff --git a/games/minetest_game/mods/default/textures/default_snowball.png b/games/minetest_game/mods/default/textures/default_snowball.png new file mode 100644 index 0000000..c85e205 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_snowball.png differ diff --git a/games/minetest_game/mods/default/textures/default_steel_block.png b/games/minetest_game/mods/default/textures/default_steel_block.png new file mode 100644 index 0000000..0f7918e Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_steel_block.png differ diff --git a/games/minetest_game/mods/default/textures/default_steel_ingot.png b/games/minetest_game/mods/default/textures/default_steel_ingot.png new file mode 100644 index 0000000..4babe96 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_steel_ingot.png differ diff --git a/games/minetest_game/mods/default/textures/default_stick.png b/games/minetest_game/mods/default/textures/default_stick.png new file mode 100644 index 0000000..0ba6720 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_stick.png differ diff --git a/games/minetest_game/mods/default/textures/default_stone.png b/games/minetest_game/mods/default/textures/default_stone.png new file mode 100644 index 0000000..23fba6a Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_stone.png differ diff --git a/games/minetest_game/mods/default/textures/default_stone_brick.png b/games/minetest_game/mods/default/textures/default_stone_brick.png new file mode 100644 index 0000000..12ea953 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_stone_brick.png differ diff --git a/games/minetest_game/mods/default/textures/default_tnt_bottom.png b/games/minetest_game/mods/default/textures/default_tnt_bottom.png new file mode 100644 index 0000000..4eda060 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tnt_bottom.png differ diff --git a/games/minetest_game/mods/default/textures/default_tnt_side.png b/games/minetest_game/mods/default/textures/default_tnt_side.png new file mode 100644 index 0000000..947f862 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tnt_side.png differ diff --git a/games/minetest_game/mods/default/textures/default_tnt_top.png b/games/minetest_game/mods/default/textures/default_tnt_top.png new file mode 100644 index 0000000..a031a34 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tnt_top.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_bronzeaxe.png b/games/minetest_game/mods/default/textures/default_tool_bronzeaxe.png new file mode 100644 index 0000000..e35a81e Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_bronzeaxe.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_bronzepick.png b/games/minetest_game/mods/default/textures/default_tool_bronzepick.png new file mode 100644 index 0000000..18b18c9 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_bronzepick.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_bronzeshovel.png b/games/minetest_game/mods/default/textures/default_tool_bronzeshovel.png new file mode 100644 index 0000000..e21a47e Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_bronzeshovel.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_bronzesword.png b/games/minetest_game/mods/default/textures/default_tool_bronzesword.png new file mode 100644 index 0000000..597bbe6 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_bronzesword.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_diamondaxe.png b/games/minetest_game/mods/default/textures/default_tool_diamondaxe.png new file mode 100644 index 0000000..48c1c8b Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_diamondaxe.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_diamondpick.png b/games/minetest_game/mods/default/textures/default_tool_diamondpick.png new file mode 100644 index 0000000..10cdd90 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_diamondpick.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_diamondshovel.png b/games/minetest_game/mods/default/textures/default_tool_diamondshovel.png new file mode 100644 index 0000000..3998022 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_diamondshovel.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_diamondsword.png b/games/minetest_game/mods/default/textures/default_tool_diamondsword.png new file mode 100644 index 0000000..a02acb6 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_diamondsword.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_meseaxe.png b/games/minetest_game/mods/default/textures/default_tool_meseaxe.png new file mode 100644 index 0000000..de97224 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_meseaxe.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_mesepick.png b/games/minetest_game/mods/default/textures/default_tool_mesepick.png new file mode 100644 index 0000000..17451cb Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_mesepick.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_meseshovel.png b/games/minetest_game/mods/default/textures/default_tool_meseshovel.png new file mode 100644 index 0000000..dc58644 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_meseshovel.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_mesesword.png b/games/minetest_game/mods/default/textures/default_tool_mesesword.png new file mode 100644 index 0000000..0cba3ed Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_mesesword.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_steelaxe.png b/games/minetest_game/mods/default/textures/default_tool_steelaxe.png new file mode 100644 index 0000000..3964a75 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_steelaxe.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_steelpick.png b/games/minetest_game/mods/default/textures/default_tool_steelpick.png new file mode 100644 index 0000000..9df944f Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_steelpick.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_steelshovel.png b/games/minetest_game/mods/default/textures/default_tool_steelshovel.png new file mode 100644 index 0000000..05bc02b Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_steelshovel.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_steelsword.png b/games/minetest_game/mods/default/textures/default_tool_steelsword.png new file mode 100644 index 0000000..bc1e642 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_steelsword.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_stoneaxe.png b/games/minetest_game/mods/default/textures/default_tool_stoneaxe.png new file mode 100644 index 0000000..9a18990 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_stoneaxe.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_stonepick.png b/games/minetest_game/mods/default/textures/default_tool_stonepick.png new file mode 100644 index 0000000..0518ca7 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_stonepick.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_stoneshovel.png b/games/minetest_game/mods/default/textures/default_tool_stoneshovel.png new file mode 100644 index 0000000..fa29e85 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_stoneshovel.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_stonesword.png b/games/minetest_game/mods/default/textures/default_tool_stonesword.png new file mode 100644 index 0000000..e8814ab Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_stonesword.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_woodaxe.png b/games/minetest_game/mods/default/textures/default_tool_woodaxe.png new file mode 100644 index 0000000..0d683ad Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_woodaxe.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_woodpick.png b/games/minetest_game/mods/default/textures/default_tool_woodpick.png new file mode 100644 index 0000000..127a76c Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_woodpick.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_woodshovel.png b/games/minetest_game/mods/default/textures/default_tool_woodshovel.png new file mode 100644 index 0000000..5652580 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_woodshovel.png differ diff --git a/games/minetest_game/mods/default/textures/default_tool_woodsword.png b/games/minetest_game/mods/default/textures/default_tool_woodsword.png new file mode 100644 index 0000000..792a046 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tool_woodsword.png differ diff --git a/games/minetest_game/mods/default/textures/default_torch.png b/games/minetest_game/mods/default/textures/default_torch.png new file mode 100644 index 0000000..e21aac3 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_torch.png differ diff --git a/games/minetest_game/mods/default/textures/default_torch_animated.png b/games/minetest_game/mods/default/textures/default_torch_animated.png new file mode 100644 index 0000000..2629f85 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_torch_animated.png differ diff --git a/games/minetest_game/mods/default/textures/default_torch_on_ceiling.png b/games/minetest_game/mods/default/textures/default_torch_on_ceiling.png new file mode 100644 index 0000000..89f41f5 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_torch_on_ceiling.png differ diff --git a/games/minetest_game/mods/default/textures/default_torch_on_ceiling_animated.png b/games/minetest_game/mods/default/textures/default_torch_on_ceiling_animated.png new file mode 100644 index 0000000..b15836d Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_torch_on_ceiling_animated.png differ diff --git a/games/minetest_game/mods/default/textures/default_torch_on_floor.png b/games/minetest_game/mods/default/textures/default_torch_on_floor.png new file mode 100644 index 0000000..1567f0b Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_torch_on_floor.png differ diff --git a/games/minetest_game/mods/default/textures/default_torch_on_floor_animated.png b/games/minetest_game/mods/default/textures/default_torch_on_floor_animated.png new file mode 100644 index 0000000..97bbe43 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_torch_on_floor_animated.png differ diff --git a/games/minetest_game/mods/default/textures/default_tree.png b/games/minetest_game/mods/default/textures/default_tree.png new file mode 100644 index 0000000..5fa4b65 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tree.png differ diff --git a/games/minetest_game/mods/default/textures/default_tree_top.png b/games/minetest_game/mods/default/textures/default_tree_top.png new file mode 100644 index 0000000..e672d13 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_tree_top.png differ diff --git a/games/minetest_game/mods/default/textures/default_water.png b/games/minetest_game/mods/default/textures/default_water.png new file mode 100644 index 0000000..9b6ff35 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_water.png differ diff --git a/games/minetest_game/mods/default/textures/default_water_flowing_animated.png b/games/minetest_game/mods/default/textures/default_water_flowing_animated.png new file mode 100644 index 0000000..9cb138c Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_water_flowing_animated.png differ diff --git a/games/minetest_game/mods/default/textures/default_water_source_animated.png b/games/minetest_game/mods/default/textures/default_water_source_animated.png new file mode 100644 index 0000000..3b9b2d9 Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_water_source_animated.png differ diff --git a/games/minetest_game/mods/default/textures/default_wood.png b/games/minetest_game/mods/default/textures/default_wood.png new file mode 100644 index 0000000..4f31b6d Binary files /dev/null and b/games/minetest_game/mods/default/textures/default_wood.png differ diff --git a/games/minetest_game/mods/default/textures/gui_formbg.png b/games/minetest_game/mods/default/textures/gui_formbg.png new file mode 100644 index 0000000..d38040e Binary files /dev/null and b/games/minetest_game/mods/default/textures/gui_formbg.png differ diff --git a/games/minetest_game/mods/default/textures/gui_furnace_arrow_bg.png b/games/minetest_game/mods/default/textures/gui_furnace_arrow_bg.png new file mode 100644 index 0000000..7fbb908 Binary files /dev/null and b/games/minetest_game/mods/default/textures/gui_furnace_arrow_bg.png differ diff --git a/games/minetest_game/mods/default/textures/gui_furnace_arrow_fg.png b/games/minetest_game/mods/default/textures/gui_furnace_arrow_fg.png new file mode 100644 index 0000000..8d3c396 Binary files /dev/null and b/games/minetest_game/mods/default/textures/gui_furnace_arrow_fg.png differ diff --git a/games/minetest_game/mods/default/textures/gui_hb_bg.png b/games/minetest_game/mods/default/textures/gui_hb_bg.png new file mode 100644 index 0000000..99248e1 Binary files /dev/null and b/games/minetest_game/mods/default/textures/gui_hb_bg.png differ diff --git a/games/minetest_game/mods/default/textures/gui_hotbar.png b/games/minetest_game/mods/default/textures/gui_hotbar.png new file mode 100644 index 0000000..a80ab46 Binary files /dev/null and b/games/minetest_game/mods/default/textures/gui_hotbar.png differ diff --git a/games/minetest_game/mods/default/textures/gui_hotbar_selected.png b/games/minetest_game/mods/default/textures/gui_hotbar_selected.png new file mode 100644 index 0000000..09385c0 Binary files /dev/null and b/games/minetest_game/mods/default/textures/gui_hotbar_selected.png differ diff --git a/games/minetest_game/mods/default/textures/heart.png b/games/minetest_game/mods/default/textures/heart.png new file mode 100644 index 0000000..af8399a Binary files /dev/null and b/games/minetest_game/mods/default/textures/heart.png differ diff --git a/games/minetest_game/mods/default/textures/player.png b/games/minetest_game/mods/default/textures/player.png new file mode 100644 index 0000000..6d61c43 Binary files /dev/null and b/games/minetest_game/mods/default/textures/player.png differ diff --git a/games/minetest_game/mods/default/textures/player_back.png b/games/minetest_game/mods/default/textures/player_back.png new file mode 100644 index 0000000..9bba932 Binary files /dev/null and b/games/minetest_game/mods/default/textures/player_back.png differ diff --git a/games/minetest_game/mods/default/textures/wieldhand.png b/games/minetest_game/mods/default/textures/wieldhand.png new file mode 100644 index 0000000..2307ba4 Binary files /dev/null and b/games/minetest_game/mods/default/textures/wieldhand.png differ diff --git a/games/minetest_game/mods/default/tools.lua b/games/minetest_game/mods/default/tools.lua new file mode 100644 index 0000000..575b8c0 --- /dev/null +++ b/games/minetest_game/mods/default/tools.lua @@ -0,0 +1,332 @@ +-- mods/default/tools.lua + +-- The hand +minetest.register_item(":", { + type = "none", + wield_image = "wieldhand.png", + wield_scale = {x=1,y=1,z=2.5}, + tool_capabilities = { + full_punch_interval = 0.9, + max_drop_level = 0, + groupcaps = { + crumbly = {times={[2]=3.00, [3]=0.70}, uses=0, maxlevel=1}, + snappy = {times={[3]=0.40}, uses=0, maxlevel=1}, + oddly_breakable_by_hand = {times={[1]=3.50,[2]=2.00,[3]=0.70}, uses=0} + }, + damage_groups = {fleshy=1}, + } +}) + +-- +-- Picks +-- + +minetest.register_tool("default:pick_wood", { + description = "Wooden Pickaxe", + inventory_image = "default_tool_woodpick.png", + tool_capabilities = { + full_punch_interval = 1.2, + max_drop_level=0, + groupcaps={ + cracky = {times={[3]=1.60}, uses=10, maxlevel=1}, + }, + damage_groups = {fleshy=2}, + }, +}) +minetest.register_tool("default:pick_stone", { + description = "Stone Pickaxe", + inventory_image = "default_tool_stonepick.png", + tool_capabilities = { + full_punch_interval = 1.3, + max_drop_level=0, + groupcaps={ + cracky = {times={[2]=2.0, [3]=1.20}, uses=32, maxlevel=1}, + }, + damage_groups = {fleshy=3}, + }, +}) +minetest.register_tool("default:pick_steel", { + description = "Steel Pickaxe", + inventory_image = "default_tool_steelpick.png", + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=1, + groupcaps={ + cracky = {times={[1]=4.00, [2]=1.60, [3]=0.80}, uses=80, maxlevel=2}, + }, + damage_groups = {fleshy=4}, + }, +}) +minetest.register_tool("default:pick_bronze", { + description = "Bronze Pickaxe", + inventory_image = "default_tool_bronzepick.png", + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=1, + groupcaps={ + cracky = {times={[1]=4.00, [2]=1.60, [3]=0.80}, uses=128, maxlevel=2}, + }, + damage_groups = {fleshy=4}, + }, +}) +minetest.register_tool("default:pick_mese", { + description = "Mese Pickaxe", + inventory_image = "default_tool_mesepick.png", + tool_capabilities = { + full_punch_interval = 0.9, + max_drop_level=3, + groupcaps={ + cracky = {times={[1]=2.4, [2]=1.2, [3]=0.60}, uses=180, maxlevel=3}, + }, + damage_groups = {fleshy=5}, + }, +}) +minetest.register_tool("default:pick_diamond", { + description = "Diamond Pickaxe", + inventory_image = "default_tool_diamondpick.png", + tool_capabilities = { + full_punch_interval = 0.9, + max_drop_level=3, + groupcaps={ + cracky = {times={[1]=2.0, [2]=1.0, [3]=0.50}, uses=300, maxlevel=3}, + }, + damage_groups = {fleshy=5}, + }, +}) + +-- +-- Shovels +-- + +minetest.register_tool("default:shovel_wood", { + description = "Wooden Shovel", + inventory_image = "default_tool_woodshovel.png", + wield_image = "default_tool_woodshovel.png^[transformR90", + tool_capabilities = { + full_punch_interval = 1.2, + max_drop_level=0, + groupcaps={ + crumbly = {times={[1]=3.00, [2]=1.60, [3]=0.60}, uses=10, maxlevel=1}, + }, + damage_groups = {fleshy=2}, + }, +}) +minetest.register_tool("default:shovel_stone", { + description = "Stone Shovel", + inventory_image = "default_tool_stoneshovel.png", + wield_image = "default_tool_stoneshovel.png^[transformR90", + tool_capabilities = { + full_punch_interval = 1.4, + max_drop_level=0, + groupcaps={ + crumbly = {times={[1]=1.80, [2]=1.20, [3]=0.50}, uses=20, maxlevel=1}, + }, + damage_groups = {fleshy=2}, + }, +}) +minetest.register_tool("default:shovel_steel", { + description = "Steel Shovel", + inventory_image = "default_tool_steelshovel.png", + wield_image = "default_tool_steelshovel.png^[transformR90", + tool_capabilities = { + full_punch_interval = 1.1, + max_drop_level=1, + groupcaps={ + crumbly = {times={[1]=1.50, [2]=0.90, [3]=0.40}, uses=30, maxlevel=2}, + }, + damage_groups = {fleshy=3}, + }, +}) +minetest.register_tool("default:shovel_bronze", { + description = "Bronze Shovel", + inventory_image = "default_tool_bronzeshovel.png", + wield_image = "default_tool_bronzeshovel.png^[transformR90", + tool_capabilities = { + full_punch_interval = 1.1, + max_drop_level=1, + groupcaps={ + crumbly = {times={[1]=1.50, [2]=0.90, [3]=0.40}, uses=40, maxlevel=2}, + }, + damage_groups = {fleshy=3}, + }, +}) +minetest.register_tool("default:shovel_mese", { + description = "Mese Shovel", + inventory_image = "default_tool_meseshovel.png", + wield_image = "default_tool_meseshovel.png^[transformR90", + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=3, + groupcaps={ + crumbly = {times={[1]=1.20, [2]=0.60, [3]=0.30}, uses=20, maxlevel=3}, + }, + damage_groups = {fleshy=4}, + }, +}) +minetest.register_tool("default:shovel_diamond", { + description = "Diamond Shovel", + inventory_image = "default_tool_diamondshovel.png", + wield_image = "default_tool_diamondshovel.png^[transformR90", + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=1, + groupcaps={ + crumbly = {times={[1]=1.10, [2]=0.50, [3]=0.30}, uses=30, maxlevel=3}, + }, + damage_groups = {fleshy=4}, + }, +}) + +-- +-- Axes +-- + +minetest.register_tool("default:axe_wood", { + description = "Wooden Axe", + inventory_image = "default_tool_woodaxe.png", + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=0, + groupcaps={ + choppy = {times={[2]=3.00, [3]=2.00}, uses=10, maxlevel=1}, + }, + damage_groups = {fleshy=2}, + }, +}) +minetest.register_tool("default:axe_stone", { + description = "Stone Axe", + inventory_image = "default_tool_stoneaxe.png", + tool_capabilities = { + full_punch_interval = 1.2, + max_drop_level=0, + groupcaps={ + choppy={times={[1]=3.00, [2]=2.00, [3]=1.50}, uses=200, maxlevel=1}, + }, + damage_groups = {fleshy=3}, + }, +}) +minetest.register_tool("default:axe_steel", { + description = "Steel Axe", + inventory_image = "default_tool_steelaxe.png", + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=1, + groupcaps={ + choppy={times={[1]=2.50, [2]=1.40, [3]=1.00}, uses=200, maxlevel=2}, + }, + damage_groups = {fleshy=4}, + }, +}) +minetest.register_tool("default:axe_bronze", { + description = "Bronze Axe", + inventory_image = "default_tool_bronzeaxe.png", + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=1, + groupcaps={ + choppy={times={[1]=2.50, [2]=1.40, [3]=1.00}, uses=300, maxlevel=2}, + }, + damage_groups = {fleshy=4}, + }, +}) +minetest.register_tool("default:axe_mese", { + description = "Mese Axe", + inventory_image = "default_tool_meseaxe.png", + tool_capabilities = { + full_punch_interval = 0.9, + max_drop_level=1, + groupcaps={ + choppy={times={[1]=2.20, [2]=1.00, [3]=0.60}, uses=400, maxlevel=3}, + }, + damage_groups = {fleshy=6}, + }, +}) +minetest.register_tool("default:axe_diamond", { + description = "Diamond Axe", + inventory_image = "default_tool_diamondaxe.png", + tool_capabilities = { + full_punch_interval = 0.9, + max_drop_level=1, + groupcaps={ + choppy={times={[1]=2.10, [2]=0.90, [3]=0.50}, uses=500, maxlevel=2}, + }, + damage_groups = {fleshy=7}, + }, +}) + +-- +-- Swords +-- + +minetest.register_tool("default:sword_wood", { + description = "Wooden Sword", + inventory_image = "default_tool_woodsword.png", + tool_capabilities = { + full_punch_interval = 1, + max_drop_level=0, + groupcaps={ + snappy={times={[2]=1.6, [3]=0.40}, uses=50, maxlevel=1}, + }, + damage_groups = {fleshy=2}, + } +}) +minetest.register_tool("default:sword_stone", { + description = "Stone Sword", + inventory_image = "default_tool_stonesword.png", + tool_capabilities = { + full_punch_interval = 1.2, + max_drop_level=0, + groupcaps={ + snappy={times={[2]=1.4, [3]=0.40}, uses=75, maxlevel=1}, + }, + damage_groups = {fleshy=4}, + } +}) +minetest.register_tool("default:sword_steel", { + description = "Steel Sword", + inventory_image = "default_tool_steelsword.png", + tool_capabilities = { + full_punch_interval = 0.8, + max_drop_level=1, + groupcaps={ + snappy={times={[1]=2.5, [2]=1.20, [3]=0.35}, uses=200, maxlevel=2}, + }, + damage_groups = {fleshy=8}, + } +}) +minetest.register_tool("default:sword_bronze", { + description = "Bronze Sword", + inventory_image = "default_tool_bronzesword.png", + tool_capabilities = { + full_punch_interval = 0.8, + max_drop_level=1, + groupcaps={ + snappy={times={[1]=2.5, [2]=1.20, [3]=0.35}, uses=400, maxlevel=2}, + }, + damage_groups = {fleshy=10}, + } +}) +minetest.register_tool("default:sword_mese", { + description = "Mese Sword", + inventory_image = "default_tool_mesesword.png", + tool_capabilities = { + full_punch_interval = 0.7, + max_drop_level=1, + groupcaps={ + snappy={times={[1]=2.0, [2]=1.00, [3]=0.35}, uses=600, maxlevel=3}, + }, + damage_groups = {fleshy=15}, + } +}) +minetest.register_tool("default:sword_diamond", { + description = "Diamond Sword", + inventory_image = "default_tool_diamondsword.png", + tool_capabilities = { + full_punch_interval = 0.7, + max_drop_level=1, + groupcaps={ + snappy={times={[1]=1.90, [2]=0.90, [3]=0.30}, uses=1000, maxlevel=4}, + }, + damage_groups = {fleshy=20}, + } +}) diff --git a/games/minetest_game/mods/default/trees.lua b/games/minetest_game/mods/default/trees.lua new file mode 100644 index 0000000..f2baaf8 --- /dev/null +++ b/games/minetest_game/mods/default/trees.lua @@ -0,0 +1,344 @@ +-- +-- Grow trees +-- + +local random = math.random + +local function can_grow(pos) + local node_under = minetest.get_node_or_nil({x = pos.x, y = pos.y - 1, z = pos.z}) + if not node_under then + return false + end + local name_under = node_under.name + local is_soil = minetest.get_item_group(name_under, "soil") + if is_soil == 0 then + return false + end + return true +end + +-- Sapling ABMs + +minetest.register_abm({ + nodenames = {"default:sapling"}, + interval = 10, + chance = 50, + action = function(pos, node) + if not can_grow(pos) then + return + end + + minetest.log("action", "A sapling grows into a tree at ".. + minetest.pos_to_string(pos)) + default.grow_tree(pos, random(1, 4) == 1) + end +}) + +minetest.register_abm({ + nodenames = {"default:junglesapling"}, + interval = 11, + chance = 50, + action = function(pos, node) + if not can_grow(pos) then + return + end + + minetest.log("action", "A jungle sapling grows into a tree at ".. + minetest.pos_to_string(pos)) + default.grow_jungletree(pos) + end +}) + +minetest.register_abm({ + nodenames = {"default:pine_sapling"}, + interval = 12, + chance = 50, + action = function(pos, node) + if not can_grow(pos) then + return + end + + minetest.log("action", "A pine sapling grows into a tree at ".. + minetest.pos_to_string(pos)) + default.grow_pinetree(pos) + end +}) + +-- Appletree, jungletree function + +local function add_trunk_and_leaves(data, a, pos, tree_cid, leaves_cid, + height, size, iters, is_apple_tree) + local x, y, z = pos.x, pos.y, pos.z + local c_air = minetest.get_content_id("air") + local c_ignore = minetest.get_content_id("ignore") + local c_apple = minetest.get_content_id("default:apple") + + -- Trunk + for y_dist = 0, height - 1 do + local vi = a:index(x, y + y_dist, z) + local node_id = data[vi] + if y_dist == 0 or node_id == c_air or node_id == c_ignore + or node_id == leaves_cid then + data[vi] = tree_cid + end + end + + -- Force leaves near the trunk + for z_dist = -1, 1 do + for y_dist = -size, 1 do + local vi = a:index(x - 1, y + height + y_dist, z + z_dist) + for x_dist = -1, 1 do + if data[vi] == c_air or data[vi] == c_ignore then + if is_apple_tree and random(1, 8) == 1 then + data[vi] = c_apple + else + data[vi] = leaves_cid + end + end + vi = vi + 1 + end + end + end + + -- Randomly add leaves in 2x2x2 clusters. + for i = 1, iters do + local clust_x = x + random(-size, size - 1) + local clust_y = y + height + random(-size, 0) + local clust_z = z + random(-size, size - 1) + + for xi = 0, 1 do + for yi = 0, 1 do + for zi = 0, 1 do + local vi = a:index(clust_x + xi, clust_y + yi, clust_z + zi) + if data[vi] == c_air or data[vi] == c_ignore then + if is_apple_tree and random(1, 8) == 1 then + data[vi] = c_apple + else + data[vi] = leaves_cid + end + end + end + end + end + end +end + +-- Appletree + +function default.grow_tree(pos, is_apple_tree, bad) + --[[ + NOTE: Tree-placing code is currently duplicated in the engine + and in games that have saplings; both are deprecated but not + replaced yet + --]] + if bad then + error("Deprecated use of default.grow_tree") + end + + local x, y, z = pos.x, pos.y, pos.z + local height = random(4, 5) + local c_tree = minetest.get_content_id("default:tree") + local c_leaves = minetest.get_content_id("default:leaves") + + local vm = minetest.get_voxel_manip() + local minp, maxp = vm:read_from_map( + {x = pos.x - 2, y = pos.y, z = pos.z - 2}, + {x = pos.x + 2, y = pos.y + height + 1, z = pos.z + 2} + ) + local a = VoxelArea:new({MinEdge = minp, MaxEdge = maxp}) + local data = vm:get_data() + + add_trunk_and_leaves(data, a, pos, c_tree, c_leaves, height, 2, 8, is_apple_tree) + + vm:set_data(data) + vm:write_to_map() + vm:update_map() +end + +-- Jungletree + +function default.grow_jungletree(pos, bad) + --[[ + NOTE: Jungletree-placing code is currently duplicated in the engine + and in games that have saplings; both are deprecated but not + replaced yet + --]] + if bad then + error("Deprecated use of default.grow_jungletree") + end + + local x, y, z = pos.x, pos.y, pos.z + local height = random(8, 12) + local c_air = minetest.get_content_id("air") + local c_ignore = minetest.get_content_id("ignore") + local c_jungletree = minetest.get_content_id("default:jungletree") + local c_jungleleaves = minetest.get_content_id("default:jungleleaves") + + local vm = minetest.get_voxel_manip() + local minp, maxp = vm:read_from_map( + {x = pos.x - 3, y = pos.y - 1, z = pos.z - 3}, + {x = pos.x + 3, y = pos.y + height + 1, z = pos.z + 3} + ) + local a = VoxelArea:new({MinEdge = minp, MaxEdge = maxp}) + local data = vm:get_data() + + add_trunk_and_leaves(data, a, pos, c_jungletree, c_jungleleaves, height, 3, 30, false) + + -- Roots + for z_dist = -1, 1 do + local vi_1 = a:index(x - 1, y - 1, z + z_dist) + local vi_2 = a:index(x - 1, y, z + z_dist) + for x_dist = -1, 1 do + if random(1, 3) >= 2 then + if data[vi_1] == c_air or data[vi_1] == c_ignore then + data[vi_1] = c_jungletree + elseif data[vi_2] == c_air or data[vi_2] == c_ignore then + data[vi_2] = c_jungletree + end + end + vi_1 = vi_1 + 1 + vi_2 = vi_2 + 1 + end + end + + vm:set_data(data) + vm:write_to_map() + vm:update_map() +end + +-- Pinetree from mg mapgen mod, design by sfan5, pointy top added by paramat + +local function add_pine_needles(data, vi, c_air, c_ignore, c_snow, c_pine_needles) + if data[vi] == c_air or data[vi] == c_ignore or data[vi] == c_snow then + data[vi] = c_pine_needles + end +end + +local function add_snow(data, vi, c_air, c_ignore, c_snow) + if data[vi] == c_air or data[vi] == c_ignore then + data[vi] = c_snow + end +end + +function default.grow_pinetree(pos) + local x, y, z = pos.x, pos.y, pos.z + local maxy = y + random(9, 13) -- Trunk top + + local c_air = minetest.get_content_id("air") + local c_ignore = minetest.get_content_id("ignore") + local c_pinetree = minetest.get_content_id("default:pinetree") + local c_pine_needles = minetest.get_content_id("default:pine_needles") + local c_snow = minetest.get_content_id("default:snow") + local c_snowblock = minetest.get_content_id("default:snowblock") + local c_dirtsnow = minetest.get_content_id("default:dirt_with_snow") + + local vm = minetest.get_voxel_manip() + local minp, maxp = vm:read_from_map( + {x = x - 3, y = y - 1, z = z - 3}, + {x = x + 3, y = maxy + 3, z = z + 3} + ) + local a = VoxelArea:new({MinEdge = minp, MaxEdge = maxp}) + local data = vm:get_data() + + -- Scan for snow nodes near sapling + local snow = false + for yy = y - 1, y + 1 do + for zz = z - 1, z + 1 do + local vi = a:index(x - 1, yy, zz) + for xx = x - 1, x + 1 do + local nodid = data[vi] + if nodid == c_snow + or nodid == c_snowblock + or nodid == c_dirtsnow then + snow = true + end + vi = vi + 1 + end + end + end + + -- Upper branches layer + local dev = 3 + for yy = maxy - 1, maxy + 1 do + for zz = z - dev, z + dev do + local vi = a:index(x - dev, yy, zz) + local via = a:index(x - dev, yy + 1, zz) + for xx = x - dev, x + dev do + if random() < 0.95 - dev * 0.05 then + add_pine_needles(data, vi, c_air, c_ignore, c_snow, + c_pine_needles) + if snow then + add_snow(data, via, c_air, c_ignore, c_snow) + end + end + vi = vi + 1 + via = via + 1 + end + end + dev = dev - 1 + end + + -- Centre top nodes + add_pine_needles(data, a:index(x, maxy + 1, z), c_air, c_ignore, c_snow, + c_pine_needles) + add_pine_needles(data, a:index(x, maxy + 2, z), c_air, c_ignore, c_snow, + c_pine_needles) -- Paramat added a pointy top node + if snow then + add_snow(data, a:index(x, maxy + 3, z), c_air, c_ignore, c_snow) + end + + -- Lower branches layer + local my = 0 + for i = 1, 20 do -- Random 2x2 squares of needles + local xi = x + random(-3, 2) + local yy = maxy + random(-6, -5) + local zi = z + random(-3, 2) + if yy > my then + my = yy + end + for zz = zi, zi+1 do + local vi = a:index(xi, yy, zz) + local via = a:index(xi, yy + 1, zz) + for xx = xi, xi + 1 do + add_pine_needles(data, vi, c_air, c_ignore, c_snow, + c_pine_needles) + if snow then + add_snow(data, via, c_air, c_ignore, c_snow) + end + vi = vi + 1 + via = via + 1 + end + end + end + + local dev = 2 + for yy = my + 1, my + 2 do + for zz = z - dev, z + dev do + local vi = a:index(x - dev, yy, zz) + local via = a:index(x - dev, yy + 1, zz) + for xx = x - dev, x + dev do + if random() < 0.95 - dev * 0.05 then + add_pine_needles(data, vi, c_air, c_ignore, c_snow, + c_pine_needles) + if snow then + add_snow(data, via, c_air, c_ignore, c_snow) + end + end + vi = vi + 1 + via = via + 1 + end + end + dev = dev - 1 + end + + -- Trunk + for yy = y, maxy do + local vi = a:index(x, yy, z) + data[vi] = c_pinetree + end + + vm:set_data(data) + vm:write_to_map() + vm:update_map() +end + diff --git a/games/minetest_game/mods/doors/README.txt b/games/minetest_game/mods/doors/README.txt new file mode 100644 index 0000000..146af8e --- /dev/null +++ b/games/minetest_game/mods/doors/README.txt @@ -0,0 +1,46 @@ +Minetest 0.4 mod: doors +======================= +version: 1.3 + +License of source code: +----------------------- +Copyright (C) 2012 PilzAdam +modified by BlockMen (added sounds, glassdoors[glass, obsidian glass], trapdoor) + +This program is free software. It comes without any warranty, to +the extent permitted by applicable law. You can redistribute it +and/or modify it under the terms of the Do What The Fuck You Want +To Public License, Version 2, as published by Sam Hocevar. See +http://sam.zoy.org/wtfpl/COPYING for more details. + +License of textures +-------------------------------------- +following Textures created by Fernando Zapata (CC BY-SA 3.0): + door_wood.png + door_wood_a.png + door_wood_a_r.png + door_wood_b.png + door_wood_b_r.png + +following Textures created by BlockMen (WTFPL): + door_trapdoor.png + door_obsidian_glass_side.png + +following textures created by celeron55 (CC BY-SA 3.0): + door_trapdoor_side.png + door_glass_a.png + door_glass_b.png + +following Textures created by PenguinDad (CC BY-SA 4.0): + door_glass.png + door_obsidian_glass.png + +All other textures (created by PilzAdam): WTFPL + + +License of sounds +-------------------------------------- +Opening-Sound created by CGEffex (CC BY 3.0), modified by BlockMen + door_open.ogg +Closing-Sound created by bennstir (CC BY 3.0) + door_close.ogg diff --git a/games/minetest_game/mods/doors/depends.txt b/games/minetest_game/mods/doors/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/games/minetest_game/mods/doors/depends.txt @@ -0,0 +1 @@ +default diff --git a/games/minetest_game/mods/doors/init.lua b/games/minetest_game/mods/doors/init.lua new file mode 100644 index 0000000..6ca7613 --- /dev/null +++ b/games/minetest_game/mods/doors/init.lua @@ -0,0 +1,454 @@ +doors = {} + +-- Registers a door +-- name: The name of the door +-- def: a table with the folowing fields: +-- description +-- inventory_image +-- groups +-- tiles_bottom: the tiles of the bottom part of the door {front, side} +-- tiles_top: the tiles of the bottom part of the door {front, side} +-- If the following fields are not defined the default values are used +-- node_box_bottom +-- node_box_top +-- selection_box_bottom +-- selection_box_top +-- only_placer_can_open: if true only the player who placed the door can +-- open it + + +function doors.register_door(name, def) + def.groups.not_in_creative_inventory = 1 + + local box = {{-0.5, -0.5, -0.5, 0.5, 0.5, -0.5+1.5/16}} + + if not def.node_box_bottom then + def.node_box_bottom = box + end + if not def.node_box_top then + def.node_box_top = box + end + if not def.selection_box_bottom then + def.selection_box_bottom= box + end + if not def.selection_box_top then + def.selection_box_top = box + end + + if not def.sound_close_door then + def.sound_close_door = "door_close" + end + if not def.sound_open_door then + def.sound_open_door = "door_open" + end + + + minetest.register_craftitem(name, { + description = def.description, + inventory_image = def.inventory_image, + + on_place = function(itemstack, placer, pointed_thing) + if not pointed_thing.type == "node" then + return itemstack + end + + local ptu = pointed_thing.under + local nu = minetest.get_node(ptu) + if minetest.registered_nodes[nu.name].on_rightclick then + return minetest.registered_nodes[nu.name].on_rightclick(ptu, nu, placer, itemstack) + end + + local pt = pointed_thing.above + local pt2 = {x=pt.x, y=pt.y, z=pt.z} + pt2.y = pt2.y+1 + if + not minetest.registered_nodes[minetest.get_node(pt).name].buildable_to or + not minetest.registered_nodes[minetest.get_node(pt2).name].buildable_to or + not placer or + not placer:is_player() + then + return itemstack + end + + if minetest.is_protected(pt, placer:get_player_name()) or + minetest.is_protected(pt2, placer:get_player_name()) then + minetest.record_protection_violation(pt, placer:get_player_name()) + return itemstack + end + + local p2 = minetest.dir_to_facedir(placer:get_look_dir()) + local pt3 = {x=pt.x, y=pt.y, z=pt.z} + if p2 == 0 then + pt3.x = pt3.x-1 + elseif p2 == 1 then + pt3.z = pt3.z+1 + elseif p2 == 2 then + pt3.x = pt3.x+1 + elseif p2 == 3 then + pt3.z = pt3.z-1 + end + if minetest.get_item_group(minetest.get_node(pt3).name, "door") == 0 then + minetest.set_node(pt, {name=name.."_b_1", param2=p2}) + minetest.set_node(pt2, {name=name.."_t_1", param2=p2}) + else + minetest.set_node(pt, {name=name.."_b_2", param2=p2}) + minetest.set_node(pt2, {name=name.."_t_2", param2=p2}) + minetest.get_meta(pt):set_int("right", 1) + minetest.get_meta(pt2):set_int("right", 1) + end + + if def.only_placer_can_open then + local pn = placer:get_player_name() + local meta = minetest.get_meta(pt) + meta:set_string("doors_owner", pn) + meta:set_string("infotext", "Owned by "..pn) + meta = minetest.get_meta(pt2) + meta:set_string("doors_owner", pn) + meta:set_string("infotext", "Owned by "..pn) + end + + if not minetest.setting_getbool("creative_mode") then + itemstack:take_item() + end + return itemstack + end, + }) + + local tt = def.tiles_top + local tb = def.tiles_bottom + + local function after_dig_node(pos, name, digger) + local node = minetest.get_node(pos) + if node.name == name then + minetest.node_dig(pos, node, digger) + end + end + + local function on_rightclick(pos, dir, check_name, replace, replace_dir, params) + pos.y = pos.y+dir + if not minetest.get_node(pos).name == check_name then + return + end + local p2 = minetest.get_node(pos).param2 + p2 = params[p2+1] + + minetest.swap_node(pos, {name=replace_dir, param2=p2}) + + pos.y = pos.y-dir + minetest.swap_node(pos, {name=replace, param2=p2}) + + local snd_1 = def.sound_close_door + local snd_2 = def.sound_open_door + if params[1] == 3 then + snd_1 = def.sound_open_door + snd_2 = def.sound_close_door + end + + if minetest.get_meta(pos):get_int("right") ~= 0 then + minetest.sound_play(snd_1, {pos = pos, gain = 0.3, max_hear_distance = 10}) + else + minetest.sound_play(snd_2, {pos = pos, gain = 0.3, max_hear_distance = 10}) + end + end + + local function check_player_priv(pos, player) + if not def.only_placer_can_open then + return true + end + local meta = minetest.get_meta(pos) + local pn = player:get_player_name() + return meta:get_string("doors_owner") == pn + end + + minetest.register_node(name.."_b_1", { + tiles = {tb[2], tb[2], tb[2], tb[2], tb[1], tb[1].."^[transformfx"}, + paramtype = "light", + paramtype2 = "facedir", + drop = name, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = def.node_box_bottom + }, + selection_box = { + type = "fixed", + fixed = def.selection_box_bottom + }, + groups = def.groups, + + after_dig_node = function(pos, oldnode, oldmetadata, digger) + pos.y = pos.y+1 + after_dig_node(pos, name.."_t_1", digger) + end, + + on_rightclick = function(pos, node, clicker) + if check_player_priv(pos, clicker) then + on_rightclick(pos, 1, name.."_t_1", name.."_b_2", name.."_t_2", {1,2,3,0}) + end + end, + + can_dig = check_player_priv, + sounds = def.sounds, + sunlight_propagates = def.sunlight + }) + + minetest.register_node(name.."_t_1", { + tiles = {tt[2], tt[2], tt[2], tt[2], tt[1], tt[1].."^[transformfx"}, + paramtype = "light", + paramtype2 = "facedir", + drop = "", + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = def.node_box_top + }, + selection_box = { + type = "fixed", + fixed = def.selection_box_top + }, + groups = def.groups, + + after_dig_node = function(pos, oldnode, oldmetadata, digger) + pos.y = pos.y-1 + after_dig_node(pos, name.."_b_1", digger) + end, + + on_rightclick = function(pos, node, clicker) + if check_player_priv(pos, clicker) then + on_rightclick(pos, -1, name.."_b_1", name.."_t_2", name.."_b_2", {1,2,3,0}) + end + end, + + can_dig = check_player_priv, + sounds = def.sounds, + sunlight_propagates = def.sunlight, + }) + + minetest.register_node(name.."_b_2", { + tiles = {tb[2], tb[2], tb[2], tb[2], tb[1].."^[transformfx", tb[1]}, + paramtype = "light", + paramtype2 = "facedir", + drop = name, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = def.node_box_bottom + }, + selection_box = { + type = "fixed", + fixed = def.selection_box_bottom + }, + groups = def.groups, + + after_dig_node = function(pos, oldnode, oldmetadata, digger) + pos.y = pos.y+1 + after_dig_node(pos, name.."_t_2", digger) + end, + + on_rightclick = function(pos, node, clicker) + if check_player_priv(pos, clicker) then + on_rightclick(pos, 1, name.."_t_2", name.."_b_1", name.."_t_1", {3,0,1,2}) + end + end, + + can_dig = check_player_priv, + sounds = def.sounds, + sunlight_propagates = def.sunlight + }) + + minetest.register_node(name.."_t_2", { + tiles = {tt[2], tt[2], tt[2], tt[2], tt[1].."^[transformfx", tt[1]}, + paramtype = "light", + paramtype2 = "facedir", + drop = "", + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = def.node_box_top + }, + selection_box = { + type = "fixed", + fixed = def.selection_box_top + }, + groups = def.groups, + + after_dig_node = function(pos, oldnode, oldmetadata, digger) + pos.y = pos.y-1 + after_dig_node(pos, name.."_b_2", digger) + end, + + on_rightclick = function(pos, node, clicker) + if check_player_priv(pos, clicker) then + on_rightclick(pos, -1, name.."_b_2", name.."_t_1", name.."_b_1", {3,0,1,2}) + end + end, + + can_dig = check_player_priv, + sounds = def.sounds, + sunlight_propagates = def.sunlight + }) + +end + +doors.register_door("doors:door_wood", { + description = "Wooden Door", + inventory_image = "door_wood.png", + groups = {snappy=1,choppy=2,oddly_breakable_by_hand=3,flammable=2,door=1}, + tiles_bottom = {"door_wood_b.png", "door_brown.png"}, + tiles_top = {"door_wood_a.png", "door_brown.png"}, + only_placer_can_open = true, + sounds = default.node_sound_wood_defaults(), + sunlight = false, +}) + +minetest.register_craft({ + output = "doors:door_wood", + recipe = { + {"group:wood", "group:wood"}, + {"group:wood", "group:wood"}, + {"group:wood", "group:wood"} + } +}) + +doors.register_door("doors:door_steel", { + description = "Steel Door", + inventory_image = "door_steel.png", + groups = {snappy=1,bendy=2,cracky=4,melty=2,level=2,door=1}, + tiles_bottom = {"door_steel_b.png", "door_grey.png"}, + tiles_top = {"door_steel_a.png", "door_grey.png"}, + only_placer_can_open = true, + sounds = default.node_sound_wood_defaults(), + sunlight = false, +}) + +minetest.register_craft({ + output = "doors:door_steel", + recipe = { + {"default:steel_ingot", "default:steel_ingot"}, + {"default:steel_ingot", "default:steel_ingot"}, + {"default:steel_ingot", "default:steel_ingot"} + } +}) + +doors.register_door("doors:door_glass", { + description = "Glass Door", + inventory_image = "door_glass.png", + groups = {snappy=1,cracky=1,oddly_breakable_by_hand=3,door=1}, + tiles_bottom = {"door_glass_b.png", "door_glass_side.png"}, + tiles_top = {"door_glass_a.png", "door_glass_side.png"}, + sounds = default.node_sound_glass_defaults(), + sunlight = true, +}) + +minetest.register_craft({ + output = "doors:door_glass", + recipe = { + {"default:glass", "default:glass"}, + {"default:glass", "default:glass"}, + {"default:glass", "default:glass"} + } +}) + +doors.register_door("doors:door_obsidian_glass", { + description = "Obsidian Glass Door", + inventory_image = "door_obsidian_glass.png", + groups = {snappy=1,cracky=1,oddly_breakable_by_hand=3,door=1}, + tiles_bottom = {"door_obsidian_glass_b.png", "door_obsidian_glass_side.png"}, + tiles_top = {"door_obsidian_glass_b.png", "door_obsidian_glass_side.png"}, + sounds = default.node_sound_glass_defaults(), + sunlight = true, +}) + +minetest.register_craft({ + output = "doors:door_obsidian_glass", + recipe = { + {"default:obsidian_glass", "default:obsidian_glass"}, + {"default:obsidian_glass", "default:obsidian_glass"}, + {"default:obsidian_glass", "default:obsidian_glass"} + } +}) + + +----trapdoor---- + +local function update_door(pos, node) + minetest.set_node(pos, node) +end + +local function punch(pos) + local meta = minetest.get_meta(pos) + local state = meta:get_int("state") + local me = minetest.get_node(pos) + local tmp_node + local tmp_node2 + if state == 1 then + state = 0 + minetest.sound_play("door_close", {pos = pos, gain = 0.3, max_hear_distance = 10}) + tmp_node = {name="doors:trapdoor", param1=me.param1, param2=me.param2} + else + state = 1 + minetest.sound_play("door_open", {pos = pos, gain = 0.3, max_hear_distance = 10}) + tmp_node = {name="doors:trapdoor_open", param1=me.param1, param2=me.param2} + end + update_door(pos, tmp_node) + meta:set_int("state", state) +end + +minetest.register_node("doors:trapdoor", { + description = "Trapdoor", + inventory_image = "door_trapdoor.png", + drawtype = "nodebox", + tiles = {"door_trapdoor.png", "door_trapdoor.png", "door_trapdoor_side.png", "door_trapdoor_side.png", "door_trapdoor_side.png", "door_trapdoor_side.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1}, + sounds = default.node_sound_wood_defaults(), + drop = "doors:trapdoor", + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -0.4, 0.5} + }, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -0.4, 0.5} + }, + on_creation = function(pos) + state = 0 + end, + on_rightclick = function(pos, node, clicker) + punch(pos) + end, +}) + +minetest.register_node("doors:trapdoor_open", { + drawtype = "nodebox", + tiles = {"door_trapdoor_side.png", "door_trapdoor_side.png", "door_trapdoor_side.png", "door_trapdoor_side.png", "door_trapdoor.png", "door_trapdoor.png"}, + paramtype = "light", + paramtype2 = "facedir", + pointable = true, + stack_max = 0, + groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1}, + climbable = true, + sounds = default.node_sound_wood_defaults(), + drop = "doors:trapdoor", + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0.4, 0.5, 0.5, 0.5} + }, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0.4, 0.5, 0.5, 0.5} + }, + on_rightclick = function(pos, node, clicker) + punch(pos) + end, +}) + +minetest.register_craft({ + output = 'doors:trapdoor 2', + recipe = { + {'group:wood', 'group:wood', 'group:wood'}, + {'group:wood', 'group:wood', 'group:wood'}, + {'', '', ''}, + } +}) diff --git a/games/minetest_game/mods/doors/sounds/door_close.ogg b/games/minetest_game/mods/doors/sounds/door_close.ogg new file mode 100644 index 0000000..a39452b Binary files /dev/null and b/games/minetest_game/mods/doors/sounds/door_close.ogg differ diff --git a/games/minetest_game/mods/doors/sounds/door_open.ogg b/games/minetest_game/mods/doors/sounds/door_open.ogg new file mode 100644 index 0000000..7ec7f48 Binary files /dev/null and b/games/minetest_game/mods/doors/sounds/door_open.ogg differ diff --git a/games/minetest_game/mods/doors/textures/door_brown.png b/games/minetest_game/mods/doors/textures/door_brown.png new file mode 100644 index 0000000..77f748d Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_brown.png differ diff --git a/games/minetest_game/mods/doors/textures/door_glass.png b/games/minetest_game/mods/doors/textures/door_glass.png new file mode 100644 index 0000000..49ec245 Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_glass.png differ diff --git a/games/minetest_game/mods/doors/textures/door_glass_a.png b/games/minetest_game/mods/doors/textures/door_glass_a.png new file mode 100644 index 0000000..b4c7fb5 Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_glass_a.png differ diff --git a/games/minetest_game/mods/doors/textures/door_glass_b.png b/games/minetest_game/mods/doors/textures/door_glass_b.png new file mode 100644 index 0000000..b4c7fb5 Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_glass_b.png differ diff --git a/games/minetest_game/mods/doors/textures/door_glass_side.png b/games/minetest_game/mods/doors/textures/door_glass_side.png new file mode 100644 index 0000000..755672b Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_glass_side.png differ diff --git a/games/minetest_game/mods/doors/textures/door_grey.png b/games/minetest_game/mods/doors/textures/door_grey.png new file mode 100644 index 0000000..13665d2 Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_grey.png differ diff --git a/games/minetest_game/mods/doors/textures/door_obsidian_glass.png b/games/minetest_game/mods/doors/textures/door_obsidian_glass.png new file mode 100644 index 0000000..c327720 Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_obsidian_glass.png differ diff --git a/games/minetest_game/mods/doors/textures/door_obsidian_glass_a.png b/games/minetest_game/mods/doors/textures/door_obsidian_glass_a.png new file mode 100644 index 0000000..ef5f8b5 Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_obsidian_glass_a.png differ diff --git a/games/minetest_game/mods/doors/textures/door_obsidian_glass_b.png b/games/minetest_game/mods/doors/textures/door_obsidian_glass_b.png new file mode 100644 index 0000000..ef5f8b5 Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_obsidian_glass_b.png differ diff --git a/games/minetest_game/mods/doors/textures/door_obsidian_glass_side.png b/games/minetest_game/mods/doors/textures/door_obsidian_glass_side.png new file mode 100644 index 0000000..0df598b Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_obsidian_glass_side.png differ diff --git a/games/minetest_game/mods/doors/textures/door_steel.png b/games/minetest_game/mods/doors/textures/door_steel.png new file mode 100644 index 0000000..042a1bc Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_steel.png differ diff --git a/games/minetest_game/mods/doors/textures/door_steel_a.png b/games/minetest_game/mods/doors/textures/door_steel_a.png new file mode 100644 index 0000000..515dafc Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_steel_a.png differ diff --git a/games/minetest_game/mods/doors/textures/door_steel_b.png b/games/minetest_game/mods/doors/textures/door_steel_b.png new file mode 100644 index 0000000..c1b75a4 Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_steel_b.png differ diff --git a/games/minetest_game/mods/doors/textures/door_trapdoor.png b/games/minetest_game/mods/doors/textures/door_trapdoor.png new file mode 100644 index 0000000..3039dd8 Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_trapdoor.png differ diff --git a/games/minetest_game/mods/doors/textures/door_trapdoor_side.png b/games/minetest_game/mods/doors/textures/door_trapdoor_side.png new file mode 100644 index 0000000..c860523 Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_trapdoor_side.png differ diff --git a/games/minetest_game/mods/doors/textures/door_wood.png b/games/minetest_game/mods/doors/textures/door_wood.png new file mode 100644 index 0000000..d3a62ab Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_wood.png differ diff --git a/games/minetest_game/mods/doors/textures/door_wood_a.png b/games/minetest_game/mods/doors/textures/door_wood_a.png new file mode 100644 index 0000000..0317b1f Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_wood_a.png differ diff --git a/games/minetest_game/mods/doors/textures/door_wood_b.png b/games/minetest_game/mods/doors/textures/door_wood_b.png new file mode 100644 index 0000000..f016933 Binary files /dev/null and b/games/minetest_game/mods/doors/textures/door_wood_b.png differ diff --git a/games/minetest_game/mods/dye/README.txt b/games/minetest_game/mods/dye/README.txt new file mode 100644 index 0000000..d414c2c --- /dev/null +++ b/games/minetest_game/mods/dye/README.txt @@ -0,0 +1,15 @@ +Minetest 0.4 mod: dye +====================== + +See init.lua for documentation. + +License of source code and media files: +--------------------------------------- +Copyright (C) 2012 Perttu Ahola (celeron55) + +This program is free software. It comes without any warranty, to +the extent permitted by applicable law. You can redistribute it +and/or modify it under the terms of the Do What The Fuck You Want +To Public License, Version 2, as published by Sam Hocevar. See +http://sam.zoy.org/wtfpl/COPYING for more details. + diff --git a/games/minetest_game/mods/dye/depends.txt b/games/minetest_game/mods/dye/depends.txt new file mode 100644 index 0000000..e69de29 diff --git a/games/minetest_game/mods/dye/init.lua b/games/minetest_game/mods/dye/init.lua new file mode 100644 index 0000000..d7d18f7 --- /dev/null +++ b/games/minetest_game/mods/dye/init.lua @@ -0,0 +1,87 @@ +-- minetest/dye/init.lua + +-- Other mods can use these for looping through available colors +dye = {} +dye.basecolors = {"white", "grey", "black", "red", "yellow", "green", "cyan", "blue", "magenta"} +dye.excolors = {"white", "lightgrey", "grey", "darkgrey", "black", "red", "orange", "yellow", "lime", "green", "aqua", "cyan", "sky_blue", "blue", "violet", "magenta", "red_violet"} + +-- Local stuff +local dyelocal = {} + +-- This collection of colors is partly a historic thing, partly something else. +dyelocal.dyes = { + {"white", "White dye", {dye=1, basecolor_white=1, excolor_white=1, unicolor_white=1}}, + {"grey", "Grey dye", {dye=1, basecolor_grey=1, excolor_grey=1, unicolor_grey=1}}, + {"dark_grey", "Dark grey dye", {dye=1, basecolor_grey=1, excolor_darkgrey=1, unicolor_darkgrey=1}}, + {"black", "Black dye", {dye=1, basecolor_black=1, excolor_black=1, unicolor_black=1}}, + {"violet", "Violet dye", {dye=1, basecolor_magenta=1, excolor_violet=1, unicolor_violet=1}}, + {"blue", "Blue dye", {dye=1, basecolor_blue=1, excolor_blue=1, unicolor_blue=1}}, + {"cyan", "Cyan dye", {dye=1, basecolor_cyan=1, excolor_cyan=1, unicolor_cyan=1}}, + {"dark_green", "Dark green dye",{dye=1, basecolor_green=1, excolor_green=1, unicolor_dark_green=1}}, + {"green", "Green dye", {dye=1, basecolor_green=1, excolor_green=1, unicolor_green=1}}, + {"yellow", "Yellow dye", {dye=1, basecolor_yellow=1, excolor_yellow=1, unicolor_yellow=1}}, + {"brown", "Brown dye", {dye=1, basecolor_brown=1, excolor_orange=1, unicolor_dark_orange=1}}, + {"orange", "Orange dye", {dye=1, basecolor_orange=1, excolor_orange=1, unicolor_orange=1}}, + {"red", "Red dye", {dye=1, basecolor_red=1, excolor_red=1, unicolor_red=1}}, + {"magenta", "Magenta dye", {dye=1, basecolor_magenta=1, excolor_red_violet=1,unicolor_red_violet=1}}, + {"pink", "Pink dye", {dye=1, basecolor_red=1, excolor_red=1, unicolor_light_red=1}}, +} + +-- Define items +for _, row in ipairs(dyelocal.dyes) do + local name = row[1] + local description = row[2] + local groups = row[3] + local item_name = "dye:"..name + local item_image = "dye_"..name..".png" + minetest.register_craftitem(item_name, { + inventory_image = item_image, + description = description, + groups = groups + }) + minetest.register_craft({ + type = "shapeless", + output = item_name.." 4", + recipe = {"group:flower,color_"..name}, + }) +end +-- manually add coal->black dye +minetest.register_craft({ + type = "shapeless", + output = "dye:black 4", + recipe = {"group:coal"}, +}) + +-- Mix recipes +-- Just mix everything to everything somehow sanely + +dyelocal.mixbases = {"magenta", "red", "orange", "brown", "yellow", "green", "dark_green", "cyan", "blue", "violet", "black", "dark_grey", "grey", "white"} + +dyelocal.mixes = { + -- magenta, red, orange, brown, yellow, green, dark_green, cyan, blue, violet, black, dark_grey, grey, white + white = {"pink", "pink", "orange", "orange", "yellow", "green", "green", "grey", "cyan", "violet", "grey", "grey", "white", "white"}, + grey = {"pink", "pink", "orange", "orange", "yellow", "green", "green", "grey", "cyan", "pink", "dark_grey","grey", "grey"}, + dark_grey={"brown","brown", "brown", "brown", "brown","dark_green","dark_green","blue","blue","violet","black", "black"}, + black = {"black", "black", "black", "black", "black", "black", "black", "black", "black", "black", "black"}, + violet= {"magenta","magenta","red", "brown", "red", "cyan", "brown", "blue", "violet","violet"}, + blue = {"violet", "magenta","brown","brown","dark_green","cyan","cyan", "cyan", "blue"}, + cyan = {"blue","brown","dark_green","dark_grey","green","cyan","dark_green","cyan"}, + dark_green={"brown","brown","brown", "brown", "green", "green", "dark_green"}, + green = {"brown", "yellow","yellow","dark_green","green","green"}, + yellow= {"red", "orange", "yellow","orange", "yellow"}, + brown = {"brown", "brown","orange", "brown"}, + orange= {"red", "orange","orange"}, + red = {"magenta","red"}, + magenta={"magenta"}, +} + +for one,results in pairs(dyelocal.mixes) do + for i,result in ipairs(results) do + local another = dyelocal.mixbases[i] + minetest.register_craft({ + type = "shapeless", + output = 'dye:'..result..' 2', + recipe = {'dye:'..one, 'dye:'..another}, + }) + end +end diff --git a/games/minetest_game/mods/dye/textures/dye_black.png b/games/minetest_game/mods/dye/textures/dye_black.png new file mode 100644 index 0000000..1055b6c Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_black.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_blue.png b/games/minetest_game/mods/dye/textures/dye_blue.png new file mode 100644 index 0000000..d1377c6 Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_blue.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_brown.png b/games/minetest_game/mods/dye/textures/dye_brown.png new file mode 100644 index 0000000..77d475c Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_brown.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_cyan.png b/games/minetest_game/mods/dye/textures/dye_cyan.png new file mode 100644 index 0000000..239d66c Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_cyan.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_dark_green.png b/games/minetest_game/mods/dye/textures/dye_dark_green.png new file mode 100644 index 0000000..9606ccf Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_dark_green.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_dark_grey.png b/games/minetest_game/mods/dye/textures/dye_dark_grey.png new file mode 100644 index 0000000..060737b Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_dark_grey.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_green.png b/games/minetest_game/mods/dye/textures/dye_green.png new file mode 100644 index 0000000..0d99ee1 Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_green.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_grey.png b/games/minetest_game/mods/dye/textures/dye_grey.png new file mode 100644 index 0000000..5efb028 Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_grey.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_magenta.png b/games/minetest_game/mods/dye/textures/dye_magenta.png new file mode 100644 index 0000000..c84df62 Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_magenta.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_orange.png b/games/minetest_game/mods/dye/textures/dye_orange.png new file mode 100644 index 0000000..0844907 Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_orange.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_pink.png b/games/minetest_game/mods/dye/textures/dye_pink.png new file mode 100644 index 0000000..c3dec22 Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_pink.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_red.png b/games/minetest_game/mods/dye/textures/dye_red.png new file mode 100644 index 0000000..14eafbf Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_red.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_violet.png b/games/minetest_game/mods/dye/textures/dye_violet.png new file mode 100644 index 0000000..600cbb4 Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_violet.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_white.png b/games/minetest_game/mods/dye/textures/dye_white.png new file mode 100644 index 0000000..2a840a4 Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_white.png differ diff --git a/games/minetest_game/mods/dye/textures/dye_yellow.png b/games/minetest_game/mods/dye/textures/dye_yellow.png new file mode 100644 index 0000000..fe75775 Binary files /dev/null and b/games/minetest_game/mods/dye/textures/dye_yellow.png differ diff --git a/games/minetest_game/mods/farming/API.txt b/games/minetest_game/mods/farming/API.txt new file mode 100644 index 0000000..a2f3d9d --- /dev/null +++ b/games/minetest_game/mods/farming/API.txt @@ -0,0 +1,27 @@ +farming.register_hoe(name, hoe definition) + -> Register a new hoe, see [hoe definition] + +farming.register_plant(name, Plant definition) + -> Register a new growing plant, see [Plant definition] + +Hoe Definition +{ + description = "", -- Description for tooltip + inventory_image = "unknown_item.png", -- Image to be used as wield- and inventory image + max_uses = 30, -- Uses until destroyed + recipe = { -- Craft recipe + {"air", "air", "air"}, + {"", "group:stick"}, + {"", "group:stick"}, + } +} + +Plant definition +{ + description = "", -- Description of seed item + inventory_image = "unknown_item.png", -- Image to be used as seed's wield- and inventory image + steps = 8, -- How many steps the plant has to grow, until it can be harvested + ^ Always provide a plant texture for ech step, format: modname_plantname_i.png (i = stepnumber) + minlight = 13, -- Minimum light to grow + maxlight = LIGHT_MAX -- Maximum light to grow +} \ No newline at end of file diff --git a/games/minetest_game/mods/farming/README.txt b/games/minetest_game/mods/farming/README.txt new file mode 100644 index 0000000..4663181 --- /dev/null +++ b/games/minetest_game/mods/farming/README.txt @@ -0,0 +1,59 @@ +Minetest 0.4 mod: farming +========================= + +License of source code: +----------------------- +Copyright (C) 2014 webdesigner97 + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. + +License of media (textures): +---------------------------- +Created by PilzAdam (License: WTFPL): + farming_bread.png + farming_soil.png + farming_soil_wet.png + farming_soil_wet_side.png + farming_string.png + +Created by BlockMen (License: CC BY 3.0): + farming_tool_diamondhoe.png + farming_tool_mesehoe.png + farming_tool_bronzehoe.png + farming_tool_steelhoe.png + farming_tool_stonehoe.png + farming_tool_woodhoe.png + +Created by VanessaE (License: WTFPL): + farming_cotton_seed.png + farming_wheat_seed.png + farming_flour.png + farming_wheat.png + farming_wheat_1.png + farming_wheat_2.png + farming_wheat_3.png + farming_wheat_4.png + farming_wheat_5.png + farming_wheat_5.png + farming_wheat_7.png + farming_wheat_8.png + farming_cotton_1.png + farming_cotton_2.png + farming_cotton_3.png + farming_cotton_4.png + farming_cotton_5.png + farming_cotton_6.png + farming_cotton_7.png + farming_cotton_8.png diff --git a/games/minetest_game/mods/farming/api.lua b/games/minetest_game/mods/farming/api.lua new file mode 100644 index 0000000..6ce996d --- /dev/null +++ b/games/minetest_game/mods/farming/api.lua @@ -0,0 +1,284 @@ +-- Wear out hoes, place soil +-- TODO Ignore group:flower +farming.hoe_on_use = function(itemstack, user, pointed_thing, uses) + local pt = pointed_thing + -- check if pointing at a node + if not pt then + return + end + if pt.type ~= "node" then + return + end + + local under = minetest.get_node(pt.under) + local p = {x=pt.under.x, y=pt.under.y+1, z=pt.under.z} + local above = minetest.get_node(p) + + -- return if any of the nodes is not registered + if not minetest.registered_nodes[under.name] then + return + end + if not minetest.registered_nodes[above.name] then + return + end + + -- check if the node above the pointed thing is air + if above.name ~= "air" then + return + end + + -- check if pointing at soil + if minetest.get_item_group(under.name, "soil") ~= 1 then + return + end + + -- check if (wet) soil defined + local regN = minetest.registered_nodes + if regN[under.name].soil == nil or regN[under.name].soil.wet == nil or regN[under.name].soil.dry == nil then + return + end + + -- turn the node into soil, wear out item and play sound + minetest.set_node(pt.under, {name = regN[under.name].soil.dry}) + minetest.sound_play("default_dig_crumbly", { + pos = pt.under, + gain = 0.5, + }) + + if not minetest.setting_getbool("creative_mode") then + itemstack:add_wear(65535/(uses-1)) + end + return itemstack +end + +-- Register new hoes +farming.register_hoe = function(name, def) + -- Check for : prefix (register new hoes in your mod's namespace) + if name:sub(1,1) ~= ":" then + name = ":" .. name + end + -- Check def table + if def.description == nil then + def.description = "Hoe" + end + if def.inventory_image == nil then + def.inventory_image = "unknown_item.png" + end + if def.recipe == nil then + def.recipe = { + {"air","air",""}, + {"","group:stick",""}, + {"","group:stick",""} + } + end + if def.max_uses == nil then + def.max_uses = 30 + end + -- Register the tool + minetest.register_tool(name, { + description = def.description, + inventory_image = def.inventory_image, + on_use = function(itemstack, user, pointed_thing) + return farming.hoe_on_use(itemstack, user, pointed_thing, def.max_uses) + end + }) + -- Register its recipe + minetest.register_craft({ + output = name:gsub(":", "", 1), + recipe = def.recipe + }) +end + +-- Seed placement +farming.place_seed = function(itemstack, placer, pointed_thing, plantname) + local pt = pointed_thing + -- check if pointing at a node + if not pt then + return + end + if pt.type ~= "node" then + return + end + + local under = minetest.get_node(pt.under) + local above = minetest.get_node(pt.above) + + -- return if any of the nodes is not registered + if not minetest.registered_nodes[under.name] then + return + end + if not minetest.registered_nodes[above.name] then + return + end + + -- check if pointing at the top of the node + if pt.above.y ~= pt.under.y+1 then + return + end + + -- check if you can replace the node above the pointed node + if not minetest.registered_nodes[above.name].buildable_to then + return + end + + -- check if pointing at soil + if minetest.get_item_group(under.name, "soil") < 2 then + return + end + + -- add the node and remove 1 item from the itemstack + minetest.add_node(pt.above, {name = plantname, param2 = 1}) + if not minetest.setting_getbool("creative_mode") then + itemstack:take_item() + end + return itemstack +end + +-- Register plants +farming.register_plant = function(name, def) + local mname = name:split(":")[1] + local pname = name:split(":")[2] + + -- Check def table + if not def.description then + def.description = "Seed" + end + if not def.inventory_image then + def.inventory_image = "unknown_item.png" + end + if not def.steps then + return nil + end + if not def.minlight then + def.minlight = 1 + end + if not def.maxlight then + def.maxlight = 14 + end + if not def.fertility then + def.fertility = {} + end + + -- Register seed + local g = {seed = 1, snappy = 3, attached_node = 1} + for k, v in pairs(def.fertility) do + g[v] = 1 + end + minetest.register_node(":" .. mname .. ":seed_" .. pname, { + description = def.description, + tiles = {def.inventory_image}, + inventory_image = def.inventory_image, + wield_image = def.inventory_image, + drawtype = "signlike", + groups = g, + paramtype = "light", + paramtype2 = "wallmounted", + walkable = false, + sunlight_propagates = true, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, + }, + fertility = def.fertility, + on_place = function(itemstack, placer, pointed_thing) + return farming.place_seed(itemstack, placer, pointed_thing, mname .. ":seed_" .. pname) + end + }) + + -- Register harvest + minetest.register_craftitem(":" .. mname .. ":" .. pname, { + description = pname:gsub("^%l", string.upper), + inventory_image = mname .. "_" .. pname .. ".png", + }) + + -- Register growing steps + for i=1,def.steps do + local drop = { + items = { + {items = {mname .. ":" .. pname}, rarity = 9 - i}, + {items = {mname .. ":" .. pname}, rarity= 18 - i * 2}, + {items = {mname .. ":seed_" .. pname}, rarity = 9 - i}, + {items = {mname .. ":seed_" .. pname}, rarity = 18 - i * 2}, + } + } + local nodegroups = {snappy = 3, flammable = 2, plant = 1, not_in_creative_inventory = 1, attached_node = 1} + nodegroups[pname] = i + minetest.register_node(mname .. ":" .. pname .. "_" .. i, { + drawtype = "plantlike", + waving = 1, + tiles = {mname .. "_" .. pname .. "_" .. i .. ".png"}, + paramtype = "light", + walkable = false, + buildable_to = true, + is_ground_content = true, + drop = drop, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, + }, + groups = nodegroups, + sounds = default.node_sound_leaves_defaults(), + }) + end + + -- Growing ABM + minetest.register_abm({ + nodenames = {"group:" .. pname, "group:seed"}, + neighbors = {"group:soil"}, + interval = 90, + chance = 2, + action = function(pos, node) + local plant_height = minetest.get_item_group(node.name, pname) + + -- return if already full grown + if plant_height == def.steps then + return + end + + local node_def = minetest.registered_items[node.name] or nil + + -- grow seed + if minetest.get_item_group(node.name, "seed") and node_def.fertility then + local can_grow = false + local soil_node = minetest.get_node_or_nil({x = pos.x, y = pos.y - 1, z = pos.z}) + if not soil_node then + return + end + for _, v in pairs(node_def.fertility) do + if minetest.get_item_group(soil_node.name, v) ~= 0 then + can_grow = true + end + end + if can_grow then + minetest.set_node(pos, {name = node.name:gsub("seed_", "") .. "_1"}) + end + return + end + + -- check if on wet soil + pos.y = pos.y - 1 + local n = minetest.get_node(pos) + if minetest.get_item_group(n.name, "soil") < 3 then + return + end + pos.y = pos.y + 1 + + -- check light + local ll = minetest.get_node_light(pos) + + if not ll or ll < def.minlight or ll > def.maxlight then + return + end + + -- grow + minetest.set_node(pos, {name = mname .. ":" .. pname .. "_" .. plant_height + 1}) + end + }) + + -- Return + local r = { + seed = mname .. ":seed_" .. pname, + harvest = mname .. ":" .. pname + } + return r +end diff --git a/games/minetest_game/mods/farming/depends.txt b/games/minetest_game/mods/farming/depends.txt new file mode 100644 index 0000000..470ec30 --- /dev/null +++ b/games/minetest_game/mods/farming/depends.txt @@ -0,0 +1,2 @@ +default +wool diff --git a/games/minetest_game/mods/farming/hoes.lua b/games/minetest_game/mods/farming/hoes.lua new file mode 100644 index 0000000..084d586 --- /dev/null +++ b/games/minetest_game/mods/farming/hoes.lua @@ -0,0 +1,65 @@ +farming.register_hoe(":farming:hoe_wood", { + description = "Wooden Hoe", + inventory_image = "farming_tool_woodhoe.png", + max_uses = 30, + recipe = { + {"group:wood", "group:wood"}, + {"", "group:stick"}, + {"", "group:stick"}, + } +}) + +farming.register_hoe(":farming:hoe_stone", { + description = "Stone Hoe", + inventory_image = "farming_tool_stonehoe.png", + max_uses = 90, + recipe = { + {"group:stone", "group:stone"}, + {"", "group:stick"}, + {"", "group:stick"}, + } +}) + +farming.register_hoe(":farming:hoe_steel", { + description = "Steel Hoe", + inventory_image = "farming_tool_steelhoe.png", + max_uses = 200, + recipe = { + {"default:steel_ingot", "default:steel_ingot"}, + {"", "group:stick"}, + {"", "group:stick"}, + } +}) + +farming.register_hoe(":farming:hoe_bronze", { + description = "Bronze Hoe", + inventory_image = "farming_tool_bronzehoe.png", + max_uses = 220, + recipe = { + {"default:bronze_ingot", "default:bronze_ingot"}, + {"", "group:stick"}, + {"", "group:stick"}, + } +}) + +farming.register_hoe(":farming:hoe_mese", { + description = "Mese Hoe", + inventory_image = "farming_tool_mesehoe.png", + max_uses = 350, + recipe = { + {"default:mese_crystal", "default:mese_crystal"}, + {"", "group:stick"}, + {"", "group:stick"}, + } +}) + +farming.register_hoe(":farming:hoe_diamond", { + description = "Diamond Hoe", + inventory_image = "farming_tool_diamondhoe.png", + max_uses = 500, + recipe = { + {"default:diamond", "default:diamond"}, + {"", "group:stick"}, + {"", "group:stick"}, + } +}) diff --git a/games/minetest_game/mods/farming/init.lua b/games/minetest_game/mods/farming/init.lua new file mode 100644 index 0000000..ca03341 --- /dev/null +++ b/games/minetest_game/mods/farming/init.lua @@ -0,0 +1,61 @@ +-- Global farming namespace +farming = {} +farming.path = minetest.get_modpath("farming") + +-- Load files +dofile(farming.path .. "/api.lua") +dofile(farming.path .. "/nodes.lua") +dofile(farming.path .. "/hoes.lua") + +-- WHEAT +farming.register_plant("farming:wheat", { + description = "Wheat seed", + inventory_image = "farming_wheat_seed.png", + steps = 8, + minlight = 13, + maxlight = LIGHT_MAX, + fertility = {"grassland"} +}) +minetest.register_craftitem("farming:flour", { + description = "Flour", + inventory_image = "farming_flour.png", +}) + +minetest.register_craftitem("farming:bread", { + description = "Bread", + inventory_image = "farming_bread.png", + on_use = minetest.item_eat(20), -- rnd: breads heals fully +}) + +minetest.register_craft({ + type = "shapeless", + output = "farming:flour", + recipe = {"farming:wheat", "farming:wheat", "farming:wheat", "farming:wheat"} +}) + +minetest.register_craft({ + type = "cooking", + cooktime = 15, + output = "farming:bread", + recipe = "farming:flour" +}) + +-- Cotton +farming.register_plant("farming:cotton", { + description = "Cotton seed", + inventory_image = "farming_cotton_seed.png", + steps = 8, + minlight = 13, + maxlight = LIGHT_MAX, + fertility = {"grassland", "desert"} +}) + +minetest.register_alias("farming:string", "farming:cotton") + +minetest.register_craft({ + output = "wool:white", + recipe = { + {"farming:cotton", "farming:cotton"}, + {"farming:cotton", "farming:cotton"}, + } +}) diff --git a/games/minetest_game/mods/farming/nodes.lua b/games/minetest_game/mods/farming/nodes.lua new file mode 100644 index 0000000..a99f505 --- /dev/null +++ b/games/minetest_game/mods/farming/nodes.lua @@ -0,0 +1,152 @@ +minetest.override_item("default:dirt", { + groups = {crumbly=3,soil=1}, + soil = { + base = "default:dirt", + dry = "farming:soil", + wet = "farming:soil_wet" + } +}) + +minetest.override_item("default:dirt_with_grass", { + groups = {crumbly=3,soil=1}, + soil = { + base = "default:dirt_with_grass", + dry = "farming:soil", + wet = "farming:soil_wet" + } +}) + +minetest.register_node("farming:soil", { + description = "Soil", + tiles = {"default_dirt.png^farming_soil.png", "default_dirt.png"}, + drop = "default:dirt", + is_ground_content = true, + groups = {crumbly=3, not_in_creative_inventory=1, soil=2, grassland = 1, field = 1}, + sounds = default.node_sound_dirt_defaults(), + soil = { + base = "default:dirt", + dry = "farming:soil", + wet = "farming:soil_wet" + } +}) + +minetest.register_node("farming:soil_wet", { + description = "Wet Soil", + tiles = {"default_dirt.png^farming_soil_wet.png", "default_dirt.png^farming_soil_wet_side.png"}, + drop = "default:dirt", + is_ground_content = true, + groups = {crumbly=3, not_in_creative_inventory=1, soil=3, wet = 1, grassland = 1, field = 1}, + sounds = default.node_sound_dirt_defaults(), + soil = { + base = "default:dirt", + dry = "farming:soil", + wet = "farming:soil_wet" + } +}) + +minetest.override_item("default:desert_sand", { + groups = {crumbly=3, falling_node=1, sand=1, soil = 1}, + soil = { + base = "default:desert_sand", + dry = "farming:desert_sand_soil", + wet = "farming:desert_sand_soil_wet" + } +}) +minetest.register_node("farming:desert_sand_soil", { + description = "Desert Sand Soil", + drop = "default:desert_sand", + tiles = {"farming_desert_sand_soil.png", "default_desert_sand.png"}, + is_ground_content = true, + groups = {crumbly=3, not_in_creative_inventory = 1, falling_node=1, sand=1, soil = 2, desert = 1, field = 1}, + sounds = default.node_sound_sand_defaults(), + soil = { + base = "default:desert_sand", + dry = "farming:desert_sand_soil", + wet = "farming:desert_sand_soil_wet" + } +}) + +minetest.register_node("farming:desert_sand_soil_wet", { + description = "Wet Desert Sand Soil", + drop = "default:desert_sand", + tiles = {"farming_desert_sand_soil_wet.png", "farming_desert_sand_soil_wet_side.png"}, + is_ground_content = true, + groups = {crumbly=3, falling_node=1, sand=1, not_in_creative_inventory=1, soil=3, wet = 1, desert = 1, field = 1}, + sounds = default.node_sound_sand_defaults(), + soil = { + base = "default:desert_sand", + dry = "farming:desert_sand_soil", + wet = "farming:desert_sand_soil_wet" + } +}) + +minetest.register_abm({ + nodenames = {"group:field"}, + interval = 15, + chance = 4, + action = function(pos, node) + local n_def = minetest.registered_nodes[node.name] or nil + local wet = n_def.soil.wet or nil + local base = n_def.soil.base or nil + local dry = n_def.soil.dry or nil + if not n_def or not n_def.soil or not wet or not base or not dry then + return + end + + pos.y = pos.y + 1 + local nn = minetest.get_node_or_nil(pos) + if not nn or not nn.name then + return + end + local nn_def = minetest.registered_nodes[nn.name] or nil + pos.y = pos.y - 1 + + if nn_def and nn_def.walkable and minetest.get_item_group(nn.name, "plant") == 0 then + minetest.set_node(pos, {name = base}) + return + end + -- check if there is water nearby + local wet_lvl = minetest.get_item_group(node.name, "wet") + if minetest.find_node_near(pos, 3, {"group:water"}) then + -- if it is dry soil and not base node, turn it into wet soil + if wet_lvl == 0 then + minetest.set_node(pos, {name = wet}) + end + else + -- only turn back if there are no unloaded blocks (and therefore + -- possible water sources) nearby + if not minetest.find_node_near(pos, 3, {"ignore"}) then + -- turn it back into base if it is already dry + if wet_lvl == 0 then + -- only turn it back if there is no plant/seed on top of it + if minetest.get_item_group(nn.name, "plant") == 0 and minetest.get_item_group(nn.name, "seed") == 0 then + minetest.set_node(pos, {name = base}) + end + + -- if its wet turn it back into dry soil + elseif wet_lvl == 1 then + minetest.set_node(pos, {name = dry}) + end + end + end + end, +}) + + +for i = 1, 5 do + minetest.override_item("default:grass_"..i, {drop = { + max_items = 1, + items = { + {items = {'farming:seed_wheat'},rarity = 5}, + {items = {'default:grass_1'}}, + } + }}) +end + +minetest.override_item("default:junglegrass", {drop = { + max_items = 1, + items = { + {items = {'farming:seed_cotton'},rarity = 8}, + {items = {'default:junglegrass'}}, + } +}}) diff --git a/games/minetest_game/mods/farming/textures/farming_bread.png b/games/minetest_game/mods/farming/textures/farming_bread.png new file mode 100644 index 0000000..00e5371 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_bread.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_cotton.png b/games/minetest_game/mods/farming/textures/farming_cotton.png new file mode 100644 index 0000000..e2bbfd7 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_cotton.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_cotton_1.png b/games/minetest_game/mods/farming/textures/farming_cotton_1.png new file mode 100644 index 0000000..2581db5 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_cotton_1.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_cotton_2.png b/games/minetest_game/mods/farming/textures/farming_cotton_2.png new file mode 100644 index 0000000..af9ed34 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_cotton_2.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_cotton_3.png b/games/minetest_game/mods/farming/textures/farming_cotton_3.png new file mode 100644 index 0000000..ba46f3d Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_cotton_3.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_cotton_4.png b/games/minetest_game/mods/farming/textures/farming_cotton_4.png new file mode 100644 index 0000000..e6708b5 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_cotton_4.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_cotton_5.png b/games/minetest_game/mods/farming/textures/farming_cotton_5.png new file mode 100644 index 0000000..0ad6a8f Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_cotton_5.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_cotton_6.png b/games/minetest_game/mods/farming/textures/farming_cotton_6.png new file mode 100644 index 0000000..838fa93 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_cotton_6.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_cotton_7.png b/games/minetest_game/mods/farming/textures/farming_cotton_7.png new file mode 100644 index 0000000..f2623c2 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_cotton_7.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_cotton_8.png b/games/minetest_game/mods/farming/textures/farming_cotton_8.png new file mode 100644 index 0000000..d4bf6bd Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_cotton_8.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_cotton_seed.png b/games/minetest_game/mods/farming/textures/farming_cotton_seed.png new file mode 100644 index 0000000..cff769b Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_cotton_seed.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_desert_sand_soil.png b/games/minetest_game/mods/farming/textures/farming_desert_sand_soil.png new file mode 100644 index 0000000..1450e01 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_desert_sand_soil.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_desert_sand_soil_wet.png b/games/minetest_game/mods/farming/textures/farming_desert_sand_soil_wet.png new file mode 100644 index 0000000..cffa955 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_desert_sand_soil_wet.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_desert_sand_soil_wet_side.png b/games/minetest_game/mods/farming/textures/farming_desert_sand_soil_wet_side.png new file mode 100644 index 0000000..fbb2815 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_desert_sand_soil_wet_side.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_flour.png b/games/minetest_game/mods/farming/textures/farming_flour.png new file mode 100644 index 0000000..bd33f93 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_flour.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_soil.png b/games/minetest_game/mods/farming/textures/farming_soil.png new file mode 100644 index 0000000..6a59fca Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_soil.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_soil_wet.png b/games/minetest_game/mods/farming/textures/farming_soil_wet.png new file mode 100644 index 0000000..7e24c70 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_soil_wet.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_soil_wet_side.png b/games/minetest_game/mods/farming/textures/farming_soil_wet_side.png new file mode 100644 index 0000000..58bc4fb Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_soil_wet_side.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_tool_bronzehoe.png b/games/minetest_game/mods/farming/textures/farming_tool_bronzehoe.png new file mode 100644 index 0000000..ef07a80 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_tool_bronzehoe.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_tool_diamondhoe.png b/games/minetest_game/mods/farming/textures/farming_tool_diamondhoe.png new file mode 100644 index 0000000..093acb8 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_tool_diamondhoe.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_tool_mesehoe.png b/games/minetest_game/mods/farming/textures/farming_tool_mesehoe.png new file mode 100644 index 0000000..ffd597a Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_tool_mesehoe.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_tool_steelhoe.png b/games/minetest_game/mods/farming/textures/farming_tool_steelhoe.png new file mode 100644 index 0000000..893a695 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_tool_steelhoe.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_tool_stonehoe.png b/games/minetest_game/mods/farming/textures/farming_tool_stonehoe.png new file mode 100644 index 0000000..4f8dade Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_tool_stonehoe.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_tool_woodhoe.png b/games/minetest_game/mods/farming/textures/farming_tool_woodhoe.png new file mode 100644 index 0000000..8b20d2d Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_tool_woodhoe.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_wheat.png b/games/minetest_game/mods/farming/textures/farming_wheat.png new file mode 100644 index 0000000..cba5137 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_wheat.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_wheat_1.png b/games/minetest_game/mods/farming/textures/farming_wheat_1.png new file mode 100644 index 0000000..2ca23ee Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_wheat_1.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_wheat_2.png b/games/minetest_game/mods/farming/textures/farming_wheat_2.png new file mode 100644 index 0000000..6ae90d6 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_wheat_2.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_wheat_3.png b/games/minetest_game/mods/farming/textures/farming_wheat_3.png new file mode 100644 index 0000000..29950fe Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_wheat_3.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_wheat_4.png b/games/minetest_game/mods/farming/textures/farming_wheat_4.png new file mode 100644 index 0000000..cdc2003 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_wheat_4.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_wheat_5.png b/games/minetest_game/mods/farming/textures/farming_wheat_5.png new file mode 100644 index 0000000..2ddff03 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_wheat_5.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_wheat_6.png b/games/minetest_game/mods/farming/textures/farming_wheat_6.png new file mode 100644 index 0000000..f7d8145 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_wheat_6.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_wheat_7.png b/games/minetest_game/mods/farming/textures/farming_wheat_7.png new file mode 100644 index 0000000..89a9591 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_wheat_7.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_wheat_8.png b/games/minetest_game/mods/farming/textures/farming_wheat_8.png new file mode 100644 index 0000000..78181ff Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_wheat_8.png differ diff --git a/games/minetest_game/mods/farming/textures/farming_wheat_seed.png b/games/minetest_game/mods/farming/textures/farming_wheat_seed.png new file mode 100644 index 0000000..81fc3b2 Binary files /dev/null and b/games/minetest_game/mods/farming/textures/farming_wheat_seed.png differ diff --git a/games/minetest_game/mods/fire/README.txt b/games/minetest_game/mods/fire/README.txt new file mode 100644 index 0000000..fdbce15 --- /dev/null +++ b/games/minetest_game/mods/fire/README.txt @@ -0,0 +1,32 @@ +Minetest 0.4 mod: fire +====================== + +License of source code: +----------------------- +Copyright (C) 2012 Perttu Ahola (celeron55) + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or +(at your option) any later version. + +http://www.gnu.org/licenses/lgpl-2.1.html + +License of media (textures and sounds) +-------------------------------------- +Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) +http://creativecommons.org/licenses/by-sa/3.0/ + +Authors of media files +----------------------- +Everything not listed in here: +Copyright (C) 2012 Perttu Ahola (celeron55) + +fire_small.ogg sampled from: + http://www.freesound.org/people/dobroide/sounds/4211/ + +fire_large.ogg sampled from: + http://www.freesound.org/people/Dynamicell/sounds/17548/ + +fire_basic_flame_animated.png: + Muadtralk diff --git a/games/minetest_game/mods/fire/init.lua b/games/minetest_game/mods/fire/init.lua new file mode 100644 index 0000000..f932b0c --- /dev/null +++ b/games/minetest_game/mods/fire/init.lua @@ -0,0 +1,186 @@ +-- minetest/fire/init.lua + +fire = {} + +minetest.register_node("fire:basic_flame", { + description = "Fire", + drawtype = "firelike", + tiles = {{ + name="fire_basic_flame_animated.png", + animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=1}, + }}, + inventory_image = "fire_basic_flame.png", + light_source = 14, + groups = {igniter=2,dig_immediate=3}, + drop = '', + walkable = false, + buildable_to = true, + damage_per_second = 4, + + on_construct = function(pos) + minetest.after(0, fire.on_flame_add_at, pos) + end, + + on_destruct = function(pos) + minetest.after(0, fire.on_flame_remove_at, pos) + end, +}) + +fire.D = 6 +-- key: position hash of low corner of area +-- value: {handle=sound handle, name=sound name} +fire.sounds = {} + +function fire.get_area_p0p1(pos) + local p0 = { + x=math.floor(pos.x/fire.D)*fire.D, + y=math.floor(pos.y/fire.D)*fire.D, + z=math.floor(pos.z/fire.D)*fire.D, + } + local p1 = { + x=p0.x+fire.D-1, + y=p0.y+fire.D-1, + z=p0.z+fire.D-1 + } + return p0, p1 +end + +function fire.update_sounds_around(pos) + local p0, p1 = fire.get_area_p0p1(pos) + local cp = {x=(p0.x+p1.x)/2, y=(p0.y+p1.y)/2, z=(p0.z+p1.z)/2} + local flames_p = minetest.find_nodes_in_area(p0, p1, {"fire:basic_flame"}) + --print("number of flames at "..minetest.pos_to_string(p0).."/" + -- ..minetest.pos_to_string(p1)..": "..#flames_p) + local should_have_sound = (#flames_p > 0) + local wanted_sound = nil + if #flames_p >= 9 then + wanted_sound = {name="fire_large", gain=1.5} + elseif #flames_p > 0 then + wanted_sound = {name="fire_small", gain=1.5} + end + local p0_hash = minetest.hash_node_position(p0) + local sound = fire.sounds[p0_hash] + if not sound then + if should_have_sound then + fire.sounds[p0_hash] = { + handle = minetest.sound_play(wanted_sound, {pos=cp, loop=true}), + name = wanted_sound.name, + } + end + else + if not wanted_sound then + minetest.sound_stop(sound.handle) + fire.sounds[p0_hash] = nil + elseif sound.name ~= wanted_sound.name then + minetest.sound_stop(sound.handle) + fire.sounds[p0_hash] = { + handle = minetest.sound_play(wanted_sound, {pos=cp, loop=true}), + name = wanted_sound.name, + } + end + end +end + +function fire.on_flame_add_at(pos) + fire.update_sounds_around(pos) +end + +function fire.on_flame_remove_at(pos) + fire.update_sounds_around(pos) +end + +function fire.find_pos_for_flame_around(pos) + return minetest.find_node_near(pos, 1, {"air"}) +end + +function fire.flame_should_extinguish(pos) + if minetest.setting_getbool("disable_fire") then return true end + --return minetest.find_node_near(pos, 1, {"group:puts_out_fire"}) + local p0 = {x=pos.x-2, y=pos.y, z=pos.z-2} + local p1 = {x=pos.x+2, y=pos.y, z=pos.z+2} + local ps = minetest.find_nodes_in_area(p0, p1, {"group:puts_out_fire"}) + return (#ps ~= 0) +end + +-- Ignite neighboring nodes +minetest.register_abm({ + nodenames = {"group:flammable"}, + neighbors = {"group:igniter"}, + interval = 1, + chance = 2, + action = function(p0, node, _, _) + -- If there is water or stuff like that around flame, don't ignite + if fire.flame_should_extinguish(p0) then + return + end + local p = fire.find_pos_for_flame_around(p0) + if p then + minetest.set_node(p, {name="fire:basic_flame"}) + end + end, +}) + +-- Rarely ignite things from far +minetest.register_abm({ + nodenames = {"group:igniter"}, + neighbors = {"air"}, + interval = 2, + chance = 10, + action = function(p0, node, _, _) + local reg = minetest.registered_nodes[node.name] + if not reg or not reg.groups.igniter or reg.groups.igniter < 2 then + return + end + local d = reg.groups.igniter + local p = minetest.find_node_near(p0, d, {"group:flammable"}) + if p then + -- If there is water or stuff like that around flame, don't ignite + if fire.flame_should_extinguish(p) then + return + end + local p2 = fire.find_pos_for_flame_around(p) + if p2 then + minetest.set_node(p2, {name="fire:basic_flame"}) + end + end + end, +}) + +-- Remove flammable nodes and flame +minetest.register_abm({ + nodenames = {"fire:basic_flame"}, + interval = 1, + chance = 2, + action = function(p0, node, _, _) + -- If there is water or stuff like that around flame, remove flame + if fire.flame_should_extinguish(p0) then + minetest.remove_node(p0) + return + end + -- Make the following things rarer + if math.random(1,3) == 1 then + return + end + -- If there are no flammable nodes around flame, remove flame + if not minetest.find_node_near(p0, 1, {"group:flammable"}) then + minetest.remove_node(p0) + return + end + if math.random(1,4) == 1 then + -- remove a flammable node around flame + local p = minetest.find_node_near(p0, 1, {"group:flammable"}) + if p then + -- If there is water or stuff like that around flame, don't remove + if fire.flame_should_extinguish(p0) then + return + end + minetest.remove_node(p) + nodeupdate(p) + end + else + -- remove flame + minetest.remove_node(p0) + end + end, +}) + diff --git a/games/minetest_game/mods/fire/sounds/fire_large.ogg b/games/minetest_game/mods/fire/sounds/fire_large.ogg new file mode 100644 index 0000000..fe78e62 Binary files /dev/null and b/games/minetest_game/mods/fire/sounds/fire_large.ogg differ diff --git a/games/minetest_game/mods/fire/sounds/fire_small.ogg b/games/minetest_game/mods/fire/sounds/fire_small.ogg new file mode 100644 index 0000000..5aac595 Binary files /dev/null and b/games/minetest_game/mods/fire/sounds/fire_small.ogg differ diff --git a/games/minetest_game/mods/fire/textures/fire_basic_flame.png b/games/minetest_game/mods/fire/textures/fire_basic_flame.png new file mode 100644 index 0000000..7a126e3 Binary files /dev/null and b/games/minetest_game/mods/fire/textures/fire_basic_flame.png differ diff --git a/games/minetest_game/mods/fire/textures/fire_basic_flame_animated.png b/games/minetest_game/mods/fire/textures/fire_basic_flame_animated.png new file mode 100644 index 0000000..3b312e5 Binary files /dev/null and b/games/minetest_game/mods/fire/textures/fire_basic_flame_animated.png differ diff --git a/games/minetest_game/mods/flowers/README.txt b/games/minetest_game/mods/flowers/README.txt new file mode 100644 index 0000000..04f96d9 --- /dev/null +++ b/games/minetest_game/mods/flowers/README.txt @@ -0,0 +1,16 @@ +Minetest 0.4 mod: flowers +========================= + +License of source code: +----------------------- +Copyright (C) 2012-2013 Ironzorg, VanessaE + +This program is free software. It comes without any warranty, to +the extent permitted by applicable law. You can redistribute it +and/or modify it under the terms of the Do What The Fuck You Want +To Public License, Version 2, as published by Sam Hocevar. See +http://sam.zoy.org/wtfpl/COPYING for more details. + +License of media (textures and sounds) +-------------------------------------- +WTFPL diff --git a/games/minetest_game/mods/flowers/depends.txt b/games/minetest_game/mods/flowers/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/games/minetest_game/mods/flowers/depends.txt @@ -0,0 +1 @@ +default diff --git a/games/minetest_game/mods/flowers/init.lua b/games/minetest_game/mods/flowers/init.lua new file mode 100644 index 0000000..6baae4c --- /dev/null +++ b/games/minetest_game/mods/flowers/init.lua @@ -0,0 +1,170 @@ +-- Minetest 0.4 mod: default +-- See README.txt for licensing and other information. + +-- Namespace for functions +flowers = {} + +-- Map Generation +dofile(minetest.get_modpath("flowers").."/mapgen.lua") + +-- Aliases for original flowers mod +minetest.register_alias("flowers:flower_dandelion_white", "flowers:dandelion_white") +minetest.register_alias("flowers:flower_dandelion_yellow", "flowers:dandelion_yellow") +minetest.register_alias("flowers:flower_geranium", "flowers:geranium") +minetest.register_alias("flowers:flower_rose", "flowers:rose") +minetest.register_alias("flowers:flower_tulip", "flowers:tulip") +minetest.register_alias("flowers:flower_viola", "flowers:viola") + +minetest.register_node("flowers:dandelion_white", { + description = "White Dandelion", + drawtype = "plantlike", + tiles = { "flowers_dandelion_white.png" }, + inventory_image = "flowers_dandelion_white.png", + wield_image = "flowers_dandelion_white.png", + sunlight_propagates = true, + paramtype = "light", + walkable = false, + buildable_to = true, + groups = {snappy=3,flammable=2,flower=1,flora=1,attached_node=1,color_white=1}, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = { -0.5, -0.5, -0.5, 0.5, -0.2, 0.5 }, + }, +}) + +minetest.register_node("flowers:dandelion_yellow", { + description = "Yellow Dandelion", + drawtype = "plantlike", + tiles = { "flowers_dandelion_yellow.png" }, + inventory_image = "flowers_dandelion_yellow.png", + wield_image = "flowers_dandelion_yellow.png", + sunlight_propagates = true, + paramtype = "light", + walkable = false, + buildable_to = true, + groups = {snappy=3,flammable=2,flower=1,flora=1,attached_node=1,color_yellow=1}, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = { -0.15, -0.5, -0.15, 0.15, 0.2, 0.15 }, + }, +}) + +minetest.register_node("flowers:geranium", { + description = "Blue Geranium", + drawtype = "plantlike", + tiles = { "flowers_geranium.png" }, + inventory_image = "flowers_geranium.png", + wield_image = "flowers_geranium.png", + sunlight_propagates = true, + paramtype = "light", + walkable = false, + buildable_to = true, + groups = {snappy=3,flammable=2,flower=1,flora=1,attached_node=1,color_blue=1}, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = { -0.15, -0.5, -0.15, 0.15, 0.2, 0.15 }, + }, +}) + +minetest.register_node("flowers:rose", { + description = "Rose", + drawtype = "plantlike", + tiles = { "flowers_rose.png" }, + inventory_image = "flowers_rose.png", + wield_image = "flowers_rose.png", + sunlight_propagates = true, + paramtype = "light", + walkable = false, + buildable_to = true, + groups = {snappy=3,flammable=2,flower=1,flora=1,attached_node=1,color_red=1}, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = { -0.15, -0.5, -0.15, 0.15, 0.3, 0.15 }, + }, +}) + +minetest.register_node("flowers:tulip", { + description = "Tulip", + drawtype = "plantlike", + tiles = { "flowers_tulip.png" }, + inventory_image = "flowers_tulip.png", + wield_image = "flowers_tulip.png", + sunlight_propagates = true, + paramtype = "light", + walkable = false, + buildable_to = true, + groups = {snappy=3,flammable=2,flower=1,flora=1,attached_node=1,color_orange=1}, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = { -0.15, -0.5, -0.15, 0.15, 0.2, 0.15 }, + }, +}) + +minetest.register_node("flowers:viola", { + description = "Viola", + drawtype = "plantlike", + tiles = { "flowers_viola.png" }, + inventory_image = "flowers_viola.png", + wield_image = "flowers_viola.png", + sunlight_propagates = true, + paramtype = "light", + walkable = false, + buildable_to = true, + groups = {snappy=3,flammable=2,flower=1,flora=1,attached_node=1,color_violet=1}, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = { -0.5, -0.5, -0.5, 0.5, -0.2, 0.5 }, + }, +}) + +minetest.register_abm({ + nodenames = {"group:flora"}, + neighbors = {"default:dirt_with_grass", "default:desert_sand"}, + interval = 50, + chance = 25, + action = function(pos, node) + pos.y = pos.y - 1 + local under = minetest.get_node(pos) + pos.y = pos.y + 1 + if under.name == "default:desert_sand" then + minetest.set_node(pos, {name="default:dry_shrub"}) + elseif under.name ~= "default:dirt_with_grass" then + return + end + + local light = minetest.get_node_light(pos) + if not light or light < 13 then + return + end + + local pos0 = {x=pos.x-4,y=pos.y-4,z=pos.z-4} + local pos1 = {x=pos.x+4,y=pos.y+4,z=pos.z+4} + if #minetest.find_nodes_in_area(pos0, pos1, "group:flora_block") > 0 then + return + end + + local flowers = minetest.find_nodes_in_area(pos0, pos1, "group:flora") + if #flowers > 3 then + return + end + + local seedling = minetest.find_nodes_in_area(pos0, pos1, "default:dirt_with_grass") + if #seedling > 0 then + seedling = seedling[math.random(#seedling)] + seedling.y = seedling.y + 1 + light = minetest.get_node_light(seedling) + if not light or light < 13 then + return + end + if minetest.get_node(seedling).name == "air" then + minetest.set_node(seedling, {name=node.name}) + end + end + end, +}) diff --git a/games/minetest_game/mods/flowers/mapgen.lua b/games/minetest_game/mods/flowers/mapgen.lua new file mode 100644 index 0000000..55e0edc --- /dev/null +++ b/games/minetest_game/mods/flowers/mapgen.lua @@ -0,0 +1,70 @@ +function flowers.mgv6ongen(minp, maxp, seed) + if maxp.y >= 2 and minp.y <= 0 then + -- Generate flowers + local perlin1 = minetest.get_perlin(436, 3, 0.6, 100) + -- Assume X and Z lengths are equal + local divlen = 16 + local divs = (maxp.x-minp.x)/divlen+1; + for divx=0,divs-1 do + for divz=0,divs-1 do + local x0 = minp.x + math.floor((divx+0)*divlen) + local z0 = minp.z + math.floor((divz+0)*divlen) + local x1 = minp.x + math.floor((divx+1)*divlen) + local z1 = minp.z + math.floor((divz+1)*divlen) + -- Determine flowers amount from perlin noise + local grass_amount = math.floor(perlin1:get2d({x=x0, y=z0}) ^ 3 * 9) + -- Find random positions for flowers based on this random + local pr = PseudoRandom(seed+456) + for i=0,grass_amount do + local x = pr:next(x0, x1) + local z = pr:next(z0, z1) + -- Find ground level (0...15) + local ground_y = nil + for y=30,0,-1 do + if minetest.get_node({x=x,y=y,z=z}).name ~= "air" then + ground_y = y + break + end + end + + if ground_y then + local p = {x=x,y=ground_y+1,z=z} + local nn = minetest.get_node(p).name + -- Check if the node can be replaced + if minetest.registered_nodes[nn] and + minetest.registered_nodes[nn].buildable_to then + nn = minetest.get_node({x=x,y=ground_y,z=z}).name + if nn == "default:dirt_with_grass" then + local flower_choice = pr:next(1, 6) + local flower + if flower_choice == 1 then + flower = "flowers:tulip" + elseif flower_choice == 2 then + flower = "flowers:rose" + elseif flower_choice == 3 then + flower = "flowers:dandelion_yellow" + elseif flower_choice == 4 then + flower = "flowers:dandelion_white" + elseif flower_choice == 5 then + flower = "flowers:geranium" + elseif flower_choice == 6 then + flower = "flowers:viola" + end + minetest.set_node(p, {name=flower}) + end + end + end + + end + end + end + end +end + +-- Enable in mapgen v6 only + +minetest.register_on_mapgen_init(function(mg_params) + if mg_params.mgname == "v6" then + minetest.register_on_generated(flowers.mgv6ongen) + end +end) diff --git a/games/minetest_game/mods/flowers/textures/flowers_dandelion_white.png b/games/minetest_game/mods/flowers/textures/flowers_dandelion_white.png new file mode 100644 index 0000000..8c0e9fe Binary files /dev/null and b/games/minetest_game/mods/flowers/textures/flowers_dandelion_white.png differ diff --git a/games/minetest_game/mods/flowers/textures/flowers_dandelion_yellow.png b/games/minetest_game/mods/flowers/textures/flowers_dandelion_yellow.png new file mode 100644 index 0000000..ae14554 Binary files /dev/null and b/games/minetest_game/mods/flowers/textures/flowers_dandelion_yellow.png differ diff --git a/games/minetest_game/mods/flowers/textures/flowers_geranium.png b/games/minetest_game/mods/flowers/textures/flowers_geranium.png new file mode 100644 index 0000000..ed49950 Binary files /dev/null and b/games/minetest_game/mods/flowers/textures/flowers_geranium.png differ diff --git a/games/minetest_game/mods/flowers/textures/flowers_rose.png b/games/minetest_game/mods/flowers/textures/flowers_rose.png new file mode 100644 index 0000000..3e72bd6 Binary files /dev/null and b/games/minetest_game/mods/flowers/textures/flowers_rose.png differ diff --git a/games/minetest_game/mods/flowers/textures/flowers_tulip.png b/games/minetest_game/mods/flowers/textures/flowers_tulip.png new file mode 100644 index 0000000..293b041 Binary files /dev/null and b/games/minetest_game/mods/flowers/textures/flowers_tulip.png differ diff --git a/games/minetest_game/mods/flowers/textures/flowers_viola.png b/games/minetest_game/mods/flowers/textures/flowers_viola.png new file mode 100644 index 0000000..e176765 Binary files /dev/null and b/games/minetest_game/mods/flowers/textures/flowers_viola.png differ diff --git a/games/minetest_game/mods/give_initial_stuff/depends.txt b/games/minetest_game/mods/give_initial_stuff/depends.txt new file mode 100644 index 0000000..3a7daa1 --- /dev/null +++ b/games/minetest_game/mods/give_initial_stuff/depends.txt @@ -0,0 +1,2 @@ +default + diff --git a/games/minetest_game/mods/give_initial_stuff/init.lua b/games/minetest_game/mods/give_initial_stuff/init.lua new file mode 100644 index 0000000..c65ddea --- /dev/null +++ b/games/minetest_game/mods/give_initial_stuff/init.lua @@ -0,0 +1,12 @@ +minetest.register_on_newplayer(function(player) + --print("on_newplayer") + if minetest.setting_getbool("give_initial_stuff") then + minetest.log("action", "Giving initial stuff to player "..player:get_player_name()) + player:get_inventory():add_item('main', 'default:pick_steel') + player:get_inventory():add_item('main', 'default:torch 99') + player:get_inventory():add_item('main', 'default:axe_steel') + player:get_inventory():add_item('main', 'default:shovel_steel') + player:get_inventory():add_item('main', 'default:cobble 99') + end +end) + diff --git a/games/minetest_game/mods/screwdriver/init.lua b/games/minetest_game/mods/screwdriver/init.lua new file mode 100644 index 0000000..65e7f00 --- /dev/null +++ b/games/minetest_game/mods/screwdriver/init.lua @@ -0,0 +1,87 @@ +local function nextrange(x, max) + x = x + 1 + if x > max then + x = 0 + end + return x +end + +local ROTATE_FACE = 1 +local ROTATE_AXIS = 2 +local USES = 200 + +-- Handles rotation +local function screwdriver_handler(itemstack, user, pointed_thing, mode) + if pointed_thing.type ~= "node" then + return + end + + local pos = pointed_thing.under + + if minetest.is_protected(pos, user:get_player_name()) then + minetest.record_protection_violation(pos, user:get_player_name()) + return + end + + local node = minetest.get_node(pos) + local ndef = minetest.registered_nodes[node.name] + if not ndef or not ndef.paramtype2 == "facedir" or + (ndef.drawtype == "nodebox" and + not ndef.node_box.type == "fixed") or + node.param2 == nil then + return + end + + if ndef.can_dig and not ndef.can_dig(pos, user) then + return + end + + -- Set param2 + local rotationPart = node.param2 % 32 -- get first 4 bits + local preservePart = node.param2 - rotationPart + + local axisdir = math.floor(rotationPart / 4) + local rotation = rotationPart - axisdir * 4 + if mode == ROTATE_FACE then + rotationPart = axisdir * 4 + nextrange(rotation, 3) + elseif mode == ROTATE_AXIS then + rotationPart = nextrange(axisdir, 5) * 4 + end + + node.param2 = preservePart + rotationPart + minetest.swap_node(pos, node) + + if not minetest.setting_getbool("creative_mode") then + itemstack:add_wear(65535 / (USES - 1)) + end + + return itemstack +end + +-- Screwdriver +minetest.register_tool("screwdriver:screwdriver", { + description = "Screwdriver (left-click rotates face, right-click rotates axis)", + inventory_image = "screwdriver.png", + on_use = function(itemstack, user, pointed_thing) + screwdriver_handler(itemstack, user, pointed_thing, ROTATE_FACE) + return itemstack + end, + on_place = function(itemstack, user, pointed_thing) + screwdriver_handler(itemstack, user, pointed_thing, ROTATE_AXIS) + return itemstack + end, +}) + + +minetest.register_craft({ + output = "screwdriver:screwdriver", + recipe = { + {"default:steel_ingot"}, + {"group:stick"} + } +}) + +minetest.register_alias("screwdriver:screwdriver1", "screwdriver:screwdriver") +minetest.register_alias("screwdriver:screwdriver2", "screwdriver:screwdriver") +minetest.register_alias("screwdriver:screwdriver3", "screwdriver:screwdriver") +minetest.register_alias("screwdriver:screwdriver4", "screwdriver:screwdriver") diff --git a/games/minetest_game/mods/screwdriver/readme.txt b/games/minetest_game/mods/screwdriver/readme.txt new file mode 100644 index 0000000..d0b10e0 --- /dev/null +++ b/games/minetest_game/mods/screwdriver/readme.txt @@ -0,0 +1,18 @@ +Minetest mod: screwdriver +========================= + +License of source code: +----------------------- +Copyright (C) 2013 RealBadAngel, Maciej Kasatkin + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +http://www.gnu.org/licenses/lgpl-2.1.html + +License of media (textures and sounds) +-------------------------------------- +Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) +http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/games/minetest_game/mods/screwdriver/textures/screwdriver.png b/games/minetest_game/mods/screwdriver/textures/screwdriver.png new file mode 100644 index 0000000..33cb83f Binary files /dev/null and b/games/minetest_game/mods/screwdriver/textures/screwdriver.png differ diff --git a/games/minetest_game/mods/sethome/init.lua b/games/minetest_game/mods/sethome/init.lua new file mode 100644 index 0000000..72c6c1e --- /dev/null +++ b/games/minetest_game/mods/sethome/init.lua @@ -0,0 +1,65 @@ +local homes_file = minetest.get_worldpath() .. "/homes" +homepos = {} --rnd + +local function loadhomes() + local input = io.open(homes_file, "r") + if input then + repeat + local x = input:read("*n") + if x == nil then + break + end + local y = input:read("*n") + local z = input:read("*n") + local name = input:read("*l") + homepos[name:sub(2)] = {x = x, y = y, z = z} + until input:read(0) == nil + io.close(input) + else + homepos = {} + end +end + +loadhomes() + +minetest.register_privilege("home", "Can use /sethome and /home") + +local changed = false + +minetest.register_chatcommand("home", { + description = "Teleport you to your home point", + privs = {home=false}, --rnd + func = function(name) + local player = minetest.get_player_by_name(name) + if player == nil then + -- just a check to prevent the server crashing + return false + end + if homepos[player:get_player_name()] then + player:setpos(homepos[player:get_player_name()]) + minetest.chat_send_player(name, "Teleported to home!") + else + minetest.chat_send_player(name, "Set a home using /sethome") + end + end, +}) + +minetest.register_chatcommand("sethome", { + description = "Set your home point", + privs = {home=true}, + func = function(name) + local player = minetest.get_player_by_name(name) + local pos = player:getpos() + homepos[player:get_player_name()] = pos + minetest.chat_send_player(name, "Home set!") + changed = true + if changed then + local output = io.open(homes_file, "w") + for i, v in pairs(homepos) do + output:write(v.x.." "..v.y.." "..v.z.." "..i.."\n") + end + io.close(output) + changed = false + end + end, +}) diff --git a/games/minetest_game/mods/stairs/README.txt b/games/minetest_game/mods/stairs/README.txt new file mode 100644 index 0000000..716a677 --- /dev/null +++ b/games/minetest_game/mods/stairs/README.txt @@ -0,0 +1,26 @@ +Minetest 0.4 mod: stairs +========================= + +License of source code: +----------------------- +Copyright (C) 2011-2012 Kahrl +Copyright (C) 2011-2012 celeron55, Perttu Ahola + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +http://www.gnu.org/licenses/lgpl-2.1.html + +License of media (textures and sounds) +-------------------------------------- +Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) +http://creativecommons.org/licenses/by-sa/3.0/ + +Authors of media files +----------------------- +Everything not listed in here: +Copyright (C) 2010-2012 celeron55, Perttu Ahola + + diff --git a/games/minetest_game/mods/stairs/depends.txt b/games/minetest_game/mods/stairs/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/games/minetest_game/mods/stairs/depends.txt @@ -0,0 +1 @@ +default diff --git a/games/minetest_game/mods/stairs/init.lua b/games/minetest_game/mods/stairs/init.lua new file mode 100644 index 0000000..c7df28c --- /dev/null +++ b/games/minetest_game/mods/stairs/init.lua @@ -0,0 +1,298 @@ +-- Minetest 0.4 mod: stairs +-- See README.txt for licensing and other information. + +stairs = {} + +-- Node will be called stairs:stair_ +function stairs.register_stair(subname, recipeitem, groups, images, description, sounds) + minetest.register_node(":stairs:stair_" .. subname, { + description = description, + drawtype = "nodebox", + tiles = images, + paramtype = "light", + paramtype2 = "facedir", + is_ground_content = true, + groups = groups, + sounds = sounds, + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + {-0.5, 0, 0, 0.5, 0.5, 0.5}, + }, + }, + on_place = function(itemstack, placer, pointed_thing) + if pointed_thing.type ~= "node" then + return itemstack + end + + local p0 = pointed_thing.under + local p1 = pointed_thing.above + local param2 = 0 + + local placer_pos = placer:getpos() + if placer_pos then + local dir = { + x = p1.x - placer_pos.x, + y = p1.y - placer_pos.y, + z = p1.z - placer_pos.z + } + param2 = minetest.dir_to_facedir(dir) + end + + if p0.y-1 == p1.y then + param2 = param2 + 20 + if param2 == 21 then + param2 = 23 + elseif param2 == 23 then + param2 = 21 + end + end + + return minetest.item_place(itemstack, placer, pointed_thing, param2) + end, + }) + + -- for replace ABM + minetest.register_node(":stairs:stair_" .. subname.."upside_down", { + replace_name = "stairs:stair_" .. subname, + groups = {slabs_replace=1}, + }) + + minetest.register_craft({ + output = 'stairs:stair_' .. subname .. ' 6', + recipe = { + {recipeitem, "", ""}, + {recipeitem, recipeitem, ""}, + {recipeitem, recipeitem, recipeitem}, + }, + }) + + -- Flipped recipe for the silly minecrafters + minetest.register_craft({ + output = 'stairs:stair_' .. subname .. ' 6', + recipe = { + {"", "", recipeitem}, + {"", recipeitem, recipeitem}, + {recipeitem, recipeitem, recipeitem}, + }, + }) +end + +-- Node will be called stairs:slab_ +function stairs.register_slab(subname, recipeitem, groups, images, description, sounds) + minetest.register_node(":stairs:slab_" .. subname, { + description = description, + drawtype = "nodebox", + tiles = images, + paramtype = "light", + paramtype2 = "facedir", + is_ground_content = true, + groups = groups, + sounds = sounds, + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + }, + on_place = function(itemstack, placer, pointed_thing) + if pointed_thing.type ~= "node" then + return itemstack + end + + -- If it's being placed on an another similar one, replace it with + -- a full block + local slabpos = nil + local slabnode = nil + local p0 = pointed_thing.under + local p1 = pointed_thing.above + local n0 = minetest.get_node(p0) + local n1 = minetest.get_node(p1) + local param2 = 0 + + local n0_is_upside_down = (n0.name == "stairs:slab_" .. subname and + n0.param2 >= 20) + + if n0.name == "stairs:slab_" .. subname and not n0_is_upside_down and p0.y+1 == p1.y then + slabpos = p0 + slabnode = n0 + elseif n1.name == "stairs:slab_" .. subname then + slabpos = p1 + slabnode = n1 + end + if slabpos then + -- Remove the slab at slabpos + minetest.remove_node(slabpos) + -- Make a fake stack of a single item and try to place it + local fakestack = ItemStack(recipeitem) + fakestack:set_count(itemstack:get_count()) + + pointed_thing.above = slabpos + local success + fakestack, success = minetest.item_place(fakestack, placer, pointed_thing) + -- If the item was taken from the fake stack, decrement original + if success then + itemstack:set_count(fakestack:get_count()) + -- Else put old node back + else + minetest.set_node(slabpos, slabnode) + end + return itemstack + end + + -- Upside down slabs + if p0.y-1 == p1.y then + -- Turn into full block if pointing at a existing slab + if n0_is_upside_down then + -- Remove the slab at the position of the slab + minetest.remove_node(p0) + -- Make a fake stack of a single item and try to place it + local fakestack = ItemStack(recipeitem) + fakestack:set_count(itemstack:get_count()) + + pointed_thing.above = p0 + local success + fakestack, success = minetest.item_place(fakestack, placer, pointed_thing) + -- If the item was taken from the fake stack, decrement original + if success then + itemstack:set_count(fakestack:get_count()) + -- Else put old node back + else + minetest.set_node(p0, n0) + end + return itemstack + end + + -- Place upside down slab + param2 = 20 + end + + -- If pointing at the side of a upside down slab + if n0_is_upside_down and p0.y+1 ~= p1.y then + param2 = 20 + end + + return minetest.item_place(itemstack, placer, pointed_thing, param2) + end, + }) + + -- for replace ABM + minetest.register_node(":stairs:slab_" .. subname.."upside_down", { + replace_name = "stairs:slab_"..subname, + groups = {slabs_replace=1}, + }) + + minetest.register_craft({ + output = 'stairs:slab_' .. subname .. ' 6', + recipe = { + {recipeitem, recipeitem, recipeitem}, + }, + }) +end + +-- Replace old "upside_down" nodes with new param2 versions +minetest.register_abm({ + nodenames = {"group:slabs_replace"}, + interval = 1, + chance = 1, + action = function(pos, node) + node.name = minetest.registered_nodes[node.name].replace_name + node.param2 = node.param2 + 20 + if node.param2 == 21 then + node.param2 = 23 + elseif node.param2 == 23 then + node.param2 = 21 + end + minetest.set_node(pos, node) + end, +}) + +-- Nodes will be called stairs:{stair,slab}_ +function stairs.register_stair_and_slab(subname, recipeitem, groups, images, desc_stair, desc_slab, sounds) + stairs.register_stair(subname, recipeitem, groups, images, desc_stair, sounds) + stairs.register_slab(subname, recipeitem, groups, images, desc_slab, sounds) +end + +stairs.register_stair_and_slab("wood", "default:wood", + {snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3}, + {"default_wood.png"}, + "Wooden Stair", + "Wooden Slab", + default.node_sound_wood_defaults()) + +stairs.register_stair_and_slab("stone", "default:stone", + {cracky=3}, + {"default_stone.png"}, + "Stone Stair", + "Stone Slab", + default.node_sound_stone_defaults()) + +stairs.register_stair_and_slab("cobble", "default:cobble", + {cracky=3}, + {"default_cobble.png"}, + "Cobblestone Stair", + "Cobblestone Slab", + default.node_sound_stone_defaults()) + +stairs.register_stair_and_slab("desert_stone", "default:desert_stone", + {cracky=3}, + {"default_desert_stone.png"}, + "Desertstone Stair", + "Desertstone Slab", + default.node_sound_stone_defaults()) + +stairs.register_stair_and_slab("desert_cobble", "default:desert_cobble", + {cracky=3}, + {"default_desert_cobble.png"}, + "Desert Cobblestone Stair", + "Desert Cobblestone Slab", + default.node_sound_stone_defaults()) + +stairs.register_stair_and_slab("desert_stonebrick", "default:desert_stonebrick", + {cracky=3}, + {"default_desert_stone_brick.png"}, + "Desert Stone Brick Stair", + "Desert Stone Brick Slab", + default.node_sound_stone_defaults()) + +stairs.register_stair_and_slab("brick", "default:brick", + {cracky=3}, + {"default_brick.png"}, + "Brick Stair", + "Brick Slab", + default.node_sound_stone_defaults()) + +stairs.register_stair_and_slab("sandstone", "default:sandstone", + {crumbly=2,cracky=2}, + {"default_sandstone.png"}, + "Sandstone Stair", + "Sandstone Slab", + default.node_sound_stone_defaults()) + +stairs.register_stair_and_slab("sandstonebrick", "default:sandstonebrick", + {crumbly=2,cracky=2}, + {"default_sandstone_brick.png"}, + "Sandstone Brick Stair", + "Sandstone Brick Slab", + default.node_sound_stone_defaults()) + +stairs.register_stair_and_slab("junglewood", "default:junglewood", + {snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3}, + {"default_junglewood.png"}, + "Junglewood Stair", + "Junglewood Slab", + default.node_sound_wood_defaults()) + +stairs.register_stair_and_slab("stonebrick", "default:stonebrick", + {cracky=3}, + {"default_stone_brick.png"}, + "Stone Brick Stair", + "Stone Brick Slab", + default.node_sound_stone_defaults()) + +stairs.register_stair_and_slab("pinewood", "default:pinewood", + {snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3}, + {"default_pinewood.png"}, + "Pinewood Stair", + "Pinewood Slab", + default.node_sound_wood_defaults()) + diff --git a/games/minetest_game/mods/tnt/README.txt b/games/minetest_game/mods/tnt/README.txt new file mode 100644 index 0000000..90a3467 --- /dev/null +++ b/games/minetest_game/mods/tnt/README.txt @@ -0,0 +1,36 @@ +=== TNT mod for Minetest === +by PilzAdam and ShadowNinja + +Introduction: +This mod adds TNT to Minetest. TNT is a tool to help the player +in mining. + +How to use the mod: +Craft gunpowder by placing coal and gravel in the crafting area. The +gunpowder can be used to craft TNT or as fuze for TNT. To craft TNT +surround gunpowder with 4 wood in a + shape. +There are different ways to blow up TNT: + 1. Hit it with a torch. + 2. Hit a gunpowder fuze that leads to a TNT block with a torch. + 3. Activate it with mesecons (fastest way) +Be aware of the damage radius of 7 blocks! + +License: +WTFPL (see below) + +See also: +http://minetest.net/ + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/games/minetest_game/mods/tnt/depends.txt b/games/minetest_game/mods/tnt/depends.txt new file mode 100644 index 0000000..5ff216f --- /dev/null +++ b/games/minetest_game/mods/tnt/depends.txt @@ -0,0 +1,3 @@ +default +fire + diff --git a/games/minetest_game/mods/tnt/init.lua b/games/minetest_game/mods/tnt/init.lua new file mode 100644 index 0000000..65f29dd --- /dev/null +++ b/games/minetest_game/mods/tnt/init.lua @@ -0,0 +1,356 @@ + +-- Default to enabled in singleplayer and disabled in multiplayer +local singleplayer = minetest.is_singleplayer() +local setting = minetest.setting_getbool("enable_tnt") +if (not singleplayer and setting ~= true) or + (singleplayer and setting == false) then + return +end + +-- loss probabilities array (one in X will be lost) +local loss_prob = {} + +loss_prob["default:cobble"] = 3 +loss_prob["default:dirt"] = 4 + +local radius = 1 -- RND tonumber(minetest.setting_get("tnt_radius") or 3) + +-- Fill a list with data for content IDs, after all nodes are registered +local cid_data = {} +minetest.after(0, function() + for name, def in pairs(minetest.registered_nodes) do + cid_data[minetest.get_content_id(name)] = { + name = name, + drops = def.drops, + flammable = def.groups.flammable, + } + end +end) + +local function rand_pos(center, pos, radius) + pos.x = center.x + math.random(-radius, radius) + pos.z = center.z + math.random(-radius, radius) +end + +local function eject_drops(drops, pos, radius) + local drop_pos = vector.new(pos) + for _, item in pairs(drops) do + local count = item:get_count() + local max = item:get_stack_max() + if count > max then + item:set_count(max) + end + while count > 0 do + if count < max then + item:set_count(count) + end + rand_pos(pos, drop_pos, radius) + local obj = minetest.add_item(drop_pos, item) + if obj then + obj:get_luaentity().collect = true + obj:setacceleration({x=0, y=-10, z=0}) + obj:setvelocity({x=math.random(-3, 3), y=10, + z=math.random(-3, 3)}) + end + count = count - max + end + end +end + +local function add_drop(drops, item) + item = ItemStack(item) + local name = item:get_name() + if loss_prob[name] ~= nil and math.random(1, loss_prob[name]) == 1 then + return + end + + local drop = drops[name] + if drop == nil then + drops[name] = item + else + drop:set_count(drop:get_count() + item:get_count()) + end +end + +local fire_node = {name="fire:basic_flame"} + +local function destroy(drops, pos, cid) + if minetest.is_protected(pos, "") then + return + end + local def = cid_data[cid] + if def and def.flammable then + minetest.set_node(pos, fire_node) + else + minetest.remove_node(pos) + if def then + local node_drops = minetest.get_node_drops(def.name, "") + for _, item in ipairs(node_drops) do + add_drop(drops, item) + end + end + end +end + + +local function calc_velocity(pos1, pos2, old_vel, power) + local vel = vector.direction(pos1, pos2) + vel = vector.normalize(vel) + vel = vector.multiply(vel, power) + + -- Divide by distance + local dist = vector.distance(pos1, pos2) + dist = math.max(dist, 1) + vel = vector.divide(vel, dist) + + -- Add old velocity + vel = vector.add(vel, old_vel) + return vel +end + +local function entity_physics(pos, radius) + -- Make the damage radius larger than the destruction radius + radius = radius * 2 + local objs = minetest.get_objects_inside_radius(pos, radius) + for _, obj in pairs(objs) do + local obj_pos = obj:getpos() + local obj_vel = obj:getvelocity() + local dist = math.max(1, vector.distance(pos, obj_pos)) + + if obj_vel ~= nil then + obj:setvelocity(calc_velocity(pos, obj_pos, + obj_vel, radius * 10)) + end + + local damage = (4 / dist) * radius + obj:set_hp(obj:get_hp() - damage) + end +end + +local function add_effects(pos, radius) + minetest.add_particlespawner({ + amount = 128, + time = 1, + minpos = vector.subtract(pos, radius / 2), + maxpos = vector.add(pos, radius / 2), + minvel = {x=-20, y=-20, z=-20}, + maxvel = {x=20, y=20, z=20}, + minacc = vector.new(), + maxacc = vector.new(), + minexptime = 1, + maxexptime = 3, + minsize = 8, + maxsize = 16, + texture = "tnt_smoke.png", + }) +end + +local function burn(pos) + local name = minetest.get_node(pos).name + if name == "tnt:tnt" then + minetest.sound_play("tnt_ignite", {pos=pos}) + minetest.set_node(pos, {name="tnt:tnt_burning"}) + minetest.get_node_timer(pos):start(1) + elseif name == "tnt:gunpowder" then + minetest.sound_play("tnt_gunpowder_burning", {pos=pos, gain=2}) + minetest.set_node(pos, {name="tnt:gunpowder_burning"}) + minetest.get_node_timer(pos):start(1) + end +end + +local function explode(pos, radius) + local pos = vector.round(pos) + local vm = VoxelManip() + local pr = PseudoRandom(os.time()) + local p1 = vector.subtract(pos, radius) + local p2 = vector.add(pos, radius) + local minp, maxp = vm:read_from_map(p1, p2) + local a = VoxelArea:new({MinEdge = minp, MaxEdge = maxp}) + local data = vm:get_data() + + local drops = {} + local p = {} + + local c_air = minetest.get_content_id("air") + local c_tnt = minetest.get_content_id("tnt:tnt") + local c_tnt_burning = minetest.get_content_id("tnt:tnt_burning") + local c_gunpowder = minetest.get_content_id("tnt:gunpowder") + local c_gunpowder_burning = minetest.get_content_id("tnt:gunpowder_burning") + local c_boom = minetest.get_content_id("tnt:boom") + local c_fire = minetest.get_content_id("fire:basic_flame") + + for z = -radius, radius do + for y = -radius, radius do + local vi = a:index(pos.x + (-radius), pos.y + y, pos.z + z) + for x = -radius, radius do + if (x * x) + (y * y) + (z * z) <= + (radius * radius) + pr:next(-radius, radius) then + local cid = data[vi] + p.x = pos.x + x + p.y = pos.y + y + p.z = pos.z + z + if cid == c_tnt or cid == c_gunpowder then + burn(p) + elseif cid ~= c_tnt_burning and + cid ~= c_gunpowder_burning and + cid ~= c_air and + cid ~= c_fire and + cid ~= c_boom then + destroy(drops, p, cid) + end + end + vi = vi + 1 + end + end + end + + return drops +end + + +local function boom(pos) + minetest.sound_play("tnt_explode", {pos=pos, gain=1.5, max_hear_distance=2*64}) + minetest.set_node(pos, {name="tnt:boom"}) + minetest.get_node_timer(pos):start(0.5) + + local drops = explode(pos, radius) + entity_physics(pos, radius) + eject_drops(drops, pos, radius) + add_effects(pos, radius) +end + +minetest.register_node("tnt:tnt", { + description = "TNT", + tiles = {"tnt_top.png", "tnt_bottom.png", "tnt_side.png"}, + groups = {dig_immediate=2, mesecon=2}, + sounds = default.node_sound_wood_defaults(), + on_punch = function(pos, node, puncher) + if puncher:get_wielded_item():get_name() == "default:torch" then + minetest.sound_play("tnt_ignite", {pos=pos}) + minetest.set_node(pos, {name="tnt:tnt_burning"}) + minetest.get_node_timer(pos):start(4) + end + end, + mesecons = {effector = {action_on = boom}}, +}) + +minetest.register_node("tnt:tnt_burning", { + tiles = { + { + name = "tnt_top_burning_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 1, + } + }, + "tnt_bottom.png", "tnt_side.png"}, + light_source = 5, + drop = "", + sounds = default.node_sound_wood_defaults(), + on_timer = boom, +}) + +minetest.register_node("tnt:boom", { + drawtype = "plantlike", + tiles = {"tnt_boom.png"}, + light_source = LIGHT_MAX, + walkable = false, + drop = "", + groups = {dig_immediate=3}, + on_timer = function(pos, elapsed) + minetest.remove_node(pos) + end, +}) + +minetest.register_node("tnt:gunpowder", { + description = "Gun Powder", + drawtype = "raillike", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + tiles = {"tnt_gunpowder.png",}, + inventory_image = "tnt_gunpowder_inventory.png", + wield_image = "tnt_gunpowder_inventory.png", + selection_box = { + type = "fixed", + fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, + }, + groups = {dig_immediate=2,attached_node=1}, + sounds = default.node_sound_leaves_defaults(), + + on_punch = function(pos, node, puncher) + if puncher:get_wielded_item():get_name() == "default:torch" then + burn(pos) + end + end, +}) + +minetest.register_node("tnt:gunpowder_burning", { + drawtype = "raillike", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + light_source = 5, + tiles = {{ + name = "tnt_gunpowder_burning_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 1, + } + }}, + selection_box = { + type = "fixed", + fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, + }, + drop = "", + groups = {dig_immediate=2,attached_node=1}, + sounds = default.node_sound_leaves_defaults(), + on_timer = function(pos, elapsed) + for dx = -1, 1 do + for dz = -1, 1 do + for dy = -1, 1 do + if not (dx == 0 and dz == 0) then + burn({ + x = pos.x + dx, + y = pos.y + dy, + z = pos.z + dz, + }) + end + end + end + end + minetest.remove_node(pos) + end +}) + +minetest.register_abm({ + nodenames = {"tnt:tnt", "tnt:gunpowder"}, + neighbors = {"fire:basic_flame", "default:lava_source", "default:lava_flowing"}, + interval = 1, + chance = 1, + action = burn, +}) + +minetest.register_craft({ + output = "tnt:gunpowder", + type = "shapeless", + recipe = {"default:coal_lump", "default:gravel"} +}) + +minetest.register_craft({ + output = "tnt:tnt", + recipe = { + {"", "group:wood", ""}, + {"group:wood", "tnt:gunpowder", "group:wood"}, + {"", "group:wood", ""} + } +}) + +if minetest.setting_get("log_mods") then + minetest.debug("[TNT] Loaded!") +end + diff --git a/games/minetest_game/mods/tnt/sounds/tnt_explode.ogg b/games/minetest_game/mods/tnt/sounds/tnt_explode.ogg new file mode 100644 index 0000000..a414ea0 Binary files /dev/null and b/games/minetest_game/mods/tnt/sounds/tnt_explode.ogg differ diff --git a/games/minetest_game/mods/tnt/sounds/tnt_gunpowder_burning.ogg b/games/minetest_game/mods/tnt/sounds/tnt_gunpowder_burning.ogg new file mode 100644 index 0000000..5c5bfaf Binary files /dev/null and b/games/minetest_game/mods/tnt/sounds/tnt_gunpowder_burning.ogg differ diff --git a/games/minetest_game/mods/tnt/sounds/tnt_ignite.ogg b/games/minetest_game/mods/tnt/sounds/tnt_ignite.ogg new file mode 100644 index 0000000..199f206 Binary files /dev/null and b/games/minetest_game/mods/tnt/sounds/tnt_ignite.ogg differ diff --git a/games/minetest_game/mods/tnt/textures/tnt_boom.png b/games/minetest_game/mods/tnt/textures/tnt_boom.png new file mode 100644 index 0000000..c848bfc Binary files /dev/null and b/games/minetest_game/mods/tnt/textures/tnt_boom.png differ diff --git a/games/minetest_game/mods/tnt/textures/tnt_bottom.png b/games/minetest_game/mods/tnt/textures/tnt_bottom.png new file mode 100644 index 0000000..95f66cb Binary files /dev/null and b/games/minetest_game/mods/tnt/textures/tnt_bottom.png differ diff --git a/games/minetest_game/mods/tnt/textures/tnt_gunpowder.png b/games/minetest_game/mods/tnt/textures/tnt_gunpowder.png new file mode 100644 index 0000000..52153e9 Binary files /dev/null and b/games/minetest_game/mods/tnt/textures/tnt_gunpowder.png differ diff --git a/games/minetest_game/mods/tnt/textures/tnt_gunpowder_burning.png b/games/minetest_game/mods/tnt/textures/tnt_gunpowder_burning.png new file mode 100644 index 0000000..fa7d107 Binary files /dev/null and b/games/minetest_game/mods/tnt/textures/tnt_gunpowder_burning.png differ diff --git a/games/minetest_game/mods/tnt/textures/tnt_gunpowder_burning_animated.png b/games/minetest_game/mods/tnt/textures/tnt_gunpowder_burning_animated.png new file mode 100644 index 0000000..5ee2484 Binary files /dev/null and b/games/minetest_game/mods/tnt/textures/tnt_gunpowder_burning_animated.png differ diff --git a/games/minetest_game/mods/tnt/textures/tnt_gunpowder_inventory.png b/games/minetest_game/mods/tnt/textures/tnt_gunpowder_inventory.png new file mode 100644 index 0000000..105a2d2 Binary files /dev/null and b/games/minetest_game/mods/tnt/textures/tnt_gunpowder_inventory.png differ diff --git a/games/minetest_game/mods/tnt/textures/tnt_side.png b/games/minetest_game/mods/tnt/textures/tnt_side.png new file mode 100644 index 0000000..d303473 Binary files /dev/null and b/games/minetest_game/mods/tnt/textures/tnt_side.png differ diff --git a/games/minetest_game/mods/tnt/textures/tnt_smoke.png b/games/minetest_game/mods/tnt/textures/tnt_smoke.png new file mode 100644 index 0000000..488b50f Binary files /dev/null and b/games/minetest_game/mods/tnt/textures/tnt_smoke.png differ diff --git a/games/minetest_game/mods/tnt/textures/tnt_top.png b/games/minetest_game/mods/tnt/textures/tnt_top.png new file mode 100644 index 0000000..31b807c Binary files /dev/null and b/games/minetest_game/mods/tnt/textures/tnt_top.png differ diff --git a/games/minetest_game/mods/tnt/textures/tnt_top_burning.png b/games/minetest_game/mods/tnt/textures/tnt_top_burning.png new file mode 100644 index 0000000..fc0d490 Binary files /dev/null and b/games/minetest_game/mods/tnt/textures/tnt_top_burning.png differ diff --git a/games/minetest_game/mods/tnt/textures/tnt_top_burning_animated.png b/games/minetest_game/mods/tnt/textures/tnt_top_burning_animated.png new file mode 100644 index 0000000..18a270f Binary files /dev/null and b/games/minetest_game/mods/tnt/textures/tnt_top_burning_animated.png differ diff --git a/games/minetest_game/mods/vessels/README.txt b/games/minetest_game/mods/vessels/README.txt new file mode 100644 index 0000000..150b501 --- /dev/null +++ b/games/minetest_game/mods/vessels/README.txt @@ -0,0 +1,45 @@ +Minetest 0.4 mod: vessels +========================== + +Crafts +------- +Glass bottle (yields 10) + + G - G + G - G + - G - + +Drinking Glass (yields 14) + + G - G + G - G + G G G + +Heavy Steel Bottle (yields 5) + + S - S + S - S + - S - + +License of source code: +----------------------- +Copyright (C) 2012 Vanessa Ezekowitz +Version 2012-09-02 +Modifications by Perttu Ahola + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or +(at your option) any later version. + +http://www.gnu.org/licenses/lgpl-2.1.html + +License of media (textures and sounds) +-------------------------------------- +WTFPL + +Authors of media files +----------------------- +Unless specifically noted, +Copyright (C) 2012 Vanessa Ezekowitz + diff --git a/games/minetest_game/mods/vessels/depends.txt b/games/minetest_game/mods/vessels/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/games/minetest_game/mods/vessels/depends.txt @@ -0,0 +1 @@ +default diff --git a/games/minetest_game/mods/vessels/init.lua b/games/minetest_game/mods/vessels/init.lua new file mode 100644 index 0000000..6ca8771 --- /dev/null +++ b/games/minetest_game/mods/vessels/init.lua @@ -0,0 +1,116 @@ +-- Minetest 0.4 mod: vessels +-- See README.txt for licensing and other information. + +minetest.register_node("vessels:glass_bottle", { + description = "Glass Bottle (empty)", + drawtype = "plantlike", + tiles = {"vessels_glass_bottle.png"}, + inventory_image = "vessels_glass_bottle_inv.png", + wield_image = "vessels_glass_bottle.png", + paramtype = "light", + walkable = false, + selection_box = { + type = "fixed", + fixed = {-0.25, -0.5, -0.25, 0.25, 0.4, 0.25} + }, + groups = {vessel=1,dig_immediate=3,attached_node=1}, + sounds = default.node_sound_glass_defaults(), +}) + +minetest.register_craft( { + output = "vessels:glass_bottle 10", + recipe = { + { "default:glass", "", "default:glass" }, + { "default:glass", "", "default:glass" }, + { "", "default:glass", "" } + } +}) + +minetest.register_node("vessels:drinking_glass", { + description = "Drinking Glass (empty)", + drawtype = "plantlike", + tiles = {"vessels_drinking_glass.png"}, + inventory_image = "vessels_drinking_glass_inv.png", + wield_image = "vessels_drinking_glass.png", + paramtype = "light", + walkable = false, + selection_box = { + type = "fixed", + fixed = {-0.25, -0.5, -0.25, 0.25, 0.4, 0.25} + }, + groups = {vessel=1,dig_immediate=3,attached_node=1}, + sounds = default.node_sound_glass_defaults(), +}) + +minetest.register_craft( { + output = "vessels:drinking_glass 14", + recipe = { + { "default:glass", "", "default:glass" }, + { "default:glass", "", "default:glass" }, + { "default:glass", "default:glass", "default:glass" } + } +}) + +minetest.register_node("vessels:steel_bottle", { + description = "Heavy Steel Bottle (empty)", + drawtype = "plantlike", + tiles = {"vessels_steel_bottle.png"}, + inventory_image = "vessels_steel_bottle_inv.png", + wield_image = "vessels_steel_bottle.png", + paramtype = "light", + walkable = false, + selection_box = { + type = "fixed", + fixed = {-0.25, -0.5, -0.25, 0.25, 0.4, 0.25} + }, + groups = {vessel=1,dig_immediate=3,attached_node=1}, + sounds = default.node_sound_defaults(), +}) + +minetest.register_craft( { + output = "vessels:steel_bottle 5", + recipe = { + { "default:steel_ingot", "", "default:steel_ingot" }, + { "default:steel_ingot", "", "default:steel_ingot" }, + { "", "default:steel_ingot", "" } + } +}) + + +-- Make sure we can recycle them + +minetest.register_craftitem("vessels:glass_fragments", { + description = "Pile of Glass Fragments", + inventory_image = "vessels_glass_fragments.png", +}) + +minetest.register_craft( { + type = "shapeless", + output = "vessels:glass_fragments", + recipe = { + "vessels:glass_bottle", + "vessels:glass_bottle", + }, +}) + +minetest.register_craft( { + type = "shapeless", + output = "vessels:glass_fragments", + recipe = { + "vessels:drinking_glass", + "vessels:drinking_glass", + }, +}) + +minetest.register_craft({ + type = "cooking", + output = "default:glass", + recipe = "vessels:glass_fragments", +}) + +minetest.register_craft( { + type = "cooking", + output = "default:steel_ingot", + recipe = "vessels:steel_bottle", +}) + diff --git a/games/minetest_game/mods/vessels/textures/alternates/vessels_drinking_glass.png b/games/minetest_game/mods/vessels/textures/alternates/vessels_drinking_glass.png new file mode 100644 index 0000000..1ddbfd3 Binary files /dev/null and b/games/minetest_game/mods/vessels/textures/alternates/vessels_drinking_glass.png differ diff --git a/games/minetest_game/mods/vessels/textures/alternates/vessels_glass_bottle.png b/games/minetest_game/mods/vessels/textures/alternates/vessels_glass_bottle.png new file mode 100644 index 0000000..336d8b7 Binary files /dev/null and b/games/minetest_game/mods/vessels/textures/alternates/vessels_glass_bottle.png differ diff --git a/games/minetest_game/mods/vessels/textures/alternates/vessels_steel_bottle.png b/games/minetest_game/mods/vessels/textures/alternates/vessels_steel_bottle.png new file mode 100644 index 0000000..f0246c8 Binary files /dev/null and b/games/minetest_game/mods/vessels/textures/alternates/vessels_steel_bottle.png differ diff --git a/games/minetest_game/mods/vessels/textures/vessels_drinking_glass.png b/games/minetest_game/mods/vessels/textures/vessels_drinking_glass.png new file mode 100644 index 0000000..e41ad31 Binary files /dev/null and b/games/minetest_game/mods/vessels/textures/vessels_drinking_glass.png differ diff --git a/games/minetest_game/mods/vessels/textures/vessels_drinking_glass_inv.png b/games/minetest_game/mods/vessels/textures/vessels_drinking_glass_inv.png new file mode 100644 index 0000000..e41ad31 Binary files /dev/null and b/games/minetest_game/mods/vessels/textures/vessels_drinking_glass_inv.png differ diff --git a/games/minetest_game/mods/vessels/textures/vessels_glass_bottle.png b/games/minetest_game/mods/vessels/textures/vessels_glass_bottle.png new file mode 100644 index 0000000..e06ecfc Binary files /dev/null and b/games/minetest_game/mods/vessels/textures/vessels_glass_bottle.png differ diff --git a/games/minetest_game/mods/vessels/textures/vessels_glass_bottle_inv.png b/games/minetest_game/mods/vessels/textures/vessels_glass_bottle_inv.png new file mode 100644 index 0000000..74cb631 Binary files /dev/null and b/games/minetest_game/mods/vessels/textures/vessels_glass_bottle_inv.png differ diff --git a/games/minetest_game/mods/vessels/textures/vessels_glass_fragments.png b/games/minetest_game/mods/vessels/textures/vessels_glass_fragments.png new file mode 100644 index 0000000..ab7760d Binary files /dev/null and b/games/minetest_game/mods/vessels/textures/vessels_glass_fragments.png differ diff --git a/games/minetest_game/mods/vessels/textures/vessels_steel_bottle.png b/games/minetest_game/mods/vessels/textures/vessels_steel_bottle.png new file mode 100644 index 0000000..dfb760e Binary files /dev/null and b/games/minetest_game/mods/vessels/textures/vessels_steel_bottle.png differ diff --git a/games/minetest_game/mods/vessels/textures/vessels_steel_bottle_inv.png b/games/minetest_game/mods/vessels/textures/vessels_steel_bottle_inv.png new file mode 100644 index 0000000..dfb760e Binary files /dev/null and b/games/minetest_game/mods/vessels/textures/vessels_steel_bottle_inv.png differ diff --git a/games/minetest_game/mods/wool/README.txt b/games/minetest_game/mods/wool/README.txt new file mode 100644 index 0000000..9db1332 --- /dev/null +++ b/games/minetest_game/mods/wool/README.txt @@ -0,0 +1,28 @@ +Minetest 0.4 mod: wool +====================== + +Mostly backward-compatible with jordach's 16-color wool mod. + +License of source code: +----------------------- +Copyright (C) 2012 Perttu Ahola (celeron55) + +This program is free software. It comes without any warranty, to +the extent permitted by applicable law. You can redistribute it +and/or modify it under the terms of the Do What The Fuck You Want +To Public License, Version 2, as published by Sam Hocevar. See +http://sam.zoy.org/wtfpl/COPYING for more details. + +License of media (textures and sounds) +-------------------------------------- +Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) +http://creativecommons.org/licenses/by-sa/3.0/ + +Authors of media files +----------------------- +Cisoun: +- wool_black.png wool_brown.png wool_dark_green.png wool_green.png +- wool_magenta.png wool_pink.png wool_violet.png wool_yellow.png wool_blue.png +- wool_cyan.png wool_dark_grey.png wool_grey.png wool_orange.png wool_red.png +- wool_white.png + diff --git a/games/minetest_game/mods/wool/depends.txt b/games/minetest_game/mods/wool/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/games/minetest_game/mods/wool/depends.txt @@ -0,0 +1 @@ +default diff --git a/games/minetest_game/mods/wool/init.lua b/games/minetest_game/mods/wool/init.lua new file mode 100644 index 0000000..14cffa5 --- /dev/null +++ b/games/minetest_game/mods/wool/init.lua @@ -0,0 +1,49 @@ +-- minetest/wool/init.lua + +-- Backwards compatibility with jordach's 16-color wool mod +minetest.register_alias("wool:dark_blue", "wool:blue") +minetest.register_alias("wool:gold", "wool:yellow") + +local wool = {} +-- This uses a trick: you can first define the recipes using all of the base +-- colors, and then some recipes using more specific colors for a few non-base +-- colors available. When crafting, the last recipes will be checked first. +wool.dyes = { + {"white", "White", nil}, + {"grey", "Grey", "basecolor_grey"}, + {"black", "Black", "basecolor_black"}, + {"red", "Red", "basecolor_red"}, + {"yellow", "Yellow", "basecolor_yellow"}, + {"green", "Green", "basecolor_green"}, + {"cyan", "Cyan", "basecolor_cyan"}, + {"blue", "Blue", "basecolor_blue"}, + {"magenta", "Magenta", "basecolor_magenta"}, + {"orange", "Orange", "excolor_orange"}, + {"violet", "Violet", "excolor_violet"}, + {"brown", "Brown", "unicolor_dark_orange"}, + {"pink", "Pink", "unicolor_light_red"}, + {"dark_grey", "Dark Grey", "unicolor_darkgrey"}, + {"dark_green", "Dark Green", "unicolor_dark_green"}, +} + +for _, row in ipairs(wool.dyes) do + local name = row[1] + local desc = row[2] + local craft_color_group = row[3] + -- Node Definition + minetest.register_node("wool:"..name, { + description = desc.." Wool", + tiles = {"wool_"..name..".png"}, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,wool=1}, + sounds = default.node_sound_defaults(), + }) + if craft_color_group then + -- Crafting from dye and white wool + minetest.register_craft({ + type = "shapeless", + output = 'wool:'..name, + recipe = {'group:dye,'..craft_color_group, 'group:wool'}, + }) + end +end + diff --git a/games/minetest_game/mods/wool/textures/wool_black.png b/games/minetest_game/mods/wool/textures/wool_black.png new file mode 100644 index 0000000..e24e52b Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_black.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_blue.png b/games/minetest_game/mods/wool/textures/wool_blue.png new file mode 100644 index 0000000..710a9a2 Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_blue.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_brown.png b/games/minetest_game/mods/wool/textures/wool_brown.png new file mode 100644 index 0000000..dfc0c7f Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_brown.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_cyan.png b/games/minetest_game/mods/wool/textures/wool_cyan.png new file mode 100644 index 0000000..46f8728 Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_cyan.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_dark_green.png b/games/minetest_game/mods/wool/textures/wool_dark_green.png new file mode 100644 index 0000000..d2a0297 Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_dark_green.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_dark_grey.png b/games/minetest_game/mods/wool/textures/wool_dark_grey.png new file mode 100644 index 0000000..98f1488 Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_dark_grey.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_green.png b/games/minetest_game/mods/wool/textures/wool_green.png new file mode 100644 index 0000000..c211ef5 Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_green.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_grey.png b/games/minetest_game/mods/wool/textures/wool_grey.png new file mode 100644 index 0000000..b1b28fa Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_grey.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_magenta.png b/games/minetest_game/mods/wool/textures/wool_magenta.png new file mode 100644 index 0000000..79afdb8 Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_magenta.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_orange.png b/games/minetest_game/mods/wool/textures/wool_orange.png new file mode 100644 index 0000000..ca14698 Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_orange.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_pink.png b/games/minetest_game/mods/wool/textures/wool_pink.png new file mode 100644 index 0000000..c282740 Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_pink.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_red.png b/games/minetest_game/mods/wool/textures/wool_red.png new file mode 100644 index 0000000..4a5d43a Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_red.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_violet.png b/games/minetest_game/mods/wool/textures/wool_violet.png new file mode 100644 index 0000000..59720bd Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_violet.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_white.png b/games/minetest_game/mods/wool/textures/wool_white.png new file mode 100644 index 0000000..a49f08e Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_white.png differ diff --git a/games/minetest_game/mods/wool/textures/wool_yellow.png b/games/minetest_game/mods/wool/textures/wool_yellow.png new file mode 100644 index 0000000..9bf9f16 Binary files /dev/null and b/games/minetest_game/mods/wool/textures/wool_yellow.png differ diff --git a/games/minetest_game/mods/xpanes/README.txt b/games/minetest_game/mods/xpanes/README.txt new file mode 100644 index 0000000..021f8f8 --- /dev/null +++ b/games/minetest_game/mods/xpanes/README.txt @@ -0,0 +1,13 @@ +Minetest 0.4.x mod: xpanes +========================== + +License: +-------- +Copyright (C) xyz +modified by BlockMen (iron bars) + +This program is free software. It comes without any warranty, to +the extent permitted by applicable law. You can redistribute it +and/or modify it under the terms of the Do What The Fuck You Want +To Public License, Version 2, as published by Sam Hocevar. See +http://sam.zoy.org/wtfpl/COPYING for more details. diff --git a/games/minetest_game/mods/xpanes/depends.txt b/games/minetest_game/mods/xpanes/depends.txt new file mode 100644 index 0000000..331d858 --- /dev/null +++ b/games/minetest_game/mods/xpanes/depends.txt @@ -0,0 +1 @@ +default \ No newline at end of file diff --git a/games/minetest_game/mods/xpanes/init.lua b/games/minetest_game/mods/xpanes/init.lua new file mode 100644 index 0000000..b9c578e --- /dev/null +++ b/games/minetest_game/mods/xpanes/init.lua @@ -0,0 +1,193 @@ +xpanes = {} + +local function rshift(x, by) + return math.floor(x / 2 ^ by) +end + +local directions = { + {x = 1, y = 0, z = 0}, + {x = 0, y = 0, z = 1}, + {x = -1, y = 0, z = 0}, + {x = 0, y = 0, z = -1}, +} + +local function update_pane(pos, name) + if not minetest.get_node(pos).name:find("^xpanes:"..name) then + return + end + local sum = 0 + for i, dir in pairs(directions) do + local node = minetest.get_node({ + x = pos.x + dir.x, + y = pos.y + dir.y, + z = pos.z + dir.z + }) + local def = minetest.registered_nodes[node.name] + local pane_num = def and def.groups.pane or 0 + if pane_num > 0 or not def or (def.walkable ~= false and + def.drawtype ~= "nodebox") then + sum = sum + 2 ^ (i - 1) + end + end + if sum == 0 then + sum = 15 + end + minetest.set_node(pos, {name = "xpanes:"..name.."_"..sum}) +end + +local function update_nearby(pos, node) + node = node or minetest.get_node(pos) + local name = node.name + if not name or node.name:sub(1, 7) ~= "xpanes:" then + return + end + local underscore_pos = string.find(name, "_[^_]*$") or 0 + local len = name:len() + local num = tonumber(name:sub(underscore_pos+1, len)) + if not num or num < 1 or num > 15 then + name = name:sub(8) + else + name = name:sub(8, underscore_pos - 1) + end + for i, dir in pairs(directions) do + update_pane({ + x = pos.x + dir.x, + y = pos.y + dir.y, + z = pos.z + dir.z + }, name) + end +end + +local half_boxes = { + {0, -0.5, -1/32, 0.5, 0.5, 1/32}, + {-1/32, -0.5, 0, 1/32, 0.5, 0.5}, + {-0.5, -0.5, -1/32, 0, 0.5, 1/32}, + {-1/32, -0.5, -0.5, 1/32, 0.5, 0} +} + +local full_boxes = { + {-0.5, -0.5, -1/32, 0.5, 0.5, 1/32}, + {-1/32, -0.5, -0.5, 1/32, 0.5, 0.5} +} + +local sb_half_boxes = { + {0, -0.5, -0.06, 0.5, 0.5, 0.06}, + {-0.06, -0.5, 0, 0.06, 0.5, 0.5}, + {-0.5, -0.5, -0.06, 0, 0.5, 0.06}, + {-0.06, -0.5, -0.5, 0.06, 0.5, 0} +} + +local sb_full_boxes = { + {-0.5, -0.5, -0.06, 0.5, 0.5, 0.06}, + {-0.06, -0.5, -0.5, 0.06, 0.5, 0.5} +} + +function xpanes.register_pane(name, def) + for i = 1, 15 do + local need = {} + local cnt = 0 + for j = 1, 4 do + if rshift(i, j - 1) % 2 == 1 then + need[j] = true + cnt = cnt + 1 + end + end + local take = {} + local take2 = {} + if need[1] == true and need[3] == true then + need[1] = nil + need[3] = nil + table.insert(take, full_boxes[1]) + table.insert(take2, sb_full_boxes[1]) + end + if need[2] == true and need[4] == true then + need[2] = nil + need[4] = nil + table.insert(take, full_boxes[2]) + table.insert(take2, sb_full_boxes[2]) + end + for k in pairs(need) do + table.insert(take, half_boxes[k]) + table.insert(take2, sb_half_boxes[k]) + end + local texture = def.textures[1] + if cnt == 1 then + texture = def.textures[1].."^"..def.textures[2] + end + minetest.register_node(":xpanes:"..name.."_"..i, { + drawtype = "nodebox", + tiles = {def.textures[3], def.textures[3], texture}, + paramtype = "light", + groups = def.groups, + drop = "xpanes:"..name, + sounds = def.sounds, + node_box = { + type = "fixed", + fixed = take + }, + selection_box = { + type = "fixed", + fixed = take2 + } + }) + end + + def.on_construct = function(pos) + update_pane(pos, name) + end + + minetest.register_node(":xpanes:"..name, def) + + minetest.register_craft({ + output = "xpanes:"..name.." 16", + recipe = def.recipe + }) +end + +minetest.register_on_placenode(update_nearby) +minetest.register_on_dignode(update_nearby) + +xpanes.register_pane("pane", { + description = "Glass Pane", + tiles = {"xpanes_space.png"}, + drawtype = "airlike", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + air_equivalent = true, + textures = {"default_glass.png","xpanes_pane_half.png","xpanes_white.png"}, + inventory_image = "default_glass.png", + wield_image = "default_glass.png", + sounds = default.node_sound_glass_defaults(), + groups = {snappy=2, cracky=3, oddly_breakable_by_hand=3, pane=1}, + recipe = { + {'default:glass', 'default:glass', 'default:glass'}, + {'default:glass', 'default:glass', 'default:glass'} + } +}) + +xpanes.register_pane("bar", { + description = "Iron bar", + tiles = {"xpanes_space.png"}, + drawtype = "airlike", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + air_equivalent = true, + textures = {"xpanes_bar.png","xpanes_bar.png","xpanes_space.png"}, + inventory_image = "xpanes_bar.png", + wield_image = "xpanes_bar.png", + groups = {snappy=2, cracky=3, oddly_breakable_by_hand=3, pane=1}, + sounds = default.node_sound_stone_defaults(), + recipe = { + {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, + {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'} + } +}) + diff --git a/games/minetest_game/mods/xpanes/textures/xpanes_bar.png b/games/minetest_game/mods/xpanes/textures/xpanes_bar.png new file mode 100644 index 0000000..5534a5c Binary files /dev/null and b/games/minetest_game/mods/xpanes/textures/xpanes_bar.png differ diff --git a/games/minetest_game/mods/xpanes/textures/xpanes_grey.png b/games/minetest_game/mods/xpanes/textures/xpanes_grey.png new file mode 100644 index 0000000..e1c6f76 Binary files /dev/null and b/games/minetest_game/mods/xpanes/textures/xpanes_grey.png differ diff --git a/games/minetest_game/mods/xpanes/textures/xpanes_pane_half.png b/games/minetest_game/mods/xpanes/textures/xpanes_pane_half.png new file mode 100644 index 0000000..4e846df Binary files /dev/null and b/games/minetest_game/mods/xpanes/textures/xpanes_pane_half.png differ diff --git a/games/minetest_game/mods/xpanes/textures/xpanes_space.png b/games/minetest_game/mods/xpanes/textures/xpanes_space.png new file mode 100644 index 0000000..016cb35 Binary files /dev/null and b/games/minetest_game/mods/xpanes/textures/xpanes_space.png differ diff --git a/games/minetest_game/mods/xpanes/textures/xpanes_white.png b/games/minetest_game/mods/xpanes/textures/xpanes_white.png new file mode 100644 index 0000000..777bd60 Binary files /dev/null and b/games/minetest_game/mods/xpanes/textures/xpanes_white.png differ diff --git a/games/minimal/game.conf b/games/minimal/game.conf new file mode 100644 index 0000000..99bfaf0 --- /dev/null +++ b/games/minimal/game.conf @@ -0,0 +1,2 @@ +name = Minimal development test + diff --git a/games/minimal/menu/background.png b/games/minimal/menu/background.png new file mode 100644 index 0000000..ea5fbdc Binary files /dev/null and b/games/minimal/menu/background.png differ diff --git a/games/minimal/menu/icon.png b/games/minimal/menu/icon.png new file mode 100644 index 0000000..8ef6750 Binary files /dev/null and b/games/minimal/menu/icon.png differ diff --git a/games/minimal/mods/bucket/depends.txt b/games/minimal/mods/bucket/depends.txt new file mode 100644 index 0000000..3a7daa1 --- /dev/null +++ b/games/minimal/mods/bucket/depends.txt @@ -0,0 +1,2 @@ +default + diff --git a/games/minimal/mods/bucket/init.lua b/games/minimal/mods/bucket/init.lua new file mode 100644 index 0000000..dcd59ed --- /dev/null +++ b/games/minimal/mods/bucket/init.lua @@ -0,0 +1,95 @@ +-- bucket (Minetest 0.4 mod) +-- A bucket, which can pick up water and lava + +minetest.register_alias("bucket", "bucket:bucket_empty") +minetest.register_alias("bucket_water", "bucket:bucket_water") +minetest.register_alias("bucket_lava", "bucket:bucket_lava") + +minetest.register_craft({ + output = 'bucket:bucket_empty 1', + recipe = { + {'default:steel_ingot', '', 'default:steel_ingot'}, + {'', 'default:steel_ingot', ''}, + } +}) + +bucket = {} +bucket.liquids = {} + +-- Register a new liquid +-- source = name of the source node +-- flowing = name of the flowing node +-- itemname = name of the new bucket item (or nil if liquid is not takeable) +-- inventory_image = texture of the new bucket item (ignored if itemname == nil) +-- This function can be called from any mod (that depends on bucket). +function bucket.register_liquid(source, flowing, itemname, inventory_image) + bucket.liquids[source] = { + source = source, + flowing = flowing, + itemname = itemname, + } + bucket.liquids[flowing] = bucket.liquids[source] + + if itemname ~= nil then + minetest.register_craftitem(itemname, { + inventory_image = inventory_image, + stack_max = 1, + liquids_pointable = true, + on_use = function(itemstack, user, pointed_thing) + -- Must be pointing to node + if pointed_thing.type ~= "node" then + return + end + -- Check if pointing to a liquid + n = minetest.get_node(pointed_thing.under) + if bucket.liquids[n.name] == nil then + -- Not a liquid + minetest.add_node(pointed_thing.above, {name=source}) + elseif n.name ~= source then + -- It's a liquid + minetest.add_node(pointed_thing.under, {name=source}) + end + return {name="bucket:bucket_empty"} + end + }) + end +end + +minetest.register_craftitem("bucket:bucket_empty", { + inventory_image = "bucket.png", + stack_max = 1, + liquids_pointable = true, + on_use = function(itemstack, user, pointed_thing) + -- Must be pointing to node + if pointed_thing.type ~= "node" then + return + end + -- Check if pointing to a liquid source + n = minetest.get_node(pointed_thing.under) + liquiddef = bucket.liquids[n.name] + if liquiddef ~= nil and liquiddef.source == n.name and liquiddef.itemname ~= nil then + minetest.add_node(pointed_thing.under, {name="air"}) + return {name=liquiddef.itemname} + end + end, +}) + +bucket.register_liquid( + "default:water_source", + "default:water_flowing", + "bucket:bucket_water", + "bucket_water.png" +) + +bucket.register_liquid( + "default:lava_source", + "default:lava_flowing", + "bucket:bucket_lava", + "bucket_lava.png" +) + +minetest.register_craft({ + type = "fuel", + recipe = "bucket:bucket_lava", + burntime = 60, +}) diff --git a/games/minimal/mods/bucket/textures/bucket.png b/games/minimal/mods/bucket/textures/bucket.png new file mode 100644 index 0000000..b775a9f Binary files /dev/null and b/games/minimal/mods/bucket/textures/bucket.png differ diff --git a/games/minimal/mods/bucket/textures/bucket_lava.png b/games/minimal/mods/bucket/textures/bucket_lava.png new file mode 100644 index 0000000..889ed61 Binary files /dev/null and b/games/minimal/mods/bucket/textures/bucket_lava.png differ diff --git a/games/minimal/mods/bucket/textures/bucket_water.png b/games/minimal/mods/bucket/textures/bucket_water.png new file mode 100644 index 0000000..a3c9d72 Binary files /dev/null and b/games/minimal/mods/bucket/textures/bucket_water.png differ diff --git a/games/minimal/mods/default/init.lua b/games/minimal/mods/default/init.lua new file mode 100644 index 0000000..038bf9a --- /dev/null +++ b/games/minimal/mods/default/init.lua @@ -0,0 +1,1798 @@ +-- default (Minetest 0.4 mod) +-- Most default stuff + +-- The API documentation in here was moved into doc/lua_api.txt + +WATER_ALPHA = 160 +WATER_VISC = 1 +LAVA_VISC = 7 +LIGHT_MAX = 14 + +-- Definitions made by this mod that other mods can use too +default = {} + +-- Load other files +dofile(minetest.get_modpath("default").."/mapgen.lua") + +-- Set a noticeable inventory formspec for players +minetest.register_on_joinplayer(function(player) + local cb = function(player) + minetest.chat_send_player(player:get_player_name(), "This is the [minimal] \"Minimal Development Test\" game. Use [minetest_game] for the real thing.") + end + minetest.after(2.0, cb, player) +end) + +-- +-- Tool definition +-- + +-- The hand +minetest.register_item(":", { + type = "none", + wield_image = "wieldhand.png", + wield_scale = {x=1,y=1,z=2.5}, + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level = 0, + groupcaps = { + fleshy = {times={[2]=2.00, [3]=1.00}, uses=0, maxlevel=1}, + crumbly = {times={[2]=3.00, [3]=0.70}, uses=0, maxlevel=1}, + snappy = {times={[3]=0.40}, uses=0, maxlevel=1}, + oddly_breakable_by_hand = {times={[1]=7.00,[2]=4.00,[3]=1.40}, uses=0, maxlevel=3}, + } + } +}) + +minetest.register_tool("default:pick_wood", { + description = "Wooden Pickaxe", + inventory_image = "default_tool_woodpick.png", + tool_capabilities = { + max_drop_level=0, + groupcaps={ + cracky={times={[2]=2.00, [3]=1.20}, uses=10, maxlevel=1} + } + }, +}) +minetest.register_tool("default:pick_stone", { + description = "Stone Pickaxe", + inventory_image = "default_tool_stonepick.png", + tool_capabilities = { + max_drop_level=0, + groupcaps={ + cracky={times={[1]=2.00, [2]=1.20, [3]=0.80}, uses=20, maxlevel=1} + } + }, +}) +minetest.register_tool("default:pick_steel", { + description = "Steel Pickaxe", + inventory_image = "default_tool_steelpick.png", + tool_capabilities = { + max_drop_level=1, + groupcaps={ + cracky={times={[1]=4.00, [2]=1.60, [3]=1.00}, uses=10, maxlevel=2} + } + }, +}) +minetest.register_tool("default:pick_mese", { + description = "Mese Pickaxe", + inventory_image = "default_tool_mesepick.png", + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=3, + groupcaps={ + cracky={times={[1]=2.0, [2]=1.0, [3]=0.5}, uses=20, maxlevel=3}, + crumbly={times={[1]=2.0, [2]=1.0, [3]=0.5}, uses=20, maxlevel=3}, + snappy={times={[1]=2.0, [2]=1.0, [3]=0.5}, uses=20, maxlevel=3} + } + }, +}) +minetest.register_tool("default:shovel_wood", { + description = "Wooden Shovel", + inventory_image = "default_tool_woodshovel.png", + tool_capabilities = { + max_drop_level=0, + groupcaps={ + crumbly={times={[1]=2.00, [2]=0.80, [3]=0.50}, uses=10, maxlevel=1} + } + }, +}) +minetest.register_tool("default:shovel_stone", { + description = "Stone Shovel", + inventory_image = "default_tool_stoneshovel.png", + tool_capabilities = { + max_drop_level=0, + groupcaps={ + crumbly={times={[1]=1.20, [2]=0.50, [3]=0.30}, uses=20, maxlevel=1} + } + }, +}) +minetest.register_tool("default:shovel_steel", { + description = "Steel Shovel", + inventory_image = "default_tool_steelshovel.png", + tool_capabilities = { + max_drop_level=1, + groupcaps={ + crumbly={times={[1]=1.00, [2]=0.70, [3]=0.60}, uses=10, maxlevel=2} + } + }, +}) +minetest.register_tool("default:axe_wood", { + description = "Wooden Axe", + inventory_image = "default_tool_woodaxe.png", + tool_capabilities = { + max_drop_level=0, + groupcaps={ + choppy={times={[2]=1.40, [3]=0.80}, uses=10, maxlevel=1}, + fleshy={times={[2]=1.50, [3]=0.80}, uses=10, maxlevel=1} + } + }, +}) +minetest.register_tool("default:axe_stone", { + description = "Stone Axe", + inventory_image = "default_tool_stoneaxe.png", + tool_capabilities = { + max_drop_level=0, + groupcaps={ + choppy={times={[1]=1.50, [2]=1.00, [3]=0.60}, uses=20, maxlevel=1}, + fleshy={times={[2]=1.30, [3]=0.70}, uses=20, maxlevel=1} + } + }, +}) +minetest.register_tool("default:axe_steel", { + description = "Steel Axe", + inventory_image = "default_tool_steelaxe.png", + tool_capabilities = { + max_drop_level=1, + groupcaps={ + choppy={times={[1]=2.00, [2]=1.60, [3]=1.00}, uses=10, maxlevel=2}, + fleshy={times={[2]=1.10, [3]=0.60}, uses=40, maxlevel=1} + } + }, +}) +minetest.register_tool("default:sword_wood", { + description = "Wooden Sword", + inventory_image = "default_tool_woodsword.png", + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=0, + groupcaps={ + fleshy={times={[2]=1.10, [3]=0.60}, uses=10, maxlevel=1}, + snappy={times={[2]=1.00, [3]=0.50}, uses=10, maxlevel=1}, + choppy={times={[3]=1.00}, uses=20, maxlevel=0} + } + } +}) +minetest.register_tool("default:sword_stone", { + description = "Stone Sword", + inventory_image = "default_tool_stonesword.png", + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=0, + groupcaps={ + fleshy={times={[2]=0.80, [3]=0.40}, uses=20, maxlevel=1}, + snappy={times={[2]=0.80, [3]=0.40}, uses=20, maxlevel=1}, + choppy={times={[3]=0.90}, uses=20, maxlevel=0} + } + } +}) +minetest.register_tool("default:sword_steel", { + description = "Steel Sword", + inventory_image = "default_tool_steelsword.png", + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=1, + groupcaps={ + fleshy={times={[1]=2.00, [2]=0.80, [3]=0.40}, uses=10, maxlevel=2}, + snappy={times={[2]=0.70, [3]=0.30}, uses=40, maxlevel=1}, + choppy={times={[3]=0.70}, uses=40, maxlevel=0} + } + } +}) + +-- +-- Crafting definition +-- + +minetest.register_craft({ + output = 'default:wood 4', + recipe = { + {'default:tree'}, + } +}) + +minetest.register_craft({ + output = 'default:stick 4', + recipe = { + {'default:wood'}, + } +}) + +minetest.register_craft({ + output = 'default:fence_wood 2', + recipe = { + {'default:stick', 'default:stick', 'default:stick'}, + {'default:stick', 'default:stick', 'default:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:sign_wall', + recipe = { + {'default:wood', 'default:wood', 'default:wood'}, + {'default:wood', 'default:wood', 'default:wood'}, + {'', 'default:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:torch 4', + recipe = { + {'default:coal_lump'}, + {'default:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:pick_wood', + recipe = { + {'default:wood', 'default:wood', 'default:wood'}, + {'', 'default:stick', ''}, + {'', 'default:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:pick_stone', + recipe = { + {'default:cobble', 'default:cobble', 'default:cobble'}, + {'', 'default:stick', ''}, + {'', 'default:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:pick_steel', + recipe = { + {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, + {'', 'default:stick', ''}, + {'', 'default:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:pick_mese', + recipe = { + {'default:mese', 'default:mese', 'default:mese'}, + {'', 'default:stick', ''}, + {'', 'default:stick', ''}, + } +}) + +minetest.register_craft({ + output = 'default:shovel_wood', + recipe = { + {'default:wood'}, + {'default:stick'}, + {'default:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:shovel_stone', + recipe = { + {'default:cobble'}, + {'default:stick'}, + {'default:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:shovel_steel', + recipe = { + {'default:steel_ingot'}, + {'default:stick'}, + {'default:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:axe_wood', + recipe = { + {'default:wood', 'default:wood'}, + {'default:wood', 'default:stick'}, + {'', 'default:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:axe_stone', + recipe = { + {'default:cobble', 'default:cobble'}, + {'default:cobble', 'default:stick'}, + {'', 'default:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:axe_steel', + recipe = { + {'default:steel_ingot', 'default:steel_ingot'}, + {'default:steel_ingot', 'default:stick'}, + {'', 'default:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:sword_wood', + recipe = { + {'default:wood'}, + {'default:wood'}, + {'default:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:sword_stone', + recipe = { + {'default:cobble'}, + {'default:cobble'}, + {'default:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:sword_steel', + recipe = { + {'default:steel_ingot'}, + {'default:steel_ingot'}, + {'default:stick'}, + } +}) + +minetest.register_craft({ + output = 'default:rail 15', + recipe = { + {'default:steel_ingot', '', 'default:steel_ingot'}, + {'default:steel_ingot', 'default:stick', 'default:steel_ingot'}, + {'default:steel_ingot', '', 'default:steel_ingot'}, + } +}) + +minetest.register_craft({ + output = 'default:chest', + recipe = { + {'default:wood', 'default:wood', 'default:wood'}, + {'default:wood', '', 'default:wood'}, + {'default:wood', 'default:wood', 'default:wood'}, + } +}) + +minetest.register_craft({ + output = 'default:chest_locked', + recipe = { + {'default:wood', 'default:wood', 'default:wood'}, + {'default:wood', 'default:steel_ingot', 'default:wood'}, + {'default:wood', 'default:wood', 'default:wood'}, + } +}) + +minetest.register_craft({ + output = 'default:furnace', + recipe = { + {'default:cobble', 'default:cobble', 'default:cobble'}, + {'default:cobble', '', 'default:cobble'}, + {'default:cobble', 'default:cobble', 'default:cobble'}, + } +}) + +minetest.register_craft({ + output = 'default:steelblock', + recipe = { + {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, + {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, + {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, + } +}) + +minetest.register_craft({ + output = 'default:sandstone', + recipe = { + {'default:sand', 'default:sand'}, + {'default:sand', 'default:sand'}, + } +}) + +minetest.register_craft({ + output = 'default:clay', + recipe = { + {'default:clay_lump', 'default:clay_lump'}, + {'default:clay_lump', 'default:clay_lump'}, + } +}) + +minetest.register_craft({ + output = 'default:brick', + recipe = { + {'default:clay_brick', 'default:clay_brick'}, + {'default:clay_brick', 'default:clay_brick'}, + } +}) + +minetest.register_craft({ + output = 'default:paper', + recipe = { + {'default:papyrus', 'default:papyrus', 'default:papyrus'}, + } +}) + +minetest.register_craft({ + output = 'default:book', + recipe = { + {'default:paper'}, + {'default:paper'}, + {'default:paper'}, + } +}) + +minetest.register_craft({ + output = 'default:bookshelf', + recipe = { + {'default:wood', 'default:wood', 'default:wood'}, + {'default:book', 'default:book', 'default:book'}, + {'default:wood', 'default:wood', 'default:wood'}, + } +}) + +minetest.register_craft({ + output = 'default:ladder', + recipe = { + {'default:stick', '', 'default:stick'}, + {'default:stick', 'default:stick', 'default:stick'}, + {'default:stick', '', 'default:stick'}, + } +}) + +-- +-- Crafting (tool repair) +-- +minetest.register_craft({ + type = "toolrepair", + additional_wear = -0.02, +}) + +-- +-- Cooking recipes +-- + +minetest.register_craft({ + type = "cooking", + output = "default:glass", + recipe = "default:sand", +}) + +minetest.register_craft({ + type = "cooking", + output = "default:coal_lump", + recipe = "default:tree", +}) + +minetest.register_craft({ + type = "cooking", + output = "default:coal_lump", + recipe = "default:jungletree", +}) + +minetest.register_craft({ + type = "cooking", + output = "default:stone", + recipe = "default:cobble", +}) + +minetest.register_craft({ + type = "cooking", + output = "default:steel_ingot", + recipe = "default:iron_lump", +}) + +minetest.register_craft({ + type = "cooking", + output = "default:clay_brick", + recipe = "default:clay_lump", +}) + +-- +-- Fuels +-- + +minetest.register_craft({ + type = "fuel", + recipe = "default:tree", + burntime = 30, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:jungletree", + burntime = 30, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:junglegrass", + burntime = 2, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:leaves", + burntime = 1, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:cactus", + burntime = 15, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:papyrus", + burntime = 1, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:bookshelf", + burntime = 30, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:fence_wood", + burntime = 15, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:ladder", + burntime = 5, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:wood", + burntime = 7, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:mese", + burntime = 30, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:lava_source", + burntime = 60, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:torch", + burntime = 4, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:sign_wall", + burntime = 10, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:chest", + burntime = 30, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:chest_locked", + burntime = 30, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:nyancat", + burntime = 1, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:nyancat_rainbow", + burntime = 1, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:sapling", + burntime = 10, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:apple", + burntime = 3, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "default:coal_lump", + burntime = 40, +}) + +-- +-- Node definitions +-- + +-- Default node sounds + +function default.node_sound_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="", gain=1.0} + table.dug = table.dug or + {name="default_dug_node", gain=1.0} + return table +end + +function default.node_sound_stone_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="default_hard_footstep", gain=0.2} + default.node_sound_defaults(table) + return table +end + +function default.node_sound_dirt_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="", gain=0.5} + --table.dug = table.dug or + -- {name="default_dirt_break", gain=0.5} + table.place = table.place or + {name="default_grass_footstep", gain=0.5} + default.node_sound_defaults(table) + return table +end + +function default.node_sound_sand_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="default_grass_footstep", gain=0.25} + --table.dug = table.dug or + -- {name="default_dirt_break", gain=0.25} + table.dug = table.dug or + {name="", gain=0.25} + default.node_sound_defaults(table) + return table +end + +function default.node_sound_wood_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="default_hard_footstep", gain=0.3} + default.node_sound_defaults(table) + return table +end + +function default.node_sound_leaves_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="default_grass_footstep", gain=0.25} + table.dig = table.dig or + {name="default_dig_crumbly", gain=0.4} + table.dug = table.dug or + {name="", gain=1.0} + default.node_sound_defaults(table) + return table +end + +function default.node_sound_glass_defaults(table) + table = table or {} + table.footstep = table.footstep or + {name="default_stone_footstep", gain=0.25} + table.dug = table.dug or + {name="default_break_glass", gain=1.0} + default.node_sound_defaults(table) + return table +end + +-- + +minetest.register_node("default:stone", { + description = "Stone", + tiles ={"default_stone.png"}, + groups = {cracky=3}, + drop = 'default:cobble', + legacy_mineral = true, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:stone_with_coal", { + description = "Stone with coal", + tiles ={"default_stone.png^default_mineral_coal.png"}, + groups = {cracky=3}, + drop = 'default:coal_lump', + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:stone_with_iron", { + description = "Stone with iron", + tiles ={"default_stone.png^default_mineral_iron.png"}, + groups = {cracky=3}, + drop = 'default:iron_lump', + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:dirt_with_grass", { + description = "Dirt with grass", + tiles ={"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"}, + groups = {crumbly=3, soil=1}, + drop = 'default:dirt', + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_grass_footstep", gain=0.4}, + }), +}) + +minetest.register_node("default:dirt_with_grass_footsteps", { + description = "Dirt with grass and footsteps", + tiles ={"default_grass_footsteps.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"}, + groups = {crumbly=3, soil=1}, + drop = 'default:dirt', + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_grass_footstep", gain=0.4}, + }), +}) + +minetest.register_node("default:dirt", { + description = "Dirt", + tiles ={"default_dirt.png"}, + groups = {crumbly=3, soil=1}, + sounds = default.node_sound_dirt_defaults(), +}) + +minetest.register_node("default:sand", { + description = "Sand", + tiles ={"default_sand.png"}, + groups = {crumbly=3, falling_node=1}, + sounds = default.node_sound_sand_defaults(), +}) + +minetest.register_node("default:gravel", { + description = "Gravel", + tiles ={"default_gravel.png"}, + groups = {crumbly=2, falling_node=1}, + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_gravel_footstep", gain=0.45}, + }), +}) + +minetest.register_node("default:sandstone", { + description = "Sandstone", + tiles ={"default_sandstone.png"}, + groups = {crumbly=2,cracky=2}, + drop = 'default:sand', + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:clay", { + description = "Clay", + tiles ={"default_clay.png"}, + groups = {crumbly=3}, + drop = 'default:clay_lump 4', + sounds = default.node_sound_dirt_defaults({ + footstep = "", + }), +}) + +minetest.register_node("default:brick", { + description = "Brick", + tiles ={"default_brick.png"}, + groups = {cracky=3}, + drop = 'default:clay_brick 4', + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:tree", { + description = "Tree", + tiles ={"default_tree_top.png", "default_tree_top.png", "default_tree.png"}, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=1}, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("default:jungletree", { + description = "Jungle Tree", + tiles ={"default_jungletree_top.png", "default_jungletree_top.png", "default_jungletree.png"}, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=1}, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("default:junglegrass", { + description = "Jungle Grass", + drawtype = "plantlike", + visual_scale = 1.3, + tiles ={"default_junglegrass.png"}, + inventory_image = "default_junglegrass.png", + wield_image = "default_junglegrass.png", + paramtype = "light", + walkable = false, + groups = {snappy=3,attached_node=1}, + sounds = default.node_sound_leaves_defaults(), +}) + +minetest.register_node("default:leaves", { + description = "Leaves", + drawtype = "allfaces_optional", + visual_scale = 1.3, + tiles ={"default_leaves.png"}, + paramtype = "light", + is_ground_content = false, + groups = {snappy=3}, + drop = { + max_items = 1, + items = { + { + -- player will get sapling with 1/20 chance + items = {'default:sapling'}, + rarity = 20, + }, + { + -- player will get leaves only if he get no saplings, + -- this is because max_items is 1 + items = {'default:leaves'}, + } + } + }, + sounds = default.node_sound_leaves_defaults(), +}) + +minetest.register_node("default:cactus", { + description = "Cactus", + tiles ={"default_cactus_top.png", "default_cactus_top.png", "default_cactus_side.png"}, + groups = {snappy=2,choppy=3}, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("default:papyrus", { + description = "Papyrus", + drawtype = "plantlike", + tiles ={"default_papyrus.png"}, + inventory_image = "default_papyrus.png", + wield_image = "default_papyrus.png", + paramtype = "light", + walkable = false, + groups = {snappy=3}, + sounds = default.node_sound_leaves_defaults(), +}) + +minetest.register_node("default:bookshelf", { + description = "Bookshelf", + tiles ={"default_wood.png", "default_wood.png", "default_bookshelf.png"}, + groups = {snappy=2,choppy=3,oddly_breakable_by_hand=2}, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("default:glass", { + description = "Glass", + drawtype = "glasslike", + tiles ={"default_glass.png"}, + inventory_image = minetest.inventorycube("default_glass.png"), + paramtype = "light", + sunlight_propagates = true, + groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3}, + sounds = default.node_sound_glass_defaults(), +}) + +minetest.register_node("default:fence_wood", { + description = "Wooden Fence", + drawtype = "fencelike", + tiles ={"default_wood.png"}, + inventory_image = "default_fence.png", + wield_image = "default_fence.png", + paramtype = "light", + selection_box = { + type = "fixed", + fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7}, + }, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("default:rail", { + description = "Rail", + drawtype = "raillike", + tiles ={"default_rail.png", "default_rail_curved.png", "default_rail_t_junction.png", "default_rail_crossing.png"}, + inventory_image = "default_rail.png", + wield_image = "default_rail.png", + paramtype = "light", + walkable = false, + selection_box = { + type = "fixed", + fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, + }, + groups = {bendy=2,snappy=1,dig_immediate=2}, +}) + +minetest.register_node("default:ladder", { + description = "Ladder", + drawtype = "signlike", + tiles ={"default_ladder.png"}, + inventory_image = "default_ladder.png", + wield_image = "default_ladder.png", + paramtype = "light", + paramtype2 = "wallmounted", + walkable = false, + climbable = true, + selection_box = { + type = "wallmounted", + --wall_top = = + --wall_bottom = = + --wall_side = = + }, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3}, + legacy_wallmounted = true, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("default:wood", { + description = "Wood", + tiles ={"default_wood.png"}, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("default:mese", { + description = "Mese", + tiles ={"default_mese.png"}, + groups = {cracky=1,level=2}, + sounds = default.node_sound_defaults(), +}) + +minetest.register_node("default:cloud", { + description = "Cloud", + tiles ={"default_cloud.png"}, + sounds = default.node_sound_defaults(), +}) + +minetest.register_node("default:water_flowing", { + description = "Water (flowing)", + inventory_image = minetest.inventorycube("default_water.png"), + drawtype = "flowingliquid", + tiles ={"default_water.png"}, + special_tiles = { + {name="default_water.png", backface_culling=false}, + {name="default_water.png", backface_culling=true}, + }, + alpha = WATER_ALPHA, + paramtype = "light", + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + drowning = 1, + liquidtype = "flowing", + liquid_alternative_flowing = "default:water_flowing", + liquid_alternative_source = "default:water_source", + liquid_viscosity = WATER_VISC, + post_effect_color = {a=64, r=100, g=100, b=200}, + groups = {water=3, liquid=3}, +}) + +minetest.register_node("default:water_source", { + description = "Water", + inventory_image = minetest.inventorycube("default_water.png"), + drawtype = "liquid", + tiles ={"default_water.png"}, + special_tiles = { + -- New-style water source material (mostly unused) + {name="default_water.png", backface_culling=false}, + }, + alpha = WATER_ALPHA, + paramtype = "light", + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + drowning = 1, + liquidtype = "source", + liquid_alternative_flowing = "default:water_flowing", + liquid_alternative_source = "default:water_source", + liquid_viscosity = WATER_VISC, + post_effect_color = {a=64, r=100, g=100, b=200}, + groups = {water=3, liquid=3}, +}) + +minetest.register_node("default:lava_flowing", { + description = "Lava (flowing)", + inventory_image = minetest.inventorycube("default_lava.png"), + drawtype = "flowingliquid", + tiles ={"default_lava.png"}, + special_tiles = { + { + image="default_lava_flowing_animated.png", + backface_culling=false, + animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.3} + }, + { + image="default_lava_flowing_animated.png", + backface_culling=true, + animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.3} + }, + }, + paramtype = "light", + light_source = LIGHT_MAX - 1, + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + drowning = 1, + liquidtype = "flowing", + liquid_alternative_flowing = "default:lava_flowing", + liquid_alternative_source = "default:lava_source", + liquid_viscosity = LAVA_VISC, + damage_per_second = 4*2, + post_effect_color = {a=192, r=255, g=64, b=0}, + groups = {lava=3, liquid=2, hot=3}, +}) + +minetest.register_node("default:lava_source", { + description = "Lava", + inventory_image = minetest.inventorycube("default_lava.png"), + drawtype = "liquid", + --tiles ={"default_lava.png"}, + tiles ={ + {name="default_lava_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}} + }, + special_tiles = { + -- New-style lava source material (mostly unused) + {name="default_lava.png", backface_culling=false}, + }, + paramtype = "light", + light_source = LIGHT_MAX - 1, + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + drowning = 1, + liquidtype = "source", + liquid_alternative_flowing = "default:lava_flowing", + liquid_alternative_source = "default:lava_source", + liquid_viscosity = LAVA_VISC, + damage_per_second = 4*2, + post_effect_color = {a=192, r=255, g=64, b=0}, + groups = {lava=3, liquid=2, hot=3}, +}) + +minetest.register_node("default:torch", { + description = "Torch", + drawtype = "torchlike", + tiles ={"default_torch_on_floor.png", "default_torch_on_ceiling.png", "default_torch.png"}, + inventory_image = "default_torch_on_floor.png", + wield_image = "default_torch_on_floor.png", + paramtype = "light", + paramtype2 = "wallmounted", + sunlight_propagates = true, + is_ground_content = false, + walkable = false, + light_source = LIGHT_MAX-1, + selection_box = { + type = "wallmounted", + wall_top = {-0.1, 0.5-0.6, -0.1, 0.1, 0.5, 0.1}, + wall_bottom = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1}, + wall_side = {-0.5, -0.3, -0.1, -0.5+0.3, 0.3, 0.1}, + }, + groups = {choppy=2,dig_immediate=3,attached_node=1}, + legacy_wallmounted = true, + sounds = default.node_sound_defaults(), +}) + +minetest.register_node("default:sign_wall", { + description = "Sign", + drawtype = "signlike", + tiles ={"default_sign_wall.png"}, + inventory_image = "default_sign_wall.png", + wield_image = "default_sign_wall.png", + paramtype = "light", + paramtype2 = "wallmounted", + sunlight_propagates = true, + is_ground_content = false, + walkable = false, + selection_box = { + type = "wallmounted", + --wall_top = + --wall_bottom = + --wall_side = + }, + groups = {choppy=2,dig_immediate=2,attached_node=1}, + legacy_wallmounted = true, + sounds = default.node_sound_defaults(), + on_construct = function(pos) + --local n = minetest.get_node(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", "field[text;;${text}]") + meta:set_string("infotext", "\"\"") + end, + on_receive_fields = function(pos, formname, fields, sender) + --print("Sign at "..minetest.pos_to_string(pos).." got "..dump(fields)) + local meta = minetest.get_meta(pos) + fields.text = fields.text or "" + print((sender:get_player_name() or "").." wrote \""..fields.text.. + "\" to sign at "..minetest.pos_to_string(pos)) + meta:set_string("text", fields.text) + meta:set_string("infotext", '"'..fields.text..'"') + end, +}) + +minetest.register_node("default:chest", { + description = "Chest", + tiles ={"default_chest_top.png", "default_chest_top.png", "default_chest_side.png", + "default_chest_side.png", "default_chest_side.png", "default_chest_front.png"}, + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + legacy_facedir_simple = true, + is_ground_content = false, + sounds = default.node_sound_wood_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", + "size[8,9]".. + "list[current_name;main;0,0;8,4;]".. + "list[current_player;main;0,5;8,4;]") + meta:set_string("infotext", "Chest") + local inv = meta:get_inventory() + inv:set_size("main", 8*4) + end, + can_dig = function(pos,player) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + return inv:is_empty("main") + end, +}) + +local function has_locked_chest_privilege(meta, player) + if player:get_player_name() ~= meta:get_string("owner") then + return false + end + return true +end + +minetest.register_node("default:chest_locked", { + description = "Locked Chest", + tiles ={"default_chest_top.png", "default_chest_top.png", "default_chest_side.png", + "default_chest_side.png", "default_chest_side.png", "default_chest_lock.png"}, + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + legacy_facedir_simple = true, + is_ground_content = false, + sounds = default.node_sound_wood_defaults(), + after_place_node = function(pos, placer) + local meta = minetest.get_meta(pos) + meta:set_string("owner", placer:get_player_name() or "") + meta:set_string("infotext", "Locked Chest (owned by ".. + meta:get_string("owner")..")") + end, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", + "size[8,9]".. + "list[current_name;main;0,0;8,4;]".. + "list[current_player;main;0,5;8,4;]") + meta:set_string("infotext", "Locked Chest") + meta:set_string("owner", "") + local inv = meta:get_inventory() + inv:set_size("main", 8*4) + end, + can_dig = function(pos,player) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + return inv:is_empty("main") + end, + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + local meta = minetest.get_meta(pos) + if not has_locked_chest_privilege(meta, player) then + minetest.log("action", player:get_player_name().. + " tried to access a locked chest belonging to ".. + meta:get_string("owner").." at ".. + minetest.pos_to_string(pos)) + return 0 + end + return count + end, + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + if not has_locked_chest_privilege(meta, player) then + minetest.log("action", player:get_player_name().. + " tried to access a locked chest belonging to ".. + meta:get_string("owner").." at ".. + minetest.pos_to_string(pos)) + return 0 + end + return stack:get_count() + end, + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + if not has_locked_chest_privilege(meta, player) then + minetest.log("action", player:get_player_name().. + " tried to access a locked chest belonging to ".. + meta:get_string("owner").." at ".. + minetest.pos_to_string(pos)) + return 0 + end + return stack:get_count() + end, + on_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + minetest.log("action", player:get_player_name().. + " moves stuff in locked chest at "..minetest.pos_to_string(pos)) + end, + on_metadata_inventory_put = function(pos, listname, index, stack, player) + minetest.log("action", player:get_player_name().. + " moves stuff to locked chest at "..minetest.pos_to_string(pos)) + end, + on_metadata_inventory_take = function(pos, listname, index, stack, player) + minetest.log("action", player:get_player_name().. + " takes stuff from locked chest at "..minetest.pos_to_string(pos)) + end, +}) + +default.furnace_inactive_formspec = + "size[8,9]".. + "image[2,2;1,1;default_furnace_fire_bg.png]".. + "list[current_name;fuel;2,3;1,1;]".. + "list[current_name;src;2,1;1,1;]".. + "list[current_name;dst;5,1;2,2;]".. + "list[current_player;main;0,5;8,4;]" + +minetest.register_node("default:furnace", { + description = "Furnace", + tiles ={"default_furnace_side.png", "default_furnace_side.png", "default_furnace_side.png", + "default_furnace_side.png", "default_furnace_side.png", "default_furnace_front.png"}, + paramtype2 = "facedir", + groups = {cracky=2}, + legacy_facedir_simple = true, + is_ground_content = false, + sounds = default.node_sound_stone_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", default.furnace_inactive_formspec) + meta:set_string("infotext", "Furnace") + local inv = meta:get_inventory() + inv:set_size("fuel", 1) + inv:set_size("src", 1) + inv:set_size("dst", 4) + end, + can_dig = function(pos,player) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + if not inv:is_empty("fuel") then + return false + elseif not inv:is_empty("dst") then + return false + elseif not inv:is_empty("src") then + return false + end + return true + end, +}) + +minetest.register_node("default:furnace_active", { + description = "Furnace", + tiles ={"default_furnace_side.png", "default_furnace_side.png", "default_furnace_side.png", + "default_furnace_side.png", "default_furnace_side.png", "default_furnace_front_active.png"}, + paramtype2 = "facedir", + light_source = 8, + drop = "default:furnace", + groups = {cracky=2}, + legacy_facedir_simple = true, + is_ground_content = false, + sounds = default.node_sound_stone_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", default.furnace_inactive_formspec) + meta:set_string("infotext", "Furnace"); + local inv = meta:get_inventory() + inv:set_size("fuel", 1) + inv:set_size("src", 1) + inv:set_size("dst", 4) + end, + can_dig = function(pos,player) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + if not inv:is_empty("fuel") then + return false + elseif not inv:is_empty("dst") then + return false + elseif not inv:is_empty("src") then + return false + end + return true + end, +}) + +function swap_node(pos,name) + local node = minetest.get_node(pos) + if node.name == name then + return + end + node.name = name + minetest.swap_node(pos, node) +end + +minetest.register_abm({ + nodenames = {"default:furnace","default:furnace_active"}, + interval = 1.0, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local meta = minetest.get_meta(pos) + for i, name in ipairs({ + "fuel_totaltime", + "fuel_time", + "src_totaltime", + "src_time" + }) do + if meta:get_string(name) == "" then + meta:set_float(name, 0.0) + end + end + + local inv = meta:get_inventory() + + local srclist = inv:get_list("src") + local cooked = nil + + if srclist then + cooked = minetest.get_craft_result({method = "cooking", width = 1, items = srclist}) + end + + local was_active = false + + if meta:get_float("fuel_time") < meta:get_float("fuel_totaltime") then + was_active = true + meta:set_float("fuel_time", meta:get_float("fuel_time") + 1) + meta:set_float("src_time", meta:get_float("src_time") + 1) + if cooked and cooked.item and meta:get_float("src_time") >= cooked.time then + -- check if there's room for output in "dst" list + if inv:room_for_item("dst",cooked.item) then + -- Put result in "dst" list + inv:add_item("dst", cooked.item) + -- take stuff from "src" list + srcstack = inv:get_stack("src", 1) + srcstack:take_item() + inv:set_stack("src", 1, srcstack) + else + print("Could not insert '"..cooked.item:to_string().."'") + end + meta:set_string("src_time", 0) + end + end + + if meta:get_float("fuel_time") < meta:get_float("fuel_totaltime") then + local percent = math.floor(meta:get_float("fuel_time") / + meta:get_float("fuel_totaltime") * 100) + meta:set_string("infotext","Furnace active: "..percent.."%") + swap_node(pos,"default:furnace_active") + meta:set_string("formspec", + "size[8,9]".. + "image[2,2;1,1;default_furnace_fire_bg.png^[lowpart:".. + (100-percent)..":default_furnace_fire_fg.png]".. + "list[current_name;fuel;2,3;1,1;]".. + "list[current_name;src;2,1;1,1;]".. + "list[current_name;dst;5,1;2,2;]".. + "list[current_player;main;0,5;8,4;]") + return + end + + local fuel = nil + local cooked = nil + local fuellist = inv:get_list("fuel") + local srclist = inv:get_list("src") + + if srclist then + cooked = minetest.get_craft_result({method = "cooking", width = 1, items = srclist}) + end + if fuellist then + fuel = minetest.get_craft_result({method = "fuel", width = 1, items = fuellist}) + end + + if fuel.time <= 0 then + meta:set_string("infotext","Furnace out of fuel") + swap_node(pos,"default:furnace") + meta:set_string("formspec", default.furnace_inactive_formspec) + return + end + + if cooked.item:is_empty() then + if was_active then + meta:set_string("infotext","Furnace is empty") + swap_node(pos,"default:furnace") + meta:set_string("formspec", default.furnace_inactive_formspec) + end + return + end + + meta:set_string("fuel_totaltime", fuel.time) + meta:set_string("fuel_time", 0) + + local stack = inv:get_stack("fuel", 1) + stack:take_item() + inv:set_stack("fuel", 1, stack) + end, +}) + +minetest.register_node("default:cobble", { + description = "Cobble", + tiles ={"default_cobble.png"}, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:mossycobble", { + description = "Mossy Cobble", + tiles ={"default_mossycobble.png"}, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:steelblock", { + description = "Steel Block", + tiles ={"default_steel_block.png"}, + groups = {snappy=1,bendy=2}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:nyancat", { + description = "Nyancat", + tiles ={"default_nc_side.png", "default_nc_side.png", "default_nc_side.png", + "default_nc_side.png", "default_nc_back.png", "default_nc_front.png"}, + inventory_image = "default_nc_front.png", + paramtype2 = "facedir", + groups = {cracky=2}, + legacy_facedir_simple = true, + is_ground_content = false, + sounds = default.node_sound_defaults(), +}) + +minetest.register_node("default:nyancat_rainbow", { + description = "Nyancat Rainbow", + tiles ={"default_nc_rb.png"}, + inventory_image = "default_nc_rb.png", + is_ground_content = false, + groups = {cracky=2}, + sounds = default.node_sound_defaults(), +}) + +minetest.register_node("default:sapling", { + description = "Sapling", + drawtype = "plantlike", + visual_scale = 1.0, + tiles ={"default_sapling.png"}, + inventory_image = "default_sapling.png", + wield_image = "default_sapling.png", + paramtype = "light", + walkable = false, + groups = {snappy=2,dig_immediate=3,attached_node=1}, + sounds = default.node_sound_defaults(), +}) + +minetest.register_node("default:apple", { + description = "Apple", + drawtype = "plantlike", + visual_scale = 1.0, + tiles ={"default_apple.png"}, + inventory_image = "default_apple.png", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + groups = {fleshy=3,dig_immediate=3}, + on_use = minetest.item_eat(4), + sounds = default.node_sound_defaults(), +}) + + +local c_air = minetest.get_content_id("air") +local c_ignore = minetest.get_content_id("ignore") +local c_tree = minetest.get_content_id("default:tree") +local c_leaves = minetest.get_content_id("default:leaves") +local c_apple = minetest.get_content_id("default:apple") +function default.grow_tree(data, a, pos, is_apple_tree, seed) + --[[ + NOTE: Tree-placing code is currently duplicated in the engine + and in games that have saplings; both are deprecated but not + replaced yet + ]]-- + local pr = PseudoRandom(seed) + local th = pr:next(4, 5) + local x, y, z = pos.x, pos.y, pos.z + for yy = y, y+th-1 do + local vi = a:index(x, yy, z) + if a:contains(x, yy, z) and (data[vi] == c_air or yy == y) then + data[vi] = c_tree + end + end + y = y+th-1 -- (x, y, z) is now last piece of trunk + local leaves_a = VoxelArea:new{MinEdge={x=-2, y=-1, z=-2}, MaxEdge={x=2, y=2, z=2}} + local leaves_buffer = {} + + -- Force leaves near the trunk + local d = 1 + for xi = -d, d do + for yi = -d, d do + for zi = -d, d do + leaves_buffer[leaves_a:index(xi, yi, zi)] = true + end + end + end + + -- Add leaves randomly + for iii = 1, 8 do + local d = 1 + local xx = pr:next(leaves_a.MinEdge.x, leaves_a.MaxEdge.x - d) + local yy = pr:next(leaves_a.MinEdge.y, leaves_a.MaxEdge.y - d) + local zz = pr:next(leaves_a.MinEdge.z, leaves_a.MaxEdge.z - d) + + for xi = 0, d do + for yi = 0, d do + for zi = 0, d do + leaves_buffer[leaves_a:index(xx+xi, yy+yi, zz+zi)] = true + end + end + end + end + + -- Add the leaves + for xi = leaves_a.MinEdge.x, leaves_a.MaxEdge.x do + for yi = leaves_a.MinEdge.y, leaves_a.MaxEdge.y do + for zi = leaves_a.MinEdge.z, leaves_a.MaxEdge.z do + if a:contains(x+xi, y+yi, z+zi) then + local vi = a:index(x+xi, y+yi, z+zi) + if data[vi] == c_air or data[vi] == c_ignore then + if leaves_buffer[leaves_a:index(xi, yi, zi)] then + if is_apple_tree and pr:next(1, 100) <= 10 then + data[vi] = c_apple + else + data[vi] = c_leaves + end + end + end + end + end + end + end +end + +minetest.register_abm({ + nodenames = {"default:sapling"}, + interval = 10, + chance = 50, + action = function(pos, node) + local is_soil = minetest.registered_nodes[minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name].groups.soil + if is_soil == nil or is_soil == 0 then return end + print("A sapling grows into a tree at "..minetest.pos_to_string(pos)) + local vm = minetest.get_voxel_manip() + local minp, maxp = vm:read_from_map({x=pos.x-16, y=pos.y, z=pos.z-16}, {x=pos.x+16, y=pos.y+16, z=pos.z+16}) + local a = VoxelArea:new{MinEdge=minp, MaxEdge=maxp} + local data = vm:get_data() + default.grow_tree(data, a, pos, math.random(1, 4) == 1, math.random(1,100000)) + vm:set_data(data) + vm:write_to_map(data) + vm:update_map() + end +}) + +minetest.register_abm({ + nodenames = {"default:dirt"}, + interval = 2, + chance = 200, + action = function(pos, node) + local above = {x=pos.x, y=pos.y+1, z=pos.z} + local name = minetest.get_node(above).name + local nodedef = minetest.registered_nodes[name] + if nodedef and (nodedef.sunlight_propagates or nodedef.paramtype == "light") + and nodedef.liquidtype == "none" + and (minetest.get_node_light(above) or 0) >= 13 then + if name == "default:snow" or name == "default:snowblock" then + minetest.set_node(pos, {name = "default:dirt_with_snow"}) + else + minetest.set_node(pos, {name = "default:dirt_with_grass"}) + end + end + end +}) + +minetest.register_abm({ + nodenames = {"default:dirt_with_grass"}, + interval = 2, + chance = 20, + action = function(pos, node) + local above = {x=pos.x, y=pos.y+1, z=pos.z} + local name = minetest.get_node(above).name + local nodedef = minetest.registered_nodes[name] + if name ~= "ignore" and nodedef + and not ((nodedef.sunlight_propagates or nodedef.paramtype == "light") + and nodedef.liquidtype == "none") then + minetest.set_node(pos, {name = "default:dirt"}) + end + end +}) + +-- +-- Crafting items +-- + +minetest.register_craftitem("default:stick", { + description = "Stick", + inventory_image = "default_stick.png", +}) + +minetest.register_craftitem("default:paper", { + description = "Paper", + inventory_image = "default_paper.png", +}) + +minetest.register_craftitem("default:book", { + description = "Book", + inventory_image = "default_book.png", +}) + +minetest.register_craftitem("default:coal_lump", { + description = "Lump of coal", + inventory_image = "default_coal_lump.png", +}) + +minetest.register_craftitem("default:iron_lump", { + description = "Lump of iron", + inventory_image = "default_iron_lump.png", +}) + +minetest.register_craftitem("default:clay_lump", { + description = "Lump of clay", + inventory_image = "default_clay_lump.png", +}) + +minetest.register_craftitem("default:steel_ingot", { + description = "Steel ingot", + inventory_image = "default_steel_ingot.png", +}) + +minetest.register_craftitem("default:clay_brick", { + description = "Clay brick", + inventory_image = "default_steel_ingot.png", + inventory_image = "default_clay_brick.png", +}) + +minetest.register_craftitem("default:scorched_stuff", { + description = "Scorched stuff", + inventory_image = "default_scorched_stuff.png", +}) + +-- +-- Aliases for the current map generator outputs +-- + +minetest.register_alias("mapgen_air", "air") +minetest.register_alias("mapgen_stone", "default:stone") +minetest.register_alias("mapgen_tree", "default:tree") +minetest.register_alias("mapgen_leaves", "default:leaves") +minetest.register_alias("mapgen_apple", "default:apple") +minetest.register_alias("mapgen_water_source", "default:water_source") +minetest.register_alias("mapgen_dirt", "default:dirt") +minetest.register_alias("mapgen_sand", "default:sand") +minetest.register_alias("mapgen_gravel", "default:gravel") +minetest.register_alias("mapgen_clay", "default:clay") +minetest.register_alias("mapgen_lava_source", "default:lava_source") +minetest.register_alias("mapgen_cobble", "default:cobble") +minetest.register_alias("mapgen_mossycobble", "default:mossycobble") +minetest.register_alias("mapgen_dirt_with_grass", "default:dirt_with_grass") +minetest.register_alias("mapgen_junglegrass", "default:junglegrass") +minetest.register_alias("mapgen_stone_with_coal", "default:stone_with_coal") +minetest.register_alias("mapgen_stone_with_iron", "default:stone_with_iron") +minetest.register_alias("mapgen_mese", "default:mese") + +-- Support old code +function default.spawn_falling_node(p, nodename) + spawn_falling_node(p, nodename) +end + +-- Horrible crap to support old code +-- Don't use this and never do what this does, it's completely wrong! +-- (More specifically, the client and the C++ code doesn't get the group) +function default.register_falling_node(nodename, texture) + minetest.log("error", debug.traceback()) + minetest.log('error', "WARNING: default.register_falling_node is deprecated") + if minetest.registered_nodes[nodename] then + minetest.registered_nodes[nodename].groups.falling_node = 1 + end +end + +-- +-- Global callbacks +-- + +-- Global environment step function +function on_step(dtime) + -- print("on_step") +end +minetest.register_globalstep(on_step) + +function on_placenode(p, node) + --print("on_placenode") +end +minetest.register_on_placenode(on_placenode) + +function on_dignode(p, node) + --print("on_dignode") +end +minetest.register_on_dignode(on_dignode) + +function on_punchnode(p, node) +end +minetest.register_on_punchnode(on_punchnode) + +-- +-- Test some things +-- + +local function test_get_craft_result() + minetest.log("info", "test_get_craft_result()") + -- normal + local input = { + method = "normal", + width = 2, + items = {"", "default:coal_lump", "", "default:stick"} + } + minetest.log("info", "torch crafting input: "..dump(input)) + local output, decremented_input = minetest.get_craft_result(input) + minetest.log("info", "torch crafting output: "..dump(output)) + minetest.log("info", "torch crafting decremented input: "..dump(decremented_input)) + assert(output.item) + minetest.log("info", "torch crafting output.item:to_table(): "..dump(output.item:to_table())) + assert(output.item:get_name() == "default:torch") + assert(output.item:get_count() == 4) + -- fuel + local input = { + method = "fuel", + width = 1, + items = {"default:coal_lump"} + } + minetest.log("info", "coal fuel input: "..dump(input)) + local output, decremented_input = minetest.get_craft_result(input) + minetest.log("info", "coal fuel output: "..dump(output)) + minetest.log("info", "coal fuel decremented input: "..dump(decremented_input)) + assert(output.time) + assert(output.time > 0) + -- cook + local input = { + method = "cooking", + width = 1, + items = {"default:cobble"} + } + minetest.log("info", "cobble cooking input: "..dump(output)) + local output, decremented_input = minetest.get_craft_result(input) + minetest.log("info", "cobble cooking output: "..dump(output)) + minetest.log("info", "cobble cooking decremented input: "..dump(decremented_input)) + assert(output.time) + assert(output.time > 0) + assert(output.item) + minetest.log("info", "cobble cooking output.item:to_table(): "..dump(output.item:to_table())) + assert(output.item:get_name() == "default:stone") + assert(output.item:get_count() == 1) +end +test_get_craft_result() + +-- +-- Done, print some random stuff +-- + +--print("minetest.registered_entities:") +--dump2(minetest.registered_entities) + +-- END diff --git a/games/minimal/mods/default/mapgen.lua b/games/minimal/mods/default/mapgen.lua new file mode 100644 index 0000000..8ff259c --- /dev/null +++ b/games/minimal/mods/default/mapgen.lua @@ -0,0 +1,136 @@ +-- minetest/default/mapgen.lua + +-- +-- Aliases for map generator outputs +-- + +minetest.register_alias("mapgen_stone", "default:stone") +minetest.register_alias("mapgen_tree", "default:tree") +minetest.register_alias("mapgen_leaves", "default:leaves") +minetest.register_alias("mapgen_apple", "default:apple") +minetest.register_alias("mapgen_water_source", "default:water_source") +minetest.register_alias("mapgen_dirt", "default:dirt") +minetest.register_alias("mapgen_sand", "default:sand") +minetest.register_alias("mapgen_gravel", "default:gravel") +minetest.register_alias("mapgen_clay", "default:clay") +minetest.register_alias("mapgen_lava_source", "default:lava_source") +minetest.register_alias("mapgen_cobble", "default:cobble") +minetest.register_alias("mapgen_mossycobble", "default:mossycobble") +minetest.register_alias("mapgen_dirt_with_grass", "default:dirt_with_grass") +minetest.register_alias("mapgen_junglegrass", "default:junglegrass") +minetest.register_alias("mapgen_stone_with_coal", "default:stone_with_coal") +minetest.register_alias("mapgen_stone_with_iron", "default:stone_with_iron") +minetest.register_alias("mapgen_mese", "default:mese") +minetest.register_alias("mapgen_stair_cobble", "stairs:stair_cobble") + +-- +-- Ore generation +-- + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_coal", + wherein = "default:stone", + clust_scarcity = 8*8*8, + clust_num_ores = 5, + clust_size = 3, + height_min = -31000, + height_max = 64, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_iron", + wherein = "default:stone", + clust_scarcity = 16*16*16, + clust_num_ores = 5, + clust_size = 3, + height_min = -5, + height_max = 7, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_iron", + wherein = "default:stone", + clust_scarcity = 12*12*12, + clust_num_ores = 5, + clust_size = 3, + height_min = -16, + height_max = -5, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_iron", + wherein = "default:stone", + clust_scarcity = 9*9*9, + clust_num_ores = 5, + clust_size = 3, + height_min = -31000, + height_max = -17, +}) + +-- for float islands and far scaled +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_coal", + wherein = "default:stone", + clust_scarcity = 8*8*8, + clust_num_ores = 5, + clust_size = 3, + height_min = 200, + height_max = 31000, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_iron", + wherein = "default:stone", + clust_scarcity = 9*9*9, + clust_num_ores = 5, + clust_size = 3, + height_min = 200, + height_max = 31000, +}) + +minetest.register_on_generated(function(minp, maxp, seed) + -- Generate clay + if maxp.y >= 2 and minp.y <= 0 then + -- Assume X and Z lengths are equal + local divlen = 4 + local divs = (maxp.x-minp.x)/divlen+1; + for divx=0+1,divs-1-1 do + for divz=0+1,divs-1-1 do + local cx = minp.x + math.floor((divx+0.5)*divlen) + local cz = minp.z + math.floor((divz+0.5)*divlen) + if minetest.get_node({x=cx,y=1,z=cz}).name == "default:water_source" and + minetest.get_node({x=cx,y=0,z=cz}).name == "default:sand" then + local is_shallow = true + local num_water_around = 0 + if minetest.get_node({x=cx-divlen*2,y=1,z=cz+0}).name == "default:water_source" then + num_water_around = num_water_around + 1 end + if minetest.get_node({x=cx+divlen*2,y=1,z=cz+0}).name == "default:water_source" then + num_water_around = num_water_around + 1 end + if minetest.get_node({x=cx+0,y=1,z=cz-divlen*2}).name == "default:water_source" then + num_water_around = num_water_around + 1 end + if minetest.get_node({x=cx+0,y=1,z=cz+divlen*2}).name == "default:water_source" then + num_water_around = num_water_around + 1 end + if num_water_around >= 2 then + is_shallow = false + end + if is_shallow then + for x1=-divlen,divlen do + for z1=-divlen,divlen do + if minetest.get_node({x=cx+x1,y=0,z=cz+z1}).name == "default:sand" then + minetest.set_node({x=cx+x1,y=0,z=cz+z1}, {name="default:clay"}) + end + end + end + end + end + end + end + end +end) + diff --git a/games/minimal/mods/default/sounds/default_grass_footstep.1.ogg b/games/minimal/mods/default/sounds/default_grass_footstep.1.ogg new file mode 100644 index 0000000..ce625d9 Binary files /dev/null and b/games/minimal/mods/default/sounds/default_grass_footstep.1.ogg differ diff --git a/games/minimal/mods/default/textures/bubble.png b/games/minimal/mods/default/textures/bubble.png new file mode 100644 index 0000000..3bca7e1 Binary files /dev/null and b/games/minimal/mods/default/textures/bubble.png differ diff --git a/games/minimal/mods/default/textures/crack_anylength.png b/games/minimal/mods/default/textures/crack_anylength.png new file mode 100644 index 0000000..d9b49f9 Binary files /dev/null and b/games/minimal/mods/default/textures/crack_anylength.png differ diff --git a/games/minimal/mods/default/textures/default_apple.png b/games/minimal/mods/default/textures/default_apple.png new file mode 100644 index 0000000..4473dca Binary files /dev/null and b/games/minimal/mods/default/textures/default_apple.png differ diff --git a/games/minimal/mods/default/textures/default_book.png b/games/minimal/mods/default/textures/default_book.png new file mode 100644 index 0000000..ea14a37 Binary files /dev/null and b/games/minimal/mods/default/textures/default_book.png differ diff --git a/games/minimal/mods/default/textures/default_bookshelf.png b/games/minimal/mods/default/textures/default_bookshelf.png new file mode 100644 index 0000000..f225e34 Binary files /dev/null and b/games/minimal/mods/default/textures/default_bookshelf.png differ diff --git a/games/minimal/mods/default/textures/default_brick.png b/games/minimal/mods/default/textures/default_brick.png new file mode 100644 index 0000000..def1cf0 Binary files /dev/null and b/games/minimal/mods/default/textures/default_brick.png differ diff --git a/games/minimal/mods/default/textures/default_cactus_side.png b/games/minimal/mods/default/textures/default_cactus_side.png new file mode 100644 index 0000000..128a4d2 Binary files /dev/null and b/games/minimal/mods/default/textures/default_cactus_side.png differ diff --git a/games/minimal/mods/default/textures/default_cactus_top.png b/games/minimal/mods/default/textures/default_cactus_top.png new file mode 100644 index 0000000..eda1a0b Binary files /dev/null and b/games/minimal/mods/default/textures/default_cactus_top.png differ diff --git a/games/minimal/mods/default/textures/default_chest_front.png b/games/minimal/mods/default/textures/default_chest_front.png new file mode 100644 index 0000000..55b076c Binary files /dev/null and b/games/minimal/mods/default/textures/default_chest_front.png differ diff --git a/games/minimal/mods/default/textures/default_chest_lock.png b/games/minimal/mods/default/textures/default_chest_lock.png new file mode 100644 index 0000000..4b2d1af Binary files /dev/null and b/games/minimal/mods/default/textures/default_chest_lock.png differ diff --git a/games/minimal/mods/default/textures/default_chest_side.png b/games/minimal/mods/default/textures/default_chest_side.png new file mode 100644 index 0000000..ae4847c Binary files /dev/null and b/games/minimal/mods/default/textures/default_chest_side.png differ diff --git a/games/minimal/mods/default/textures/default_chest_top.png b/games/minimal/mods/default/textures/default_chest_top.png new file mode 100644 index 0000000..ac41551 Binary files /dev/null and b/games/minimal/mods/default/textures/default_chest_top.png differ diff --git a/games/minimal/mods/default/textures/default_clay.png b/games/minimal/mods/default/textures/default_clay.png new file mode 100644 index 0000000..070b69e Binary files /dev/null and b/games/minimal/mods/default/textures/default_clay.png differ diff --git a/games/minimal/mods/default/textures/default_clay_brick.png b/games/minimal/mods/default/textures/default_clay_brick.png new file mode 100644 index 0000000..e25633b Binary files /dev/null and b/games/minimal/mods/default/textures/default_clay_brick.png differ diff --git a/games/minimal/mods/default/textures/default_clay_lump.png b/games/minimal/mods/default/textures/default_clay_lump.png new file mode 100644 index 0000000..ceed6fa Binary files /dev/null and b/games/minimal/mods/default/textures/default_clay_lump.png differ diff --git a/games/minimal/mods/default/textures/default_cloud.png b/games/minimal/mods/default/textures/default_cloud.png new file mode 100644 index 0000000..faf0ec1 Binary files /dev/null and b/games/minimal/mods/default/textures/default_cloud.png differ diff --git a/games/minimal/mods/default/textures/default_coal_lump.png b/games/minimal/mods/default/textures/default_coal_lump.png new file mode 100644 index 0000000..dae47e3 Binary files /dev/null and b/games/minimal/mods/default/textures/default_coal_lump.png differ diff --git a/games/minimal/mods/default/textures/default_cobble.png b/games/minimal/mods/default/textures/default_cobble.png new file mode 100644 index 0000000..2a28d25 Binary files /dev/null and b/games/minimal/mods/default/textures/default_cobble.png differ diff --git a/games/minimal/mods/default/textures/default_dirt.png b/games/minimal/mods/default/textures/default_dirt.png new file mode 100644 index 0000000..7cb9c89 Binary files /dev/null and b/games/minimal/mods/default/textures/default_dirt.png differ diff --git a/games/minimal/mods/default/textures/default_fence.png b/games/minimal/mods/default/textures/default_fence.png new file mode 100644 index 0000000..e3510c5 Binary files /dev/null and b/games/minimal/mods/default/textures/default_fence.png differ diff --git a/games/minimal/mods/default/textures/default_furnace_fire_bg.png b/games/minimal/mods/default/textures/default_furnace_fire_bg.png new file mode 100644 index 0000000..e3370f4 Binary files /dev/null and b/games/minimal/mods/default/textures/default_furnace_fire_bg.png differ diff --git a/games/minimal/mods/default/textures/default_furnace_fire_fg.png b/games/minimal/mods/default/textures/default_furnace_fire_fg.png new file mode 100644 index 0000000..7a126e3 Binary files /dev/null and b/games/minimal/mods/default/textures/default_furnace_fire_fg.png differ diff --git a/games/minimal/mods/default/textures/default_furnace_front.png b/games/minimal/mods/default/textures/default_furnace_front.png new file mode 100644 index 0000000..4da398c Binary files /dev/null and b/games/minimal/mods/default/textures/default_furnace_front.png differ diff --git a/games/minimal/mods/default/textures/default_furnace_front_active.png b/games/minimal/mods/default/textures/default_furnace_front_active.png new file mode 100644 index 0000000..06c4ab3 Binary files /dev/null and b/games/minimal/mods/default/textures/default_furnace_front_active.png differ diff --git a/games/minimal/mods/default/textures/default_furnace_side.png b/games/minimal/mods/default/textures/default_furnace_side.png new file mode 100644 index 0000000..c729de9 Binary files /dev/null and b/games/minimal/mods/default/textures/default_furnace_side.png differ diff --git a/games/minimal/mods/default/textures/default_glass.png b/games/minimal/mods/default/textures/default_glass.png new file mode 100644 index 0000000..fd665a4 Binary files /dev/null and b/games/minimal/mods/default/textures/default_glass.png differ diff --git a/games/minimal/mods/default/textures/default_grass.png b/games/minimal/mods/default/textures/default_grass.png new file mode 100644 index 0000000..1d76708 Binary files /dev/null and b/games/minimal/mods/default/textures/default_grass.png differ diff --git a/games/minimal/mods/default/textures/default_grass_footsteps.png b/games/minimal/mods/default/textures/default_grass_footsteps.png new file mode 100644 index 0000000..8349033 Binary files /dev/null and b/games/minimal/mods/default/textures/default_grass_footsteps.png differ diff --git a/games/minimal/mods/default/textures/default_grass_side.png b/games/minimal/mods/default/textures/default_grass_side.png new file mode 100644 index 0000000..4f4f680 Binary files /dev/null and b/games/minimal/mods/default/textures/default_grass_side.png differ diff --git a/games/minimal/mods/default/textures/default_gravel.png b/games/minimal/mods/default/textures/default_gravel.png new file mode 100644 index 0000000..4b47e23 Binary files /dev/null and b/games/minimal/mods/default/textures/default_gravel.png differ diff --git a/games/minimal/mods/default/textures/default_iron_lump.png b/games/minimal/mods/default/textures/default_iron_lump.png new file mode 100644 index 0000000..6b515f6 Binary files /dev/null and b/games/minimal/mods/default/textures/default_iron_lump.png differ diff --git a/games/minimal/mods/default/textures/default_junglegrass.png b/games/minimal/mods/default/textures/default_junglegrass.png new file mode 100644 index 0000000..7066f7d Binary files /dev/null and b/games/minimal/mods/default/textures/default_junglegrass.png differ diff --git a/games/minimal/mods/default/textures/default_jungletree.png b/games/minimal/mods/default/textures/default_jungletree.png new file mode 100644 index 0000000..a1fd36a Binary files /dev/null and b/games/minimal/mods/default/textures/default_jungletree.png differ diff --git a/games/minimal/mods/default/textures/default_jungletree_top.png b/games/minimal/mods/default/textures/default_jungletree_top.png new file mode 100644 index 0000000..a13fdae Binary files /dev/null and b/games/minimal/mods/default/textures/default_jungletree_top.png differ diff --git a/games/minimal/mods/default/textures/default_ladder.png b/games/minimal/mods/default/textures/default_ladder.png new file mode 100644 index 0000000..46757b8 Binary files /dev/null and b/games/minimal/mods/default/textures/default_ladder.png differ diff --git a/games/minimal/mods/default/textures/default_lava.png b/games/minimal/mods/default/textures/default_lava.png new file mode 100644 index 0000000..a4cf649 Binary files /dev/null and b/games/minimal/mods/default/textures/default_lava.png differ diff --git a/games/minimal/mods/default/textures/default_lava_flowing_animated.png b/games/minimal/mods/default/textures/default_lava_flowing_animated.png new file mode 100644 index 0000000..0bbd136 Binary files /dev/null and b/games/minimal/mods/default/textures/default_lava_flowing_animated.png differ diff --git a/games/minimal/mods/default/textures/default_lava_source_animated.png b/games/minimal/mods/default/textures/default_lava_source_animated.png new file mode 100644 index 0000000..aa9d57c Binary files /dev/null and b/games/minimal/mods/default/textures/default_lava_source_animated.png differ diff --git a/games/minimal/mods/default/textures/default_leaves.png b/games/minimal/mods/default/textures/default_leaves.png new file mode 100644 index 0000000..00ce447 Binary files /dev/null and b/games/minimal/mods/default/textures/default_leaves.png differ diff --git a/games/minimal/mods/default/textures/default_mese.png b/games/minimal/mods/default/textures/default_mese.png new file mode 100644 index 0000000..123f0f4 Binary files /dev/null and b/games/minimal/mods/default/textures/default_mese.png differ diff --git a/games/minimal/mods/default/textures/default_mineral_coal.png b/games/minimal/mods/default/textures/default_mineral_coal.png new file mode 100644 index 0000000..0f52062 Binary files /dev/null and b/games/minimal/mods/default/textures/default_mineral_coal.png differ diff --git a/games/minimal/mods/default/textures/default_mineral_iron.png b/games/minimal/mods/default/textures/default_mineral_iron.png new file mode 100644 index 0000000..6c894ce Binary files /dev/null and b/games/minimal/mods/default/textures/default_mineral_iron.png differ diff --git a/games/minimal/mods/default/textures/default_mossycobble.png b/games/minimal/mods/default/textures/default_mossycobble.png new file mode 100644 index 0000000..5082953 Binary files /dev/null and b/games/minimal/mods/default/textures/default_mossycobble.png differ diff --git a/games/minimal/mods/default/textures/default_nc_back.png b/games/minimal/mods/default/textures/default_nc_back.png new file mode 100644 index 0000000..e479ace Binary files /dev/null and b/games/minimal/mods/default/textures/default_nc_back.png differ diff --git a/games/minimal/mods/default/textures/default_nc_front.png b/games/minimal/mods/default/textures/default_nc_front.png new file mode 100644 index 0000000..c9dd6a3 Binary files /dev/null and b/games/minimal/mods/default/textures/default_nc_front.png differ diff --git a/games/minimal/mods/default/textures/default_nc_rb.png b/games/minimal/mods/default/textures/default_nc_rb.png new file mode 100644 index 0000000..685a22c Binary files /dev/null and b/games/minimal/mods/default/textures/default_nc_rb.png differ diff --git a/games/minimal/mods/default/textures/default_nc_side.png b/games/minimal/mods/default/textures/default_nc_side.png new file mode 100644 index 0000000..bc85427 Binary files /dev/null and b/games/minimal/mods/default/textures/default_nc_side.png differ diff --git a/games/minimal/mods/default/textures/default_paper.png b/games/minimal/mods/default/textures/default_paper.png new file mode 100644 index 0000000..3c31f77 Binary files /dev/null and b/games/minimal/mods/default/textures/default_paper.png differ diff --git a/games/minimal/mods/default/textures/default_papyrus.png b/games/minimal/mods/default/textures/default_papyrus.png new file mode 100644 index 0000000..3707e40 Binary files /dev/null and b/games/minimal/mods/default/textures/default_papyrus.png differ diff --git a/games/minimal/mods/default/textures/default_rail.png b/games/minimal/mods/default/textures/default_rail.png new file mode 100644 index 0000000..777e10c Binary files /dev/null and b/games/minimal/mods/default/textures/default_rail.png differ diff --git a/games/minimal/mods/default/textures/default_rail_crossing.png b/games/minimal/mods/default/textures/default_rail_crossing.png new file mode 100644 index 0000000..a988c47 Binary files /dev/null and b/games/minimal/mods/default/textures/default_rail_crossing.png differ diff --git a/games/minimal/mods/default/textures/default_rail_curved.png b/games/minimal/mods/default/textures/default_rail_curved.png new file mode 100644 index 0000000..f87e826 Binary files /dev/null and b/games/minimal/mods/default/textures/default_rail_curved.png differ diff --git a/games/minimal/mods/default/textures/default_rail_t_junction.png b/games/minimal/mods/default/textures/default_rail_t_junction.png new file mode 100644 index 0000000..fd25b5b Binary files /dev/null and b/games/minimal/mods/default/textures/default_rail_t_junction.png differ diff --git a/games/minimal/mods/default/textures/default_sand.png b/games/minimal/mods/default/textures/default_sand.png new file mode 100644 index 0000000..1a56cc7 Binary files /dev/null and b/games/minimal/mods/default/textures/default_sand.png differ diff --git a/games/minimal/mods/default/textures/default_sandstone.png b/games/minimal/mods/default/textures/default_sandstone.png new file mode 100644 index 0000000..bd9cb86 Binary files /dev/null and b/games/minimal/mods/default/textures/default_sandstone.png differ diff --git a/games/minimal/mods/default/textures/default_sapling.png b/games/minimal/mods/default/textures/default_sapling.png new file mode 100644 index 0000000..9360232 Binary files /dev/null and b/games/minimal/mods/default/textures/default_sapling.png differ diff --git a/games/minimal/mods/default/textures/default_scorched_stuff.png b/games/minimal/mods/default/textures/default_scorched_stuff.png new file mode 100644 index 0000000..c7efc7e Binary files /dev/null and b/games/minimal/mods/default/textures/default_scorched_stuff.png differ diff --git a/games/minimal/mods/default/textures/default_sign_wall.png b/games/minimal/mods/default/textures/default_sign_wall.png new file mode 100644 index 0000000..93c075a Binary files /dev/null and b/games/minimal/mods/default/textures/default_sign_wall.png differ diff --git a/games/minimal/mods/default/textures/default_steel_block.png b/games/minimal/mods/default/textures/default_steel_block.png new file mode 100644 index 0000000..9c0a0e2 Binary files /dev/null and b/games/minimal/mods/default/textures/default_steel_block.png differ diff --git a/games/minimal/mods/default/textures/default_steel_ingot.png b/games/minimal/mods/default/textures/default_steel_ingot.png new file mode 100644 index 0000000..ad133bc Binary files /dev/null and b/games/minimal/mods/default/textures/default_steel_ingot.png differ diff --git a/games/minimal/mods/default/textures/default_stick.png b/games/minimal/mods/default/textures/default_stick.png new file mode 100644 index 0000000..055a6ac Binary files /dev/null and b/games/minimal/mods/default/textures/default_stick.png differ diff --git a/games/minimal/mods/default/textures/default_stone.png b/games/minimal/mods/default/textures/default_stone.png new file mode 100644 index 0000000..a835fe0 Binary files /dev/null and b/games/minimal/mods/default/textures/default_stone.png differ diff --git a/games/minimal/mods/default/textures/default_tnt_bottom.png b/games/minimal/mods/default/textures/default_tnt_bottom.png new file mode 100644 index 0000000..4eda060 Binary files /dev/null and b/games/minimal/mods/default/textures/default_tnt_bottom.png differ diff --git a/games/minimal/mods/default/textures/default_tnt_side.png b/games/minimal/mods/default/textures/default_tnt_side.png new file mode 100644 index 0000000..c259726 Binary files /dev/null and b/games/minimal/mods/default/textures/default_tnt_side.png differ diff --git a/games/minimal/mods/default/textures/default_tnt_top.png b/games/minimal/mods/default/textures/default_tnt_top.png new file mode 100644 index 0000000..a031a34 Binary files /dev/null and b/games/minimal/mods/default/textures/default_tnt_top.png differ diff --git a/games/minimal/mods/default/textures/default_tool_mesepick.png b/games/minimal/mods/default/textures/default_tool_mesepick.png new file mode 100644 index 0000000..2b5e12c Binary files /dev/null and b/games/minimal/mods/default/textures/default_tool_mesepick.png differ diff --git a/games/minimal/mods/default/textures/default_tool_steelaxe.png b/games/minimal/mods/default/textures/default_tool_steelaxe.png new file mode 100644 index 0000000..fae19dd Binary files /dev/null and b/games/minimal/mods/default/textures/default_tool_steelaxe.png differ diff --git a/games/minimal/mods/default/textures/default_tool_steelpick.png b/games/minimal/mods/default/textures/default_tool_steelpick.png new file mode 100644 index 0000000..3a8f586 Binary files /dev/null and b/games/minimal/mods/default/textures/default_tool_steelpick.png differ diff --git a/games/minimal/mods/default/textures/default_tool_steelshovel.png b/games/minimal/mods/default/textures/default_tool_steelshovel.png new file mode 100644 index 0000000..d5b1bc6 Binary files /dev/null and b/games/minimal/mods/default/textures/default_tool_steelshovel.png differ diff --git a/games/minimal/mods/default/textures/default_tool_steelsword.png b/games/minimal/mods/default/textures/default_tool_steelsword.png new file mode 100644 index 0000000..efc61a0 Binary files /dev/null and b/games/minimal/mods/default/textures/default_tool_steelsword.png differ diff --git a/games/minimal/mods/default/textures/default_tool_stoneaxe.png b/games/minimal/mods/default/textures/default_tool_stoneaxe.png new file mode 100644 index 0000000..532e16f Binary files /dev/null and b/games/minimal/mods/default/textures/default_tool_stoneaxe.png differ diff --git a/games/minimal/mods/default/textures/default_tool_stonepick.png b/games/minimal/mods/default/textures/default_tool_stonepick.png new file mode 100644 index 0000000..d9156ee Binary files /dev/null and b/games/minimal/mods/default/textures/default_tool_stonepick.png differ diff --git a/games/minimal/mods/default/textures/default_tool_stoneshovel.png b/games/minimal/mods/default/textures/default_tool_stoneshovel.png new file mode 100644 index 0000000..7bbd2d4 Binary files /dev/null and b/games/minimal/mods/default/textures/default_tool_stoneshovel.png differ diff --git a/games/minimal/mods/default/textures/default_tool_stonesword.png b/games/minimal/mods/default/textures/default_tool_stonesword.png new file mode 100644 index 0000000..533b873 Binary files /dev/null and b/games/minimal/mods/default/textures/default_tool_stonesword.png differ diff --git a/games/minimal/mods/default/textures/default_tool_woodaxe.png b/games/minimal/mods/default/textures/default_tool_woodaxe.png new file mode 100644 index 0000000..6e70f4a Binary files /dev/null and b/games/minimal/mods/default/textures/default_tool_woodaxe.png differ diff --git a/games/minimal/mods/default/textures/default_tool_woodpick.png b/games/minimal/mods/default/textures/default_tool_woodpick.png new file mode 100644 index 0000000..15c61f4 Binary files /dev/null and b/games/minimal/mods/default/textures/default_tool_woodpick.png differ diff --git a/games/minimal/mods/default/textures/default_tool_woodshovel.png b/games/minimal/mods/default/textures/default_tool_woodshovel.png new file mode 100644 index 0000000..e0b3608 Binary files /dev/null and b/games/minimal/mods/default/textures/default_tool_woodshovel.png differ diff --git a/games/minimal/mods/default/textures/default_tool_woodsword.png b/games/minimal/mods/default/textures/default_tool_woodsword.png new file mode 100644 index 0000000..8099af1 Binary files /dev/null and b/games/minimal/mods/default/textures/default_tool_woodsword.png differ diff --git a/games/minimal/mods/default/textures/default_torch.png b/games/minimal/mods/default/textures/default_torch.png new file mode 100644 index 0000000..21d98bd Binary files /dev/null and b/games/minimal/mods/default/textures/default_torch.png differ diff --git a/games/minimal/mods/default/textures/default_torch_on_ceiling.png b/games/minimal/mods/default/textures/default_torch_on_ceiling.png new file mode 100644 index 0000000..dccd380 Binary files /dev/null and b/games/minimal/mods/default/textures/default_torch_on_ceiling.png differ diff --git a/games/minimal/mods/default/textures/default_torch_on_floor.png b/games/minimal/mods/default/textures/default_torch_on_floor.png new file mode 100644 index 0000000..c220107 Binary files /dev/null and b/games/minimal/mods/default/textures/default_torch_on_floor.png differ diff --git a/games/minimal/mods/default/textures/default_tree.png b/games/minimal/mods/default/textures/default_tree.png new file mode 100644 index 0000000..65abfc2 Binary files /dev/null and b/games/minimal/mods/default/textures/default_tree.png differ diff --git a/games/minimal/mods/default/textures/default_tree_top.png b/games/minimal/mods/default/textures/default_tree_top.png new file mode 100644 index 0000000..3e6bd52 Binary files /dev/null and b/games/minimal/mods/default/textures/default_tree_top.png differ diff --git a/games/minimal/mods/default/textures/default_water.png b/games/minimal/mods/default/textures/default_water.png new file mode 100644 index 0000000..3e385ae Binary files /dev/null and b/games/minimal/mods/default/textures/default_water.png differ diff --git a/games/minimal/mods/default/textures/default_wood.png b/games/minimal/mods/default/textures/default_wood.png new file mode 100644 index 0000000..57c1d7c Binary files /dev/null and b/games/minimal/mods/default/textures/default_wood.png differ diff --git a/games/minimal/mods/default/textures/heart.png b/games/minimal/mods/default/textures/heart.png new file mode 100644 index 0000000..c25f43b Binary files /dev/null and b/games/minimal/mods/default/textures/heart.png differ diff --git a/games/minimal/mods/default/textures/player.png b/games/minimal/mods/default/textures/player.png new file mode 100644 index 0000000..cf5d83f Binary files /dev/null and b/games/minimal/mods/default/textures/player.png differ diff --git a/games/minimal/mods/default/textures/player_back.png b/games/minimal/mods/default/textures/player_back.png new file mode 100644 index 0000000..d498674 Binary files /dev/null and b/games/minimal/mods/default/textures/player_back.png differ diff --git a/games/minimal/mods/default/textures/treeprop.png b/games/minimal/mods/default/textures/treeprop.png new file mode 100644 index 0000000..eb8a8e6 Binary files /dev/null and b/games/minimal/mods/default/textures/treeprop.png differ diff --git a/games/minimal/mods/default/textures/wieldhand.png b/games/minimal/mods/default/textures/wieldhand.png new file mode 100644 index 0000000..dbed6ad Binary files /dev/null and b/games/minimal/mods/default/textures/wieldhand.png differ diff --git a/games/minimal/mods/errorhandler_test/init.lua b/games/minimal/mods/errorhandler_test/init.lua new file mode 100644 index 0000000..9d1535c --- /dev/null +++ b/games/minimal/mods/errorhandler_test/init.lua @@ -0,0 +1,106 @@ +-- +-- exception handler test module +-- +-- +-- To avoid this from crashing the module will startup in inactive mode. +-- to make specific errors happen you need to cause them by following +-- chat command: +-- +-- exceptiontest +-- +-- location has to be one of: +-- * mapgen: cause in next on_generate call +-- * entity_step: spawn a entity and make it do error in on_step +-- * globalstep: do error in next globalstep +-- * immediate: cause right in chat handler +-- +-- errortypes defined are: +-- * segv: make sigsegv happen +-- * zerodivision: cause a division by zero to happen +-- * exception: throw an exception + +if core.cause_error == nil or + type(core.cause_error) ~= "function" then + return +end + + +core.log("action", "WARNING: loading exception handler test module!") + +local exceptiondata = { + tocause = "none", + mapgen = false, + entity_step = false, + globalstep = false, +} + +local exception_entity = +{ + on_step = function(self, dtime) + if exceptiondata.entity_step then + core.cause_error(exceptiondata.tocause) + end + end, +} +local exception_entity_name = "errorhandler_test:error_entity" + +local function exception_chat_handler(playername, param) + local parameters = param:split(" ") + + if #parameters ~= 2 then + core.chat_send_player(playername, "Invalid argument count for exceptiontest") + end + + core.log("error", "Causing error at:" .. parameters[1]) + + if parameters[1] == "mapgen" then + exceptiondata.tocause = parameters[2] + exceptiondata.mapgen = true + elseif parameters[1] == "entity_step" then + --spawn entity at player location + local player = core.get_player_by_name(playername) + + if player:is_player() then + local pos = player:getpos() + + core.add_entity(pos, exception_entity_name) + end + + exceptiondata.tocause = parameters[2] + exceptiondata.entity_step = true + + elseif parameters[1] == "globalstep" then + exceptiondata.tocause = parameters[2] + exceptiondata.globalstep = true + + elseif parameters[1] == "immediate" then + core.cause_error(parameters[2]) + + else + core.chat_send_player(playername, "Invalid error location: " .. dump(parameters[1])) + end +end + +core.register_chatcommand("exceptiontest", + { + params = " ", + description = "cause a given error to happen.\n" .. + " location=(mapgen,entity_step,globalstep,immediate)\n" .. + " errortype=(segv,zerodivision,exception)", + func = exception_chat_handler, + privs = { server=true } + }) + +core.register_globalstep(function(dtime) + if exceptiondata.globalstep then + core.cause_error(exceptiondata.tocause) + end +end) + +core.register_on_generated(function(minp, maxp, blockseed) + if exceptiondata.mapgen then + core.cause_error(exceptiondata.tocause) + end +end) + +core.register_entity(exception_entity_name, exception_entity) diff --git a/games/minimal/mods/experimental/depends.txt b/games/minimal/mods/experimental/depends.txt new file mode 100644 index 0000000..3a7daa1 --- /dev/null +++ b/games/minimal/mods/experimental/depends.txt @@ -0,0 +1,2 @@ +default + diff --git a/games/minimal/mods/experimental/init.lua b/games/minimal/mods/experimental/init.lua new file mode 100644 index 0000000..729191b --- /dev/null +++ b/games/minimal/mods/experimental/init.lua @@ -0,0 +1,601 @@ +-- +-- Experimental things +-- + +-- For testing random stuff + +experimental = {} + +function experimental.print_to_everything(msg) + minetest.log("action", msg) + minetest.chat_send_all(msg) +end + +--[[ +experimental.player_visual_index = 0 +function switch_player_visual() + for _, obj in pairs(minetest.get_connected_players()) do + if experimental.player_visual_index == 0 then + obj:set_properties({visual="upright_sprite"}) + else + obj:set_properties({visual="cube"}) + end + end + experimental.player_visual_index = (experimental.player_visual_index + 1) % 2 + minetest.after(1.0, switch_player_visual) +end +minetest.after(1.0, switch_player_visual) +]] + +minetest.register_node("experimental:soundblock", { + tile_images = {"unknown_node.png", "default_tnt_bottom.png", + "default_tnt_side.png", "default_tnt_side.png", + "default_tnt_side.png", "default_tnt_side.png"}, + inventory_image = minetest.inventorycube("unknown_node.png", + "default_tnt_side.png", "default_tnt_side.png"), + groups = {dig_immediate=3}, +}) + +minetest.register_alias("sb", "experimental:soundblock") + +minetest.register_abm({ + nodenames = {"experimental:soundblock"}, + interval = 1, + chance = 1, + action = function(p0, node, _, _) + minetest.sound_play("default_grass_footstep", {pos=p0, gain=0.5}) + end, +}) + +--[[ +stepsound = -1 +function test_sound() + print("test_sound") + stepsound = minetest.sound_play("default_grass_footstep", {gain=1.0}) + minetest.after(2.0, test_sound) + --minetest.after(0.1, test_sound_stop) +end +function test_sound_stop() + print("test_sound_stop") + minetest.sound_stop(stepsound) + minetest.after(2.0, test_sound) +end +test_sound() +--]] + +function on_step(dtime) + -- print("experimental on_step") + --[[ + objs = minetest.get_objects_inside_radius({x=0,y=0,z=0}, 10) + for k, obj in pairs(objs) do + name = obj:get_player_name() + if name then + print(name.." at "..dump(obj:getpos())) + print(name.." dir: "..dump(obj:get_look_dir())) + print(name.." pitch: "..dump(obj:get_look_pitch())) + print(name.." yaw: "..dump(obj:get_look_yaw())) + else + print("Some object at "..dump(obj:getpos())) + end + end + --]] + --[[ + if experimental.t1 == nil then + experimental.t1 = 0 + end + experimental.t1 = experimental.t1 + dtime + if experimental.t1 >= 2 then + experimental.t1 = experimental.t1 - 2 + minetest.log("time of day is "..minetest.get_timeofday()) + if experimental.day then + minetest.log("forcing day->night") + experimental.day = false + minetest.set_timeofday(0.0) + else + minetest.log("forcing night->day") + experimental.day = true + minetest.set_timeofday(0.5) + end + minetest.log("time of day is "..minetest.get_timeofday()) + end + --]] +end +minetest.register_globalstep(on_step) + +-- +-- Random stuff +-- + +-- +-- TNT (not functional) +-- + +minetest.register_craft({ + output = 'experimental:tnt', + recipe = { + {'default:wood'}, + {'default:coal_lump'}, + {'default:wood'} + } +}) + +minetest.register_node("experimental:tnt", { + tile_images = {"default_tnt_top.png", "default_tnt_bottom.png", + "default_tnt_side.png", "default_tnt_side.png", + "default_tnt_side.png", "default_tnt_side.png"}, + inventory_image = minetest.inventorycube("default_tnt_top.png", + "default_tnt_side.png", "default_tnt_side.png"), + drop = '', -- Get nothing + material = { + diggability = "not", + }, +}) + +minetest.register_on_punchnode(function(p, node) + if node.name == "experimental:tnt" then + minetest.remove_node(p) + minetest.add_entity(p, "experimental:tnt") + nodeupdate(p) + end +end) + +local TNT = { + -- Static definition + physical = true, -- Collides with things + -- weight = 5, + collisionbox = {-0.5,-0.5,-0.5, 0.5,0.5,0.5}, + visual = "cube", + textures = {"default_tnt_top.png", "default_tnt_bottom.png", + "default_tnt_side.png", "default_tnt_side.png", + "default_tnt_side.png", "default_tnt_side.png"}, + -- Initial value for our timer + timer = 0, + -- Number of punches required to defuse + health = 1, + blinktimer = 0, + blinkstatus = true, +} + +-- Called when a TNT object is created +function TNT:on_activate(staticdata) + print("TNT:on_activate()") + self.object:setvelocity({x=0, y=4, z=0}) + self.object:setacceleration({x=0, y=-10, z=0}) + self.object:settexturemod("^[brighten") + self.object:set_armor_groups({immortal=1}) +end + +-- Called periodically +function TNT:on_step(dtime) + --print("TNT:on_step()") + self.timer = self.timer + dtime + self.blinktimer = self.blinktimer + dtime + if self.blinktimer > 0.5 then + self.blinktimer = self.blinktimer - 0.5 + if self.blinkstatus then + self.object:settexturemod("") + else + self.object:settexturemod("^[brighten") + end + self.blinkstatus = not self.blinkstatus + end +end + +-- Called when object is punched +function TNT:on_punch(hitter) + print("TNT:on_punch()") + self.health = self.health - 1 + if self.health <= 0 then + self.object:remove() + hitter:get_inventory():add_item("main", "experimental:tnt") + --hitter:set_hp(hitter:get_hp() - 1) + end +end + +-- Called when object is right-clicked +function TNT:on_rightclick(clicker) + --pos = self.object:getpos() + --pos = {x=pos.x, y=pos.y+0.1, z=pos.z} + --self.object:moveto(pos, false) +end + +--print("TNT dump: "..dump(TNT)) +--print("Registering TNT"); +minetest.register_entity("experimental:tnt", TNT) + +-- Add TNT's old name also +minetest.register_alias("TNT", "experimental:tnt") + +-- +-- The dummyball! +-- + +minetest.register_entity("experimental:dummyball", { + initial_properties = { + hp_max = 20, + physical = false, + collisionbox = {-0.4,-0.4,-0.4, 0.4,0.4,0.4}, + visual = "sprite", + visual_size = {x=1, y=1}, + textures = {"experimental_dummyball.png"}, + spritediv = {x=1, y=3}, + initial_sprite_basepos = {x=0, y=0}, + }, + + phase = 0, + phasetimer = 0, + + on_activate = function(self, staticdata) + minetest.log("Dummyball activated!") + end, + + on_step = function(self, dtime) + self.phasetimer = self.phasetimer + dtime + if self.phasetimer > 2.0 then + self.phasetimer = self.phasetimer - 2.0 + self.phase = self.phase + 1 + if self.phase >= 3 then + self.phase = 0 + end + self.object:setsprite({x=0, y=self.phase}) + phasearmor = { + [0]={cracky=3}, + [1]={crumbly=3}, + [2]={fleshy=3} + } + self.object:set_armor_groups(phasearmor[self.phase]) + end + end, + + on_punch = function(self, hitter) + end, +}) + +minetest.register_on_chat_message(function(name, message) + local cmd = "/dummyball" + if message:sub(0, #cmd) == cmd then + count = tonumber(message:sub(#cmd+1)) or 1 + if not minetest.get_player_privs(name)["give"] then + minetest.chat_send_player(name, "you don't have permission to spawn (give)") + return true -- Handled chat message + end + if not minetest.get_player_privs(name)["interact"] then + minetest.chat_send_player(name, "you don't have permission to interact") + return true -- Handled chat message + end + if count >= 2 and not minetest.get_player_privs(name)["server"] then + minetest.chat_send_player(name, "you don't have " .. + "permission to spawn multiple " .. + "dummyballs (server)") + return true -- Handled chat message + end + local player = minetest.get_player_by_name(name) + if player == nil then + print("Unable to spawn entity, player is nil") + return true -- Handled chat message + end + local entityname = "experimental:dummyball" + local p = player:getpos() + p.y = p.y + 1 + for i = 1,count do + minetest.add_entity(p, entityname) + end + minetest.chat_send_player(name, '"'..entityname + ..'" spawned '..tostring(count)..' time(s).'); + return true -- Handled chat message + end +end) + +-- +-- A test entity for testing animated and yaw-modulated sprites +-- + +minetest.register_entity("experimental:testentity", { + -- Static definition + physical = true, -- Collides with things + -- weight = 5, + collisionbox = {-0.7,-1.35,-0.7, 0.7,1.0,0.7}, + --collisionbox = {-0.5,-0.5,-0.5, 0.5,0.5,0.5}, + visual = "sprite", + visual_size = {x=2, y=3}, + textures = {"dungeon_master.png^[makealpha:128,0,0^[makealpha:128,128,0"}, + spritediv = {x=6, y=5}, + initial_sprite_basepos = {x=0, y=0}, + + on_activate = function(self, staticdata) + print("testentity.on_activate") + self.object:setsprite({x=0,y=0}, 1, 0, true) + --self.object:setsprite({x=0,y=0}, 4, 0.3, true) + + -- Set gravity + self.object:setacceleration({x=0, y=-10, z=0}) + -- Jump a bit upwards + self.object:setvelocity({x=0, y=10, z=0}) + end, + + on_punch = function(self, hitter) + self.object:remove() + hitter:add_to_inventory('craft testobject1 1') + end, +}) + +-- +-- More random stuff +-- + +minetest.register_on_respawnplayer(function(player) + print("on_respawnplayer") + -- player:setpos({x=0, y=30, z=0}) + -- return true +end) + +minetest.register_on_generated(function(minp, maxp) + --print("on_generated: minp="..dump(minp).." maxp="..dump(maxp)) + --cp = {x=(minp.x+maxp.x)/2, y=(minp.y+maxp.y)/2, z=(minp.z+maxp.z)/2} + --minetest.add_node(cp, {name="sand"}) +end) + +-- Example setting get +--print("setting max_users = " .. dump(minetest.setting_get("max_users"))) +--print("setting asdf = " .. dump(minetest.setting_get("asdf"))) + +minetest.register_on_chat_message(function(name, message) + --[[print("on_chat_message: name="..dump(name).." message="..dump(message)) + local cmd = "/testcommand" + if message:sub(0, #cmd) == cmd then + print(cmd.." invoked") + return true + end + local cmd = "/help" + if message:sub(0, #cmd) == cmd then + print("script-overridden help command") + minetest.chat_send_all("script-overridden help command") + return true + end]] +end) + +-- Grow papyrus on TNT every 10 seconds +--[[minetest.register_abm({ + nodenames = {"TNT"}, + interval = 10.0, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + print("TNT ABM action") + pos.y = pos.y + 1 + minetest.add_node(pos, {name="papyrus"}) + end, +})]] + +-- Replace texts of alls signs with "foo" every 10 seconds +--[[minetest.register_abm({ + nodenames = {"sign_wall"}, + interval = 10.0, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + print("ABM: Sign text changed") + local meta = minetest.get_meta(pos) + meta:set_text("foo") + end, +})]] + +--[[local ncpos = nil +local ncq = 1 +local ncstuff = { + {2, 1, 0, 3}, {3, 0, 1, 2}, {4, -1, 0, 1}, {5, -1, 0, 1}, {6, 0, -1, 0}, + {7, 0, -1, 0}, {8, 1, 0, 3}, {9, 1, 0, 3}, {10, 1, 0, 3}, {11, 0, 1, 2}, + {12, 0, 1, 2}, {13, 0, 1, 2}, {14, -1, 0, 1}, {15, -1, 0, 1}, {16, -1, 0, 1}, + {17, -1, 0, 1}, {18, 0, -1, 0}, {19, 0, -1, 0}, {20, 0, -1, 0}, {21, 0, -1, 0}, + {22, 1, 0, 3}, {23, 1, 0, 3}, {24, 1, 0, 3}, {25, 1, 0, 3}, {10, 0, 1, 2} +} +local ncold = {} +local nctime = nil + +minetest.register_abm({ + nodenames = {"dirt_with_grass"}, + interval = 100000.0, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + if ncpos ~= nil then + return + end + + if pos.x % 16 ~= 8 or pos.z % 16 ~= 8 then + return + end + + pos.y = pos.y + 1 + n = minetest.get_node(pos) + print(dump(n)) + if n.name ~= "air" then + return + end + + pos.y = pos.y + 2 + ncpos = pos + nctime = os.clock() + minetest.add_node(ncpos, {name="nyancat"}) + end +}) + +minetest.register_abm({ + nodenames = {"nyancat"}, + interval = 1.0, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + if ncpos == nil then + return + end + if pos.x == ncpos.x and pos.y == ncpos.y and pos.z == ncpos.z then + clock = os.clock() + if clock - nctime < 0.1 then + return + end + nctime = clock + + s0 = ncstuff[ncq] + ncq = s0[1] + s1 = ncstuff[ncq] + p0 = pos + p1 = {x = p0.x + s0[2], y = p0.y, z = p0.z + s0[3]} + p2 = {x = p1.x + s1[2], y = p1.y, z = p1.z + s1[3]} + table.insert(ncold, 1, p0) + while #ncold >= 10 do + minetest.add_node(ncold[#ncold], {name="air"}) + table.remove(ncold, #ncold) + end + minetest.add_node(p0, {name="nyancat_rainbow"}) + minetest.add_node(p1, {name="nyancat", param1=s0[4]}) + minetest.add_node(p2, {name="air"}) + ncpos = p1 + end + end, +})--]] + +minetest.register_node("experimental:tester_node_1", { + description = "Tester Node 1 (construct/destruct/timer)", + tile_images = {"wieldhand.png"}, + groups = {oddly_breakable_by_hand=2}, + sounds = default.node_sound_wood_defaults(), + -- This was known to cause a bug in minetest.item_place_node() when used + -- via minetest.place_node(), causing a placer with no position + paramtype2 = "facedir", + + on_construct = function(pos) + experimental.print_to_everything("experimental:tester_node_1:on_construct("..minetest.pos_to_string(pos)..")") + local meta = minetest.get_meta(pos) + meta:set_string("mine", "test") + local timer = minetest.get_node_timer(pos) + timer:start(4, 3) + end, + + after_place_node = function(pos, placer) + experimental.print_to_everything("experimental:tester_node_1:after_place_node("..minetest.pos_to_string(pos)..")") + local meta = minetest.get_meta(pos) + if meta:get_string("mine") == "test" then + experimental.print_to_everything("correct metadata found") + else + experimental.print_to_everything("incorrect metadata found") + end + end, + + on_destruct = function(pos) + experimental.print_to_everything("experimental:tester_node_1:on_destruct("..minetest.pos_to_string(pos)..")") + end, + + after_destruct = function(pos) + experimental.print_to_everything("experimental:tester_node_1:after_destruct("..minetest.pos_to_string(pos)..")") + end, + + after_dig_node = function(pos, oldnode, oldmetadata, digger) + experimental.print_to_everything("experimental:tester_node_1:after_dig_node("..minetest.pos_to_string(pos)..")") + end, + + on_timer = function(pos, elapsed) + experimental.print_to_everything("on_timer(): elapsed="..dump(elapsed)) + return true + end, +}) + +minetest.register_craftitem("experimental:tester_tool_1", { + description = "Tester Tool 1", + inventory_image = "experimental_tester_tool_1.png", + on_use = function(itemstack, user, pointed_thing) + --print(dump(pointed_thing)) + if pointed_thing.type == "node" then + if minetest.get_node(pointed_thing.under).name == "experimental:tester_node_1" then + local p = pointed_thing.under + minetest.log("action", "Tester tool used at "..minetest.pos_to_string(p)) + minetest.dig_node(p) + else + local p = pointed_thing.above + minetest.log("action", "Tester tool used at "..minetest.pos_to_string(p)) + minetest.place_node(p, {name="experimental:tester_node_1"}) + end + end + end, +}) + +minetest.register_craft({ + output = 'experimental:tester_tool_1', + recipe = { + {'group:crumbly'}, + {'group:crumbly'}, + } +}) + +--[[minetest.register_on_joinplayer(function(player) + minetest.after(3, function() + player:set_inventory_formspec("size[8,7.5]".. + "image[1,0.6;1,2;player.png]".. + "list[current_player;main;0,3.5;8,4;]".. + "list[current_player;craft;3,0;3,3;]".. + "list[current_player;craftpreview;7,1;1,1;]") + end) +end)]] + +-- Create a detached inventory +local inv = minetest.create_detached_inventory("test_inventory", { + allow_move = function(inv, from_list, from_index, to_list, to_index, count, player) + experimental.print_to_everything("allow move asked") + return count -- Allow all + end, + allow_put = function(inv, listname, index, stack, player) + experimental.print_to_everything("allow put asked") + return 1 -- Allow only 1 + end, + allow_take = function(inv, listname, index, stack, player) + experimental.print_to_everything("allow take asked") + return 4 -- Allow 4 at max + end, + on_move = function(inv, from_list, from_index, to_list, to_index, count, player) + experimental.print_to_everything(player:get_player_name().." moved items") + end, + on_put = function(inv, listname, index, stack, player) + experimental.print_to_everything(player:get_player_name().." put items") + end, + on_take = function(inv, listname, index, stack, player) + experimental.print_to_everything(player:get_player_name().." took items") + end, +}) +inv:set_size("main", 4*6) +inv:add_item("main", "experimental:tester_tool_1") +inv:add_item("main", "experimental:tnt 5") + +minetest.register_chatcommand("test1", { + params = "", + description = "Test 1: Modify player's inventory view", + func = function(name, param) + local player = minetest.get_player_by_name(name) + if not player then + return + end + player:set_inventory_formspec( + "size[13,7.5]".. + "image[6,0.6;1,2;player.png]".. + "list[current_player;main;5,3.5;8,4;]".. + "list[current_player;craft;8,0;3,3;]".. + "list[current_player;craftpreview;12,1;1,1;]".. + "list[detached:test_inventory;main;0,0;4,6;0]".. + "button[0.5,7;2,1;button1;Button 1]".. + "button_exit[2.5,7;2,1;button2;Exit Button]" + ) + minetest.chat_send_player(name, "Done."); + end, +}) + +minetest.register_on_player_receive_fields(function(player, formname, fields) + experimental.print_to_everything("Inventory fields 1: player="..player:get_player_name()..", fields="..dump(fields)) +end) +minetest.register_on_player_receive_fields(function(player, formname, fields) + experimental.print_to_everything("Inventory fields 2: player="..player:get_player_name()..", fields="..dump(fields)) + return true -- Disable the first callback +end) +minetest.register_on_player_receive_fields(function(player, formname, fields) + experimental.print_to_everything("Inventory fields 3: player="..player:get_player_name()..", fields="..dump(fields)) +end) + +minetest.log("experimental modname="..dump(minetest.get_current_modname())) +minetest.log("experimental modpath="..dump(minetest.get_modpath("experimental"))) +minetest.log("experimental worldpath="..dump(minetest.get_worldpath())) + +-- END diff --git a/games/minimal/mods/experimental/textures/experimental_dummyball.png b/games/minimal/mods/experimental/textures/experimental_dummyball.png new file mode 100644 index 0000000..256414f Binary files /dev/null and b/games/minimal/mods/experimental/textures/experimental_dummyball.png differ diff --git a/games/minimal/mods/experimental/textures/experimental_tester_tool_1.png b/games/minimal/mods/experimental/textures/experimental_tester_tool_1.png new file mode 100644 index 0000000..587923c Binary files /dev/null and b/games/minimal/mods/experimental/textures/experimental_tester_tool_1.png differ diff --git a/games/minimal/mods/give_initial_stuff/depends.txt b/games/minimal/mods/give_initial_stuff/depends.txt new file mode 100644 index 0000000..3a7daa1 --- /dev/null +++ b/games/minimal/mods/give_initial_stuff/depends.txt @@ -0,0 +1,2 @@ +default + diff --git a/games/minimal/mods/give_initial_stuff/init.lua b/games/minimal/mods/give_initial_stuff/init.lua new file mode 100644 index 0000000..29b835c --- /dev/null +++ b/games/minimal/mods/give_initial_stuff/init.lua @@ -0,0 +1,16 @@ +minetest.register_on_newplayer(function(player) + print("[minimal] giving initial stuff to player") + player:get_inventory():add_item('main', 'default:pick_stone') + player:get_inventory():add_item('main', 'default:torch 99') + player:get_inventory():add_item('main', 'default:cobble 99') + player:get_inventory():add_item('main', 'default:wood 99') + player:get_inventory():add_item('main', 'default:axe_steel') + player:get_inventory():add_item('main', 'default:shovel_steel') + player:get_inventory():add_item('main', 'default:pick_wood') + player:get_inventory():add_item('main', 'default:pick_steel') + player:get_inventory():add_item('main', 'default:pick_mese') + player:get_inventory():add_item('main', 'default:mese 99') + player:get_inventory():add_item('main', 'default:water_source 99') + player:get_inventory():add_item('main', 'experimental:tester_tool_1') +end) + diff --git a/games/minimal/mods/legacy/depends.txt b/games/minimal/mods/legacy/depends.txt new file mode 100644 index 0000000..3a7daa1 --- /dev/null +++ b/games/minimal/mods/legacy/depends.txt @@ -0,0 +1,2 @@ +default + diff --git a/games/minimal/mods/legacy/init.lua b/games/minimal/mods/legacy/init.lua new file mode 100644 index 0000000..98ad69b --- /dev/null +++ b/games/minimal/mods/legacy/init.lua @@ -0,0 +1,128 @@ +-- legacy (Minetest 0.4 mod) +-- Provides as much backwards-compatibility as feasible + +-- +-- Aliases to support loading 0.3 and old 0.4 worlds and inventories +-- + +minetest.register_alias("stone", "default:stone") +minetest.register_alias("stone_with_coal", "default:stone_with_coal") +minetest.register_alias("stone_with_iron", "default:stone_with_iron") +minetest.register_alias("dirt_with_grass", "default:dirt_with_grass") +minetest.register_alias("dirt_with_grass_footsteps", "default:dirt_with_grass_footsteps") +minetest.register_alias("dirt", "default:dirt") +minetest.register_alias("sand", "default:sand") +minetest.register_alias("gravel", "default:gravel") +minetest.register_alias("sandstone", "default:sandstone") +minetest.register_alias("clay", "default:clay") +minetest.register_alias("brick", "default:brick") +minetest.register_alias("tree", "default:tree") +minetest.register_alias("jungletree", "default:jungletree") +minetest.register_alias("junglegrass", "default:junglegrass") +minetest.register_alias("leaves", "default:leaves") +minetest.register_alias("cactus", "default:cactus") +minetest.register_alias("papyrus", "default:papyrus") +minetest.register_alias("bookshelf", "default:bookshelf") +minetest.register_alias("glass", "default:glass") +minetest.register_alias("wooden_fence", "default:fence_wood") +minetest.register_alias("rail", "default:rail") +minetest.register_alias("ladder", "default:ladder") +minetest.register_alias("wood", "default:wood") +minetest.register_alias("mese", "default:mese") +minetest.register_alias("cloud", "default:cloud") +minetest.register_alias("water_flowing", "default:water_flowing") +minetest.register_alias("water_source", "default:water_source") +minetest.register_alias("lava_flowing", "default:lava_flowing") +minetest.register_alias("lava_source", "default:lava_source") +minetest.register_alias("torch", "default:torch") +minetest.register_alias("sign_wall", "default:sign_wall") +minetest.register_alias("furnace", "default:furnace") +minetest.register_alias("chest", "default:chest") +minetest.register_alias("locked_chest", "default:chest_locked") +minetest.register_alias("cobble", "default:cobble") +minetest.register_alias("mossycobble", "default:mossycobble") +minetest.register_alias("steelblock", "default:steelblock") +minetest.register_alias("nyancat", "default:nyancat") +minetest.register_alias("nyancat_rainbow", "default:nyancat_rainbow") +minetest.register_alias("sapling", "default:sapling") +minetest.register_alias("apple", "default:apple") + +minetest.register_alias("WPick", "default:pick_wood") +minetest.register_alias("STPick", "default:pick_stone") +minetest.register_alias("SteelPick", "default:pick_steel") +minetest.register_alias("MesePick", "default:pick_mese") +minetest.register_alias("WShovel", "default:shovel_wood") +minetest.register_alias("STShovel", "default:shovel_stone") +minetest.register_alias("SteelShovel", "default:shovel_steel") +minetest.register_alias("WAxe", "default:axe_wood") +minetest.register_alias("STAxe", "default:axe_stone") +minetest.register_alias("SteelAxe", "default:axe_steel") +minetest.register_alias("WSword", "default:sword_wood") +minetest.register_alias("STSword", "default:sword_stone") +minetest.register_alias("SteelSword", "default:sword_steel") + +minetest.register_alias("Stick", "default:stick") +minetest.register_alias("paper", "default:paper") +minetest.register_alias("book", "default:book") +minetest.register_alias("lump_of_coal", "default:coal_lump") +minetest.register_alias("lump_of_iron", "default:iron_lump") +minetest.register_alias("lump_of_clay", "default:clay_lump") +minetest.register_alias("steel_ingot", "default:steel_ingot") +minetest.register_alias("clay_brick", "default:clay_brick") +minetest.register_alias("scorched_stuff", "default:scorched_stuff") + +-- +-- Old items +-- + +minetest.register_craftitem(":rat", { + description = "Rat", + inventory_image = "rat.png", + on_drop = function(item, dropper, pos) + item:take_item() + return item + end, + on_place = function(item, dropped, pointed) + pos = minetest.get_pointed_thing_position(pointed, true) + if pos ~= nil then + item:take_item() + return item + end + end +}) + +minetest.register_craftitem(":cooked_rat", { + description = "Cooked rat", + inventory_image = "cooked_rat.png", + on_use = minetest.item_eat(6), +}) + +minetest.register_craftitem(":firefly", { + description = "Firefly", + inventory_image = "firefly.png", + on_drop = function(item, dropper, pos) + item:take_item() + return item + end, + on_place = function(item, dropped, pointed) + pos = minetest.get_pointed_thing_position(pointed, true) + if pos ~= nil then + item:take_item() + return item + end + end +}) + +minetest.register_craft({ + type = "cooking", + output = "cooked_rat", + recipe = "rat", +}) + +minetest.register_craft({ + type = "cooking", + output = "scorched_stuff", + recipe = "cooked_rat", +}) + +-- END diff --git a/games/minimal/mods/legacy/textures/apple_iron.png b/games/minimal/mods/legacy/textures/apple_iron.png new file mode 100644 index 0000000..db59458 Binary files /dev/null and b/games/minimal/mods/legacy/textures/apple_iron.png differ diff --git a/games/minimal/mods/legacy/textures/cooked_rat.png b/games/minimal/mods/legacy/textures/cooked_rat.png new file mode 100644 index 0000000..776dc4e Binary files /dev/null and b/games/minimal/mods/legacy/textures/cooked_rat.png differ diff --git a/games/minimal/mods/legacy/textures/dungeon_master.png b/games/minimal/mods/legacy/textures/dungeon_master.png new file mode 100644 index 0000000..d52d8cc Binary files /dev/null and b/games/minimal/mods/legacy/textures/dungeon_master.png differ diff --git a/games/minimal/mods/legacy/textures/fireball.png b/games/minimal/mods/legacy/textures/fireball.png new file mode 100644 index 0000000..124469c Binary files /dev/null and b/games/minimal/mods/legacy/textures/fireball.png differ diff --git a/games/minimal/mods/legacy/textures/firefly.png b/games/minimal/mods/legacy/textures/firefly.png new file mode 100644 index 0000000..ea95a6a Binary files /dev/null and b/games/minimal/mods/legacy/textures/firefly.png differ diff --git a/games/minimal/mods/legacy/textures/oerkki1.png b/games/minimal/mods/legacy/textures/oerkki1.png new file mode 100644 index 0000000..061709c Binary files /dev/null and b/games/minimal/mods/legacy/textures/oerkki1.png differ diff --git a/games/minimal/mods/legacy/textures/oerkki1_damaged.png b/games/minimal/mods/legacy/textures/oerkki1_damaged.png new file mode 100644 index 0000000..b2a3033 Binary files /dev/null and b/games/minimal/mods/legacy/textures/oerkki1_damaged.png differ diff --git a/games/minimal/mods/legacy/textures/rat.png b/games/minimal/mods/legacy/textures/rat.png new file mode 100644 index 0000000..04cf9b8 Binary files /dev/null and b/games/minimal/mods/legacy/textures/rat.png differ diff --git a/games/minimal/mods/stairs/depends.txt b/games/minimal/mods/stairs/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/games/minimal/mods/stairs/depends.txt @@ -0,0 +1 @@ +default diff --git a/games/minimal/mods/stairs/init.lua b/games/minimal/mods/stairs/init.lua new file mode 100644 index 0000000..4929d13 --- /dev/null +++ b/games/minimal/mods/stairs/init.lua @@ -0,0 +1,93 @@ +stairs = {} + +-- Node will be called stairs:stair_ +function stairs.register_stair(subname, recipeitem, groups, images, description) + minetest.register_node("stairs:stair_" .. subname, { + description = description, + drawtype = "nodebox", + tile_images = images, + paramtype = "light", + paramtype2 = "facedir", + is_ground_content = true, + groups = groups, + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + {-0.5, 0, 0, 0.5, 0.5, 0.5}, + }, + }, + }) + + minetest.register_craft({ + output = 'stairs:stair_' .. subname .. ' 4', + recipe = { + {recipeitem, "", ""}, + {recipeitem, recipeitem, ""}, + {recipeitem, recipeitem, recipeitem}, + }, + }) +end + +-- Node will be called stairs:slab_ +function stairs.register_slab(subname, recipeitem, groups, images, description) + minetest.register_node("stairs:slab_" .. subname, { + description = description, + drawtype = "nodebox", + tile_images = images, + paramtype = "light", + is_ground_content = true, + groups = groups, + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + }, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + }, + }) + + minetest.register_craft({ + output = 'stairs:slab_' .. subname .. ' 3', + recipe = { + {recipeitem, recipeitem, recipeitem}, + }, + }) +end + +-- Nodes will be called stairs:{stair,slab}_ +function stairs.register_stair_and_slab(subname, recipeitem, groups, images, desc_stair, desc_slab) + stairs.register_stair(subname, recipeitem, groups, images, desc_stair) + stairs.register_slab(subname, recipeitem, groups, images, desc_slab) +end + +stairs.register_stair_and_slab("wood", "default:wood", + {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + {"default_wood.png"}, + "Wooden stair", + "Wooden slab") + +stairs.register_stair_and_slab("stone", "default:stone", + {cracky=3}, + {"default_stone.png"}, + "Stone stair", + "Stone slab") + +stairs.register_stair_and_slab("cobble", "default:cobble", + {cracky=3}, + {"default_cobble.png"}, + "Cobble stair", + "Cobble slab") + +stairs.register_stair_and_slab("brick", "default:brick", + {cracky=3}, + {"default_brick.png"}, + "Brick stair", + "Brick slab") + +stairs.register_stair_and_slab("sandstone", "default:sandstone", + {crumbly=2,cracky=2}, + {"default_sandstone.png"}, + "Sandstone stair", + "Sandstone slab") diff --git a/games/minimal/mods/test/init.lua b/games/minimal/mods/test/init.lua new file mode 100644 index 0000000..051b479 --- /dev/null +++ b/games/minimal/mods/test/init.lua @@ -0,0 +1,11 @@ +-- +-- Minimal Development Test +-- Mod: test +-- + +-- Try out PseudoRandom +pseudo = PseudoRandom(13) +assert(pseudo:next() == 22290) +assert(pseudo:next() == 13854) + + diff --git a/hooks/applypatch-msg.sample b/hooks/applypatch-msg.sample new file mode 100755 index 0000000..8b2a2fe --- /dev/null +++ b/hooks/applypatch-msg.sample @@ -0,0 +1,15 @@ +#!/bin/sh +# +# An example hook script to check the commit log message taken by +# applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. The hook is +# allowed to edit the commit message file. +# +# To enable this hook, rename this file to "applypatch-msg". + +. git-sh-setup +test -x "$GIT_DIR/hooks/commit-msg" && + exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} +: diff --git a/hooks/commit-msg.sample b/hooks/commit-msg.sample new file mode 100755 index 0000000..b58d118 --- /dev/null +++ b/hooks/commit-msg.sample @@ -0,0 +1,24 @@ +#!/bin/sh +# +# An example hook script to check the commit log message. +# Called by "git commit" with one argument, the name of the file +# that has the commit message. The hook should exit with non-zero +# status after issuing an appropriate message if it wants to stop the +# commit. The hook is allowed to edit the commit message file. +# +# To enable this hook, rename this file to "commit-msg". + +# Uncomment the below to add a Signed-off-by line to the message. +# Doing this in a hook is a bad idea in general, but the prepare-commit-msg +# hook is more suited to it. +# +# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" + +# This example catches duplicate Signed-off-by lines. + +test "" = "$(grep '^Signed-off-by: ' "$1" | + sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { + echo >&2 Duplicate Signed-off-by lines. + exit 1 +} diff --git a/hooks/post-update.sample b/hooks/post-update.sample new file mode 100755 index 0000000..ec17ec1 --- /dev/null +++ b/hooks/post-update.sample @@ -0,0 +1,8 @@ +#!/bin/sh +# +# An example hook script to prepare a packed repository for use over +# dumb transports. +# +# To enable this hook, rename this file to "post-update". + +exec git update-server-info diff --git a/hooks/pre-applypatch.sample b/hooks/pre-applypatch.sample new file mode 100755 index 0000000..b1f187c --- /dev/null +++ b/hooks/pre-applypatch.sample @@ -0,0 +1,14 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed +# by applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-applypatch". + +. git-sh-setup +test -x "$GIT_DIR/hooks/pre-commit" && + exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} +: diff --git a/hooks/pre-commit.sample b/hooks/pre-commit.sample new file mode 100755 index 0000000..18c4829 --- /dev/null +++ b/hooks/pre-commit.sample @@ -0,0 +1,50 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed. +# Called by "git commit" with no arguments. The hook should +# exit with non-zero status after issuing an appropriate message if +# it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-commit". + +if git rev-parse --verify HEAD >/dev/null 2>&1 +then + against=HEAD +else + # Initial commit: diff against an empty tree object + against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 +fi + +# If you want to allow non-ascii filenames set this variable to true. +allownonascii=$(git config hooks.allownonascii) + +# Redirect output to stderr. +exec 1>&2 + +# Cross platform projects tend to avoid non-ascii filenames; prevent +# them from being added to the repository. We exploit the fact that the +# printable range starts at the space character and ends with tilde. +if [ "$allownonascii" != "true" ] && + # Note that the use of brackets around a tr range is ok here, (it's + # even required, for portability to Solaris 10's /usr/bin/tr), since + # the square bracket bytes happen to fall in the designated range. + test $(git diff --cached --name-only --diff-filter=A -z $against | + LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 +then + echo "Error: Attempt to add a non-ascii file name." + echo + echo "This can cause problems if you want to work" + echo "with people on other platforms." + echo + echo "To be portable it is advisable to rename the file ..." + echo + echo "If you know what you are doing you can disable this" + echo "check using:" + echo + echo " git config hooks.allownonascii true" + echo + exit 1 +fi + +# If there are whitespace errors, print the offending file names and fail. +exec git diff-index --check --cached $against -- diff --git a/hooks/pre-rebase.sample b/hooks/pre-rebase.sample new file mode 100755 index 0000000..33730ca --- /dev/null +++ b/hooks/pre-rebase.sample @@ -0,0 +1,169 @@ +#!/bin/sh +# +# Copyright (c) 2006, 2008 Junio C Hamano +# +# The "pre-rebase" hook is run just before "git rebase" starts doing +# its job, and can prevent the command from running by exiting with +# non-zero status. +# +# The hook is called with the following parameters: +# +# $1 -- the upstream the series was forked from. +# $2 -- the branch being rebased (or empty when rebasing the current branch). +# +# This sample shows how to prevent topic branches that are already +# merged to 'next' branch from getting rebased, because allowing it +# would result in rebasing already published history. + +publish=next +basebranch="$1" +if test "$#" = 2 +then + topic="refs/heads/$2" +else + topic=`git symbolic-ref HEAD` || + exit 0 ;# we do not interrupt rebasing detached HEAD +fi + +case "$topic" in +refs/heads/??/*) + ;; +*) + exit 0 ;# we do not interrupt others. + ;; +esac + +# Now we are dealing with a topic branch being rebased +# on top of master. Is it OK to rebase it? + +# Does the topic really exist? +git show-ref -q "$topic" || { + echo >&2 "No such branch $topic" + exit 1 +} + +# Is topic fully merged to master? +not_in_master=`git rev-list --pretty=oneline ^master "$topic"` +if test -z "$not_in_master" +then + echo >&2 "$topic is fully merged to master; better remove it." + exit 1 ;# we could allow it, but there is no point. +fi + +# Is topic ever merged to next? If so you should not be rebasing it. +only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` +only_next_2=`git rev-list ^master ${publish} | sort` +if test "$only_next_1" = "$only_next_2" +then + not_in_topic=`git rev-list "^$topic" master` + if test -z "$not_in_topic" + then + echo >&2 "$topic is already up-to-date with master" + exit 1 ;# we could allow it, but there is no point. + else + exit 0 + fi +else + not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` + /usr/bin/perl -e ' + my $topic = $ARGV[0]; + my $msg = "* $topic has commits already merged to public branch:\n"; + my (%not_in_next) = map { + /^([0-9a-f]+) /; + ($1 => 1); + } split(/\n/, $ARGV[1]); + for my $elem (map { + /^([0-9a-f]+) (.*)$/; + [$1 => $2]; + } split(/\n/, $ARGV[2])) { + if (!exists $not_in_next{$elem->[0]}) { + if ($msg) { + print STDERR $msg; + undef $msg; + } + print STDERR " $elem->[1]\n"; + } + } + ' "$topic" "$not_in_next" "$not_in_master" + exit 1 +fi + +<<\DOC_END + +This sample hook safeguards topic branches that have been +published from being rewound. + +The workflow assumed here is: + + * Once a topic branch forks from "master", "master" is never + merged into it again (either directly or indirectly). + + * Once a topic branch is fully cooked and merged into "master", + it is deleted. If you need to build on top of it to correct + earlier mistakes, a new topic branch is created by forking at + the tip of the "master". This is not strictly necessary, but + it makes it easier to keep your history simple. + + * Whenever you need to test or publish your changes to topic + branches, merge them into "next" branch. + +The script, being an example, hardcodes the publish branch name +to be "next", but it is trivial to make it configurable via +$GIT_DIR/config mechanism. + +With this workflow, you would want to know: + +(1) ... if a topic branch has ever been merged to "next". Young + topic branches can have stupid mistakes you would rather + clean up before publishing, and things that have not been + merged into other branches can be easily rebased without + affecting other people. But once it is published, you would + not want to rewind it. + +(2) ... if a topic branch has been fully merged to "master". + Then you can delete it. More importantly, you should not + build on top of it -- other people may already want to + change things related to the topic as patches against your + "master", so if you need further changes, it is better to + fork the topic (perhaps with the same name) afresh from the + tip of "master". + +Let's look at this example: + + o---o---o---o---o---o---o---o---o---o "next" + / / / / + / a---a---b A / / + / / / / + / / c---c---c---c B / + / / / \ / + / / / b---b C \ / + / / / / \ / + ---o---o---o---o---o---o---o---o---o---o---o "master" + + +A, B and C are topic branches. + + * A has one fix since it was merged up to "next". + + * B has finished. It has been fully merged up to "master" and "next", + and is ready to be deleted. + + * C has not merged to "next" at all. + +We would want to allow C to be rebased, refuse A, and encourage +B to be deleted. + +To compute (1): + + git rev-list ^master ^topic next + git rev-list ^master next + + if these match, topic has not merged in next at all. + +To compute (2): + + git rev-list master..topic + + if this is empty, it is fully merged to "master". + +DOC_END diff --git a/hooks/prepare-commit-msg.sample b/hooks/prepare-commit-msg.sample new file mode 100755 index 0000000..f093a02 --- /dev/null +++ b/hooks/prepare-commit-msg.sample @@ -0,0 +1,36 @@ +#!/bin/sh +# +# An example hook script to prepare the commit log message. +# Called by "git commit" with the name of the file that has the +# commit message, followed by the description of the commit +# message's source. The hook's purpose is to edit the commit +# message file. If the hook fails with a non-zero status, +# the commit is aborted. +# +# To enable this hook, rename this file to "prepare-commit-msg". + +# This hook includes three examples. The first comments out the +# "Conflicts:" part of a merge commit. +# +# The second includes the output of "git diff --name-status -r" +# into the message, just before the "git status" output. It is +# commented because it doesn't cope with --amend or with squashed +# commits. +# +# The third example adds a Signed-off-by line to the message, that can +# still be edited. This is rarely a good idea. + +case "$2,$3" in + merge,) + /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; + +# ,|template,) +# /usr/bin/perl -i.bak -pe ' +# print "\n" . `git diff --cached --name-status -r` +# if /^#/ && $first++ == 0' "$1" ;; + + *) ;; +esac + +# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/hooks/update.sample b/hooks/update.sample new file mode 100755 index 0000000..71ab04e --- /dev/null +++ b/hooks/update.sample @@ -0,0 +1,128 @@ +#!/bin/sh +# +# An example hook script to blocks unannotated tags from entering. +# Called by "git receive-pack" with arguments: refname sha1-old sha1-new +# +# To enable this hook, rename this file to "update". +# +# Config +# ------ +# hooks.allowunannotated +# This boolean sets whether unannotated tags will be allowed into the +# repository. By default they won't be. +# hooks.allowdeletetag +# This boolean sets whether deleting tags will be allowed in the +# repository. By default they won't be. +# hooks.allowmodifytag +# This boolean sets whether a tag may be modified after creation. By default +# it won't be. +# hooks.allowdeletebranch +# This boolean sets whether deleting branches will be allowed in the +# repository. By default they won't be. +# hooks.denycreatebranch +# This boolean sets whether remotely creating branches will be denied +# in the repository. By default this is allowed. +# + +# --- Command line +refname="$1" +oldrev="$2" +newrev="$3" + +# --- Safety check +if [ -z "$GIT_DIR" ]; then + echo "Don't run this script from the command line." >&2 + echo " (if you want, you could supply GIT_DIR then run" >&2 + echo " $0 )" >&2 + exit 1 +fi + +if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then + echo "Usage: $0 " >&2 + exit 1 +fi + +# --- Config +allowunannotated=$(git config --bool hooks.allowunannotated) +allowdeletebranch=$(git config --bool hooks.allowdeletebranch) +denycreatebranch=$(git config --bool hooks.denycreatebranch) +allowdeletetag=$(git config --bool hooks.allowdeletetag) +allowmodifytag=$(git config --bool hooks.allowmodifytag) + +# check for no description +projectdesc=$(sed -e '1q' "$GIT_DIR/description") +case "$projectdesc" in +"Unnamed repository"* | "") + echo "*** Project description file hasn't been set" >&2 + exit 1 + ;; +esac + +# --- Check types +# if $newrev is 0000...0000, it's a commit to delete a ref. +zero="0000000000000000000000000000000000000000" +if [ "$newrev" = "$zero" ]; then + newrev_type=delete +else + newrev_type=$(git cat-file -t $newrev) +fi + +case "$refname","$newrev_type" in + refs/tags/*,commit) + # un-annotated tag + short_refname=${refname##refs/tags/} + if [ "$allowunannotated" != "true" ]; then + echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 + echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 + exit 1 + fi + ;; + refs/tags/*,delete) + # delete tag + if [ "$allowdeletetag" != "true" ]; then + echo "*** Deleting a tag is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/tags/*,tag) + # annotated tag + if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 + then + echo "*** Tag '$refname' already exists." >&2 + echo "*** Modifying a tag is not allowed in this repository." >&2 + exit 1 + fi + ;; + refs/heads/*,commit) + # branch + if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then + echo "*** Creating a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/heads/*,delete) + # delete branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/remotes/*,commit) + # tracking branch + ;; + refs/remotes/*,delete) + # delete tracking branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a tracking branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + *) + # Anything else (is there anything else?) + echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 + exit 1 + ;; +esac + +# --- Finished +exit 0 diff --git a/info/exclude b/info/exclude new file mode 100644 index 0000000..a5196d1 --- /dev/null +++ b/info/exclude @@ -0,0 +1,6 @@ +# git ls-files --others --exclude-from=.git/info/exclude +# Lines that start with '#' are comments. +# For a project mostly in C, the following would be a good set of +# exclude patterns (uncomment them if you want to use them): +# *.[oa] +# *~ diff --git a/minetest.conf b/minetest.conf new file mode 100644 index 0000000..2951332 --- /dev/null +++ b/minetest.conf @@ -0,0 +1,35 @@ +remote_port = 30000 +server_dedicated = true +name = rnd + +# server stuff + +default_privs = interact, shout + +# Message of the Day +motd = You wake up in the middle of desert. You cant remember anything. Strange barren world with dangerous monsters is outside. Can you make it better? +server_name = rnd's LAB +server_address = swiado.me +server_description = Survival test grounds for mods +static_spawnpoint = 0,15,64 +wieldview_node_tiles = false +wieldview_update_time = 2 +player_transfer_distance = 4 +enable_pvp = true +enable_tnt = true +enable_rollback_recording = false + +#lags settings +server_map_save_interval = 60.0 +sqlite_synchronous = 0 +max_simultaneous_block_sends_server_total = 200 +max_simultaneous_block_sends_per_client = 6 + +#calinous settings +active_block_range = 1 +max_block_generate_distance = 6 +max_block_send_distance = 6 +fixed_map_seed = 2015 +mg_name = v7 +port = 30000 +server_announce = 1 diff --git a/minetest.conf.example b/minetest.conf.example new file mode 100644 index 0000000..0b137c5 --- /dev/null +++ b/minetest.conf.example @@ -0,0 +1,551 @@ +# This file is read by default from: +# ../minetest.conf +# ../../minetest.conf +# Any other path can be chosen by passing the path as a parameter +# to the program, eg. "minetest.exe --config ../minetest.conf.example". + +# By default, all the settings are commented and not functional. +# Uncomment settings by removing the preceding #. + +# Further documentation: +# http://wiki.minetest.net/ + +# NOTE: This file might not be up-to-date, refer to the +# defaultsettings.cpp file for an up-to-date list: +# https://github.com/minetest/minetest/blob/master/src/defaultsettings.cpp + +# A vim command to convert most of defaultsettings.cpp to conf file format: +# :'<,'>s/\tsettings->setDefault("\([^"]*\)", "\([^"]*\)");.*/#\1 = \2/g +# Note: Some of the settings are implemented in Lua. + +# +# Client and server +# + +# Name of player, on a server this is the main admin +#name = + +# +# Client stuff +# + +# Port to connect to (UDP) +#remote_port = +# Key mappings. +# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 +#keymap_forward = KEY_KEY_W +#keymap_backward = KEY_KEY_S +#keymap_left = KEY_KEY_A +#keymap_right = KEY_KEY_D +#keymap_jump = KEY_SPACE +#keymap_sneak = KEY_LSHIFT +#keymap_inventory = KEY_KEY_I +# Go down ladder / go down in fly mode / go fast in fast mode +#keymap_special1 = KEY_KEY_E +#keymap_chat = KEY_KEY_T +#keymap_cmd = / +#keyman_console = KEY_F10 +#keymap_rangeselect = KEY_KEY_R +#keymap_freemove = KEY_KEY_K +#keymap_fastmove = KEY_KEY_J +#keymap_screenshot = KEY_F12 +# If true, keymap_special1 instead of keymap_sneak is used for climbing down and descending +#aux1_descends = false +# Double-tapping the jump key toggles fly mode +#doubletap_jump = false +# If false aux1 is used to fly fast +#always_fly_fast = true +# Some (temporary) keys for debugging +#keymap_print_debug_stacks = KEY_KEY_P +#keymap_quicktune_prev = KEY_HOME +#keymap_quicktune_next = KEY_END +#keymap_quicktune_dec = KEY_NEXT +#keymap_quicktune_inc = KEY_PRIOR + +# If set to true, you can place blocks at the position (feet + eye level) where you stand. +# This is helpful when working with nodeboxes. +#enable_build_where_you_stand = false +# Minimum FPS. +# The amount of rendered stuff is dynamically set according to this. +#wanted_fps = 30 +# If FPS would go higher than this, limit it by sleeping +# to not waste CPU power for no benefit. +#fps_max = 60 +# Maximum FPS when game is paused +#pause_fps_max = 20 +# The allowed adjustment range for the automatic rendering range adjustment +#viewing_range_nodes_max = 160 +#viewing_range_nodes_min = 35 +# Initial window size +#screenW = 800 +#screenH = 600 +#fullscreen = false +#fullscreen_bpp = 24 +# Experimental option, might cause visible spaces between blocks +# when set to higher number than 0. +#fsaa = 0 +#vsync = false +# Field of view in degrees +#fov = 72 +# Address to connect to (#blank = start local server) +#address = +# Enable random user input, for testing +#random_input = false +# Timeout for client to remove unused map data from memory +#client_unload_unused_data_timeout = 600 +# Whether to fog out the end of the visible area +#enable_fog = true +# Whether to show the client debug info (has the same effect as hitting F5) +#show_debug = false +# Enable a bit lower water surface; disable for speed (not quite optimized) +#new_style_water = false +# Max liquids processed per step +#liquid_loop_max = 100000 +# The time (in seconds) that the liquids queue may grow beyond processing +# capacity until an attempt is made to decrease its size by dumping old queue +# items. A value of 0 disables the functionality. +#liquid_queue_purge_time = 0 +# Liquid update interval in seconds +#liquid_update = 1.0 +# Enable transparent leaf textures, disable for speed +#new_style_leaves = true +# Connects glass if supported by node +#connected_glass = false +# Enable smooth lighting with simple ambient occlusion. +# Disable for speed or for different looks. +#smooth_lighting = true +# Adjust the gamma encoding for the light tables. Valid values are in the range +# 1.1 to 3.0 (inclusive); lower numbers are brighter. This setting is for the +# client only and is ignored by the server +#display_gamma = 1.8 +# Path to texture directory. All textures are first searched from here. +#texture_path = +# Video back-end. +# Possible values: null, software, burningsvideo, direct3d8, direct3d9, opengl. +#video_driver = opengl +# Unobstructed movement without physics, downwards key is keymap_special1 +#free_move = false +# Continuous forward movement (for testing) +#continuous_forward = false +# Fast movement (keymap_special1) +#fast_move = false +# Invert mouse +#invert_mouse = false +# Enable/disable clouds +#enable_clouds = true +#cloud_height = 120 +#enable_3d_clouds = true +# Use a cloud animation for the main menu background +#menu_clouds = true +# Path for screenshots +#screenshot_path = +# Amount of view bobbing (0 = no view bobbing, 1.0 = normal, 2.0 = double) +#view_bobbing_amount = 1.0 +# Amount of fall bobbing (0 = no fall bobbing, 1.0 = normal, 2.0 = double) +#fall_bobbing_amount = 0.0 +# 3d support. +# Currently: +# "none" = no 3d output. +# "anaglyph" = cyan/magenta color 3d. +# "interlaced" = odd/even line based polarisation screen support. +# "topbottom" = split screen top/bottom. +# "sidebyside" = split screen side by side. +#3d_mode = none +#3d_parallax_strength = 0.025 +# In-game chat console background color (R,G,B) +#console_color = (0,0,0) +# In-game chat console background alpha (opaqueness, between 0 and 255) +#console_alpha = 200 +# Selection box border color (R,G,B) +#selectionbox_color = (0,0,0) +# Crosshair color (R,G,B) +#crosshair_color = (255,255,255) +# Cross alpha (opaqueness, between 0 and 255) +#crosshair_alpha = 255 +# Scale gui by a user specified value +#gui_scaling = 1.0 +# Sensitivity multiplier +#mouse_sensitivity = 0.2 +# Sound settings +#enable_sound = true +#sound_volume = 0.7 +# Whether node texture animations should be desynchronized per mapblock +#desynchronize_mapblock_texture_animation = true +# Width of the selectionbox's lines (Between 1 and 5) +#selectionbox_width = 2 +# Maximum proportion of current window to be used for hotbar. +# Useful if there's something to be displayed right or left of hotbar. +#hud_hotbar_max_width = 1.0 +# Save the map received by the client on disk +#enable_local_map_saving = false +# Enable selection highlighting for nodes (disables selectionbox) +#enable_node_highlighting = false +# Texture filtering settings +#mip_map = false +#anisotropic_filter = false +#bilinear_filter = false +#trilinear_filter = false +# Set to true to pre-generate all item visuals +#preload_item_visuals = false +# Set to true to enable shaders. Disable them if video_driver = direct3d9/8. +#enable_shaders = true +# Set to true to enable textures bumpmapping. Requires shaders enabled. +#enable_bumpmapping = false +# Set to true enables parallax occlusion mapping. Requires shaders enabled. +#generate_normalmaps = false +# Set to true enables on the fly normalmap generation (Emboss effect). +# Requires bumpmapping enabled. +#normalmaps_strength = 0.6 +# Strength of generated normalmaps +#normalmaps_smooth = 1 +# Defines sampling step of texture (0 - 2). +# A higher value results in smoother normal maps. +#enable_parallax_occlusion = false +# Scale of parallax occlusion effect +#parallax_occlusion_scale = 0.08 +# Bias of parallax occlusion effect, usually scale/2 +#parallax_occlusion_bias = 0.04 +# Set to true enables waving water. Requires shaders enabled. +#enable_waving_water = false +# Parameters for waving water: +#water_wave_height = 1.0 +#water_wave_length = 20.0 +#water_wave_speed = 5.0 +# Set to true enables waving leaves. Requires shaders enabled. +#enable_waving_leaves = false +# Set to true enables waving plants. Requires shaders enabled. +#enable_waving_plants = false +# Enables caching of facedir rotated meshes +#enable_mesh_cache = true +# The time in seconds it takes between repeated +# right clicks when holding the right mouse button. +#repeat_rightclick_time = 0.25 +# Make fog and sky colors depend on daytime (dawn/sunset) and view direction +#directional_colored_fog = true +# Delay showing tooltips, stated in milliseconds +#tooltip_show_delay = 400 +# Adjust dpi configuration to your screen (non X11/Android only) e.g. for 4k screens +#screen_dpi = 72 +# Default timeout for cURL, stated in milliseconds. +# Only has an effect if compiled with cURL. +#curl_timeout = 5000 +# Limits number of parallel HTTP requests. Affects: +# Media fetch if server uses remote_media setting. +# Serverlist download and server announcement. +# Downloads performed by main menu (e.g. mod manager). +# Only has an effect if compiled with cURL. +#curl_parallel_limit = 8 +# Maximum time in ms a file download (e.g. a mod download) may take +#curl_file_download_timeout = 300000 +# Enable usage of remote media server (if provided by server) +#enable_remote_media_server = true +# Url to the server list displayed in the Multiplayer Tab +#serverlist_url = servers.minetest.net +# File in client/serverlist/ that contains your favorite servers displayed in the Multiplayer Tab +#serverlist_file = favoriteservers.txt +# Whether freetype fonts are used, requires freetype support to be compiled in +#freetype = true +# Path to TrueTypeFont or bitmap +#font_path = fonts/liberationsans.ttf +#font_size = 13 +# Font shadow offset, if 0 then shadow will not be drawn +#font_shadow = 1 +# Font shadow alpha (opaqueness, between 0 and 255) +#font_shadow_alpha = 128 +#mono_font_path = fonts/liberationmono.ttf +#mono_font_size = 13 +# This font will be used for certain languages +#fallback_font_path = fonts/DroidSansFallbackFull.ttf +#fallback_font_size = 13 +#fallback_font_shadow = 1 +#fallback_font_shadow_alpha = 128 +# Override language. When no value is provided (default) system language is used. +# Check "locale" directory for the list of available translations. +#language = +#main_menu_script = +#main_menu_game_mgr = 0 +#main_menu_mod_mgr = 1 +#modstore_download_url = https://forum.minetest.net/media/ +#modstore_listmods_url = https://forum.minetest.net/mmdb/mods/ +#modstore_details_url = https://forum.minetest.net/mmdb/mod/*/ +# Makes DirectX work with LuaJIT. Disable if it causes troubles. +#high_precision_fpu = true + +# +# Server stuff +# + +# Network port to listen (UDP) +#port = 30000 +# Bind address +#bind_address = +# Name of server +#server_name = Minetest server +# Description of server +#server_description = mine here +# Domain name of server +#server_address = game.minetest.net +# Homepage of server +#server_url = http://minetest.net +# Automaticaly report to masterserver +#server_announce = 0 +# Announce to this masterserver. +# If you want to announce your ipv6 address - use serverlist_url = v6.servers.minetest.net. +#serverlist_url = servers.minetest.net +# Default game (default when creating a new world) +#default_game = minetest +# World directory (everything in the world is stored here) +#map-dir = /custom/world +# Message of the Day +#motd = Welcome to this awesome Minetest server! +# Maximum number of players connected simultaneously +#max_users = 15 +# Set to true to disallow old clients from connecting +#strict_protocol_version_checking = false +# Time in seconds for item entity to live. Default value: 900s. +# Setting it to -1 disables the feature. +#item_entity_ttl = 900 +# Set to true to enable creative mode (unlimited inventory) +#creative_mode = false +# Enable players getting damage and dying +#enable_damage = false +# A chosen map seed for a new map, leave empty for random +#fixed_map_seed = +# Gives some stuff to players at the beginning +#give_initial_stuff = false +# New users need to input this password +#default_password = +# Available privileges: interact, shout, teleport, settime, privs, ... +# See /privs in game for a full list on your server and mod configuration. +#default_privs = interact, shout +# Whether players are shown to clients without any range limit. +# Deprecated, use the setting player_transfer_distance instead. +#unlimited_player_transfer_distance = true +# Defines the maximal player transfer distance in blocks (0 = unlimited) +#player_transfer_distance = 0 +# Whether to enable players killing each other +#enable_pvp = true +# If this is set, players will always (re)spawn at the given position +#static_spawnpoint = 0, 10, 0 +# If true, new players cannot join with an empty password +#disallow_empty_password = false +# If true, disable cheat prevention in multiplayer +#disable_anticheat = false +# If true, actions are recorded for rollback +#enable_rollback_recording = false +# Handling for deprecated lua api calls: +# "legacy" = (try to) mimic old behaviour (default for release). +# "log" = mimic and log backtrace of deprecated call (default for debug). +# "error" = abort on usage of deprecated call (suggested for mod developers). +#deprecated_lua_api_handling = legacy +# Mod profiler +#mod_profiling = false +# Detailed mod profile data +#detailed_profiling = false +# Profiler data print interval. #0 = disable. +#profiler_print_interval = 0 +#enable_mapgen_debug_info = false +# From how far client knows about objects +#active_object_send_range_blocks = 3 +# How large area of blocks are subject to the active block stuff. +# Active = objects are loaded and ABMs run. +#active_block_range = 2 +# How many blocks are flying in the wire simultaneously per client +#max_simultaneous_block_sends_per_client = 10 +# How many blocks are flying in the wire simultaneously per server +#max_simultaneous_block_sends_server_total = 40 +# From how far blocks are sent to clients, stated in mapblocks (16 nodes) +#max_block_send_distance = 10 +# From how far blocks are generated for clients, stated in mapblocks (16 nodes) +#max_block_generate_distance = 6 +# Number of extra blocks that can be loaded by /clearobjects at once. +# This is a trade-off between sqlite transaction overhead and +# memory consumption (4096=100MB, as a rule of thumb). +#max_clearobjects_extra_loaded_blocks = 4096 +# Maximum number of forceloaded blocks +#max_forceloaded_blocks = 16 +# Interval of sending time of day to clients +#time_send_interval = 5 +# Controls length of day/night cycle. +# 72=20min, 360=4min, 1=24hour, 0=day/night/whatever stays unchanged. +#time_speed = 72 +# Length of year in days for seasons change. +# With default time_speed 365 days = 5 real days for year, 30 days = 10 real hours. +#year_days = 30 +#server_unload_unused_data_timeout = 29 +# Maximum number of statically stored objects in a block +#max_objects_per_block = 49 +# Interval of saving important changes in the world, stated in seconds +#server_map_save_interval = 5.3 +# http://www.sqlite.org/pragma.html#pragma_synchronous only numeric values: 0 1 2 +#sqlite_synchronous = 2 +# To reduce lag, block transfers are slowed down when a player is building something. +# This determines how long they are slowed down after placing or removing a node. +#full_block_send_enable_min_time_from_building = 2.0 +# Length of a server tick and the interval at which objects are generally updated over network +#dedicated_server_step = 0.1 +# Can be set to true to disable shutting down on invalid world data +#ignore_world_load_errors = false +# Specifies URL from which client fetches media instead of using UDP. +# $filename should be accessible from $remote_media$filename via cURL +# (obviously, remote_media should end with a slash). +# Files that are not present would be fetched the usual way. +#remote_media = +# Level of logging to be written to debug.txt: +# 0 = none, 1 = errors and debug, 2 = action, 3 = info, 4 = verbose. +#debug_log_level = 2 +# Maximum number of blocks that can be queued for loading +#emergequeue_limit_total = 256 +# Maximum number of blocks to be queued that are to be loaded from file. +# Set to blank for an appropriate amount to be chosen automatically. +#emergequeue_limit_diskonly = 32 +# Maximum number of blocks to be queued that are to be generated. +# Set to blank for an appropriate amount to be chosen automatically. +#emergequeue_limit_generate = 32 +# Number of emerge threads to use. Make this field blank, or increase this number +# to use multiple threads. On multiprocessor systems, this will improve mapgen speed greatly +# at the cost of slightly buggy caves. +#num_emerge_threads = 1 +# Maximum number of packets sent per send step, if you have a slow connection +# try reducing it, but don't reduce it to a number below double of targeted +# client number. +#max_packets_per_iteration = 1024 +# Enable/disable IPv6 +#enable_ipv6 = true +# Enable/disable running an IPv6 server. An IPv6 server may be restricted +# to IPv6 clients, depending on system configuration. +# Ignored if bind_address is set. +#ipv6_server = false + +# +# Physics stuff +# + +#movement_acceleration_default = 3 +#movement_acceleration_air = 2 +#movement_acceleration_fast = 10 +#movement_speed_walk = 4 +#movement_speed_crouch = 1.35 +#movement_speed_fast = 20 +#movement_speed_climb = 2 +#movement_speed_jump = 6.5 +#movement_speed_descend = 6 +#movement_liquid_fluidity = 1 +#movement_liquid_fluidity_smooth = 0.5 +#movement_liquid_sink = 10 +#movement_gravity = 9.81 + +# +# Mapgen stuff +# + +# Name of map generator to be used. Currently supported: v5, v6, v7, singlenode. +#mg_name = v6 +# Water surface level of map +#water_level = 1 +# Size of chunks to be generated, stated in mapblocks (16 nodes) +#chunksize = 5 +# Global map generation attributes. Currently supported: trees, caves, flat, dungeons, light. +# Flags that are not specified in the flag string are not modified from the default. +# To explicitly turn off a flag, prepend "no" to the beginning, e.g. nolight. +#mg_flags = trees, caves +# Map generation attributes specific to Mapgen V6. +# Currently supported: biomeblend, jungles, mudflow. +#mgv6_spflags = biomeblend, jungles, mudflow +# Controls size of deserts and beaches in Mapgen V6 +#mgv6_freq_desert = 0.45 +#mgv6_freq_beach = 0.15 + +# Perlin noise attributes for different map generation parameters. +# Noise parameters can be specified as a set of positional values: +# Offset, scale, (spread factors), seed offset, number of octaves, persistence, lacunarity. +#mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0 +# Or the new group format can be used instead: +#mgv6_np_terrain_base = { +# offset = -4 +# scale = 20 +# spread = (250, 250, 250) +# seed = 82341 +# octaves = 5 +# persistence = 0.6 +# lacunarity = 2.0 +# flags = "defaults" +#} +# Only the group format supports noise flags which are needed for eased noise. +# Mgv5 uses eased noise for np_cave1, np_cave2, np_ground and np_crumble, so these are shown in +# group format, other noise parameters are shown in positional format to save space. + +#mgv5_spflags = blobs +#mgv5_np_filler_depth = 0, 1, (150, 150, 150), 261, 4, 0.7, 2.0 +#mgv5_np_factor = 0, 1, (250, 250, 250), 920381, 3, 0.45, 2.0 +#mgv5_np_height = 0, 10, (250, 250, 250), 84174, 4, 0.5, 2.0 +#mgv5_np_cave1 = { +# offset = 0 +# scale = 6 +# spread = (50, 50, 50) +# seed = 52534 +# octaves = 4 +# persistence = 0.5 +# lacunarity = 2.0 +# flags = "eased" +#} +#mgv5_np_cave2 = { +# offset = 0 +# scale = 6 +# spread = (50, 50, 50) +# seed = 10325 +# octaves = 4 +# persistence = 0.5 +# lacunarity = 2.0 +# flags = "eased" +#} +#mgv5_np_ground = { +# offset = 0 +# scale = 40 +# spread = (80, 80, 80) +# seed = 983240 +# octaves = 4 +# persistence = 0.55 +# lacunarity = 2.0 +# flags = "eased" +#} +#mgv5_np_crumble = { +# offset = 0 +# scale = 1 +# spread = (20, 20, 20) +# seed = 34413 +# octaves = 3 +# persistence = 1.3 +# lacunarity = 2.0 +# flags = "eased" +#} +#mgv5_np_wetness = 0, 1, (40, 40, 40), 32474, 4, 1.1, 2.0 + +#mgv6_spflags = biomeblend, jungles, mudflow +#mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0 +#mgv6_np_terrain_higher = 20, 16, (500, 500, 500), 85039, 5, 0.6, 2.0 +#mgv6_np_steepness = 0.85, 0.5, (125, 125, 125), -932, 5, 0.7, 2.0 +#mgv6_np_height_select = 0.5, 1, (250, 250, 250), 4213, 5, 0.69, 2.0 +#mgv6_np_mud = 4, 2, (200, 200, 200), 91013, 3, 0.55, 2.0 +#mgv6_np_beach = 0, 1, (250, 250, 250), 59420, 3, 0.50, 2.0 +#mgv6_np_biome = 0, 1, (250, 250, 250), 9130, 3, 0.50, 2.0 +#mgv6_np_cave = 6, 6, (250, 250, 250), 34329, 3, 0.50, 2.0 +#mgv6_np_humidity = 0.5, 0.5, (500, 500, 500), 72384, 4, 0.66, 2.0 +#mgv6_np_trees = 0, 1, (125, 125, 125), 2, 4, 0.66, 2.0 +#mgv6_np_apple_trees = 0, 1, (100, 100, 100), 342902, 3, 0.45, 2.0 + +#mgv7_spflags = mountains, ridges +#mgv7_np_terrain_base = 4, 70, (300, 300, 300), 82341, 6, 0.7, 2.0 +#mgv7_np_terrain_alt = 4, 25, (600, 600, 600), 5934, 5, 0.6, 2.0 +#mgv7_np_terrain_persist = 0.6, 0.1, (500, 500, 500), 539, 3, 0.6, 2.0 +#mgv7_np_height_select = -0.5, 1, (250, 250, 250), 4213, 5, 0.69, 2.0 +#mgv7_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 4, 0.7, 2.0 +#mgv7_np_mount_height = 100, 30, (500, 500, 500), 72449, 4, 0.6, 2.0 +#mgv7_np_ridge_uwater = 0, 1, (500, 500, 500), 85039, 4, 0.6, 2.0 +#mgv7_np_mountain = 0, 1, (250, 350, 250), 5333, 5, 0.68, 2.0 +#mgv7_np_ridge = 0, 1, (100, 100, 100), 6467, 4, 0.75, 2.0 + +# Noise parameters for biome API temperature and humidity +#mg_biome_np_heat = 50, 50, (500, 500, 500), 5349, 3, 0.5, 2.0 +#mg_biome_np_humidity = 50, 50, (500, 500, 500), 842, 3, 0.5, 2.0 + diff --git a/minetest.conf.old b/minetest.conf.old new file mode 100644 index 0000000..b33cd38 --- /dev/null +++ b/minetest.conf.old @@ -0,0 +1,35 @@ +remote_port = 30000 +server_dedicated = true + +# server stuff + +default_privs = interact, shout + +# Message of the Day +motd = You wake up in the middle of desert. You cant remember anything. Strange barren world with dangerous monsters is outside. Can you make it better? +server_name = TEST 1234 +server_address = swiado.me +server_description = This is a test +static_spawnpoint = 0,15,64 +wieldview_node_tiles = false +wieldview_update_time = 2 +player_transfer_distance = 4 +enable_pvp = true +enable_tnt = true +enable_rollback_recording = false + +#lags settings +server_map_save_interval = 60.0 +sqlite_synchronous = 0 +max_simultaneous_block_sends_server_total = 200 +max_simultaneous_block_sends_per_client = 6 + +#calinous settings +active_block_range = 1 +max_block_generate_distance = 6 +max_block_send_distance = 6 +mainmenu_last_selected_world = 1 +fixed_map_seed = 2015 +mg_name = v7 +port = 30000 +server_announce = 1 diff --git a/misc/Info.plist b/misc/Info.plist new file mode 100644 index 0000000..848ccfa --- /dev/null +++ b/misc/Info.plist @@ -0,0 +1,14 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ../Resources/minetest + CFBundleIconFile + minetest.icns + CFBundleIdentifier + net.minetest.minetest + + diff --git a/misc/minetest-icon-24x24.png b/misc/minetest-icon-24x24.png new file mode 100644 index 0000000..334e2f6 Binary files /dev/null and b/misc/minetest-icon-24x24.png differ diff --git a/misc/minetest-icon.icns b/misc/minetest-icon.icns new file mode 100644 index 0000000..14731c2 Binary files /dev/null and b/misc/minetest-icon.icns differ diff --git a/misc/minetest-icon.ico b/misc/minetest-icon.ico new file mode 100644 index 0000000..82af67b Binary files /dev/null and b/misc/minetest-icon.ico differ diff --git a/misc/minetest-icon.svg b/misc/minetest-icon.svg new file mode 100644 index 0000000..46c9ac7 --- /dev/null +++ b/misc/minetest-icon.svg @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/misc/minetest.appdata.xml b/misc/minetest.appdata.xml new file mode 100644 index 0000000..6ef8b7f --- /dev/null +++ b/misc/minetest.appdata.xml @@ -0,0 +1,36 @@ + + + minetest.desktop + CC0-1.0 + LGPL-2.1+ and CC-BY-SA-3.0 and MIT and Apache-2.0 + Minetest + Multiplayer infinite-world block sandbox game + +

+ Minetest is an infinite-world block sandbox game and game engine. +

+ Players can create and destroy various types of blocks in a + three-dimensional open world. This allows forming structures in + every possible creation, on multiplayer servers or in singleplayer. +

+ Minetest is designed to be simple, stable, and portable. + It is lightweight enough to run on fairly old hardware. +

+ Minetest has many features, including: +

+
    +
  • Ability to walk around, dig, and build in a near-infinite voxel world
  • +
  • Crafting of items from raw materials
  • +
  • Fast and able to run on old and slow hardware
  • +
  • A simple modding API that supports many additions and modifications to the game
  • +
  • Multiplayer support via servers hosted by users
  • +
  • Beautiful lightning-fast map generator
  • +
+
+ + http://minetest.net/_media/screen2.png + http://minetest.net/_media/screenshot_4032289578.png + + http://minetest.net + sfan5@live.de +
diff --git a/misc/minetest.desktop b/misc/minetest.desktop new file mode 100644 index 0000000..486a8e0 --- /dev/null +++ b/misc/minetest.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Name=Minetest +GenericName=Minetest +Comment=Multiplayer infinite-world block sandbox +Exec=minetest +Icon=minetest-icon +Terminal=false +Type=Application +Categories=Game; +StartupNotify=false + diff --git a/misc/winresource.rc b/misc/winresource.rc new file mode 100644 index 0000000..ecb314c --- /dev/null +++ b/misc/winresource.rc @@ -0,0 +1,57 @@ +#include +#include +#include +#define USE_CMAKE_CONFIG_H +#include "config.h" +#undef USE_CMAKE_CONFIG_H + +#if RUN_IN_PLACE == 1 + #define BUILDMODE "RUN_IN_PLACE=1\0" +#else + #define BUILDMODE "RUN_IN_PLACE=0\0" +#endif + +LANGUAGE 0, SUBLANG_NEUTRAL +130 ICON "minetest-icon.ico" + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +1 VERSIONINFO + FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_PATCH_ORIG,0 + PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_PATCH_ORIG,0 + FILEFLAGSMASK 0x3fL +#ifndef NDEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS VOS_NT_WINDOWS32 + FILETYPE VFT_APP + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "Comments", "\0" + VALUE "CompanyName", "Minetest Community\0" + VALUE "FileDescription", "Minetest engine core main application\0" + VALUE "FileVersion", VERSION_STRING + VALUE "InternalName", "Minetest engine\0" + VALUE "LegalCopyright", "(c) 2014 celeron55\0" + VALUE "LegalTrademarks", """Minetest"" is property of Minetest community, don't use the name for your application without permission!\0" + VALUE "OriginalFilename", "minetest.exe\0" + VALUE "PrivateBuild", VERSION_EXTRA_STRING + VALUE "ProductName", "Minetest\0" + VALUE "ProductVersion", PRODUCT_VERSION_STRING + VALUE "SpecialBuild", BUILDMODE + END +END +BLOCK "VarFileInfo" +BEGIN + VALUE "Translation", 0x409, 1200 +END +END diff --git a/mods/3d_armor/3d_armor/README.txt b/mods/3d_armor/3d_armor/README.txt new file mode 100644 index 0000000..d64cabd --- /dev/null +++ b/mods/3d_armor/3d_armor/README.txt @@ -0,0 +1,21 @@ +[mod] Visible Player Armor [3d_armor] +===================================== + +Depends: default + +Recommends: inventory_plus or unified_inventory (use only one) + +Adds craftable armor that is visible to other players. Each armor item worn contributes to +a player's armor group level making them less vulnerable to weapons. + +Armor takes damage when a player is hurt but also offers a percentage chance of healing. +Overall level is boosted by 10% when wearing a full matching set. + +Configuration +------------- + +Armor can be configured by adding a file called armor.conf in 3d_armor mod and/or world directory. +see armor.conf.example for all available options. + +Note: worldpath config settings override any settings made in the mod's directory. + diff --git a/mods/3d_armor/3d_armor/armor.conf.example b/mods/3d_armor/3d_armor/armor.conf.example new file mode 100644 index 0000000..aa01084 --- /dev/null +++ b/mods/3d_armor/3d_armor/armor.conf.example @@ -0,0 +1,37 @@ +-- Armor Configuration (defaults) + +-- Increase this if you get initialization glitches when a player first joins. +ARMOR_INIT_DELAY = 1 + +-- Number of initialization attempts. +-- Use in conjunction with ARMOR_INIT_DELAY if initialization problems persist. +ARMOR_INIT_TIMES = 1 + +-- Increase this if armor is not getting into bones due to server lag. +ARMOR_BONES_DELAY = 1 + +-- How often player armor/wield items are updated. +ARMOR_UPDATE_TIME = 1 + +-- Drop armor when a player dies. +-- Uses bones mod if present, otherwise items are dropped around the player. +ARMOR_DROP = true + +-- Pulverise armor when a player dies, overrides ARMOR_DROP. +ARMOR_DESTROY = false + +-- You can use this to increase or decrease overall armor effectiveness, +-- eg: ARMOR_LEVEL_MULTIPLIER = 0.5 will reduce armor level by half. +ARMOR_LEVEL_MULTIPLIER = 1 + +-- You can use this to increase or decrease overall armor healing, +-- eg: ARMOR_HEAL_MULTIPLIER = 0 will disable healing altogether. +ARMOR_HEAL_MULTIPLIER = 1 + +-- You can also use this file to execute arbitary lua code +-- eg: Dumb the armor down if using Simple Mobs +if minetest.get_modpath("mobs") then + ARMOR_LEVEL_MULTIPLIER = 0.5 + ARMOR_HEAL_MULTIPLIER = 0 +end + diff --git a/mods/3d_armor/3d_armor/armor.lua b/mods/3d_armor/3d_armor/armor.lua new file mode 100644 index 0000000..c1e7ba2 --- /dev/null +++ b/mods/3d_armor/3d_armor/armor.lua @@ -0,0 +1,489 @@ +ARMOR_INIT_TIMES = 1 +ARMOR_BONES_DELAY = 1 +ARMOR_INIT_DELAY = 1 +ARMOR_UPDATE_TIME = 1 +ARMOR_DROP = false -- minetest.get_modpath("bones") ~= nil -- RND +ARMOR_DESTROY = false +ARMOR_LEVEL_MULTIPLIER = 1 +ARMOR_HEAL_MULTIPLIER = 1 + +local modpath = minetest.get_modpath(ARMOR_MOD_NAME) +local worldpath = minetest.get_worldpath() +local input = io.open(modpath.."/armor.conf", "r") +if input then + dofile(modpath.."/armor.conf") + input:close() + input = nil +end +input = io.open(worldpath.."/armor.conf", "r") +if input then + dofile(worldpath.."/armor.conf") + input:close() + input = nil +end + +local time = 0 + +armor = { + player_hp = {}, + elements = {"head", "torso", "legs", "feet"}, + physics = {"jump","speed","gravity"}, + formspec = "size[8,8.5]list[detached:player_name_armor;armor;0,1;2,3;]" + .."image[2,0.75;2,4;armor_preview]" + .."list[current_player;main;0,4.5;8,4;]" + .."list[current_player;craft;4,1;3,3;]" + .."list[current_player;craftpreview;7,2;1,1;]", + textures = {}, + default_skin = "character", +} + +if inventory_plus then + armor.formspec = "size[8,8.5]button[0,0;2,0.5;main;Back]" + .."list[detached:player_name_armor;armor;0,1;2,3;]" + .."image[2.5,0.75;2,4;armor_preview]" + .."label[5,1;Level: armor_level]" + .."label[5,1.5;Heal: armor_heal]" + .."list[current_player;main;0,4.5;8,4;]" +elseif unified_inventory then + unified_inventory.register_button("armor", { + type = "image", + image = "inventory_plus_armor.png", + }) + unified_inventory.register_page("armor", { + get_formspec = function(player) + local name = player:get_player_name() + local formspec = "background[0.06,0.99;7.92,7.52;3d_armor_ui_form.png]" + .."label[0,0;Armor]" + .."list[detached:"..name.."_armor;armor;0,1;2,3;]" + .."image[2.5,0.75;2,4;"..armor.textures[name].preview.."]" + .."label[5,1;Level: "..armor.def[name].level.."]" + .."label[5,1.5;Heal: "..armor.def[name].heal.."]" + return {formspec=formspec} + end, + }) +end + +armor.def = { + state = 0, + count = 0, +} + +armor.update_player_visuals = function(self, player) + if not player then + return + end + local name = player:get_player_name() + if self.textures[name] then + default.player_set_textures(player, { + self.textures[name].skin, + self.textures[name].armor, + self.textures[name].wielditem, + }) + end +end + +armor.set_player_armor = function(self, player) + if not player then + return + end + local name = player:get_player_name() + local player_inv = player:get_inventory() + if not name then + minetest.log("error", "Failed to read player name") + return + elseif not player_inv then + minetest.log("error", "Failed to read player inventory") + return + end + local armor_texture = "3d_armor_trans.png" + local armor_level = 0 + local armor_heal = 0 + local state = 0 + local items = 0 + local elements = {} + local textures = {} + local physics_o = {speed=1,gravity=1,jump=1} + local material = {type=nil, count=1} + local preview = armor:get_player_skin(name).."_preview.png" + for _,v in ipairs(self.elements) do + elements[v] = false + end + for i=1, 6 do + local stack = player_inv:get_stack("armor", i) + local item = stack:get_name() + if stack:get_count() == 1 then + local def = stack:get_definition() + for k, v in pairs(elements) do + if v == false then + local level = def.groups["armor_"..k] + if level then + local texture = item:gsub("%:", "_") + table.insert(textures, texture..".png") + preview = preview.."^"..texture.."_preview.png" + armor_level = armor_level + level + state = state + stack:get_wear() + items = items + 1 + local heal = def.groups["armor_heal"] or 0 + armor_heal = armor_heal + heal + for kk,vv in ipairs(self.physics) do + local o_value = def.groups["physics_"..vv] + if o_value then + physics_o[vv] = physics_o[vv] + o_value + end + end + local mat = string.match(item, "%:.+_(.+)$") + if material.type then + if material.type == mat then + material.count = material.count + 1 + end + else + material.type = mat + end + elements[k] = true + end + end + end + end + end + if minetest.get_modpath("shields") then + armor_level = armor_level * 0.9 + end + if material.type and material.count == #self.elements then + armor_level = armor_level * 1.1 + end + armor_level = armor_level * ARMOR_LEVEL_MULTIPLIER + armor_heal = armor_heal * ARMOR_HEAL_MULTIPLIER + if #textures > 0 then + armor_texture = table.concat(textures, "^") + end + local armor_groups = {fleshy=100} + if armor_level > 0 then + armor_groups.level = math.floor(armor_level / 20) + armor_groups.fleshy = 100 - armor_level + end + player:set_armor_groups(armor_groups) + player:set_physics_override(physics_o) + self.textures[name].armor = armor_texture + self.textures[name].preview = preview + self.def[name].state = state + self.def[name].count = items + self.def[name].level = armor_level + self.def[name].heal = armor_heal + self.def[name].jump = physics_o.jump + self.def[name].speed = physics_o.speed + self.def[name].gravity = physics_o.gravity + self:update_player_visuals(player) +end + +armor.update_armor = function(self, player) + if not player then + return + end + local name = player:get_player_name() + local hp = player:get_hp() or 0 + if hp == 0 or hp == self.player_hp[name] then + return + end + if self.player_hp[name] > hp then + local player_inv = player:get_inventory() + local armor_inv = minetest.get_inventory({type="detached", name=name.."_armor"}) + if not player_inv then + minetest.log("error", "Failed to read player inventory") + return + elseif not armor_inv then + minetest.log("error", "Failed to read detached inventory") + return + end + local heal_max = 0 + local state = 0 + local items = 0 + for i=1, 6 do + local stack = player_inv:get_stack("armor", i) + if stack:get_count() > 0 then + local use = stack:get_definition().groups["armor_use"] or 0 + local heal = stack:get_definition().groups["armor_heal"] or 0 + local item = stack:get_name() + stack:add_wear(use) + armor_inv:set_stack("armor", i, stack) + player_inv:set_stack("armor", i, stack) + state = state + stack:get_wear() + items = items + 1 + if stack:get_count() == 0 then + local desc = minetest.registered_items[item].description + if desc then + minetest.chat_send_player(name, "Your "..desc.." got destroyed!") + end + self:set_player_armor(player) + armor:update_inventory(player) + end + heal_max = heal_max + heal + end + end + self.def[name].state = state + self.def[name].count = items + heal_max = heal_max * ARMOR_HEAL_MULTIPLIER + if heal_max > math.random(100) then + player:set_hp(self.player_hp[name]) + return + end + end + self.player_hp[name] = hp +end + +armor.get_player_skin = function(self, name) + local skin = nil + local skins = false -- RND + local u_skins = false + + if skins then + skin = skins.skins[name] + elseif u_skins then + skin = u_skins.u_skins[name] + end + return skin or armor.default_skin +end + +armor.get_armor_formspec = function(self, name) + local formspec = armor.formspec:gsub("player_name", name) + formspec = formspec:gsub("armor_preview", armor.textures[name].preview) + formspec = formspec:gsub("armor_level", armor.def[name].level) + return formspec:gsub("armor_heal", armor.def[name].heal) +end + +armor.update_inventory = function(self, player) + local name = player:get_player_name() + local unified_inventory = false -- RND + if unified_inventory then + if unified_inventory.current_page[name] == "armor" then + unified_inventory.set_inventory_formspec(player, "armor") + end + else + local formspec = armor:get_armor_formspec(name) + + local inventory_plus = false -- RND + + if inventory_plus then + local page = player:get_inventory_formspec() + if page:find("detached:"..name.."_armor") then + inventory_plus.set_inventory_formspec(player, formspec) + end + else + player:set_inventory_formspec(formspec) + end + end +end + +-- Register Player Model + +default.player_register_model("3d_armor_character.x", { + animation_speed = 30, + textures = { + armor.default_skin..".png", + "3d_armor_trans.png", + "3d_armor_trans.png", + }, + animations = { + stand = {x=0, y=79}, + lay = {x=162, y=166}, + walk = {x=168, y=187}, + mine = {x=189, y=198}, + walk_mine = {x=200, y=219}, + sit = {x=81, y=160}, + }, +}) + +-- Register Callbacks + +minetest.register_on_player_receive_fields(function(player, formname, fields) + local name = player:get_player_name() + if inventory_plus and fields.armor then + local formspec = armor:get_armor_formspec(name) + inventory_plus.set_inventory_formspec(player, formspec) + return + end + for field, _ in pairs(fields) do + if string.find(field, "skins_set") then + minetest.after(0, function(player) + local skin = armor:get_player_skin(name) + armor.textures[name].skin = skin..".png" + armor:set_player_armor(player) + end, player) + end + end +end) + +minetest.register_on_joinplayer(function(player) + default.player_set_model(player, "3d_armor_character.x") + local name = player:get_player_name() + local player_inv = player:get_inventory() + local armor_inv = minetest.create_detached_inventory(name.."_armor",{ + on_put = function(inv, listname, index, stack, player) + player:get_inventory():set_stack(listname, index, stack) + armor:set_player_armor(player) + armor:update_inventory(player) + end, + on_take = function(inv, listname, index, stack, player) + player:get_inventory():set_stack(listname, index, nil) + armor:set_player_armor(player) + armor:update_inventory(player) + end, + on_move = function(inv, from_list, from_index, to_list, to_index, count, player) + local plaver_inv = player:get_inventory() + local stack = inv:get_stack(to_list, to_index) + player_inv:set_stack(to_list, to_index, stack) + player_inv:set_stack(from_list, from_index, nil) + armor:set_player_armor(player) + armor:update_inventory(player) + end, + allow_put = function(inv, listname, index, stack, player) + return 1 + end, + allow_take = function(inv, listname, index, stack, player) + return stack:get_count() + end, + allow_move = function(inv, from_list, from_index, to_list, to_index, count, player) + return count + end, + }) + -- if inventory_plus then + -- inventory_plus.register_button(player,"armor", "Armor") + -- end + armor_inv:set_size("armor", 6) + player_inv:set_size("armor", 6) + for i=1, 6 do + local stack = player_inv:get_stack("armor", i) + armor_inv:set_stack("armor", i, stack) + end + + -- Legacy support, import player's armor from old inventory format + for _,v in pairs(armor.elements) do + local list = "armor_"..v + armor_inv:add_item("armor", player_inv:get_stack(list, 1)) + player_inv:set_stack(list, 1, nil) + end + + armor.player_hp[name] = 0 + armor.def[name] = { + state = 0, + count = 0, + level = 0, + heal = 0, + jump = 1, + speed = 1, + gravity = 1, + } + armor.textures[name] = { + skin = armor.default_skin..".png", + armor = "3d_armor_trans.png", + wielditem = "3d_armor_trans.png", + preview = armor.default_skin.."_preview.png", + } + if minetest.get_modpath("skins") then + local skin = skins.skins[name] + if skin and skins.get_type(skin) == skins.type.MODEL then + armor.textures[name].skin = skin..".png" + end + elseif minetest.get_modpath("simple_skins") then + local skin = skins.skins[name] + if skin then + armor.textures[name].skin = skin..".png" + end + elseif minetest.get_modpath("u_skins") then + local skin = u_skins.u_skins[name] + if skin and u_skins.get_type(skin) == u_skins.type.MODEL then + armor.textures[name].skin = skin..".png" + end + end + if minetest.get_modpath("player_textures") then + local filename = minetest.get_modpath("player_textures").."/textures/player_"..name + local f = io.open(filename..".png") + if f then + f:close() + armor.textures[name].skin = "player_"..name..".png" + end + end + for i=1, ARMOR_INIT_TIMES do + minetest.after(ARMOR_INIT_DELAY * i, function(player) + armor:set_player_armor(player) + local inventory_plus = nil -- RND + local unified_inventory = nil + if inventory_plus == nil and unified_inventory == nil then + armor:update_inventory(player) + end + end, player) + end +end) + +if ARMOR_DROP == true or ARMOR_DESTROY == true then + minetest.register_on_dieplayer(function(player) + local name = player:get_player_name() + local pos = player:getpos() + if name and pos then + local drop = {} + local player_inv = player:get_inventory() + local armor_inv = minetest.get_inventory({type="detached", name=name.."_armor"}) + for i=1, player_inv:get_size("armor") do + local stack = armor_inv:get_stack("armor", i) + if stack:get_count() > 0 then + table.insert(drop, stack) + armor_inv:set_stack("armor", i, nil) + player_inv:set_stack("armor", i, nil) + end + end + armor:set_player_armor(player) + if unified_inventory then + unified_inventory.set_inventory_formspec(player, "craft") + elseif inventory_plus then + local formspec = inventory_plus.get_formspec(player,"main") + inventory_plus.set_inventory_formspec(player, formspec) + else + armor:update_inventory(player) + end + if ARMOR_DESTROY == false then + if minetest.get_modpath("bones") then + minetest.after(ARMOR_BONES_DELAY, function() + pos = vector.round(pos) + local node = minetest.get_node(pos) + if node.name == "bones:bones" then + local meta = minetest.get_meta(pos) + local owner = meta:get_string("owner") + local inv = meta:get_inventory() + if name == owner then + for _,stack in ipairs(drop) do + if inv:room_for_item("main", stack) then + inv:add_item("main", stack) + end + end + end + end + end) + else + for _,stack in ipairs(drop) do + local obj = minetest.add_item(pos, stack) + if obj then + local x = math.random(1, 5) + if math.random(1,2) == 1 then + x = -x + end + local z = math.random(1, 5) + if math.random(1,2) == 1 then + z = -z + end + obj:setvelocity({x=1/x, y=obj:getvelocity().y, z=1/z}) + end + end + end + end + end + end) +end + +minetest.register_globalstep(function(dtime) + time = time + dtime + if time > ARMOR_UPDATE_TIME then + for _,player in ipairs(minetest.get_connected_players()) do + armor:update_armor(player) + end + time = 0 + end +end) \ No newline at end of file diff --git a/mods/3d_armor/3d_armor/crafting_guide.txt b/mods/3d_armor/3d_armor/crafting_guide.txt new file mode 100644 index 0000000..f76ff12 --- /dev/null +++ b/mods/3d_armor/3d_armor/crafting_guide.txt @@ -0,0 +1,71 @@ +3d_armor -- Crafting Guide +-------------------------- + +Helmets: + ++---+---+---+ +| X | X | X | ++---+---+---+ +| X | | X | ++---+---+---+ +| | | | ++---+---+---+ + +[3d_armor:helmet_wood] X = [default:wood] +[3d_armor:helmet_steel] X = [default:steel_ingot] +[3d_armor:helmet_bronze] X = [default:bronze_ingot] +[3d_armor:helmet_diamond] X = [default:diamond] +[3d_armor:helmet_gold] X = [default:gold_ingot] +[3d_armor:helmet_mithril] X = [moreores:mithril_ingot] * + +Chestplates: + ++---+---+---+ +| X | | X | ++---+---+---+ +| X | X | X | ++---+---+---+ +| X | X | X | ++---+---+---+ + +[3d_armor:chestplate_wood] X = [default:wood] +[3d_armor:chestplate_steel] X = [default:steel_ingot] +[3d_armor:chestplate_bronze] X = [default:bronze_ingot] +[3d_armor:chestplate_diamond] X = [default:diamond] +[3d_armor:chestplate_gold] X = [default:gold_ingot] +[3d_armor:chestplate_mithril] X = [moreores:mithril_ingot] * + +Leggings: + ++---+---+---+ +| X | X | X | ++---+---+---+ +| X | | X | ++---+---+---+ +| X | | X | ++---+---+---+ + +[3d_armor:leggings_wood] X = [default:wood] +[3d_armor:leggings_steel] X = [default:steel_ingot] +[3d_armor:leggings_bronze] X = [default:bronze_ingot] +[3d_armor:leggings_diamond] X = [default:diamond] +[3d_armor:leggings_gold] X = [default:gold_ingot] +[3d_armor:leggings_mithril] X = [moreores:mithril_ingot] * + +Boots: + ++---+---+---+ +| X | | X | ++---+---+---+ +| X | | X | ++---+---+---+ + +[3d_armor:boots_wood] X = [default:wood] +[3d_armor:boots_steel] X = [default:steel_ingot] +[3d_armor:boots_bronze] X = [default:bronze_ingot +[3d_armor:boots_diamond] X = [default:diamond] +[3d_armor:boots_gold] X = [default:gold_ingot] +[3d_armor:boots_mithril] X = [moreores:mithril_ingot] * + +* Requires moreores mod by Calinou - https://forum.minetest.net/viewtopic.php?id=549 + diff --git a/mods/3d_armor/3d_armor/depends.txt b/mods/3d_armor/3d_armor/depends.txt new file mode 100644 index 0000000..525e69c --- /dev/null +++ b/mods/3d_armor/3d_armor/depends.txt @@ -0,0 +1,4 @@ +default +inventory_plus? +unified_inventory? + diff --git a/mods/3d_armor/3d_armor/init.lua b/mods/3d_armor/3d_armor/init.lua new file mode 100644 index 0000000..ff31ba7 --- /dev/null +++ b/mods/3d_armor/3d_armor/init.lua @@ -0,0 +1,236 @@ +ARMOR_MOD_NAME = minetest.get_current_modname() +dofile(minetest.get_modpath(ARMOR_MOD_NAME).."/armor.lua") +local use_moreores = minetest.get_modpath("moreores") + +-- Regisiter Head Armor + +minetest.register_tool("3d_armor:helmet_wood", { + description = "Wood Helmet", + inventory_image = "3d_armor_inv_helmet_wood.png", + groups = {armor_head=5, armor_heal=0, armor_use=2000}, + wear = 0, +}) + +minetest.register_tool("3d_armor:helmet_steel", { + description = "Steel Helmet", + inventory_image = "3d_armor_inv_helmet_steel.png", + groups = {armor_head=10, armor_heal=0, armor_use=500}, + wear = 0, +}) + +minetest.register_tool("3d_armor:helmet_bronze", { + description = "Bronze Helmet", + inventory_image = "3d_armor_inv_helmet_bronze.png", + groups = {armor_head=10, armor_heal=6, armor_use=250}, + wear = 0, +}) + +minetest.register_tool("3d_armor:helmet_diamond", { + description = "Diamond Helmet", + inventory_image = "3d_armor_inv_helmet_diamond.png", + groups = {armor_head=15, armor_heal=12, armor_use=100}, + wear = 0, +}) + +minetest.register_tool("3d_armor:helmet_gold", { + description = "Gold Helmet", + inventory_image = "3d_armor_inv_helmet_gold.png", + groups = {armor_head=10, armor_heal=6, armor_use=250}, + wear = 0, +}) + +if use_moreores then + minetest.register_tool("3d_armor:helmet_mithril", { + description = "Mithril Helmet", + inventory_image = "3d_armor_inv_helmet_mithril.png", + groups = {armor_head=15, armor_heal=12, armor_use=50}, + wear = 0, + }) +end + +-- Regisiter Torso Armor + +minetest.register_tool("3d_armor:chestplate_wood", { + description = "Wood Chestplate", + inventory_image = "3d_armor_inv_chestplate_wood.png", + groups = {armor_torso=10, armor_heal=0, armor_use=2000}, + wear = 0, +}) + +minetest.register_tool("3d_armor:chestplate_steel", { + description = "Steel Chestplate", + inventory_image = "3d_armor_inv_chestplate_steel.png", + groups = {armor_torso=15, armor_heal=0, armor_use=500}, + wear = 0, +}) + +minetest.register_tool("3d_armor:chestplate_bronze", { + description = "Bronze Chestplate", + inventory_image = "3d_armor_inv_chestplate_bronze.png", + groups = {armor_torso=15, armor_heal=6, armor_use=250}, + wear = 0, +}) + +minetest.register_tool("3d_armor:chestplate_diamond", { + description = "Diamond Chestplate", + inventory_image = "3d_armor_inv_chestplate_diamond.png", + groups = {armor_torso=20, armor_heal=12, armor_use=100}, + wear = 0, +}) + +minetest.register_tool("3d_armor:chestplate_gold", { + description = "Gold Chestplate", + inventory_image = "3d_armor_inv_chestplate_gold.png", + groups = {armor_torso=15, armor_heal=6, armor_use=250}, + wear = 0, +}) + +if use_moreores then + minetest.register_tool("3d_armor:chestplate_mithril", { + description = "Mithril Chestplate", + inventory_image = "3d_armor_inv_chestplate_mithril.png", + groups = {armor_torso=20, armor_heal=12, armor_use=50}, + wear = 0, + }) +end + +-- Regisiter Leg Armor + +minetest.register_tool("3d_armor:leggings_wood", { + description = "Wood Leggings", + inventory_image = "3d_armor_inv_leggings_wood.png", + groups = {armor_legs=5, armor_heal=0, armor_use=2000}, + wear = 0, +}) + +minetest.register_tool("3d_armor:leggings_steel", { + description = "Steel Leggings", + inventory_image = "3d_armor_inv_leggings_steel.png", + groups = {armor_legs=15, armor_heal=0, armor_use=500}, + wear = 0, +}) + +minetest.register_tool("3d_armor:leggings_bronze", { + description = "Bronze Leggings", + inventory_image = "3d_armor_inv_leggings_bronze.png", + groups = {armor_legs=15, armor_heal=6, armor_use=250}, + wear = 0, +}) + +minetest.register_tool("3d_armor:leggings_diamond", { + description = "Diamond Leggings", + inventory_image = "3d_armor_inv_leggings_diamond.png", + groups = {armor_legs=20, armor_heal=12, armor_use=100}, + wear = 0, +}) + +minetest.register_tool("3d_armor:leggings_gold", { + description = "Gold Leggings", + inventory_image = "3d_armor_inv_leggings_gold.png", + groups = {armor_legs=15, armor_heal=6, armor_use=250}, + wear = 0, +}) + +if use_moreores then + minetest.register_tool("3d_armor:leggings_mithril", { + description = "Mithril Leggings", + inventory_image = "3d_armor_inv_leggings_mithril.png", + groups = {armor_legs=20, armor_heal=12, armor_use=50}, + wear = 0, + }) +end + +-- Regisiter Boots + +minetest.register_tool("3d_armor:boots_wood", { + description = "Wood Boots", + inventory_image = "3d_armor_inv_boots_wood.png", + groups = {armor_feet=5, armor_heal=0, armor_use=2000}, + wear = 0, +}) + +minetest.register_tool("3d_armor:boots_steel", { + description = "Steel Boots", + inventory_image = "3d_armor_inv_boots_steel.png", + groups = {armor_feet=10, armor_heal=0, armor_use=500}, + wear = 0, +}) + +minetest.register_tool("3d_armor:boots_bronze", { + description = "Bronze Boots", + inventory_image = "3d_armor_inv_boots_bronze.png", + groups = {armor_feet=10, armor_heal=6, armor_use=250}, + wear = 0, +}) + +minetest.register_tool("3d_armor:boots_diamond", { + description = "Diamond Boots", + inventory_image = "3d_armor_inv_boots_diamond.png", + groups = {armor_feet=15, armor_heal=12, armor_use=100}, + wear = 0, +}) + +minetest.register_tool("3d_armor:boots_gold", { + description = "Gold Boots", + inventory_image = "3d_armor_inv_boots_gold.png", + groups = {armor_feet=10, armor_heal=6, armor_use=250}, + wear = 0, +}) + +if use_moreores then + minetest.register_tool("3d_armor:boots_mithril", { + description = "Mithril Boots", + inventory_image = "3d_armor_inv_boots_mithril.png", + groups = {armor_feet=15, armor_heal=12, armor_use=50}, + wear = 0, + }) +end + +-- Register Craft Recipies + +local craft_ingreds = { + wood = "default:wood", + steel = "default:steel_ingot", + bronze = "default:bronze_ingot", + diamond = "default:diamond", + gold = "default:gold_ingot", +} + +if use_moreores then + craft_ingreds.mithril = "moreores:mithril_ingot" +end + +for k, v in pairs(craft_ingreds) do + minetest.register_craft({ + output = "3d_armor:helmet_"..k, + recipe = { + {v, v, v}, + {v, "", v}, + {"", "", ""}, + }, + }) + minetest.register_craft({ + output = "3d_armor:chestplate_"..k, + recipe = { + {v, "", v}, + {v, v, v}, + {v, v, v}, + }, + }) + minetest.register_craft({ + output = "3d_armor:leggings_"..k, + recipe = { + {v, v, v}, + {v, "", v}, + {v, "", v}, + }, + }) + minetest.register_craft({ + output = "3d_armor:boots_"..k, + recipe = { + {v, "", v}, + {v, "", v}, + }, + }) +end + diff --git a/mods/3d_armor/3d_armor/models/3d_armor_character.blend b/mods/3d_armor/3d_armor/models/3d_armor_character.blend new file mode 100644 index 0000000..1f49dcf Binary files /dev/null and b/mods/3d_armor/3d_armor/models/3d_armor_character.blend differ diff --git a/mods/3d_armor/3d_armor/models/3d_armor_character.x b/mods/3d_armor/3d_armor/models/3d_armor_character.x new file mode 100644 index 0000000..8a59571 --- /dev/null +++ b/mods/3d_armor/3d_armor/models/3d_armor_character.x @@ -0,0 +1,9513 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000,-10.000000, 1.000000;; + } + Frame Armature_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 6.750000, 1.000000;; + } + Frame Armature_Arm_Left { + FrameTransformMatrix { + 0.989209,-0.143884,-0.027450, 0.000000, + -0.143940,-0.989586,-0.000000, 0.000000, + -0.027164, 0.003951,-0.999623, 0.000000, + -2.000000, 6.750000, 0.000000, 1.000000;; + } + } // End of Armature_Arm_Left + Frame Armature_Arm_Right { + FrameTransformMatrix { + 0.989209, 0.143884, 0.027450, 0.000000, + 0.143940,-0.989586,-0.000000, 0.000000, + 0.027164, 0.003951,-0.999623, 0.000000, + 2.000000, 6.750000, 0.000000, 1.000000;; + } + } // End of Armature_Arm_Right + Frame Armature_Cape { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -0.000000,-0.000000,-1.000000, 0.000000, + 0.000000, 6.950000, 1.100000, 1.000000;; + } + } // End of Armature_Cape + Frame Armature_Head { + FrameTransformMatrix { + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 6.750000, 0.000000, 1.000000;; + } + } // End of Armature_Head + Frame Armature_Leg_Left { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 1.000000;; + } + } // End of Armature_Leg_Left + Frame Armature_Leg_Right { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 1.000000;; + } + } // End of Armature_Leg_Right + } // End of Armature_Body + Frame Player { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { // Player mesh + 640; + -2.000000;-1.000000; 6.750000;, + -2.000000;-1.000000;13.500000;, + 2.000000;-1.000000;13.500000;, + 2.000000;-1.000000; 6.750000;, + -2.000000; 1.000000; 6.750000;, + -2.000000; 1.000000;13.500000;, + -2.000000;-1.000000;13.500000;, + -2.000000;-1.000000; 6.750000;, + -2.000000; 1.000000;13.500000;, + -2.000000; 1.000000; 6.750000;, + 2.000000; 1.000000; 6.750000;, + 2.000000; 1.000000;13.500000;, + -2.000000;-1.000000; 6.750000;, + 2.000000;-1.000000; 6.750000;, + 2.000000; 1.000000; 6.750000;, + -2.000000; 1.000000; 6.750000;, + -2.000000; 1.000000;13.500000;, + 2.000000; 1.000000;13.500000;, + 2.000000;-1.000000;13.500000;, + -2.000000;-1.000000;13.500000;, + 0.000000; 1.000000; 6.750000;, + 0.000000;-1.000000; 6.750000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -2.000000;-1.000000;13.500000;, + -2.000000;-1.000000; 6.750000;, + -4.000000;-1.000000; 6.750000;, + -4.000000;-1.000000;13.500000;, + -2.000000; 1.000000;13.500000;, + -2.000000; 1.000000; 6.750000;, + -2.000000;-1.000000; 6.750000;, + -2.000000;-1.000000;13.500000;, + 0.000000; 1.000000; 0.000000;, + -2.000000; 1.000000; 0.000000;, + -2.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -2.000000;-1.000000; 6.750000;, + -2.000000;-1.000000; 0.000000;, + -2.000000; 1.000000; 0.000000;, + -2.000000; 1.000000; 6.750000;, + 2.000000;-2.000000;17.500000;, + 2.000000;-2.000000;13.500000;, + -2.000000;-2.000000;13.500000;, + -2.000000;-2.000000;17.500000;, + -2.000000;-2.000000;17.500000;, + -2.000000;-2.000000;13.500000;, + -2.000000; 2.000000;13.500000;, + -2.000000; 2.000000;17.500000;, + -2.000000; 2.000000;17.500000;, + -2.000000; 2.000000;13.500000;, + 2.000000; 2.000000;13.500000;, + 2.000000; 2.000000;17.500000;, + 2.000000; 2.000000;13.500000;, + -2.000000; 2.000000;13.500000;, + -2.000000;-2.000000;13.500000;, + 2.000000;-2.000000;13.500000;, + -2.000000; 2.000000;17.500000;, + 2.000000; 2.000000;17.500000;, + 2.000000;-2.000000;17.500000;, + -2.000000;-2.000000;17.500000;, + 0.000000;-1.000000; 6.750000;, + -0.000000;-1.000000; 0.000000;, + -2.000000;-1.000000; 0.000000;, + -2.000000;-1.000000; 6.750000;, + 2.000000; 1.000000; 6.750000;, + 0.000000; 1.000000; 6.750000;, + 0.000000; 1.000000; 0.000000;, + 2.000000; 1.000000; 0.000000;, + -2.000000; 1.000000; 6.750000;, + -2.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 6.750000;, + 2.000000; 1.000000; 6.750000;, + 2.000000;-1.000000; 6.750000;, + 4.000000;-1.000000; 6.750000;, + 4.000000; 1.000000; 6.750000;, + 4.000000; 1.000000;13.500000;, + 4.000000;-1.000000;13.500000;, + 2.000000;-1.000000;13.500000;, + 2.000000; 1.000000;13.500000;, + 0.000000;-1.000000; 6.750000;, + 2.000000;-1.000000; 6.750000;, + 2.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 1.000000; 6.750000;, + 0.000000; 1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 6.750000;, + 2.000000;-1.000000; 6.750000;, + 2.000000; 1.000000; 6.750000;, + 2.000000; 1.000000; 0.000000;, + 2.000000;-1.000000; 0.000000;, + 2.000000;-1.000000;13.500000;, + 2.000000; 1.000000;13.500000;, + 2.000000; 1.000000; 6.750000;, + 2.000000;-1.000000; 6.750000;, + 2.000000;-2.000000;17.500000;, + 2.000000; 2.000000;17.500000;, + 2.000000; 2.000000;13.500000;, + 2.000000;-2.000000;13.500000;, + -2.000000; 1.000000; 6.750000;, + 0.000000; 1.000000; 6.750000;, + 0.000000;-1.000000; 6.750000;, + -2.000000;-1.000000; 6.750000;, + -4.000000; 1.000000;13.500000;, + -4.000000; 1.000000; 6.750000;, + -2.000000; 1.000000; 6.750000;, + -2.000000; 1.000000;13.500000;, + -4.000000;-1.000000;13.500000;, + -4.000000;-1.000000; 6.750000;, + -4.000000; 1.000000; 6.750000;, + -4.000000; 1.000000;13.500000;, + 4.000000;-1.000000;13.500000;, + 4.000000; 1.000000;13.500000;, + 4.000000; 1.000000; 6.750000;, + 4.000000;-1.000000; 6.750000;, + -4.000000; 1.000000;13.500000;, + -2.000000; 1.000000;13.500000;, + -2.000000;-1.000000;13.500000;, + -4.000000;-1.000000;13.500000;, + 4.000000; 1.000000;13.500000;, + 2.000000; 1.000000;13.500000;, + 2.000000; 1.000000; 6.750000;, + 4.000000; 1.000000; 6.750000;, + 0.000000; 1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 2.000000;-1.000000; 0.000000;, + 2.000000; 1.000000; 0.000000;, + -2.000000; 1.000000; 6.750000;, + -4.000000; 1.000000; 6.750000;, + -4.000000;-1.000000; 6.750000;, + -2.000000;-1.000000; 6.750000;, + 2.000000;-1.000000;13.500000;, + 4.000000;-1.000000;13.500000;, + 4.000000;-1.000000; 6.750000;, + 2.000000;-1.000000; 6.750000;, + 2.000000; 1.000000; 6.750000;, + 2.000000;-1.000000; 6.750000;, + 0.000000;-1.000000; 6.750000;, + 0.000000; 1.000000; 6.750000;, + 2.200000;-2.200000;17.700001;, + 2.200000;-2.200000;13.300000;, + -2.200000;-2.200000;13.300000;, + -2.200000;-2.200000;17.700001;, + -2.200000;-2.200000;17.700001;, + -2.200000;-2.200000;13.300000;, + -2.200000; 2.200000;13.300000;, + -2.200000; 2.200000;17.700001;, + -2.200000; 2.200000;17.700001;, + -2.200000; 2.200000;13.300000;, + 2.200000; 2.200000;13.300000;, + 2.200000; 2.200000;17.700001;, + 2.200000; 2.200000;13.300000;, + -2.200000; 2.200000;13.300000;, + -2.200000;-2.200000;13.300000;, + 2.200000;-2.200000;13.300000;, + -2.200000; 2.200000;17.700001;, + 2.200000; 2.200000;17.700001;, + 2.200000;-2.200000;17.700001;, + -2.200000;-2.200000;17.700001;, + 2.200000;-2.200000;17.700001;, + 2.200000; 2.200000;17.700001;, + 2.200000; 2.200000;13.300000;, + 2.200000;-2.200000;13.300000;, + 2.200000;-1.200000;13.700000;, + 2.200000; 1.200000;13.700000;, + 2.200000; 1.200000; 6.600000;, + 2.200000;-1.200000; 6.600000;, + -2.200000; 1.200000;13.700000;, + 2.200000; 1.200000;13.700000;, + 2.200000;-1.200000;13.700000;, + -2.200000;-1.200000;13.700000;, + -2.200000;-1.200000; 6.600000;, + 2.200000;-1.200000; 6.600000;, + 2.200000; 1.200000; 6.600000;, + -2.200000; 1.200000; 6.600000;, + -2.200000; 1.200000;13.700000;, + -2.200000; 1.200000; 6.600000;, + 2.200000; 1.200000; 6.600000;, + 2.200000; 1.200000;13.700000;, + -2.200000; 1.200000; 6.600000;, + -2.200000; 1.200000;13.700000;, + -2.200000;-1.200000;13.700000;, + -2.200000;-1.200000; 6.600000;, + -2.200000;-1.200000; 6.600000;, + -2.200000;-1.200000;13.700000;, + 2.200000;-1.200000;13.700000;, + 2.200000;-1.200000; 6.600000;, + 2.300000;-2.300000;17.799999;, + 2.300000; 2.300000;17.799999;, + 2.300000; 2.300000;13.200000;, + 2.300000;-2.300000;13.200000;, + -2.300000; 2.300000;17.799999;, + 2.300000; 2.300000;17.799999;, + 2.300000;-2.300000;17.799999;, + -2.300000;-2.300000;17.799999;, + 2.300000; 2.300000;13.200000;, + -2.300000; 2.300000;13.200000;, + -2.300000;-2.300000;13.200000;, + 2.300000;-2.300000;13.200000;, + -2.300000; 2.300000;17.799999;, + -2.300000; 2.300000;13.200000;, + 2.300000; 2.300000;13.200000;, + 2.300000; 2.300000;17.799999;, + -2.300000;-2.300000;17.799999;, + -2.300000;-2.300000;13.200000;, + -2.300000; 2.300000;13.200000;, + -2.300000; 2.300000;17.799999;, + 2.300000;-2.300000;17.799999;, + 2.300000;-2.300000;13.200000;, + -2.300000;-2.300000;13.200000;, + -2.300000;-2.300000;17.799999;, + -1.800000; 1.300000; 6.500000;, + -4.200000; 1.300000; 6.500000;, + -4.200000;-1.300000; 6.500000;, + -1.800000;-1.300000; 6.500000;, + -4.200000; 1.300000;13.800000;, + -1.800000; 1.300000;13.800000;, + -1.800000;-1.300000;13.800000;, + -4.200000;-1.300000;13.800000;, + -4.200000;-1.300000;13.800000;, + -4.200000;-1.300000; 6.500000;, + -4.200000; 1.300000; 6.500000;, + -4.200000; 1.300000;13.800000;, + -4.200000; 1.300000;13.800000;, + -4.200000; 1.300000; 6.500000;, + -1.800000; 1.300000; 6.500000;, + -1.800000; 1.300000;13.800000;, + -1.800000; 1.300000;13.800000;, + -1.800000; 1.300000; 6.500000;, + -1.800000;-1.300000; 6.500000;, + -1.800000;-1.300000;13.800000;, + -1.800000;-1.300000;13.800000;, + -1.800000;-1.300000; 6.500000;, + -4.200000;-1.300000; 6.500000;, + -4.200000;-1.300000;13.800000;, + 1.800000;-1.300000;13.800000;, + 4.200000;-1.300000;13.800000;, + 4.200000;-1.300000; 6.500000;, + 1.800000;-1.300000; 6.500000;, + 1.800000; 1.300000;13.800000;, + 1.800000;-1.300000;13.800000;, + 1.800000;-1.300000; 6.500000;, + 1.800000; 1.300000; 6.500000;, + 4.200000; 1.300000;13.800000;, + 1.800000; 1.300000;13.800000;, + 1.800000; 1.300000; 6.500000;, + 4.200000; 1.300000; 6.500000;, + 4.200000;-1.300000;13.800000;, + 4.200000; 1.300000;13.800000;, + 4.200000; 1.300000; 6.500000;, + 4.200000;-1.300000; 6.500000;, + 4.200000; 1.300000;13.800000;, + 4.200000;-1.300000;13.800000;, + 1.800000;-1.300000;13.800000;, + 1.800000; 1.300000;13.800000;, + 1.800000; 1.300000; 6.500000;, + 1.800000;-1.300000; 6.500000;, + 4.200000;-1.300000; 6.500000;, + 4.200000; 1.300000; 6.500000;, + 2.200000; 1.200000; 6.900000;, + 2.200000;-1.200000; 6.900000;, + -0.200000;-1.200000; 6.900000;, + -0.200000; 1.200000; 6.900000;, + -0.200000; 1.200000;-0.100000;, + -0.200000;-1.200000;-0.100000;, + 2.200000;-1.200000;-0.100000;, + 2.200000; 1.200000;-0.100000;, + 2.200000;-1.200000; 6.900000;, + 2.200000; 1.200000; 6.900000;, + 2.200000; 1.200000;-0.100000;, + 2.200000;-1.200000;-0.100000;, + -0.200000;-1.200000; 6.900000;, + 2.200000;-1.200000; 6.900000;, + 2.200000;-1.200000;-0.100000;, + -0.200000;-1.200000;-0.100000;, + 2.200000; 1.200000; 6.900000;, + -0.200000; 1.200000; 6.900000;, + -0.200000; 1.200000;-0.100000;, + 2.200000; 1.200000;-0.100000;, + -0.200000; 1.200000; 6.900000;, + -0.200000;-1.200000; 6.900000;, + -0.200000;-1.200000;-0.100000;, + -0.200000; 1.200000;-0.100000;, + -2.200000; 1.200000; 6.900000;, + 0.200000; 1.200000; 6.900000;, + 0.200000;-1.200000; 6.900000;, + -2.200000;-1.200000; 6.900000;, + 0.200000; 1.200000; 6.900000;, + 0.200000; 1.200000;-0.100000;, + 0.200000;-1.200000;-0.100000;, + 0.200000;-1.200000; 6.900000;, + -2.200000; 1.200000; 6.900000;, + -2.200000; 1.200000;-0.100000;, + 0.200000; 1.200000;-0.100000;, + 0.200000; 1.200000; 6.900000;, + 0.200000;-1.200000; 6.900000;, + 0.200000;-1.200000;-0.100000;, + -2.200000;-1.200000;-0.100000;, + -2.200000;-1.200000; 6.900000;, + -2.200000;-1.200000; 6.900000;, + -2.200000;-1.200000;-0.100000;, + -2.200000; 1.200000;-0.100000;, + -2.200000; 1.200000; 6.900000;, + 0.200000; 1.200000;-0.100000;, + -2.200000; 1.200000;-0.100000;, + -2.200000;-1.200000;-0.100000;, + 0.200000;-1.200000;-0.100000;, + 2.999526;-1.768240; 7.874997;, + 2.999526; 2.363148; 3.741216;, + 2.999526; 6.501951; 7.867590;, + 2.999526; 2.370564;12.001370;, + 3.000474; 2.363147; 3.741217;, + 3.000474;-1.768240; 7.874997;, + 3.000474; 2.370562;12.001370;, + 3.000474; 6.501950; 7.867591;, + 0.400000; 1.400000;-0.200000;, + -2.400000; 1.400000;-0.200000;, + -2.400000;-1.400000;-0.200000;, + 0.400000;-1.400000;-0.200000;, + -2.400000;-1.400000; 3.375000;, + -2.400000;-1.400000;-0.200000;, + -2.400000; 1.400000;-0.200000;, + -2.400000; 1.400000; 3.375000;, + 0.400000;-1.400000; 3.375000;, + 0.400000;-1.400000;-0.200000;, + -2.400000;-1.400000;-0.200000;, + -2.400000;-1.400000; 3.375000;, + -2.400000; 1.400000; 3.375000;, + -2.400000; 1.400000;-0.200000;, + 0.400000; 1.400000;-0.200000;, + 0.400000; 1.400000; 3.375000;, + 0.400000; 1.400000; 3.375000;, + 0.400000; 1.400000;-0.200000;, + 0.400000;-1.400000;-0.200000;, + 0.400000;-1.400000; 3.375000;, + -2.400000; 1.400000; 3.375000;, + 0.400000; 1.400000; 3.375000;, + 0.400000;-1.400000; 3.375000;, + -2.400000;-1.400000; 3.375000;, + -0.400000; 1.400000; 3.375000;, + -0.400000;-1.400000; 3.375000;, + -0.400000;-1.400000;-0.200000;, + -0.400000; 1.400000;-0.200000;, + 2.400000; 1.400000; 3.375000;, + -0.400000; 1.400000; 3.375000;, + -0.400000; 1.400000;-0.200000;, + 2.400000; 1.400000;-0.200000;, + -0.400000;-1.400000; 3.375000;, + 2.400000;-1.400000; 3.375000;, + 2.400000;-1.400000;-0.200000;, + -0.400000;-1.400000;-0.200000;, + 2.400000;-1.400000; 3.375000;, + 2.400000; 1.400000; 3.375000;, + 2.400000; 1.400000;-0.200000;, + 2.400000;-1.400000;-0.200000;, + -0.400000; 1.400000;-0.200000;, + -0.400000;-1.400000;-0.200000;, + 2.400000;-1.400000;-0.200000;, + 2.400000; 1.400000;-0.200000;, + 2.400000; 1.400000; 3.375000;, + 2.400000;-1.400000; 3.375000;, + -0.400000;-1.400000; 3.375000;, + -0.400000; 1.400000; 3.375000;, + 2.000000; 1.000000;13.500000;, + 2.000000;-1.000000;13.500000;, + 2.000000;-1.000000; 6.750000;, + 2.000000; 1.000000; 6.750000;, + -2.516912; 4.126709; 3.974458;, + -4.677510;-1.995376; 3.905863;, + -5.773928;-1.671677;10.296955;, + -3.613330; 4.450407;10.365550;, + -4.689745;-2.062882; 3.837648;, + -2.483645; 4.188131; 3.907688;, + -3.603154; 4.518647;10.433374;, + -5.809254;-1.732366;10.363337;, + 3.095380; 2.363147; 3.741217;, + 3.095380;-1.768240; 7.874997;, + 3.095380; 2.370562;12.001370;, + 3.095380; 6.501950; 7.867591;, + 3.094431;-1.768240; 7.874997;, + 3.094431; 2.363148; 3.741216;, + 3.094431; 6.501951; 7.867590;, + 3.094431; 2.370564;12.001370;, + 3.009016;-1.768240; 7.874997;, + 3.009016; 2.363148; 3.741216;, + 3.009016; 6.501951; 7.867590;, + 3.009016; 2.370564;12.001370;, + 3.009965; 2.363147; 3.741217;, + 3.009965;-1.768240; 7.874997;, + 3.009965; 2.370562;12.001370;, + 3.009965; 6.501950; 7.867591;, + 3.019455; 2.363147; 3.741217;, + 3.019455;-1.768240; 7.874997;, + 3.019455; 2.370562;12.001370;, + 3.019455; 6.501950; 7.867591;, + 3.018507;-1.768240; 7.874997;, + 3.018507; 2.363148; 3.741216;, + 3.018507; 6.501951; 7.867590;, + 3.018507; 2.370564;12.001370;, + 3.027997;-1.768240; 7.874997;, + 3.027997; 2.363148; 3.741216;, + 3.027997; 6.501951; 7.867590;, + 3.027997; 2.370564;12.001370;, + 3.028946; 2.363147; 3.741217;, + 3.028946;-1.768240; 7.874997;, + 3.028946; 2.370562;12.001370;, + 3.028946; 6.501950; 7.867591;, + 3.038437; 2.363147; 3.741217;, + 3.038437;-1.768240; 7.874997;, + 3.038437; 2.370562;12.001370;, + 3.038437; 6.501950; 7.867591;, + 3.037488;-1.768240; 7.874997;, + 3.037488; 2.363148; 3.741216;, + 3.037488; 6.501951; 7.867590;, + 3.037488; 2.370564;12.001370;, + 3.046978;-1.768240; 7.874997;, + 3.046978; 2.363148; 3.741216;, + 3.046978; 6.501951; 7.867590;, + 3.046978; 2.370564;12.001370;, + 3.047928; 2.363147; 3.741217;, + 3.047928;-1.768240; 7.874997;, + 3.047928; 2.370562;12.001370;, + 3.047928; 6.501950; 7.867591;, + 3.057418; 2.363147; 3.741217;, + 3.057418;-1.768240; 7.874997;, + 3.057418; 2.370562;12.001370;, + 3.057418; 6.501950; 7.867591;, + 3.056469;-1.768240; 7.874997;, + 3.056469; 2.363148; 3.741216;, + 3.056469; 6.501951; 7.867590;, + 3.056469; 2.370564;12.001370;, + 3.065959;-1.768240; 7.874997;, + 3.065959; 2.363148; 3.741216;, + 3.065959; 6.501951; 7.867590;, + 3.065959; 2.370564;12.001370;, + 3.066908; 2.363147; 3.741217;, + 3.066908;-1.768240; 7.874997;, + 3.066908; 2.370562;12.001370;, + 3.066908; 6.501950; 7.867591;, + 3.076399; 2.363147; 3.741217;, + 3.076399;-1.768240; 7.874997;, + 3.076399; 2.370562;12.001370;, + 3.076399; 6.501950; 7.867591;, + 3.075450;-1.768240; 7.874997;, + 3.075450; 2.363148; 3.741216;, + 3.075450; 6.501951; 7.867590;, + 3.075450; 2.370564;12.001370;, + 3.084941;-1.768240; 7.874997;, + 3.084941; 2.363148; 3.741216;, + 3.084941; 6.501951; 7.867590;, + 3.084941; 2.370564;12.001370;, + 3.085890; 2.363147; 3.741217;, + 3.085890;-1.768240; 7.874997;, + 3.085890; 2.370562;12.001370;, + 3.085890; 6.501950; 7.867591;, + 2.905569; 2.363147; 3.741217;, + 2.905569;-1.768240; 7.874997;, + 2.905569; 2.370562;12.001370;, + 2.905569; 6.501950; 7.867591;, + 2.904620;-1.768240; 7.874997;, + 2.904620; 2.363148; 3.741216;, + 2.904620; 6.501951; 7.867590;, + 2.904620; 2.370564;12.001370;, + 2.914111;-1.768240; 7.874997;, + 2.914111; 2.363148; 3.741216;, + 2.914111; 6.501951; 7.867590;, + 2.914111; 2.370564;12.001370;, + 2.915060; 2.363147; 3.741217;, + 2.915060;-1.768240; 7.874997;, + 2.915060; 2.370562;12.001370;, + 2.915060; 6.501950; 7.867591;, + 2.924550; 2.363147; 3.741217;, + 2.924550;-1.768240; 7.874997;, + 2.924550; 2.370562;12.001370;, + 2.924550; 6.501950; 7.867591;, + 2.923601;-1.768240; 7.874997;, + 2.923601; 2.363148; 3.741216;, + 2.923601; 6.501951; 7.867590;, + 2.923601; 2.370564;12.001370;, + 2.933092;-1.768240; 7.874997;, + 2.933092; 2.363148; 3.741216;, + 2.933092; 6.501951; 7.867590;, + 2.933092; 2.370564;12.001370;, + 2.934041; 2.363147; 3.741217;, + 2.934041;-1.768240; 7.874997;, + 2.934041; 2.370562;12.001370;, + 2.934041; 6.501950; 7.867591;, + 2.943531; 2.363147; 3.741217;, + 2.943531;-1.768240; 7.874997;, + 2.943531; 2.370562;12.001370;, + 2.943531; 6.501950; 7.867591;, + 2.942582;-1.768240; 7.874997;, + 2.942582; 2.363148; 3.741216;, + 2.942582; 6.501951; 7.867590;, + 2.942582; 2.370564;12.001370;, + 2.952072;-1.768240; 7.874997;, + 2.952072; 2.363148; 3.741216;, + 2.952072; 6.501951; 7.867590;, + 2.952072; 2.370564;12.001370;, + 2.953022; 2.363147; 3.741217;, + 2.953022;-1.768240; 7.874997;, + 2.953022; 2.370562;12.001370;, + 2.953022; 6.501950; 7.867591;, + 2.962512; 2.363147; 3.741217;, + 2.962512;-1.768240; 7.874997;, + 2.962512; 2.370562;12.001370;, + 2.962512; 6.501950; 7.867591;, + 2.961563;-1.768240; 7.874997;, + 2.961563; 2.363148; 3.741216;, + 2.961563; 6.501951; 7.867590;, + 2.961563; 2.370564;12.001370;, + 2.971054;-1.768240; 7.874997;, + 2.971054; 2.363148; 3.741216;, + 2.971054; 6.501951; 7.867590;, + 2.971054; 2.370564;12.001370;, + 2.972003; 2.363147; 3.741217;, + 2.972003;-1.768240; 7.874997;, + 2.972003; 2.370562;12.001370;, + 2.972003; 6.501950; 7.867591;, + 2.981493; 2.363147; 3.741217;, + 2.981493;-1.768240; 7.874997;, + 2.981493; 2.370562;12.001370;, + 2.981493; 6.501950; 7.867591;, + 2.980544;-1.768240; 7.874997;, + 2.980544; 2.363148; 3.741216;, + 2.980544; 6.501951; 7.867590;, + 2.980544; 2.370564;12.001370;, + 2.990035;-1.768240; 7.874997;, + 2.990035; 2.363148; 3.741216;, + 2.990035; 6.501951; 7.867590;, + 2.990035; 2.370564;12.001370;, + 2.990984; 2.363147; 3.741217;, + 2.990984;-1.768240; 7.874997;, + 2.990984; 2.370562;12.001370;, + 2.990984; 6.501950; 7.867591;, + 2.896078; 2.363147; 3.741217;, + 2.896078;-1.768240; 7.874997;, + 2.896078; 2.370562;12.001370;, + 2.896078; 6.501950; 7.867591;, + 2.895129;-1.768240; 7.874997;, + 2.895129; 2.363148; 3.741216;, + 2.895129; 6.501951; 7.867590;, + 2.895129; 2.370564;12.001370;, + 2.885639;-1.768240; 7.874997;, + 2.885639; 2.363148; 3.741216;, + 2.885639; 6.501951; 7.867590;, + 2.885639; 2.370564;12.001370;, + 2.886588; 2.363147; 3.741217;, + 2.886588;-1.768240; 7.874997;, + 2.886588; 2.370562;12.001370;, + 2.886588; 6.501950; 7.867591;, + 2.877097; 2.363147; 3.741217;, + 2.877097;-1.768240; 7.874997;, + 2.877097; 2.370562;12.001370;, + 2.877097; 6.501950; 7.867591;, + 2.876148;-1.768240; 7.874997;, + 2.876148; 2.363148; 3.741216;, + 2.876148; 6.501951; 7.867590;, + 2.876148; 2.370564;12.001370;, + 2.866657;-1.768240; 7.874997;, + 2.866657; 2.363148; 3.741216;, + 2.866657; 6.501951; 7.867590;, + 2.866657; 2.370564;12.001370;, + 2.867607; 2.363147; 3.741217;, + 2.867607;-1.768240; 7.874997;, + 2.867607; 2.370562;12.001370;, + 2.867607; 6.501950; 7.867591;, + 2.858115; 2.363147; 3.741217;, + 2.858115;-1.768240; 7.874997;, + 2.858115; 2.370562;12.001370;, + 2.858115; 6.501950; 7.867591;, + 2.857167;-1.768240; 7.874997;, + 2.857167; 2.363148; 3.741216;, + 2.857167; 6.501951; 7.867590;, + 2.857167; 2.370564;12.001370;, + 3.103921;-1.768240; 7.874997;, + 3.103921; 2.363148; 3.741216;, + 3.103921; 6.501951; 7.867590;, + 3.103921; 2.370564;12.001370;, + 3.104871; 2.363147; 3.741217;, + 3.104871;-1.768240; 7.874997;, + 3.104871; 2.370562;12.001370;, + 3.104871; 6.501950; 7.867591;, + 3.114362; 2.363147; 3.741217;, + 3.114362;-1.768240; 7.874997;, + 3.114362; 2.370562;12.001370;, + 3.114362; 6.501950; 7.867591;, + 3.113413;-1.768240; 7.874997;, + 3.113413; 2.363148; 3.741216;, + 3.113413; 6.501951; 7.867590;, + 3.113413; 2.370564;12.001370;, + 3.122903;-1.768240; 7.874997;, + 3.122903; 2.363148; 3.741216;, + 3.122903; 6.501951; 7.867590;, + 3.122903; 2.370564;12.001370;, + 3.123852; 2.363147; 3.741217;, + 3.123852;-1.768240; 7.874997;, + 3.123852; 2.370562;12.001370;, + 3.123852; 6.501950; 7.867591;, + 3.133343; 2.363147; 3.741217;, + 3.133343;-1.768240; 7.874997;, + 3.133343; 2.370562;12.001370;, + 3.133343; 6.501950; 7.867591;, + 3.132394;-1.768240; 7.874997;, + 3.132394; 2.363148; 3.741216;, + 3.132394; 6.501951; 7.867590;, + 3.132394; 2.370564;12.001370;, + 3.141884;-1.768240; 7.874997;, + 3.141884; 2.363148; 3.741216;, + 3.141884; 6.501951; 7.867590;, + 3.141884; 2.370564;12.001370;, + 3.142833; 2.363147; 3.741217;, + 3.142833;-1.768240; 7.874997;, + 3.142833; 2.370562;12.001370;, + 3.142833; 6.501950; 7.867591;, + -2.120000;-1.550000; 6.600000;, + -2.120000;-1.550000;13.500000;, + 2.120000;-1.550000;13.500000;, + 2.120000;-1.550000; 6.600000;, + -2.120000;-1.150000; 6.600000;, + -2.120000;-1.150000;13.500000;, + -2.120000;-1.550000;13.500000;, + -2.120000;-1.550000; 6.600000;, + -2.120000;-1.150000;13.500000;, + -2.120000;-1.150000; 6.600000;, + 2.120000;-1.150000; 6.600000;, + 2.120000;-1.150000;13.500000;, + -2.120000;-1.550000; 6.600000;, + 2.120000;-1.550000; 6.600000;, + 2.120000;-1.150000; 6.600000;, + -2.120000;-1.150000; 6.600000;, + -2.120000;-1.150000;13.500000;, + 2.120000;-1.150000;13.500000;, + 2.120000;-1.550000;13.500000;, + -2.120000;-1.550000;13.500000;, + 2.120000;-1.550000;13.500000;, + 2.120000;-1.150000;13.500000;, + 2.120000;-1.150000; 6.600000;, + 2.120000;-1.550000; 6.600000;; + 160; + 4;0,1,2,3;, + 4;4,5,6,7;, + 4;8,9,10,11;, + 4;12,13,14,15;, + 4;16,17,18,19;, + 4;20,21,22,23;, + 4;24,25,26,27;, + 4;28,29,30,31;, + 4;32,33,34,35;, + 4;36,37,38,39;, + 4;40,41,42,43;, + 4;44,45,46,47;, + 4;48,49,50,51;, + 4;52,53,54,55;, + 4;56,57,58,59;, + 4;60,61,62,63;, + 4;64,65,66,67;, + 4;68,69,70,71;, + 4;72,73,74,75;, + 4;76,77,78,79;, + 4;80,81,82,83;, + 4;84,85,86,87;, + 4;88,89,90,91;, + 4;92,93,94,95;, + 4;96,97,98,99;, + 4;100,101,102,103;, + 4;104,105,106,107;, + 4;108,109,110,111;, + 4;112,113,114,115;, + 4;116,117,118,119;, + 4;120,121,122,123;, + 4;124,125,126,127;, + 4;128,129,130,131;, + 4;132,133,134,135;, + 4;136,137,138,139;, + 4;140,141,142,143;, + 4;144,145,146,147;, + 4;148,149,150,151;, + 4;152,153,154,155;, + 4;156,157,158,159;, + 4;160,161,162,163;, + 4;164,165,166,167;, + 4;168,169,170,171;, + 4;172,173,174,175;, + 4;176,177,178,179;, + 4;180,181,182,183;, + 4;184,185,186,187;, + 4;188,189,190,191;, + 4;192,193,194,195;, + 4;196,197,198,199;, + 4;200,201,202,203;, + 4;204,205,206,207;, + 4;208,209,210,211;, + 4;212,213,214,215;, + 4;216,217,218,219;, + 4;220,221,222,223;, + 4;224,225,226,227;, + 4;228,229,230,231;, + 4;232,233,234,235;, + 4;236,237,238,239;, + 4;240,241,242,243;, + 4;244,245,246,247;, + 4;248,249,250,251;, + 4;252,253,254,255;, + 4;256,257,258,259;, + 4;260,261,262,263;, + 4;264,265,266,267;, + 4;268,269,270,271;, + 4;272,273,274,275;, + 4;276,277,278,279;, + 4;280,281,282,283;, + 4;284,285,286,287;, + 4;288,289,290,291;, + 4;292,293,294,295;, + 4;296,297,298,299;, + 4;300,301,302,303;, + 4;304,305,306,307;, + 4;308,309,310,311;, + 4;312,313,314,315;, + 4;316,317,318,319;, + 4;320,321,322,323;, + 4;324,325,326,327;, + 4;328,329,330,331;, + 4;332,333,334,335;, + 4;336,337,338,339;, + 4;340,341,342,343;, + 4;344,345,346,347;, + 4;348,349,350,351;, + 4;352,353,354,355;, + 4;356,357,358,359;, + 4;360,361,362,363;, + 4;364,365,366,367;, + 4;368,369,370,371;, + 4;372,373,374,375;, + 4;376,377,378,379;, + 4;380,381,382,383;, + 4;384,385,386,387;, + 4;388,389,390,391;, + 4;392,393,394,395;, + 4;396,397,398,399;, + 4;400,401,402,403;, + 4;404,405,406,407;, + 4;408,409,410,411;, + 4;412,413,414,415;, + 4;416,417,418,419;, + 4;420,421,422,423;, + 4;424,425,426,427;, + 4;428,429,430,431;, + 4;432,433,434,435;, + 4;436,437,438,439;, + 4;440,441,442,443;, + 4;444,445,446,447;, + 4;448,449,450,451;, + 4;452,453,454,455;, + 4;456,457,458,459;, + 4;460,461,462,463;, + 4;464,465,466,467;, + 4;468,469,470,471;, + 4;472,473,474,475;, + 4;476,477,478,479;, + 4;480,481,482,483;, + 4;484,485,486,487;, + 4;488,489,490,491;, + 4;492,493,494,495;, + 4;496,497,498,499;, + 4;500,501,502,503;, + 4;504,505,506,507;, + 4;508,509,510,511;, + 4;512,513,514,515;, + 4;516,517,518,519;, + 4;520,521,522,523;, + 4;524,525,526,527;, + 4;528,529,530,531;, + 4;532,533,534,535;, + 4;536,537,538,539;, + 4;540,541,542,543;, + 4;544,545,546,547;, + 4;548,549,550,551;, + 4;552,553,554,555;, + 4;556,557,558,559;, + 4;560,561,562,563;, + 4;564,565,566,567;, + 4;568,569,570,571;, + 4;572,573,574,575;, + 4;576,577,578,579;, + 4;580,581,582,583;, + 4;584,585,586,587;, + 4;588,589,590,591;, + 4;592,593,594,595;, + 4;596,597,598,599;, + 4;600,601,602,603;, + 4;604,605,606,607;, + 4;608,609,610,611;, + 4;612,613,614,615;, + 4;616,617,618,619;, + 4;620,621,622,623;, + 4;624,625,626,627;, + 4;628,629,630,631;, + 4;632,633,634,635;, + 4;636,637,638,639;; + MeshNormals { // Player normals + 160; + 0.000000; 1.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000;-1.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000;-1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + -0.927686; 0.329368;-0.175830;, + 0.927686;-0.329368; 0.175830;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;; + 160; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;, + 4;6,6,6,6;, + 4;7,7,7,7;, + 4;8,8,8,8;, + 4;9,9,9,9;, + 4;10,10,10,10;, + 4;11,11,11,11;, + 4;12,12,12,12;, + 4;13,13,13,13;, + 4;14,14,14,14;, + 4;15,15,15,15;, + 4;16,16,16,16;, + 4;17,17,17,17;, + 4;18,18,18,18;, + 4;19,19,19,19;, + 4;20,20,20,20;, + 4;21,21,21,21;, + 4;22,22,22,22;, + 4;23,23,23,23;, + 4;24,24,24,24;, + 4;25,25,25,25;, + 4;26,26,26,26;, + 4;27,27,27,27;, + 4;28,28,28,28;, + 4;29,29,29,29;, + 4;30,30,30,30;, + 4;31,31,31,31;, + 4;32,32,32,32;, + 4;33,33,33,33;, + 4;34,34,34,34;, + 4;35,35,35,35;, + 4;36,36,36,36;, + 4;37,37,37,37;, + 4;38,38,38,38;, + 4;39,39,39,39;, + 4;40,40,40,40;, + 4;41,41,41,41;, + 4;42,42,42,42;, + 4;43,43,43,43;, + 4;44,44,44,44;, + 4;45,45,45,45;, + 4;46,46,46,46;, + 4;47,47,47,47;, + 4;48,48,48,48;, + 4;49,49,49,49;, + 4;50,50,50,50;, + 4;51,51,51,51;, + 4;52,52,52,52;, + 4;53,53,53,53;, + 4;54,54,54,54;, + 4;55,55,55,55;, + 4;56,56,56,56;, + 4;57,57,57,57;, + 4;58,58,58,58;, + 4;59,59,59,59;, + 4;60,60,60,60;, + 4;61,61,61,61;, + 4;62,62,62,62;, + 4;63,63,63,63;, + 4;64,64,64,64;, + 4;65,65,65,65;, + 4;66,66,66,66;, + 4;67,67,67,67;, + 4;68,68,68,68;, + 4;69,69,69,69;, + 4;70,70,70,70;, + 4;71,71,71,71;, + 4;72,72,72,72;, + 4;73,73,73,73;, + 4;74,74,74,74;, + 4;75,75,75,75;, + 4;76,76,76,76;, + 4;77,77,77,77;, + 4;78,78,78,78;, + 4;79,79,79,79;, + 4;80,80,80,80;, + 4;81,81,81,81;, + 4;82,82,82,82;, + 4;83,83,83,83;, + 4;84,84,84,84;, + 4;85,85,85,85;, + 4;86,86,86,86;, + 4;87,87,87,87;, + 4;88,88,88,88;, + 4;89,89,89,89;, + 4;90,90,90,90;, + 4;91,91,91,91;, + 4;92,92,92,92;, + 4;93,93,93,93;, + 4;94,94,94,94;, + 4;95,95,95,95;, + 4;96,96,96,96;, + 4;97,97,97,97;, + 4;98,98,98,98;, + 4;99,99,99,99;, + 4;100,100,100,100;, + 4;101,101,101,101;, + 4;102,102,102,102;, + 4;103,103,103,103;, + 4;104,104,104,104;, + 4;105,105,105,105;, + 4;106,106,106,106;, + 4;107,107,107,107;, + 4;108,108,108,108;, + 4;109,109,109,109;, + 4;110,110,110,110;, + 4;111,111,111,111;, + 4;112,112,112,112;, + 4;113,113,113,113;, + 4;114,114,114,114;, + 4;115,115,115,115;, + 4;116,116,116,116;, + 4;117,117,117,117;, + 4;118,118,118,118;, + 4;119,119,119,119;, + 4;120,120,120,120;, + 4;121,121,121,121;, + 4;122,122,122,122;, + 4;123,123,123,123;, + 4;124,124,124,124;, + 4;125,125,125,125;, + 4;126,126,126,126;, + 4;127,127,127,127;, + 4;128,128,128,128;, + 4;129,129,129,129;, + 4;130,130,130,130;, + 4;131,131,131,131;, + 4;132,132,132,132;, + 4;133,133,133,133;, + 4;134,134,134,134;, + 4;135,135,135,135;, + 4;136,136,136,136;, + 4;137,137,137,137;, + 4;138,138,138,138;, + 4;139,139,139,139;, + 4;140,140,140,140;, + 4;141,141,141,141;, + 4;142,142,142,142;, + 4;143,143,143,143;, + 4;144,144,144,144;, + 4;145,145,145,145;, + 4;146,146,146,146;, + 4;147,147,147,147;, + 4;148,148,148,148;, + 4;149,149,149,149;, + 4;150,150,150,150;, + 4;151,151,151,151;, + 4;152,152,152,152;, + 4;153,153,153,153;, + 4;154,154,154,154;, + 4;155,155,155,155;, + 4;156,156,156,156;, + 4;157,157,157,157;, + 4;158,158,158,158;, + 4;159,159,159,159;; + } // End of Player normals + MeshTextureCoords { // Player UV coordinates + 640; + 0.500000; 1.000000;, + 0.500000; 0.625000;, + 0.625000; 0.625000;, + 0.625000; 1.000000;, + 0.437500; 1.000000;, + 0.437500; 0.625000;, + 0.500000; 0.625000;, + 0.500000; 1.000000;, + 0.437500; 0.625000;, + 0.437500; 1.000000;, + 0.312500; 1.000000;, + 0.312500; 0.625000;, + 0.437500; 0.500000;, + 0.562500; 0.500000;, + 0.562500; 0.625000;, + 0.437500; 0.625000;, + 0.437500; 0.625000;, + 0.312500; 0.625000;, + 0.312500; 0.500000;, + 0.437500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.187500; 1.000000;, + 0.812500; 0.625000;, + 0.812500; 1.000000;, + 0.875000; 1.000000;, + 0.875000; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 1.000000;, + 0.812500; 1.000000;, + 0.812500; 0.625000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.000000; 0.625000;, + 0.000000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.500000; 0.250000;, + 0.500000; 0.500000;, + 0.375000; 0.500000;, + 0.375000; 0.250000;, + 0.375000; 0.250000;, + 0.375000; 0.500000;, + 0.250000; 0.500000;, + 0.250000; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.500000;, + 0.125000; 0.500000;, + 0.125000; 0.250000;, + 0.375000; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.000000;, + 0.375000; 0.000000;, + 0.250000; 0.250000;, + 0.125000; 0.250000;, + 0.125000; 0.000000;, + 0.250000; 0.000000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.500000;, + 0.812500; 0.500000;, + 0.812500; 0.625000;, + 0.687500; 0.625000;, + 0.687500; 0.500000;, + 0.750000; 0.500000;, + 0.750000; 0.625000;, + 0.250000; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.250000; 1.000000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.625000;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.000000; 1.000000;, + 0.250000; 0.625000;, + 0.312500; 0.625000;, + 0.312500; 1.000000;, + 0.250000; 1.000000;, + 0.000000; 0.250000;, + 0.125000; 0.250000;, + 0.125000; 0.500000;, + 0.000000; 0.500000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.687500; 0.625000;, + 0.687500; 1.000000;, + 0.750000; 1.000000;, + 0.750000; 0.625000;, + 0.687500; 0.625000;, + 0.687500; 1.000000;, + 0.625000; 1.000000;, + 0.625000; 0.625000;, + 0.687500; 0.625000;, + 0.625000; 0.625000;, + 0.625000; 1.000000;, + 0.687500; 1.000000;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.500000;, + 0.687500; 0.500000;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 1.000000;, + 0.687500; 1.000000;, + 0.187500; 0.625000;, + 0.187500; 0.500000;, + 0.125000; 0.500000;, + 0.125000; 0.625000;, + 0.750000; 0.625000;, + 0.812500; 0.625000;, + 0.812500; 0.500000;, + 0.750000; 0.500000;, + 0.812500; 0.625000;, + 0.875000; 0.625000;, + 0.875000; 1.000000;, + 0.812500; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.062500; 0.500000;, + 0.062500; 0.625000;, + 1.000000; 0.250000;, + 1.000000; 0.500000;, + 0.875000; 0.500000;, + 0.875000; 0.250000;, + 0.875000; 0.250000;, + 0.875000; 0.500000;, + 0.750000; 0.500000;, + 0.750000; 0.250000;, + 0.750000; 0.250000;, + 0.750000; 0.500000;, + 0.625000; 0.500000;, + 0.625000; 0.250000;, + 0.875000; 0.250000;, + 0.750000; 0.250000;, + 0.750000; 0.000000;, + 0.875000; 0.000000;, + 0.750000; 0.250000;, + 0.625000; 0.250000;, + 0.625000; 0.000000;, + 0.750000; 0.000000;, + 0.500000; 0.250000;, + 0.625000; 0.250000;, + 0.625000; 0.500000;, + 0.500000; 0.500000;, + 0.250000; 0.625000;, + 0.312500; 0.625000;, + 0.312500; 1.000000;, + 0.250000; 1.000000;, + 0.437500; 0.625000;, + 0.312500; 0.625000;, + 0.312500; 0.500000;, + 0.437500; 0.500000;, + 0.437500; 0.500000;, + 0.562500; 0.500000;, + 0.562500; 0.625000;, + 0.437500; 0.625000;, + 0.437500; 0.625000;, + 0.437500; 1.000000;, + 0.312500; 1.000000;, + 0.312500; 0.625000;, + 0.437500; 1.000000;, + 0.437500; 0.625000;, + 0.500000; 0.625000;, + 0.500000; 1.000000;, + 0.500000; 1.000000;, + 0.500000; 0.625000;, + 0.625000; 0.625000;, + 0.625000; 1.000000;, + 0.500000; 0.250000;, + 0.625000; 0.250000;, + 0.625000; 0.500000;, + 0.500000; 0.500000;, + 0.750000; 0.250000;, + 0.625000; 0.250000;, + 0.625000; 0.000000;, + 0.750000; 0.000000;, + 0.875000; 0.250000;, + 0.750000; 0.250000;, + 0.750000; 0.000000;, + 0.875000; 0.000000;, + 0.750000; 0.250000;, + 0.750000; 0.500000;, + 0.625000; 0.500000;, + 0.625000; 0.250000;, + 0.875000; 0.250000;, + 0.875000; 0.500000;, + 0.750000; 0.500000;, + 0.750000; 0.250000;, + 1.000000; 0.250000;, + 1.000000; 0.500000;, + 0.875000; 0.500000;, + 0.875000; 0.250000;, + 0.750000; 0.625000;, + 0.812500; 0.625000;, + 0.812500; 0.500000;, + 0.750000; 0.500000;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.500000;, + 0.687500; 0.500000;, + 0.687500; 0.625000;, + 0.687500; 1.000000;, + 0.625000; 1.000000;, + 0.625000; 0.625000;, + 0.687500; 0.625000;, + 0.687500; 1.000000;, + 0.750000; 1.000000;, + 0.750000; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 1.000000;, + 0.812500; 1.000000;, + 0.812500; 0.625000;, + 0.812500; 0.625000;, + 0.812500; 1.000000;, + 0.875000; 1.000000;, + 0.875000; 0.625000;, + 0.812500; 0.625000;, + 0.875000; 0.625000;, + 0.875000; 1.000000;, + 0.812500; 1.000000;, + 0.750000; 0.625000;, + 0.812500; 0.625000;, + 0.812500; 1.000000;, + 0.750000; 1.000000;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 1.000000;, + 0.687500; 1.000000;, + 0.687500; 0.625000;, + 0.625000; 0.625000;, + 0.625000; 1.000000;, + 0.687500; 1.000000;, + 0.687500; 0.625000;, + 0.687500; 0.500000;, + 0.750000; 0.500000;, + 0.750000; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.500000;, + 0.812500; 0.500000;, + 0.812500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.062500; 0.500000;, + 0.062500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.500000;, + 0.125000; 0.500000;, + 0.125000; 0.625000;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.000000; 1.000000;, + 0.250000; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.250000; 1.000000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.125000; 1.000000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.187500; 1.000000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.625000;, + 0.000000; 0.625000;, + 0.000000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.437500; 0.125000;, + 0.375000; 0.125000;, + 0.375000; 0.000000;, + 0.437500; 0.000000;, + 0.250000; 0.125000;, + 0.250000; 0.343750;, + 0.312500; 0.343750;, + 0.312500; 0.125000;, + 0.500000; 0.125000;, + 0.500000; 0.343750;, + 0.437500; 0.343750;, + 0.437500; 0.125000;, + 0.375000; 0.125000;, + 0.375000; 0.343750;, + 0.312500; 0.343750;, + 0.312500; 0.125000;, + 0.437500; 0.125000;, + 0.437500; 0.343750;, + 0.375000; 0.343750;, + 0.375000; 0.125000;, + 0.375000; 0.125000;, + 0.312500; 0.125000;, + 0.312500; 0.000000;, + 0.375000; 0.000000;, + 0.437500; 0.125000;, + 0.375000; 0.125000;, + 0.375000; 0.343750;, + 0.437500; 0.343750;, + 0.375000; 0.125000;, + 0.312500; 0.125000;, + 0.312500; 0.343750;, + 0.375000; 0.343750;, + 0.500000; 0.125000;, + 0.437500; 0.125000;, + 0.437500; 0.343750;, + 0.500000; 0.343750;, + 0.250000; 0.125000;, + 0.312500; 0.125000;, + 0.312500; 0.343750;, + 0.250000; 0.343750;, + 0.437500; 0.125000;, + 0.437500; 0.000000;, + 0.375000; 0.000000;, + 0.375000; 0.125000;, + 0.375000; 0.125000;, + 0.375000; 0.000000;, + 0.312500; 0.000000;, + 0.312500; 0.125000;, + 0.750000; 0.625000;, + 0.812500; 0.625000;, + 0.812500; 1.000000;, + 0.750000; 1.000000;, + 0.000000; 0.500000;, + 0.250000; 0.500000;, + 0.250000; 0.000000;, + 0.000000; 0.000000;, + 0.250000; 0.500000;, + 0.000000; 0.500000;, + 0.000000; 0.000000;, + 0.250000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + -0.000000; 1.000000;, + 0.000000; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 1.000000;, + 0.000000; 0.000000;, + -0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.875000; 1.000000;, + 0.875000; 0.625000;, + 1.000000; 0.625000;, + 1.000000; 1.000000;, + 0.875000; 0.968750;, + 0.875000; 0.656250;, + 0.890625; 0.656250;, + 0.890625; 0.968750;, + 1.000000; 0.625000;, + 1.000000; 1.000000;, + 0.875000; 1.000000;, + 0.875000; 0.625000;, + 0.890625; 0.968750;, + 0.984375; 0.968750;, + 0.984375; 1.000000;, + 0.890625; 1.000000;, + 0.890625; 0.625000;, + 0.984375; 0.625000;, + 0.984375; 0.656250;, + 0.890625; 0.656250;, + 0.984375; 0.656250;, + 1.000000; 0.656250;, + 1.000000; 0.968750;, + 0.984375; 0.968750;; + } // End of Player UV coordinates + MeshMaterialList { // Player material list + 3; + 160; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 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, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Character { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.000000; 0.000000; 0.000000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"character.png";} + } + Material Armor { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"armor.png";} + } + Material Wielditem { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"sword.png";} + } + } // End of Player material list + XSkinMeshHeader { + 2; + 6; + 7; + } + SkinWeights { + "Armature_Head"; + 72; + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 96, + 97, + 98, + 99, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.927318, + 1.000000, + 1.000000, + 0.927318, + 1.000000, + 1.000000, + 1.000000, + 0.927318, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.927318, + 1.000000, + 1.000000, + 1.000000, + 0.927318, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.927318, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.000000,-13.500000,-0.000000, 1.000000;; + } // End of Armature_Head skin weights + SkinWeights { + "Armature_Body"; + 48; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 92, + 93, + 94, + 95, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000,-6.750000, 0.000000, 1.000000;; + } // End of Armature_Body skin weights + SkinWeights { + "Armature_Arm_Right"; + 302; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 112, + 113, + 114, + 115, + 120, + 121, + 122, + 123, + 132, + 133, + 134, + 135, + 146, + 149, + 153, + 197, + 201, + 206, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 364, + 365, + 366, + 367, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.072682, + 0.072682, + 0.072682, + 0.072682, + 0.072682, + 0.072682, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.989218, 0.143939, 0.027164, 0.000000, + -0.027450, 0.000000, 0.999623, 0.000000, + 0.143886,-0.989587, 0.003951, 0.000000, + -3.920902,13.071543,-0.107667, 1.000000;; + } // End of Armature_Arm_Right skin weights + SkinWeights { + "Armature_Leg_Right"; + 72; + 20, + 21, + 22, + 23, + 64, + 65, + 66, + 67, + 80, + 81, + 82, + 83, + 88, + 89, + 90, + 91, + 124, + 125, + 126, + 127, + 136, + 137, + 138, + 139, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -1.000000, 6.750000, 0.000000, 1.000000;; + } // End of Armature_Leg_Right skin weights + SkinWeights { + "Armature_Cape"; + 24; + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000,13.700000, 1.100000, 1.000000;; + } // End of Armature_Cape skin weights + SkinWeights { + "Armature_Arm_Left"; + 56; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 116, + 117, + 118, + 119, + 128, + 129, + 130, + 131, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.989218,-0.143939,-0.027164, 0.000000, + 0.027450, 0.000000, 0.999623, 0.000000, + -0.143886,-0.989587, 0.003951, 0.000000, + 3.920902,13.071543,-0.107667, 1.000000;; + } // End of Armature_Arm_Left skin weights + SkinWeights { + "Armature_Leg_Left"; + 72; + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 60, + 61, + 62, + 63, + 68, + 69, + 70, + 71, + 84, + 85, + 86, + 87, + 100, + 101, + 102, + 103, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 1.000000, 6.750000,-0.000000, 1.000000;; + } // End of Armature_Leg_Left skin weights + } // End of Player mesh + } // End of Player + } // End of Armature +} // End of Root +AnimationSet ArmatureAction { + Animation { + {Armature} + AnimationKey { // Rotation + 0; + 221; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 190;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 191;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 192;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 193;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 194;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 195;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 196;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 197;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 198;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 199;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 200;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 201;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 202;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 203;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 204;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 205;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 206;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 207;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 208;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 209;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 210;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 211;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 212;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 213;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 214;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 215;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 216;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 217;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 218;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 219;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 220;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3; 0.000000, 0.000000,-10.000000;;, + 1;3; 0.000000, 0.000000,-10.000000;;, + 2;3; 0.000000, 0.000000,-10.000000;;, + 3;3; 0.000000, 0.000000,-10.000000;;, + 4;3; 0.000000, 0.000000,-10.000000;;, + 5;3; 0.000000, 0.000000,-10.000000;;, + 6;3; 0.000000, 0.000000,-10.000000;;, + 7;3; 0.000000, 0.000000,-10.000000;;, + 8;3; 0.000000, 0.000000,-10.000000;;, + 9;3; 0.000000, 0.000000,-10.000000;;, + 10;3; 0.000000, 0.000000,-10.000000;;, + 11;3; 0.000000, 0.000000,-10.000000;;, + 12;3; 0.000000, 0.000000,-10.000000;;, + 13;3; 0.000000, 0.000000,-10.000000;;, + 14;3; 0.000000, 0.000000,-10.000000;;, + 15;3; 0.000000, 0.000000,-10.000000;;, + 16;3; 0.000000, 0.000000,-10.000000;;, + 17;3; 0.000000, 0.000000,-10.000000;;, + 18;3; 0.000000, 0.000000,-10.000000;;, + 19;3; 0.000000, 0.000000,-10.000000;;, + 20;3; 0.000000, 0.000000,-10.000000;;, + 21;3; 0.000000, 0.000000,-10.000000;;, + 22;3; 0.000000, 0.000000,-10.000000;;, + 23;3; 0.000000, 0.000000,-10.000000;;, + 24;3; 0.000000, 0.000000,-10.000000;;, + 25;3; 0.000000, 0.000000,-10.000000;;, + 26;3; 0.000000, 0.000000,-10.000000;;, + 27;3; 0.000000, 0.000000,-10.000000;;, + 28;3; 0.000000, 0.000000,-10.000000;;, + 29;3; 0.000000, 0.000000,-10.000000;;, + 30;3; 0.000000, 0.000000,-10.000000;;, + 31;3; 0.000000, 0.000000,-10.000000;;, + 32;3; 0.000000, 0.000000,-10.000000;;, + 33;3; 0.000000, 0.000000,-10.000000;;, + 34;3; 0.000000, 0.000000,-10.000000;;, + 35;3; 0.000000, 0.000000,-10.000000;;, + 36;3; 0.000000, 0.000000,-10.000000;;, + 37;3; 0.000000, 0.000000,-10.000000;;, + 38;3; 0.000000, 0.000000,-10.000000;;, + 39;3; 0.000000, 0.000000,-10.000000;;, + 40;3; 0.000000, 0.000000,-10.000000;;, + 41;3; 0.000000, 0.000000,-10.000000;;, + 42;3; 0.000000, 0.000000,-10.000000;;, + 43;3; 0.000000, 0.000000,-10.000000;;, + 44;3; 0.000000, 0.000000,-10.000000;;, + 45;3; 0.000000, 0.000000,-10.000000;;, + 46;3; 0.000000, 0.000000,-10.000000;;, + 47;3; 0.000000, 0.000000,-10.000000;;, + 48;3; 0.000000, 0.000000,-10.000000;;, + 49;3; 0.000000, 0.000000,-10.000000;;, + 50;3; 0.000000, 0.000000,-10.000000;;, + 51;3; 0.000000, 0.000000,-10.000000;;, + 52;3; 0.000000, 0.000000,-10.000000;;, + 53;3; 0.000000, 0.000000,-10.000000;;, + 54;3; 0.000000, 0.000000,-10.000000;;, + 55;3; 0.000000, 0.000000,-10.000000;;, + 56;3; 0.000000, 0.000000,-10.000000;;, + 57;3; 0.000000, 0.000000,-10.000000;;, + 58;3; 0.000000, 0.000000,-10.000000;;, + 59;3; 0.000000, 0.000000,-10.000000;;, + 60;3; 0.000000, 0.000000,-10.000000;;, + 61;3; 0.000000, 0.000000,-10.000000;;, + 62;3; 0.000000, 0.000000,-10.000000;;, + 63;3; 0.000000, 0.000000,-10.000000;;, + 64;3; 0.000000, 0.000000,-10.000000;;, + 65;3; 0.000000, 0.000000,-10.000000;;, + 66;3; 0.000000, 0.000000,-10.000000;;, + 67;3; 0.000000, 0.000000,-10.000000;;, + 68;3; 0.000000, 0.000000,-10.000000;;, + 69;3; 0.000000, 0.000000,-10.000000;;, + 70;3; 0.000000, 0.000000,-10.000000;;, + 71;3; 0.000000, 0.000000,-10.000000;;, + 72;3; 0.000000, 0.000000,-10.000000;;, + 73;3; 0.000000, 0.000000,-10.000000;;, + 74;3; 0.000000, 0.000000,-10.000000;;, + 75;3; 0.000000, 0.000000,-10.000000;;, + 76;3; 0.000000, 0.000000,-10.000000;;, + 77;3; 0.000000, 0.000000,-10.000000;;, + 78;3; 0.000000, 0.000000,-10.000000;;, + 79;3; 0.000000, 0.000000,-10.000000;;, + 80;3; 0.000000, 0.000000,-10.000000;;, + 81;3; 0.000000, 0.000000,-10.000000;;, + 82;3; 0.000000, 0.000000,-10.000000;;, + 83;3; 0.000000, 0.000000,-10.000000;;, + 84;3; 0.000000, 0.000000,-10.000000;;, + 85;3; 0.000000, 0.000000,-10.000000;;, + 86;3; 0.000000, 0.000000,-10.000000;;, + 87;3; 0.000000, 0.000000,-10.000000;;, + 88;3; 0.000000, 0.000000,-10.000000;;, + 89;3; 0.000000, 0.000000,-10.000000;;, + 90;3; 0.000000, 0.000000,-10.000000;;, + 91;3; 0.000000, 0.000000,-10.000000;;, + 92;3; 0.000000, 0.000000,-10.000000;;, + 93;3; 0.000000, 0.000000,-10.000000;;, + 94;3; 0.000000, 0.000000,-10.000000;;, + 95;3; 0.000000, 0.000000,-10.000000;;, + 96;3; 0.000000, 0.000000,-10.000000;;, + 97;3; 0.000000, 0.000000,-10.000000;;, + 98;3; 0.000000, 0.000000,-10.000000;;, + 99;3; 0.000000, 0.000000,-10.000000;;, + 100;3; 0.000000, 0.000000,-10.000000;;, + 101;3; 0.000000, 0.000000,-10.000000;;, + 102;3; 0.000000, 0.000000,-10.000000;;, + 103;3; 0.000000, 0.000000,-10.000000;;, + 104;3; 0.000000, 0.000000,-10.000000;;, + 105;3; 0.000000, 0.000000,-10.000000;;, + 106;3; 0.000000, 0.000000,-10.000000;;, + 107;3; 0.000000, 0.000000,-10.000000;;, + 108;3; 0.000000, 0.000000,-10.000000;;, + 109;3; 0.000000, 0.000000,-10.000000;;, + 110;3; 0.000000, 0.000000,-10.000000;;, + 111;3; 0.000000, 0.000000,-10.000000;;, + 112;3; 0.000000, 0.000000,-10.000000;;, + 113;3; 0.000000, 0.000000,-10.000000;;, + 114;3; 0.000000, 0.000000,-10.000000;;, + 115;3; 0.000000, 0.000000,-10.000000;;, + 116;3; 0.000000, 0.000000,-10.000000;;, + 117;3; 0.000000, 0.000000,-10.000000;;, + 118;3; 0.000000, 0.000000,-10.000000;;, + 119;3; 0.000000, 0.000000,-10.000000;;, + 120;3; 0.000000, 0.000000,-10.000000;;, + 121;3; 0.000000, 0.000000,-10.000000;;, + 122;3; 0.000000, 0.000000,-10.000000;;, + 123;3; 0.000000, 0.000000,-10.000000;;, + 124;3; 0.000000, 0.000000,-10.000000;;, + 125;3; 0.000000, 0.000000,-10.000000;;, + 126;3; 0.000000, 0.000000,-10.000000;;, + 127;3; 0.000000, 0.000000,-10.000000;;, + 128;3; 0.000000, 0.000000,-10.000000;;, + 129;3; 0.000000, 0.000000,-10.000000;;, + 130;3; 0.000000, 0.000000,-10.000000;;, + 131;3; 0.000000, 0.000000,-10.000000;;, + 132;3; 0.000000, 0.000000,-10.000000;;, + 133;3; 0.000000, 0.000000,-10.000000;;, + 134;3; 0.000000, 0.000000,-10.000000;;, + 135;3; 0.000000, 0.000000,-10.000000;;, + 136;3; 0.000000, 0.000000,-10.000000;;, + 137;3; 0.000000, 0.000000,-10.000000;;, + 138;3; 0.000000, 0.000000,-10.000000;;, + 139;3; 0.000000, 0.000000,-10.000000;;, + 140;3; 0.000000, 0.000000,-10.000000;;, + 141;3; 0.000000, 0.000000,-10.000000;;, + 142;3; 0.000000, 0.000000,-10.000000;;, + 143;3; 0.000000, 0.000000,-10.000000;;, + 144;3; 0.000000, 0.000000,-10.000000;;, + 145;3; 0.000000, 0.000000,-10.000000;;, + 146;3; 0.000000, 0.000000,-10.000000;;, + 147;3; 0.000000, 0.000000,-10.000000;;, + 148;3; 0.000000, 0.000000,-10.000000;;, + 149;3; 0.000000, 0.000000,-10.000000;;, + 150;3; 0.000000, 0.000000,-10.000000;;, + 151;3; 0.000000, 0.000000,-10.000000;;, + 152;3; 0.000000, 0.000000,-10.000000;;, + 153;3; 0.000000, 0.000000,-10.000000;;, + 154;3; 0.000000, 0.000000,-10.000000;;, + 155;3; 0.000000, 0.000000,-10.000000;;, + 156;3; 0.000000, 0.000000,-10.000000;;, + 157;3; 0.000000, 0.000000,-10.000000;;, + 158;3; 0.000000, 0.000000,-10.000000;;, + 159;3; 0.000000, 0.000000,-10.000000;;, + 160;3; 0.000000, 0.000000,-10.000000;;, + 161;3; 0.000000, 0.000000,-10.000000;;, + 162;3; 0.000000, 0.000000,-10.000000;;, + 163;3; 0.000000, 0.000000,-10.000000;;, + 164;3; 0.000000, 0.000000,-10.000000;;, + 165;3; 0.000000, 0.000000,-10.000000;;, + 166;3; 0.000000, 0.000000,-10.000000;;, + 167;3; 0.000000, 0.000000,-10.000000;;, + 168;3; 0.000000, 0.000000,-10.000000;;, + 169;3; 0.000000, 0.000000,-10.000000;;, + 170;3; 0.000000, 0.000000,-10.000000;;, + 171;3; 0.000000, 0.000000,-10.000000;;, + 172;3; 0.000000, 0.000000,-10.000000;;, + 173;3; 0.000000, 0.000000,-10.000000;;, + 174;3; 0.000000, 0.000000,-10.000000;;, + 175;3; 0.000000, 0.000000,-10.000000;;, + 176;3; 0.000000, 0.000000,-10.000000;;, + 177;3; 0.000000, 0.000000,-10.000000;;, + 178;3; 0.000000, 0.000000,-10.000000;;, + 179;3; 0.000000, 0.000000,-10.000000;;, + 180;3; 0.000000, 0.000000,-10.000000;;, + 181;3; 0.000000, 0.000000,-10.000000;;, + 182;3; 0.000000, 0.000000,-10.000000;;, + 183;3; 0.000000, 0.000000,-10.000000;;, + 184;3; 0.000000, 0.000000,-10.000000;;, + 185;3; 0.000000, 0.000000,-10.000000;;, + 186;3; 0.000000, 0.000000,-10.000000;;, + 187;3; 0.000000, 0.000000,-10.000000;;, + 188;3; 0.000000, 0.000000,-10.000000;;, + 189;3; 0.000000, 0.000000,-10.000000;;, + 190;3; 0.000000, 0.000000,-10.000000;;, + 191;3; 0.000000, 0.000000,-10.000000;;, + 192;3; 0.000000, 0.000000,-10.000000;;, + 193;3; 0.000000, 0.000000,-10.000000;;, + 194;3; 0.000000, 0.000000,-10.000000;;, + 195;3; 0.000000, 0.000000,-10.000000;;, + 196;3; 0.000000, 0.000000,-10.000000;;, + 197;3; 0.000000, 0.000000,-10.000000;;, + 198;3; 0.000000, 0.000000,-10.000000;;, + 199;3; 0.000000, 0.000000,-10.000000;;, + 200;3; 0.000000, 0.000000,-10.000000;;, + 201;3; 0.000000, 0.000000,-10.000000;;, + 202;3; 0.000000, 0.000000,-10.000000;;, + 203;3; 0.000000, 0.000000,-10.000000;;, + 204;3; 0.000000, 0.000000,-10.000000;;, + 205;3; 0.000000, 0.000000,-10.000000;;, + 206;3; 0.000000, 0.000000,-10.000000;;, + 207;3; 0.000000, 0.000000,-10.000000;;, + 208;3; 0.000000, 0.000000,-10.000000;;, + 209;3; 0.000000, 0.000000,-10.000000;;, + 210;3; 0.000000, 0.000000,-10.000000;;, + 211;3; 0.000000, 0.000000,-10.000000;;, + 212;3; 0.000000, 0.000000,-10.000000;;, + 213;3; 0.000000, 0.000000,-10.000000;;, + 214;3; 0.000000, 0.000000,-10.000000;;, + 215;3; 0.000000, 0.000000,-10.000000;;, + 216;3; 0.000000, 0.000000,-10.000000;;, + 217;3; 0.000000, 0.000000,-10.000000;;, + 218;3; 0.000000, 0.000000,-10.000000;;, + 219;3; 0.000000, 0.000000,-10.000000;;, + 220;3; 0.000000, 0.000000,-10.000000;;; + } + } + Animation { + {Armature_Body} + AnimationKey { // Rotation + 0; + 221; + 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4;-0.706933, 0.707273, 0.000000, 0.000000;;, + 2;4;-0.706408, 0.707776, 0.000000, 0.000000;;, + 3;4;-0.705530, 0.708616, 0.000000, 0.000000;;, + 4;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 5;4;-0.702749, 0.711279, 0.000000, 0.000000;;, + 6;4;-0.700886, 0.713062, 0.000000, 0.000000;;, + 7;4;-0.698758, 0.715099, 0.000000, 0.000000;;, + 8;4;-0.696414, 0.717342, 0.000000, 0.000000;;, + 9;4;-0.693920, 0.719730, 0.000000, 0.000000;;, + 10;4;-0.691348, 0.722192, 0.000000, 0.000000;;, + 11;4;-0.688777, 0.724654, 0.000000, 0.000000;;, + 12;4;-0.686283, 0.727042, 0.000000, 0.000000;;, + 13;4;-0.683939, 0.729285, 0.000000, 0.000000;;, + 14;4;-0.681811, 0.731323, 0.000000, 0.000000;;, + 15;4;-0.679948, 0.733105, 0.000000, 0.000000;;, + 16;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 17;4;-0.677167, 0.735768, 0.000000, 0.000000;;, + 18;4;-0.676289, 0.736608, 0.000000, 0.000000;;, + 19;4;-0.675764, 0.737111, 0.000000, 0.000000;;, + 20;4;-0.675590, 0.737277, 0.000000, 0.000000;;, + 21;4;-0.675764, 0.737111, 0.000000, 0.000000;;, + 22;4;-0.676289, 0.736608, 0.000000, 0.000000;;, + 23;4;-0.677167, 0.735768, 0.000000, 0.000000;;, + 24;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 25;4;-0.679948, 0.733105, 0.000000, 0.000000;;, + 26;4;-0.681811, 0.731323, 0.000000, 0.000000;;, + 27;4;-0.683939, 0.729285, 0.000000, 0.000000;;, + 28;4;-0.686283, 0.727042, 0.000000, 0.000000;;, + 29;4;-0.688777, 0.724654, 0.000000, 0.000000;;, + 30;4;-0.691348, 0.722192, 0.000000, 0.000000;;, + 31;4;-0.693920, 0.719730, 0.000000, 0.000000;;, + 32;4;-0.696414, 0.717342, 0.000000, 0.000000;;, + 33;4;-0.698758, 0.715099, 0.000000, 0.000000;;, + 34;4;-0.700886, 0.713062, 0.000000, 0.000000;;, + 35;4;-0.702749, 0.711279, 0.000000, 0.000000;;, + 36;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 37;4;-0.705530, 0.708616, 0.000000, 0.000000;;, + 38;4;-0.706408, 0.707776, 0.000000, 0.000000;;, + 39;4;-0.706933, 0.707273, 0.000000, 0.000000;;, + 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4;-0.706933, 0.707273, 0.000000, 0.000000;;, + 42;4;-0.706408, 0.707776, 0.000000, 0.000000;;, + 43;4;-0.705530, 0.708616, 0.000000, 0.000000;;, + 44;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 45;4;-0.702749, 0.711279, 0.000000, 0.000000;;, + 46;4;-0.700886, 0.713062, 0.000000, 0.000000;;, + 47;4;-0.698758, 0.715099, 0.000000, 0.000000;;, + 48;4;-0.696414, 0.717342, 0.000000, 0.000000;;, + 49;4;-0.693920, 0.719730, 0.000000, 0.000000;;, + 50;4;-0.691348, 0.722192, 0.000000, 0.000000;;, + 51;4;-0.688777, 0.724654, 0.000000, 0.000000;;, + 52;4;-0.686283, 0.727042, 0.000000, 0.000000;;, + 53;4;-0.683939, 0.729285, 0.000000, 0.000000;;, + 54;4;-0.681811, 0.731323, 0.000000, 0.000000;;, + 55;4;-0.679948, 0.733105, 0.000000, 0.000000;;, + 56;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 57;4;-0.677167, 0.735768, 0.000000, 0.000000;;, + 58;4;-0.676289, 0.736608, 0.000000, 0.000000;;, + 59;4;-0.675764, 0.737111, 0.000000, 0.000000;;, + 60;4;-0.675590, 0.737277, 0.000000, 0.000000;;, + 61;4;-0.675754, 0.737121, 0.000000, 0.000000;;, + 62;4;-0.676212, 0.736682, 0.000000, 0.000000;;, + 63;4;-0.676927, 0.735998, 0.000000, 0.000000;;, + 64;4;-0.677865, 0.735100, 0.000000, 0.000000;;, + 65;4;-0.679001, 0.734013, 0.000000, 0.000000;;, + 66;4;-0.680312, 0.732757, 0.000000, 0.000000;;, + 67;4;-0.681779, 0.731352, 0.000000, 0.000000;;, + 68;4;-0.683387, 0.729813, 0.000000, 0.000000;;, + 69;4;-0.685120, 0.728154, 0.000000, 0.000000;;, + 70;4;-0.686966, 0.726388, 0.000000, 0.000000;;, + 71;4;-0.688910, 0.724526, 0.000000, 0.000000;;, + 72;4;-0.690941, 0.722582, 0.000000, 0.000000;;, + 73;4;-0.693046, 0.720567, 0.000000, 0.000000;;, + 74;4;-0.695210, 0.718495, 0.000000, 0.000000;;, + 75;4;-0.697417, 0.716383, 0.000000, 0.000000;;, + 76;4;-0.699643, 0.714251, 0.000000, 0.000000;;, + 77;4;-0.701856, 0.712134, 0.000000, 0.000000;;, + 78;4;-0.703995, 0.710085, 0.000000, 0.000000;;, + 79;4;-0.705928, 0.708235, 0.000000, 0.000000;;, + 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 82;4;-0.705928, 0.708235, 0.000000, 0.000000;;, + 83;4;-0.703995, 0.710085, 0.000000, 0.000000;;, + 84;4;-0.701856, 0.712134, 0.000000, 0.000000;;, + 85;4;-0.699643, 0.714251, 0.000000, 0.000000;;, + 86;4;-0.697417, 0.716383, 0.000000, 0.000000;;, + 87;4;-0.695210, 0.718495, 0.000000, 0.000000;;, + 88;4;-0.693046, 0.720567, 0.000000, 0.000000;;, + 89;4;-0.690941, 0.722582, 0.000000, 0.000000;;, + 90;4;-0.688910, 0.724526, 0.000000, 0.000000;;, + 91;4;-0.686966, 0.726388, 0.000000, 0.000000;;, + 92;4;-0.685120, 0.728154, 0.000000, 0.000000;;, + 93;4;-0.683387, 0.729813, 0.000000, 0.000000;;, + 94;4;-0.681779, 0.731352, 0.000000, 0.000000;;, + 95;4;-0.680312, 0.732757, 0.000000, 0.000000;;, + 96;4;-0.679001, 0.734013, 0.000000, 0.000000;;, + 97;4;-0.677865, 0.735100, 0.000000, 0.000000;;, + 98;4;-0.676927, 0.735998, 0.000000, 0.000000;;, + 99;4;-0.676212, 0.736682, 0.000000, 0.000000;;, + 100;4;-0.675754, 0.737121, 0.000000, 0.000000;;, + 101;4;-0.675590, 0.737277, 0.000000, 0.000000;;, + 102;4;-0.675764, 0.737111, 0.000000, 0.000000;;, + 103;4;-0.676289, 0.736608, 0.000000, 0.000000;;, + 104;4;-0.677167, 0.735768, 0.000000, 0.000000;;, + 105;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 106;4;-0.679948, 0.733105, 0.000000, 0.000000;;, + 107;4;-0.681811, 0.731323, 0.000000, 0.000000;;, + 108;4;-0.683939, 0.729285, 0.000000, 0.000000;;, + 109;4;-0.686283, 0.727042, 0.000000, 0.000000;;, + 110;4;-0.688777, 0.724654, 0.000000, 0.000000;;, + 111;4;-0.691348, 0.722192, 0.000000, 0.000000;;, + 112;4;-0.693920, 0.719730, 0.000000, 0.000000;;, + 113;4;-0.696414, 0.717342, 0.000000, 0.000000;;, + 114;4;-0.698758, 0.715099, 0.000000, 0.000000;;, + 115;4;-0.700886, 0.713062, 0.000000, 0.000000;;, + 116;4;-0.702749, 0.711279, 0.000000, 0.000000;;, + 117;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 118;4;-0.705530, 0.708616, 0.000000, 0.000000;;, + 119;4;-0.706408, 0.707776, 0.000000, 0.000000;;, + 120;4;-0.706933, 0.707273, 0.000000, 0.000000;;, + 121;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 122;4;-0.706933, 0.707273, 0.000000, 0.000000;;, + 123;4;-0.706408, 0.707776, 0.000000, 0.000000;;, + 124;4;-0.705530, 0.708616, 0.000000, 0.000000;;, + 125;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 126;4;-0.702749, 0.711279, 0.000000, 0.000000;;, + 127;4;-0.700886, 0.713062, 0.000000, 0.000000;;, + 128;4;-0.698758, 0.715099, 0.000000, 0.000000;;, + 129;4;-0.696414, 0.717342, 0.000000, 0.000000;;, + 130;4;-0.693920, 0.719730, 0.000000, 0.000000;;, + 131;4;-0.691348, 0.722192, 0.000000, 0.000000;;, + 132;4;-0.688777, 0.724654, 0.000000, 0.000000;;, + 133;4;-0.686283, 0.727042, 0.000000, 0.000000;;, + 134;4;-0.683939, 0.729285, 0.000000, 0.000000;;, + 135;4;-0.681811, 0.731323, 0.000000, 0.000000;;, + 136;4;-0.679948, 0.733105, 0.000000, 0.000000;;, + 137;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 138;4;-0.677167, 0.735768, 0.000000, 0.000000;;, + 139;4;-0.676289, 0.736608, 0.000000, 0.000000;;, + 140;4;-0.675764, 0.737111, 0.000000, 0.000000;;, + 141;4;-0.675590, 0.737277, 0.000000, 0.000000;;, + 142;4;-0.675753, 0.737121, 0.000000, 0.000000;;, + 143;4;-0.676211, 0.736683, 0.000000, 0.000000;;, + 144;4;-0.676923, 0.736001, 0.000000, 0.000000;;, + 145;4;-0.677857, 0.735107, 0.000000, 0.000000;;, + 146;4;-0.678987, 0.734026, 0.000000, 0.000000;;, + 147;4;-0.680291, 0.732778, 0.000000, 0.000000;;, + 148;4;-0.681750, 0.731381, 0.000000, 0.000000;;, + 149;4;-0.683349, 0.729852, 0.000000, 0.000000;;, + 150;4;-0.685071, 0.728203, 0.000000, 0.000000;;, + 151;4;-0.686905, 0.726448, 0.000000, 0.000000;;, + 152;4;-0.688838, 0.724598, 0.000000, 0.000000;;, + 153;4;-0.690858, 0.722664, 0.000000, 0.000000;;, + 154;4;-0.692953, 0.720659, 0.000000, 0.000000;;, + 155;4;-0.695109, 0.718596, 0.000000, 0.000000;;, + 156;4;-0.697310, 0.716489, 0.000000, 0.000000;;, + 157;4;-0.699536, 0.714358, 0.000000, 0.000000;;, + 158;4;-0.701753, 0.712235, 0.000000, 0.000000;;, + 159;4;-0.703909, 0.710171, 0.000000, 0.000000;;, + 160;4;-0.705875, 0.708288, 0.000000, 0.000000;;, + 161;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 162;4;-0.000000, 1.000000, 0.000000, 0.000000;;, + 163;4;-0.000000, 1.000000, 0.000000, 0.000000;;, + 164;4;-0.000000, 1.000000, 0.000000, 0.000000;;, + 165;4;-0.000000, 1.000000, 0.000000, 0.000000;;, + 166;4;-0.000000, 1.000000, 0.000000, 0.000000;;, + 167;4;-0.000000, 1.000000, 0.000000, 0.000000;;, + 168;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 169;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 170;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 171;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 172;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 173;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 174;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 175;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 176;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 177;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 178;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 179;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 180;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 181;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 182;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 183;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 184;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 185;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 186;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 187;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 188;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 189;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 190;4;-0.709789, 0.704305, 0.000000, 0.000000;;, + 191;4;-0.717343, 0.696414, 0.000000, 0.000000;;, + 192;4;-0.727042, 0.686283, 0.000000, 0.000000;;, + 193;4;-0.734596, 0.678392, 0.000000, 0.000000;;, + 194;4;-0.737277, 0.675590, 0.000000, 0.000000;;, + 195;4;-0.734596, 0.678392, 0.000000, 0.000000;;, + 196;4;-0.727042, 0.686283, 0.000000, 0.000000;;, + 197;4;-0.717343, 0.696414, 0.000000, 0.000000;;, + 198;4;-0.709789, 0.704305, 0.000000, 0.000000;;, + 199;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 200;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 201;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 202;4;-0.696414, 0.717342, 0.000000, 0.000000;;, + 203;4;-0.686283, 0.727042, 0.000000, 0.000000;;, + 204;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 205;4;-0.675590, 0.737277, 0.000000, 0.000000;;, + 206;4;-0.681074, 0.731794, 0.000000, 0.000000;;, + 207;4;-0.696518, 0.716349, 0.000000, 0.000000;;, + 208;4;-0.716349, 0.696518, 0.000000, 0.000000;;, + 209;4;-0.731794, 0.681074, 0.000000, 0.000000;;, + 210;4;-0.737277, 0.675590, 0.000000, 0.000000;;, + 211;4;-0.731794, 0.681074, 0.000000, 0.000000;;, + 212;4;-0.716349, 0.696518, 0.000000, 0.000000;;, + 213;4;-0.696518, 0.716349, 0.000000, 0.000000;;, + 214;4;-0.681074, 0.731794, 0.000000, 0.000000;;, + 215;4;-0.675590, 0.737277, 0.000000, 0.000000;;, + 216;4;-0.678392, 0.734595, 0.000000, 0.000000;;, + 217;4;-0.686282, 0.727042, 0.000000, 0.000000;;, + 218;4;-0.696414, 0.717343, 0.000000, 0.000000;;, + 219;4;-0.704305, 0.709789, 0.000000, 0.000000;;, + 220;4;-0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3;-0.000000, 0.000000, 6.750000;;, + 1;3;-0.000000, 0.000000, 6.750000;;, + 2;3;-0.000000, 0.000000, 6.750000;;, + 3;3;-0.000000, 0.000000, 6.750000;;, + 4;3;-0.000000, 0.000000, 6.750000;;, + 5;3;-0.000000, 0.000000, 6.750000;;, + 6;3;-0.000000, 0.000000, 6.750000;;, + 7;3;-0.000000, 0.000000, 6.750000;;, + 8;3;-0.000000, 0.000000, 6.750000;;, + 9;3;-0.000000, 0.000000, 6.750000;;, + 10;3;-0.000000, 0.000000, 6.750000;;, + 11;3;-0.000000, 0.000000, 6.750000;;, + 12;3;-0.000000, 0.000000, 6.750000;;, + 13;3;-0.000000, 0.000000, 6.750000;;, + 14;3;-0.000000, 0.000000, 6.750000;;, + 15;3;-0.000000, 0.000000, 6.750000;;, + 16;3;-0.000000, 0.000000, 6.750000;;, + 17;3;-0.000000, 0.000000, 6.750000;;, + 18;3;-0.000000, 0.000000, 6.750000;;, + 19;3;-0.000000, 0.000000, 6.750000;;, + 20;3;-0.000000, 0.000000, 6.750000;;, + 21;3;-0.000000, 0.000000, 6.750000;;, + 22;3;-0.000000, 0.000000, 6.750000;;, + 23;3;-0.000000, 0.000000, 6.750000;;, + 24;3;-0.000000, 0.000000, 6.750000;;, + 25;3;-0.000000, 0.000000, 6.750000;;, + 26;3;-0.000000, 0.000000, 6.750000;;, + 27;3;-0.000000, 0.000000, 6.750000;;, + 28;3;-0.000000, 0.000000, 6.750000;;, + 29;3;-0.000000, 0.000000, 6.750000;;, + 30;3;-0.000000, 0.000000, 6.750000;;, + 31;3;-0.000000, 0.000000, 6.750000;;, + 32;3;-0.000000, 0.000000, 6.750000;;, + 33;3;-0.000000, 0.000000, 6.750000;;, + 34;3;-0.000000, 0.000000, 6.750000;;, + 35;3;-0.000000, 0.000000, 6.750000;;, + 36;3;-0.000000, 0.000000, 6.750000;;, + 37;3;-0.000000, 0.000000, 6.750000;;, + 38;3;-0.000000, 0.000000, 6.750000;;, + 39;3;-0.000000, 0.000000, 6.750000;;, + 40;3;-0.000000, 0.000000, 6.750000;;, + 41;3;-0.000000, 0.000000, 6.750000;;, + 42;3;-0.000000, 0.000000, 6.750000;;, + 43;3;-0.000000, 0.000000, 6.750000;;, + 44;3;-0.000000, 0.000000, 6.750000;;, + 45;3;-0.000000, 0.000000, 6.750000;;, + 46;3;-0.000000, 0.000000, 6.750000;;, + 47;3;-0.000000, 0.000000, 6.750000;;, + 48;3;-0.000000, 0.000000, 6.750000;;, + 49;3;-0.000000, 0.000000, 6.750000;;, + 50;3;-0.000000, 0.000000, 6.750000;;, + 51;3;-0.000000, 0.000000, 6.750000;;, + 52;3;-0.000000, 0.000000, 6.750000;;, + 53;3;-0.000000, 0.000000, 6.750000;;, + 54;3;-0.000000, 0.000000, 6.750000;;, + 55;3;-0.000000, 0.000000, 6.750000;;, + 56;3;-0.000000, 0.000000, 6.750000;;, + 57;3;-0.000000, 0.000000, 6.750000;;, + 58;3;-0.000000, 0.000000, 6.750000;;, + 59;3;-0.000000, 0.000000, 6.750000;;, + 60;3;-0.000000, 0.000000, 6.750000;;, + 61;3;-0.000000, 0.000000, 6.750000;;, + 62;3;-0.000000, 0.000000, 6.750000;;, + 63;3;-0.000000, 0.000000, 6.750000;;, + 64;3;-0.000000, 0.000000, 6.750000;;, + 65;3;-0.000000, 0.000000, 6.750000;;, + 66;3;-0.000000, 0.000000, 6.750000;;, + 67;3;-0.000000, 0.000000, 6.750000;;, + 68;3;-0.000000, 0.000000, 6.750000;;, + 69;3;-0.000000, 0.000000, 6.750000;;, + 70;3;-0.000000, 0.000000, 6.750000;;, + 71;3;-0.000000, 0.000000, 6.750000;;, + 72;3;-0.000000, 0.000000, 6.750000;;, + 73;3;-0.000000, 0.000000, 6.750000;;, + 74;3;-0.000000, 0.000000, 6.750000;;, + 75;3;-0.000000, 0.000000, 6.750000;;, + 76;3;-0.000000, 0.000000, 6.750000;;, + 77;3;-0.000000, 0.000000, 6.750000;;, + 78;3;-0.000000, 0.000000, 6.750000;;, + 79;3;-0.000000, 0.000000, 6.750000;;, + 80;3;-0.000000, 0.000000, 6.750000;;, + 81;3;-0.000000, 0.000001, 1.000000;;, + 82;3;-0.000000, 0.000001, 1.000000;;, + 83;3;-0.000000, 0.000001, 1.000000;;, + 84;3;-0.000000, 0.000001, 1.000000;;, + 85;3;-0.000000, 0.000001, 1.000000;;, + 86;3;-0.000000, 0.000001, 1.000000;;, + 87;3;-0.000000, 0.000001, 1.000000;;, + 88;3;-0.000000, 0.000001, 1.000000;;, + 89;3;-0.000000, 0.000001, 1.000000;;, + 90;3;-0.000000, 0.000001, 1.000000;;, + 91;3;-0.000000, 0.000001, 1.000000;;, + 92;3;-0.000000, 0.000001, 1.000000;;, + 93;3;-0.000000, 0.000001, 1.000000;;, + 94;3;-0.000000, 0.000001, 1.000000;;, + 95;3;-0.000000, 0.000001, 1.000000;;, + 96;3;-0.000000, 0.000001, 1.000000;;, + 97;3;-0.000000, 0.000001, 1.000000;;, + 98;3;-0.000000, 0.000001, 1.000000;;, + 99;3;-0.000000, 0.000001, 1.000000;;, + 100;3;-0.000000, 0.000001, 1.000000;;, + 101;3;-0.000000, 0.000001, 1.000000;;, + 102;3;-0.000000, 0.000001, 1.000000;;, + 103;3;-0.000000, 0.000001, 1.000000;;, + 104;3;-0.000000, 0.000001, 1.000000;;, + 105;3;-0.000000, 0.000001, 1.000000;;, + 106;3;-0.000000, 0.000001, 1.000000;;, + 107;3;-0.000000, 0.000001, 1.000000;;, + 108;3;-0.000000, 0.000001, 1.000000;;, + 109;3;-0.000000, 0.000001, 1.000000;;, + 110;3;-0.000000, 0.000001, 1.000000;;, + 111;3;-0.000000, 0.000001, 1.000000;;, + 112;3;-0.000000, 0.000001, 1.000000;;, + 113;3;-0.000000, 0.000001, 1.000000;;, + 114;3;-0.000000, 0.000001, 1.000000;;, + 115;3;-0.000000, 0.000001, 1.000000;;, + 116;3;-0.000000, 0.000001, 1.000000;;, + 117;3;-0.000000, 0.000001, 1.000000;;, + 118;3;-0.000000, 0.000001, 1.000000;;, + 119;3;-0.000000, 0.000001, 1.000000;;, + 120;3;-0.000000, 0.000001, 1.000000;;, + 121;3;-0.000000, 0.000001, 1.000000;;, + 122;3;-0.000000, 0.000001, 1.000000;;, + 123;3;-0.000000, 0.000001, 1.000000;;, + 124;3;-0.000000, 0.000001, 1.000000;;, + 125;3;-0.000000, 0.000001, 1.000000;;, + 126;3;-0.000000, 0.000001, 1.000000;;, + 127;3;-0.000000, 0.000001, 1.000000;;, + 128;3;-0.000000, 0.000001, 1.000000;;, + 129;3;-0.000000, 0.000001, 1.000000;;, + 130;3;-0.000000, 0.000001, 1.000000;;, + 131;3;-0.000000, 0.000001, 1.000000;;, + 132;3;-0.000000, 0.000001, 1.000000;;, + 133;3;-0.000000, 0.000001, 1.000000;;, + 134;3;-0.000000, 0.000001, 1.000000;;, + 135;3;-0.000000, 0.000001, 1.000000;;, + 136;3;-0.000000, 0.000001, 1.000000;;, + 137;3;-0.000000, 0.000001, 1.000000;;, + 138;3;-0.000000, 0.000001, 1.000000;;, + 139;3;-0.000000, 0.000001, 1.000000;;, + 140;3;-0.000000, 0.000001, 1.000000;;, + 141;3;-0.000000, 0.000001, 1.000000;;, + 142;3;-0.000000, 0.000001, 1.000000;;, + 143;3;-0.000000, 0.000001, 1.000000;;, + 144;3;-0.000000, 0.000001, 1.000000;;, + 145;3;-0.000000, 0.000001, 1.000000;;, + 146;3;-0.000000, 0.000001, 1.000000;;, + 147;3;-0.000000, 0.000001, 1.000000;;, + 148;3;-0.000000, 0.000001, 1.000000;;, + 149;3;-0.000000, 0.000001, 1.000000;;, + 150;3;-0.000000, 0.000001, 1.000000;;, + 151;3;-0.000000, 0.000001, 1.000000;;, + 152;3;-0.000000, 0.000001, 1.000000;;, + 153;3;-0.000000, 0.000001, 1.000000;;, + 154;3;-0.000000, 0.000001, 1.000000;;, + 155;3;-0.000000, 0.000001, 1.000000;;, + 156;3;-0.000000, 0.000001, 1.000000;;, + 157;3;-0.000000, 0.000001, 1.000000;;, + 158;3;-0.000000, 0.000001, 1.000000;;, + 159;3;-0.000000, 0.000001, 1.000000;;, + 160;3;-0.000000, 0.000001, 1.000000;;, + 161;3;-0.000000, 0.000001, 1.000000;;, + 162;3;-0.000000, 2.000001, 1.000000;;, + 163;3;-0.000000, 2.000001, 1.000000;;, + 164;3;-0.000000, 2.000001, 1.000000;;, + 165;3;-0.000000, 2.000001, 1.000000;;, + 166;3;-0.000000, 2.000001, 1.000000;;, + 167;3;-0.000000, 2.000001, 1.000000;;, + 168;3;-0.000000, 0.000000, 6.750000;;, + 169;3;-0.000000, 0.000000, 6.750000;;, + 170;3;-0.000000, 0.000000, 6.750000;;, + 171;3;-0.000000, 0.000000, 6.750000;;, + 172;3;-0.000000, 0.000000, 6.750000;;, + 173;3;-0.000000, 0.000000, 6.750000;;, + 174;3;-0.000000, 0.000000, 6.750000;;, + 175;3;-0.000000, 0.000000, 6.750000;;, + 176;3;-0.000000, 0.000000, 6.750000;;, + 177;3;-0.000000, 0.000000, 6.750000;;, + 178;3;-0.000000, 0.000000, 6.750000;;, + 179;3;-0.000000, 0.000000, 6.750000;;, + 180;3;-0.000000, 0.000000, 6.750000;;, + 181;3;-0.000000, 0.000000, 6.750000;;, + 182;3;-0.000000, 0.000000, 6.750000;;, + 183;3;-0.000000, 0.000000, 6.750000;;, + 184;3;-0.000000, 0.000000, 6.750000;;, + 185;3;-0.000000, 0.000000, 6.750000;;, + 186;3;-0.000000, 0.000000, 6.750000;;, + 187;3;-0.000000, 0.000000, 6.750000;;, + 188;3;-0.000000, 0.000000, 6.750000;;, + 189;3;-0.000000, 0.000000, 6.750000;;, + 190;3;-0.000000, 0.000000, 6.750000;;, + 191;3;-0.000000, 0.000000, 6.750000;;, + 192;3;-0.000000, 0.000000, 6.750000;;, + 193;3;-0.000000, 0.000000, 6.750000;;, + 194;3;-0.000000, 0.000000, 6.750000;;, + 195;3;-0.000000, 0.000000, 6.750000;;, + 196;3;-0.000000, 0.000000, 6.750000;;, + 197;3;-0.000000, 0.000000, 6.750000;;, + 198;3;-0.000000, 0.000000, 6.750000;;, + 199;3;-0.000000, 0.000000, 6.750000;;, + 200;3;-0.000000, 0.000000, 6.750000;;, + 201;3;-0.000000, 0.000000, 6.750000;;, + 202;3;-0.000000, 0.000000, 6.750000;;, + 203;3;-0.000000, 0.000000, 6.750000;;, + 204;3;-0.000000, 0.000000, 6.750000;;, + 205;3;-0.000000, 0.000000, 6.750000;;, + 206;3;-0.000000, 0.000000, 6.750000;;, + 207;3;-0.000000, 0.000000, 6.750000;;, + 208;3;-0.000000, 0.000000, 6.750000;;, + 209;3;-0.000000, 0.000000, 6.750000;;, + 210;3;-0.000000, 0.000000, 6.750000;;, + 211;3;-0.000000, 0.000000, 6.750000;;, + 212;3;-0.000000, 0.000000, 6.750000;;, + 213;3;-0.000000, 0.000000, 6.750000;;, + 214;3;-0.000000, 0.000000, 6.750000;;, + 215;3;-0.000000, 0.000000, 6.750000;;, + 216;3;-0.000000, 0.000000, 6.750000;;, + 217;3;-0.000000, 0.000000, 6.750000;;, + 218;3;-0.000000, 0.000000, 6.750000;;, + 219;3;-0.000000, 0.000000, 6.750000;;, + 220;3;-0.000000, 0.000000, 6.750000;;; + } + } + Animation { + {Armature_Head} + AnimationKey { // Rotation + 0; + 221; + 0;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 1;4;-0.000120,-0.000005, 0.999993,-0.000240;;, + 2;4;-0.000483,-0.000021, 0.999974,-0.000967;;, + 3;4;-0.001090,-0.000048, 0.999941,-0.002181;;, + 4;4;-0.001937,-0.000085, 0.999894,-0.003876;;, + 5;4;-0.003014,-0.000132, 0.999835,-0.006030;;, + 6;4;-0.004301,-0.000188, 0.999765,-0.008607;;, + 7;4;-0.005773,-0.000252, 0.999685,-0.011553;;, + 8;4;-0.007394,-0.000323, 0.999596,-0.014795;;, + 9;4;-0.009118,-0.000398, 0.999502,-0.018246;;, + 10;4;-0.010897,-0.000476, 0.999405,-0.021805;;, + 11;4;-0.012675,-0.000553, 0.999308,-0.025363;;, + 12;4;-0.014400,-0.000629, 0.999214,-0.028814;;, + 13;4;-0.016021,-0.000699, 0.999126,-0.032056;;, + 14;4;-0.017493,-0.000764, 0.999045,-0.035002;;, + 15;4;-0.018780,-0.000820, 0.998975,-0.037579;;, + 16;4;-0.019857,-0.000867, 0.998916,-0.039733;;, + 17;4;-0.020704,-0.000904, 0.998870,-0.041428;;, + 18;4;-0.021311,-0.000930, 0.998837,-0.042642;;, + 19;4;-0.021674,-0.000946, 0.998817,-0.043369;;, + 20;4;-0.021794,-0.000952, 0.998811,-0.043609;;, + 21;4;-0.021720,-0.000948, 0.998817,-0.043369;;, + 22;4;-0.021494,-0.000938, 0.998837,-0.042642;;, + 23;4;-0.021108,-0.000922, 0.998870,-0.041428;;, + 24;4;-0.020560,-0.000898, 0.998916,-0.039733;;, + 25;4;-0.019848,-0.000867, 0.998975,-0.037579;;, + 26;4;-0.018975,-0.000828, 0.999045,-0.035002;;, + 27;4;-0.017947,-0.000784, 0.999126,-0.032056;;, + 28;4;-0.016778,-0.000733, 0.999214,-0.028814;;, + 29;4;-0.015484,-0.000676, 0.999308,-0.025363;;, + 30;4;-0.014088,-0.000615, 0.999405,-0.021804;;, + 31;4;-0.012616,-0.000551, 0.999502,-0.018246;;, + 32;4;-0.011095,-0.000484, 0.999596,-0.014795;;, + 33;4;-0.009555,-0.000417, 0.999685,-0.011553;;, + 34;4;-0.008021,-0.000350, 0.999765,-0.008607;;, + 35;4;-0.006517,-0.000285, 0.999835,-0.006030;;, + 36;4;-0.005062,-0.000221, 0.999894,-0.003876;;, + 37;4;-0.003674,-0.000160, 0.999941,-0.002181;;, + 38;4;-0.002362,-0.000103, 0.999974,-0.000967;;, + 39;4;-0.001136,-0.000050, 0.999993,-0.000240;;, + 40;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 41;4; 0.001136, 0.000050, 0.999993,-0.000240;;, + 42;4; 0.002362, 0.000103, 0.999974,-0.000967;;, + 43;4; 0.003674, 0.000160, 0.999941,-0.002181;;, + 44;4; 0.005062, 0.000221, 0.999894,-0.003876;;, + 45;4; 0.006517, 0.000285, 0.999835,-0.006030;;, + 46;4; 0.008021, 0.000350, 0.999765,-0.008607;;, + 47;4; 0.009555, 0.000417, 0.999685,-0.011553;;, + 48;4; 0.011095, 0.000484, 0.999596,-0.014795;;, + 49;4; 0.012616, 0.000551, 0.999502,-0.018246;;, + 50;4; 0.014088, 0.000615, 0.999405,-0.021804;;, + 51;4; 0.015484, 0.000676, 0.999308,-0.025363;;, + 52;4; 0.016778, 0.000733, 0.999214,-0.028814;;, + 53;4; 0.017947, 0.000784, 0.999126,-0.032056;;, + 54;4; 0.018975, 0.000828, 0.999045,-0.035002;;, + 55;4; 0.019848, 0.000867, 0.998975,-0.037579;;, + 56;4; 0.020560, 0.000898, 0.998916,-0.039733;;, + 57;4; 0.021108, 0.000922, 0.998870,-0.041428;;, + 58;4; 0.021494, 0.000938, 0.998837,-0.042642;;, + 59;4; 0.021720, 0.000948, 0.998817,-0.043369;;, + 60;4; 0.021794, 0.000952, 0.998811,-0.043609;;, + 61;4; 0.021681, 0.000947, 0.998817,-0.043383;;, + 62;4; 0.021364, 0.000933, 0.998834,-0.042748;;, + 63;4; 0.020870, 0.000911, 0.998861,-0.041760;;, + 64;4; 0.020221, 0.000883, 0.998896,-0.040461;;, + 65;4; 0.019436, 0.000849, 0.998939,-0.038890;;, + 66;4; 0.018529, 0.000809, 0.998989,-0.037076;;, + 67;4; 0.017514, 0.000765, 0.999044,-0.035045;;, + 68;4; 0.016402, 0.000716, 0.999105,-0.032820;;, + 69;4; 0.015204, 0.000664, 0.999170,-0.030422;;, + 70;4; 0.013928, 0.000608, 0.999240,-0.027869;;, + 71;4; 0.012583, 0.000549, 0.999313,-0.025179;;, + 72;4; 0.011179, 0.000488, 0.999390,-0.022368;;, + 73;4; 0.009723, 0.000425, 0.999469,-0.019456;;, + 74;4; 0.008227, 0.000359, 0.999551,-0.016461;;, + 75;4; 0.006701, 0.000293, 0.999634,-0.013408;;, + 76;4; 0.005161, 0.000225, 0.999718,-0.010327;;, + 77;4; 0.003631, 0.000159, 0.999802,-0.007266;;, + 78;4; 0.002152, 0.000094, 0.999883,-0.004305;;, + 79;4; 0.000815, 0.000036, 0.999956,-0.001631;;, + 80;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 81;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 82;4;-0.000815,-0.000036, 0.999956,-0.001631;;, + 83;4;-0.002152,-0.000094, 0.999883,-0.004305;;, + 84;4;-0.003631,-0.000159, 0.999802,-0.007266;;, + 85;4;-0.005161,-0.000225, 0.999718,-0.010327;;, + 86;4;-0.006701,-0.000293, 0.999634,-0.013408;;, + 87;4;-0.008226,-0.000359, 0.999551,-0.016461;;, + 88;4;-0.009723,-0.000425, 0.999469,-0.019456;;, + 89;4;-0.011179,-0.000488, 0.999390,-0.022368;;, + 90;4;-0.012583,-0.000549, 0.999313,-0.025179;;, + 91;4;-0.013928,-0.000608, 0.999240,-0.027869;;, + 92;4;-0.015204,-0.000664, 0.999170,-0.030422;;, + 93;4;-0.016402,-0.000716, 0.999105,-0.032820;;, + 94;4;-0.017514,-0.000765, 0.999044,-0.035045;;, + 95;4;-0.018529,-0.000809, 0.998989,-0.037076;;, + 96;4;-0.019436,-0.000849, 0.998939,-0.038890;;, + 97;4;-0.020221,-0.000883, 0.998896,-0.040461;;, + 98;4;-0.020870,-0.000911, 0.998861,-0.041760;;, + 99;4;-0.021364,-0.000933, 0.998834,-0.042748;;, + 100;4;-0.021681,-0.000947, 0.998817,-0.043383;;, + 101;4;-0.021794,-0.000952, 0.998811,-0.043609;;, + 102;4;-0.021720,-0.000948, 0.998817,-0.043369;;, + 103;4;-0.021494,-0.000938, 0.998837,-0.042642;;, + 104;4;-0.021108,-0.000922, 0.998870,-0.041428;;, + 105;4;-0.020560,-0.000898, 0.998916,-0.039733;;, + 106;4;-0.019848,-0.000867, 0.998975,-0.037579;;, + 107;4;-0.018975,-0.000828, 0.999045,-0.035002;;, + 108;4;-0.017947,-0.000784, 0.999126,-0.032056;;, + 109;4;-0.016778,-0.000733, 0.999214,-0.028814;;, + 110;4;-0.015484,-0.000676, 0.999308,-0.025363;;, + 111;4;-0.014088,-0.000615, 0.999405,-0.021804;;, + 112;4;-0.012616,-0.000551, 0.999502,-0.018246;;, + 113;4;-0.011095,-0.000484, 0.999596,-0.014795;;, + 114;4;-0.009555,-0.000417, 0.999685,-0.011553;;, + 115;4;-0.008021,-0.000350, 0.999765,-0.008607;;, + 116;4;-0.006517,-0.000285, 0.999835,-0.006030;;, + 117;4;-0.005062,-0.000221, 0.999894,-0.003876;;, + 118;4;-0.003674,-0.000160, 0.999941,-0.002181;;, + 119;4;-0.002362,-0.000103, 0.999974,-0.000967;;, + 120;4;-0.001136,-0.000050, 0.999993,-0.000240;;, + 121;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 122;4; 0.001136, 0.000050, 0.999993,-0.000240;;, + 123;4; 0.002362, 0.000103, 0.999974,-0.000967;;, + 124;4; 0.003674, 0.000160, 0.999941,-0.002181;;, + 125;4; 0.005062, 0.000221, 0.999894,-0.003876;;, + 126;4; 0.006517, 0.000285, 0.999835,-0.006030;;, + 127;4; 0.008021, 0.000350, 0.999765,-0.008607;;, + 128;4; 0.009555, 0.000417, 0.999685,-0.011553;;, + 129;4; 0.011095, 0.000484, 0.999596,-0.014795;;, + 130;4; 0.012616, 0.000551, 0.999502,-0.018246;;, + 131;4; 0.014088, 0.000615, 0.999405,-0.021804;;, + 132;4; 0.015484, 0.000676, 0.999308,-0.025363;;, + 133;4; 0.016778, 0.000733, 0.999214,-0.028814;;, + 134;4; 0.017947, 0.000784, 0.999126,-0.032056;;, + 135;4; 0.018975, 0.000828, 0.999045,-0.035002;;, + 136;4; 0.019848, 0.000867, 0.998975,-0.037579;;, + 137;4; 0.020560, 0.000898, 0.998916,-0.039733;;, + 138;4; 0.021108, 0.000922, 0.998870,-0.041428;;, + 139;4; 0.021494, 0.000938, 0.998837,-0.042642;;, + 140;4; 0.021720, 0.000948, 0.998817,-0.043369;;, + 141;4; 0.021794, 0.000952, 0.998811,-0.043609;;, + 142;4; 0.021681, 0.000947, 0.998817,-0.043383;;, + 143;4; 0.021364, 0.000933, 0.998834,-0.042748;;, + 144;4; 0.020870, 0.000911, 0.998861,-0.041760;;, + 145;4; 0.020221, 0.000883, 0.998896,-0.040461;;, + 146;4; 0.019436, 0.000849, 0.998939,-0.038890;;, + 147;4; 0.018529, 0.000809, 0.998989,-0.037076;;, + 148;4; 0.017514, 0.000765, 0.999044,-0.035045;;, + 149;4; 0.016402, 0.000716, 0.999105,-0.032820;;, + 150;4; 0.015204, 0.000664, 0.999170,-0.030422;;, + 151;4; 0.013928, 0.000608, 0.999240,-0.027869;;, + 152;4; 0.012583, 0.000549, 0.999313,-0.025179;;, + 153;4; 0.011179, 0.000488, 0.999390,-0.022368;;, + 154;4; 0.009723, 0.000425, 0.999469,-0.019456;;, + 155;4; 0.008227, 0.000359, 0.999551,-0.016461;;, + 156;4; 0.006701, 0.000293, 0.999634,-0.013408;;, + 157;4; 0.005161, 0.000225, 0.999718,-0.010327;;, + 158;4; 0.003631, 0.000159, 0.999802,-0.007266;;, + 159;4; 0.002152, 0.000094, 0.999883,-0.004305;;, + 160;4; 0.000815, 0.000036, 0.999956,-0.001631;;, + 161;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 162;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 163;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 164;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 165;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 166;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 167;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 168;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 169;4; 0.003877, 0.000000, 0.999915,-0.000000;;, + 170;4; 0.014799, 0.000000, 0.999677,-0.000000;;, + 171;4; 0.028821, 0.000000, 0.999371,-0.000000;;, + 172;4; 0.039742, 0.000000, 0.999133,-0.000000;;, + 173;4; 0.043619, 0.000000, 0.999048,-0.000000;;, + 174;4; 0.041150, 0.000000, 0.999133,-0.000000;;, + 175;4; 0.033580, 0.000000, 0.999371,-0.000000;;, + 176;4; 0.022207, 0.000000, 0.999677,-0.000000;;, + 177;4; 0.010132, 0.000000, 0.999915,-0.000000;;, + 178;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 179;4;-0.010132,-0.000000, 0.999915, 0.000000;;, + 180;4;-0.022206,-0.000000, 0.999677, 0.000000;;, + 181;4;-0.033580,-0.000000, 0.999371, 0.000000;;, + 182;4;-0.041150,-0.000000, 0.999133, 0.000000;;, + 183;4;-0.043619,-0.000000, 0.999048, 0.000000;;, + 184;4;-0.039742,-0.000000, 0.999133, 0.000000;;, + 185;4;-0.028821,-0.000000, 0.999371, 0.000000;;, + 186;4;-0.014798,-0.000000, 0.999677, 0.000000;;, + 187;4;-0.003877,-0.000000, 0.999915, 0.000000;;, + 188;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 189;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 190;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 191;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 192;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 193;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 194;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 195;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 196;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 197;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 198;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 199;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 200;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 201;4; 0.003877, 0.000000, 0.999915,-0.000000;;, + 202;4; 0.014799, 0.000000, 0.999677,-0.000000;;, + 203;4; 0.028821, 0.000000, 0.999371,-0.000000;;, + 204;4; 0.039742, 0.000000, 0.999133,-0.000000;;, + 205;4; 0.043619, 0.000000, 0.999048,-0.000000;;, + 206;4; 0.041150, 0.000000, 0.999133,-0.000000;;, + 207;4; 0.033580, 0.000000, 0.999371,-0.000000;;, + 208;4; 0.022207, 0.000000, 0.999677,-0.000000;;, + 209;4; 0.010132, 0.000000, 0.999915,-0.000000;;, + 210;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 211;4;-0.010132,-0.000000, 0.999915, 0.000000;;, + 212;4;-0.022206,-0.000000, 0.999677, 0.000000;;, + 213;4;-0.033580,-0.000000, 0.999371, 0.000000;;, + 214;4;-0.041150,-0.000000, 0.999133, 0.000000;;, + 215;4;-0.043619,-0.000000, 0.999048, 0.000000;;, + 216;4;-0.039742,-0.000000, 0.999133, 0.000000;;, + 217;4;-0.028821,-0.000000, 0.999371, 0.000000;;, + 218;4;-0.014799,-0.000000, 0.999677, 0.000000;;, + 219;4;-0.003877,-0.000000, 0.999915, 0.000000;;, + 220;4; 0.000000, 0.000000, 1.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3; 0.000000, 6.750000, 0.000000;;, + 1;3; 0.000000, 6.750000, 0.000000;;, + 2;3; 0.000000, 6.750000, 0.000000;;, + 3;3; 0.000000, 6.750000, 0.000000;;, + 4;3; 0.000000, 6.750000, 0.000000;;, + 5;3; 0.000000, 6.750000,-0.000000;;, + 6;3; 0.000000, 6.750000, 0.000000;;, + 7;3; 0.000000, 6.750000,-0.000000;;, + 8;3; 0.000000, 6.750000,-0.000000;;, + 9;3; 0.000000, 6.750000,-0.000000;;, + 10;3; 0.000000, 6.750000,-0.000000;;, + 11;3; 0.000000, 6.750000,-0.000000;;, + 12;3; 0.000000, 6.750000, 0.000000;;, + 13;3; 0.000000, 6.750000, 0.000000;;, + 14;3; 0.000000, 6.750000, 0.000000;;, + 15;3; 0.000000, 6.750000, 0.000000;;, + 16;3; 0.000000, 6.750000,-0.000000;;, + 17;3; 0.000000, 6.750000,-0.000000;;, + 18;3; 0.000000, 6.750000, 0.000000;;, + 19;3; 0.000000, 6.750000, 0.000000;;, + 20;3; 0.000000, 6.750000,-0.000000;;, + 21;3; 0.000000, 6.750000, 0.000000;;, + 22;3; 0.000000, 6.750000, 0.000000;;, + 23;3; 0.000000, 6.750000,-0.000000;;, + 24;3; 0.000000, 6.750000,-0.000000;;, + 25;3; 0.000000, 6.750000,-0.000000;;, + 26;3; 0.000000, 6.750000, 0.000000;;, + 27;3; 0.000000, 6.750000, 0.000000;;, + 28;3; 0.000000, 6.750000, 0.000000;;, + 29;3; 0.000000, 6.750000,-0.000000;;, + 30;3; 0.000000, 6.750000, 0.000000;;, + 31;3; 0.000000, 6.750000, 0.000000;;, + 32;3; 0.000000, 6.750000,-0.000000;;, + 33;3; 0.000000, 6.750000, 0.000000;;, + 34;3; 0.000000, 6.750000, 0.000000;;, + 35;3; 0.000000, 6.750000, 0.000000;;, + 36;3; 0.000000, 6.750000, 0.000000;;, + 37;3; 0.000000, 6.750000, 0.000000;;, + 38;3; 0.000000, 6.750000, 0.000000;;, + 39;3; 0.000000, 6.750000,-0.000000;;, + 40;3; 0.000000, 6.750000, 0.000000;;, + 41;3; 0.000000, 6.750000,-0.000000;;, + 42;3; 0.000000, 6.750000,-0.000000;;, + 43;3; 0.000000, 6.750000, 0.000000;;, + 44;3; 0.000000, 6.750000,-0.000000;;, + 45;3; 0.000000, 6.750000, 0.000000;;, + 46;3; 0.000000, 6.750000, 0.000000;;, + 47;3; 0.000000, 6.750000, 0.000000;;, + 48;3; 0.000000, 6.750000,-0.000000;;, + 49;3; 0.000000, 6.750000, 0.000000;;, + 50;3; 0.000000, 6.750000,-0.000000;;, + 51;3; 0.000000, 6.750000, 0.000000;;, + 52;3; 0.000000, 6.750000, 0.000000;;, + 53;3; 0.000000, 6.750000, 0.000000;;, + 54;3; 0.000000, 6.750000,-0.000000;;, + 55;3; 0.000000, 6.750000,-0.000000;;, + 56;3; 0.000000, 6.750000,-0.000000;;, + 57;3; 0.000000, 6.750000,-0.000000;;, + 58;3; 0.000000, 6.750000, 0.000000;;, + 59;3; 0.000000, 6.750000, 0.000000;;, + 60;3; 0.000000, 6.750000,-0.000000;;, + 61;3; 0.000000, 6.750000,-0.000000;;, + 62;3; 0.000000, 6.750000, 0.000000;;, + 63;3; 0.000000, 6.750000, 0.000000;;, + 64;3; 0.000000, 6.750000, 0.000000;;, + 65;3; 0.000000, 6.750000, 0.000000;;, + 66;3; 0.000000, 6.750000, 0.000000;;, + 67;3; 0.000000, 6.750000,-0.000000;;, + 68;3; 0.000000, 6.750000, 0.000000;;, + 69;3; 0.000000, 6.750000, 0.000000;;, + 70;3; 0.000000, 6.750000, 0.000000;;, + 71;3; 0.000000, 6.750000, 0.000000;;, + 72;3; 0.000000, 6.750000, 0.000000;;, + 73;3; 0.000000, 6.750000,-0.000000;;, + 74;3; 0.000000, 6.750000,-0.000000;;, + 75;3; 0.000000, 6.750000, 0.000000;;, + 76;3; 0.000000, 6.750000, 0.000000;;, + 77;3; 0.000000, 6.750000, 0.000000;;, + 78;3; 0.000000, 6.750001,-0.000000;;, + 79;3; 0.000000, 6.750000, 0.000000;;, + 80;3; 0.000000, 6.750000, 0.000000;;, + 81;3; 0.000000, 6.750000, 0.000000;;, + 82;3; 0.000000, 6.750000,-0.000000;;, + 83;3; 0.000000, 6.750000,-0.000000;;, + 84;3; 0.000000, 6.750000, 0.000000;;, + 85;3; 0.000000, 6.750000,-0.000000;;, + 86;3; 0.000000, 6.750000,-0.000000;;, + 87;3; 0.000000, 6.750000,-0.000000;;, + 88;3; 0.000000, 6.750000, 0.000000;;, + 89;3; 0.000000, 6.750000,-0.000000;;, + 90;3; 0.000000, 6.750000,-0.000000;;, + 91;3; 0.000000, 6.750000,-0.000000;;, + 92;3; 0.000000, 6.750000,-0.000000;;, + 93;3; 0.000000, 6.750000, 0.000000;;, + 94;3; 0.000000, 6.750000, 0.000000;;, + 95;3; 0.000000, 6.750000, 0.000000;;, + 96;3; 0.000000, 6.750000,-0.000000;;, + 97;3; 0.000000, 6.750000,-0.000000;;, + 98;3; 0.000000, 6.750000,-0.000000;;, + 99;3; 0.000000, 6.750000,-0.000000;;, + 100;3; 0.000000, 6.750000, 0.000000;;, + 101;3; 0.000000, 6.750000,-0.000000;;, + 102;3; 0.000000, 6.750000,-0.000000;;, + 103;3; 0.000000, 6.750000, 0.000000;;, + 104;3; 0.000000, 6.750000, 0.000000;;, + 105;3; 0.000000, 6.750000, 0.000000;;, + 106;3; 0.000000, 6.750000,-0.000000;;, + 107;3; 0.000000, 6.750000, 0.000000;;, + 108;3; 0.000000, 6.750000,-0.000000;;, + 109;3; 0.000000, 6.750000, 0.000000;;, + 110;3; 0.000000, 6.750000,-0.000000;;, + 111;3; 0.000000, 6.750000, 0.000000;;, + 112;3; 0.000000, 6.750000, 0.000000;;, + 113;3; 0.000000, 6.750000,-0.000000;;, + 114;3; 0.000000, 6.750000, 0.000000;;, + 115;3; 0.000000, 6.750000,-0.000000;;, + 116;3; 0.000000, 6.750000,-0.000000;;, + 117;3; 0.000000, 6.750000,-0.000000;;, + 118;3; 0.000000, 6.750000, 0.000000;;, + 119;3; 0.000000, 6.750000,-0.000000;;, + 120;3; 0.000000, 6.750000, 0.000000;;, + 121;3; 0.000000, 6.750000, 0.000000;;, + 122;3; 0.000000, 6.750000, 0.000000;;, + 123;3; 0.000000, 6.750000, 0.000000;;, + 124;3; 0.000000, 6.750000,-0.000000;;, + 125;3; 0.000000, 6.750000,-0.000000;;, + 126;3; 0.000000, 6.750000,-0.000000;;, + 127;3; 0.000000, 6.750000,-0.000000;;, + 128;3; 0.000000, 6.750000, 0.000000;;, + 129;3; 0.000000, 6.750000,-0.000000;;, + 130;3; 0.000000, 6.750000,-0.000000;;, + 131;3; 0.000000, 6.750000, 0.000000;;, + 132;3; 0.000000, 6.750000, 0.000000;;, + 133;3; 0.000000, 6.750000, 0.000000;;, + 134;3; 0.000000, 6.750000,-0.000000;;, + 135;3; 0.000000, 6.750000, 0.000000;;, + 136;3; 0.000000, 6.750000,-0.000000;;, + 137;3; 0.000000, 6.750000, 0.000000;;, + 138;3; 0.000000, 6.750000, 0.000000;;, + 139;3; 0.000000, 6.750000, 0.000000;;, + 140;3; 0.000000, 6.750000,-0.000000;;, + 141;3; 0.000000, 6.750000,-0.000000;;, + 142;3; 0.000000, 6.750000,-0.000000;;, + 143;3; 0.000000, 6.750000,-0.000000;;, + 144;3; 0.000000, 6.750000,-0.000000;;, + 145;3; 0.000000, 6.750000,-0.000000;;, + 146;3; 0.000000, 6.750000, 0.000000;;, + 147;3; 0.000000, 6.750000, 0.000000;;, + 148;3; 0.000000, 6.750000,-0.000000;;, + 149;3; 0.000000, 6.750000,-0.000000;;, + 150;3; 0.000000, 6.750000, 0.000000;;, + 151;3; 0.000000, 6.750000,-0.000000;;, + 152;3; 0.000000, 6.750000,-0.000000;;, + 153;3; 0.000000, 6.750000,-0.000000;;, + 154;3; 0.000000, 6.750000,-0.000000;;, + 155;3; 0.000000, 6.750000,-0.000000;;, + 156;3; 0.000000, 6.750000,-0.000000;;, + 157;3; 0.000000, 6.750000, 0.000000;;, + 158;3; 0.000000, 6.750000, 0.000000;;, + 159;3; 0.000000, 6.750000,-0.000000;;, + 160;3; 0.000000, 6.750000,-0.000000;;, + 161;3; 0.000000, 6.750000, 0.000000;;, + 162;3; 0.000000, 6.750000,-0.000000;;, + 163;3; 0.000000, 6.750000,-0.000000;;, + 164;3; 0.000000, 6.750000,-0.000000;;, + 165;3; 0.000000, 6.750000,-0.000000;;, + 166;3; 0.000000, 6.750000,-0.000000;;, + 167;3; 0.000000, 6.750000,-0.000000;;, + 168;3; 0.000000, 6.750000, 0.000000;;, + 169;3; 0.000000, 6.750000, 0.000000;;, + 170;3; 0.000000, 6.750000, 0.000000;;, + 171;3; 0.000000, 6.750000, 0.000000;;, + 172;3; 0.000000, 6.750000, 0.000000;;, + 173;3; 0.000000, 6.750000, 0.000000;;, + 174;3; 0.000000, 6.750000, 0.000000;;, + 175;3; 0.000000, 6.750000, 0.000000;;, + 176;3; 0.000000, 6.750000, 0.000000;;, + 177;3; 0.000000, 6.750000, 0.000000;;, + 178;3; 0.000000, 6.750000, 0.000000;;, + 179;3; 0.000000, 6.750000, 0.000000;;, + 180;3; 0.000000, 6.750000, 0.000000;;, + 181;3; 0.000000, 6.750000, 0.000000;;, + 182;3; 0.000000, 6.750000, 0.000000;;, + 183;3; 0.000000, 6.750000, 0.000000;;, + 184;3; 0.000000, 6.750000, 0.000000;;, + 185;3; 0.000000, 6.750000, 0.000000;;, + 186;3; 0.000000, 6.750000, 0.000000;;, + 187;3; 0.000000, 6.750000, 0.000000;;, + 188;3; 0.000000, 6.750000, 0.000000;;, + 189;3; 0.000000, 6.750000, 0.000000;;, + 190;3; 0.000000, 6.750000, 0.000000;;, + 191;3; 0.000000, 6.750000,-0.000000;;, + 192;3; 0.000000, 6.750000, 0.000000;;, + 193;3; 0.000000, 6.750000, 0.000000;;, + 194;3; 0.000000, 6.750001, 0.000000;;, + 195;3; 0.000000, 6.750000, 0.000000;;, + 196;3; 0.000000, 6.750000,-0.000000;;, + 197;3; 0.000000, 6.750000,-0.000000;;, + 198;3; 0.000000, 6.750000, 0.000000;;, + 199;3; 0.000000, 6.750000, 0.000000;;, + 200;3; 0.000000, 6.750000, 0.000000;;, + 201;3; 0.000000, 6.750000,-0.000000;;, + 202;3; 0.000000, 6.750000,-0.000000;;, + 203;3; 0.000000, 6.750000, 0.000000;;, + 204;3; 0.000000, 6.750000,-0.000000;;, + 205;3; 0.000000, 6.750000,-0.000000;;, + 206;3; 0.000000, 6.750000, 0.000000;;, + 207;3; 0.000000, 6.750000,-0.000000;;, + 208;3; 0.000000, 6.750000, 0.000000;;, + 209;3; 0.000000, 6.750000,-0.000000;;, + 210;3; 0.000000, 6.750001, 0.000000;;, + 211;3; 0.000000, 6.750000,-0.000000;;, + 212;3; 0.000000, 6.750000, 0.000000;;, + 213;3; 0.000000, 6.750000,-0.000000;;, + 214;3; 0.000000, 6.750000, 0.000000;;, + 215;3; 0.000000, 6.750000,-0.000000;;, + 216;3; 0.000000, 6.750000,-0.000000;;, + 217;3; 0.000000, 6.750000, 0.000000;;, + 218;3; 0.000000, 6.750000, 0.000000;;, + 219;3; 0.000000, 6.750000, 0.000000;;, + 220;3; 0.000000, 6.750000, 0.000000;;; + } + } + Animation { + {Armature_Arm_Left} + AnimationKey { // Rotation + 0; + 221; + 0;4; 0.000990, 0.997299,-0.072151,-0.013690;;, + 1;4; 0.000768, 0.997293,-0.072147,-0.013783;;, + 2;4; 0.000098, 0.997275,-0.072137,-0.014061;;, + 3;4;-0.001024, 0.997244,-0.072119,-0.014527;;, + 4;4;-0.002590, 0.997202,-0.072093,-0.015177;;, + 5;4;-0.004579, 0.997148,-0.072061,-0.016004;;, + 6;4;-0.006959, 0.997083,-0.072023,-0.016992;;, + 7;4;-0.009679, 0.997009,-0.071979,-0.018122;;, + 8;4;-0.012673, 0.996927,-0.071931,-0.019366;;, + 9;4;-0.015860, 0.996840,-0.071880,-0.020690;;, + 10;4;-0.019147, 0.996751,-0.071827,-0.022055;;, + 11;4;-0.022434, 0.996661,-0.071774,-0.023420;;, + 12;4;-0.025621, 0.996574,-0.071722,-0.024744;;, + 13;4;-0.028615, 0.996493,-0.071674,-0.025988;;, + 14;4;-0.031335, 0.996419,-0.071630,-0.027118;;, + 15;4;-0.033715, 0.996354,-0.071592,-0.028106;;, + 16;4;-0.035704, 0.996300,-0.071560,-0.028932;;, + 17;4;-0.037270, 0.996257,-0.071535,-0.029583;;, + 18;4;-0.038392, 0.996227,-0.071517,-0.030049;;, + 19;4;-0.039063, 0.996208,-0.071506,-0.030327;;, + 20;4;-0.039284, 0.996202,-0.071502,-0.030419;;, + 21;4;-0.039063, 0.996208,-0.071506,-0.030327;;, + 22;4;-0.038392, 0.996227,-0.071517,-0.030049;;, + 23;4;-0.037270, 0.996257,-0.071535,-0.029583;;, + 24;4;-0.035704, 0.996300,-0.071560,-0.028932;;, + 25;4;-0.033715, 0.996354,-0.071592,-0.028106;;, + 26;4;-0.031335, 0.996419,-0.071630,-0.027118;;, + 27;4;-0.028615, 0.996493,-0.071674,-0.025988;;, + 28;4;-0.025621, 0.996574,-0.071722,-0.024744;;, + 29;4;-0.022434, 0.996661,-0.071774,-0.023420;;, + 30;4;-0.019147, 0.996751,-0.071827,-0.022055;;, + 31;4;-0.015860, 0.996840,-0.071880,-0.020690;;, + 32;4;-0.012673, 0.996927,-0.071931,-0.019366;;, + 33;4;-0.009679, 0.997009,-0.071979,-0.018122;;, + 34;4;-0.006959, 0.997083,-0.072023,-0.016992;;, + 35;4;-0.004579, 0.997148,-0.072061,-0.016004;;, + 36;4;-0.002590, 0.997202,-0.072093,-0.015177;;, + 37;4;-0.001024, 0.997244,-0.072119,-0.014527;;, + 38;4; 0.000098, 0.997275,-0.072137,-0.014061;;, + 39;4; 0.000768, 0.997293,-0.072147,-0.013783;;, + 40;4; 0.000990, 0.997299,-0.072151,-0.013690;;, + 41;4; 0.000768, 0.997293,-0.072147,-0.013783;;, + 42;4; 0.000098, 0.997275,-0.072137,-0.014061;;, + 43;4;-0.001024, 0.997244,-0.072119,-0.014527;;, + 44;4;-0.002590, 0.997202,-0.072093,-0.015177;;, + 45;4;-0.004579, 0.997148,-0.072061,-0.016004;;, + 46;4;-0.006959, 0.997083,-0.072023,-0.016992;;, + 47;4;-0.009679, 0.997009,-0.071979,-0.018122;;, + 48;4;-0.012673, 0.996927,-0.071931,-0.019366;;, + 49;4;-0.015860, 0.996840,-0.071880,-0.020690;;, + 50;4;-0.019147, 0.996751,-0.071827,-0.022055;;, + 51;4;-0.022434, 0.996661,-0.071774,-0.023420;;, + 52;4;-0.025621, 0.996574,-0.071722,-0.024744;;, + 53;4;-0.028615, 0.996493,-0.071674,-0.025988;;, + 54;4;-0.031335, 0.996419,-0.071630,-0.027118;;, + 55;4;-0.033715, 0.996354,-0.071592,-0.028106;;, + 56;4;-0.035704, 0.996300,-0.071560,-0.028932;;, + 57;4;-0.037270, 0.996257,-0.071535,-0.029583;;, + 58;4;-0.038392, 0.996227,-0.071517,-0.030049;;, + 59;4;-0.039063, 0.996208,-0.071506,-0.030327;;, + 60;4;-0.039284, 0.996202,-0.071502,-0.030419;;, + 61;4;-0.039076, 0.996208,-0.071506,-0.030333;;, + 62;4;-0.038489, 0.996224,-0.071515,-0.030089;;, + 63;4;-0.037576, 0.996249,-0.071530,-0.029710;;, + 64;4;-0.036378, 0.996281,-0.071549,-0.029212;;, + 65;4;-0.034926, 0.996321,-0.071572,-0.028609;;, + 66;4;-0.033251, 0.996367,-0.071599,-0.027913;;, + 67;4;-0.031375, 0.996418,-0.071630,-0.027134;;, + 68;4;-0.029321, 0.996474,-0.071663,-0.026281;;, + 69;4;-0.027106, 0.996534,-0.071698,-0.025361;;, + 70;4;-0.024748, 0.996598,-0.071736,-0.024381;;, + 71;4;-0.022263, 0.996666,-0.071776,-0.023349;;, + 72;4;-0.019668, 0.996737,-0.071818,-0.022271;;, + 73;4;-0.016978, 0.996810,-0.071862,-0.021154;;, + 74;4;-0.014212, 0.996885,-0.071906,-0.020005;;, + 75;4;-0.011392, 0.996962,-0.071952,-0.018834;;, + 76;4;-0.008547, 0.997039,-0.071997,-0.017652;;, + 77;4;-0.005720, 0.997117,-0.072043,-0.016478;;, + 78;4;-0.002986, 0.997191,-0.072087,-0.015342;;, + 79;4;-0.000516, 0.997258,-0.072127,-0.014316;;, + 80;4; 0.000990, 0.997299,-0.072151,-0.013690;;, + 81;4; 0.000990, 0.997299,-0.072151,-0.013690;;, + 82;4;-0.000516, 0.997258,-0.072127,-0.014316;;, + 83;4;-0.002986, 0.997191,-0.072087,-0.015342;;, + 84;4;-0.005720, 0.997117,-0.072043,-0.016478;;, + 85;4;-0.008547, 0.997039,-0.071997,-0.017652;;, + 86;4;-0.011392, 0.996962,-0.071952,-0.018834;;, + 87;4;-0.014212, 0.996885,-0.071906,-0.020005;;, + 88;4;-0.016978, 0.996810,-0.071862,-0.021154;;, + 89;4;-0.019668, 0.996737,-0.071818,-0.022271;;, + 90;4;-0.022263, 0.996666,-0.071776,-0.023349;;, + 91;4;-0.024748, 0.996598,-0.071736,-0.024381;;, + 92;4;-0.027106, 0.996534,-0.071698,-0.025361;;, + 93;4;-0.029321, 0.996474,-0.071663,-0.026281;;, + 94;4;-0.031375, 0.996418,-0.071630,-0.027134;;, + 95;4;-0.033251, 0.996367,-0.071599,-0.027913;;, + 96;4;-0.034926, 0.996321,-0.071572,-0.028609;;, + 97;4;-0.036378, 0.996281,-0.071549,-0.029212;;, + 98;4;-0.037576, 0.996249,-0.071530,-0.029710;;, + 99;4;-0.038489, 0.996224,-0.071515,-0.030089;;, + 100;4;-0.039076, 0.996208,-0.071506,-0.030333;;, + 101;4;-0.039284, 0.996202,-0.071502,-0.030419;;, + 102;4;-0.039063, 0.996208,-0.071506,-0.030327;;, + 103;4;-0.038392, 0.996227,-0.071517,-0.030049;;, + 104;4;-0.037270, 0.996257,-0.071535,-0.029583;;, + 105;4;-0.035704, 0.996300,-0.071560,-0.028932;;, + 106;4;-0.033715, 0.996354,-0.071592,-0.028106;;, + 107;4;-0.031335, 0.996419,-0.071630,-0.027118;;, + 108;4;-0.028615, 0.996493,-0.071674,-0.025988;;, + 109;4;-0.025621, 0.996574,-0.071722,-0.024744;;, + 110;4;-0.022434, 0.996661,-0.071774,-0.023420;;, + 111;4;-0.019147, 0.996751,-0.071827,-0.022055;;, + 112;4;-0.015860, 0.996840,-0.071880,-0.020690;;, + 113;4;-0.012673, 0.996927,-0.071931,-0.019366;;, + 114;4;-0.009679, 0.997009,-0.071979,-0.018122;;, + 115;4;-0.006959, 0.997083,-0.072023,-0.016992;;, + 116;4;-0.004579, 0.997148,-0.072061,-0.016004;;, + 117;4;-0.002590, 0.997202,-0.072093,-0.015177;;, + 118;4;-0.001024, 0.997244,-0.072119,-0.014527;;, + 119;4; 0.000098, 0.997275,-0.072137,-0.014061;;, + 120;4; 0.000768, 0.997293,-0.072147,-0.013783;;, + 121;4; 0.000990, 0.997299,-0.072151,-0.013690;;, + 122;4; 0.000768, 0.997293,-0.072147,-0.013783;;, + 123;4; 0.000098, 0.997275,-0.072137,-0.014061;;, + 124;4;-0.001024, 0.997244,-0.072119,-0.014527;;, + 125;4;-0.002590, 0.997202,-0.072093,-0.015177;;, + 126;4;-0.004579, 0.997148,-0.072061,-0.016004;;, + 127;4;-0.006959, 0.997083,-0.072023,-0.016992;;, + 128;4;-0.009679, 0.997009,-0.071979,-0.018122;;, + 129;4;-0.012673, 0.996927,-0.071931,-0.019366;;, + 130;4;-0.015860, 0.996840,-0.071880,-0.020690;;, + 131;4;-0.019147, 0.996751,-0.071827,-0.022055;;, + 132;4;-0.022434, 0.996661,-0.071774,-0.023420;;, + 133;4;-0.025621, 0.996574,-0.071722,-0.024744;;, + 134;4;-0.028615, 0.996493,-0.071674,-0.025988;;, + 135;4;-0.031335, 0.996419,-0.071630,-0.027118;;, + 136;4;-0.033715, 0.996354,-0.071592,-0.028106;;, + 137;4;-0.035704, 0.996300,-0.071560,-0.028932;;, + 138;4;-0.037270, 0.996257,-0.071535,-0.029583;;, + 139;4;-0.038392, 0.996227,-0.071517,-0.030049;;, + 140;4;-0.039063, 0.996208,-0.071506,-0.030327;;, + 141;4;-0.039284, 0.996202,-0.071502,-0.030419;;, + 142;4;-0.039115, 0.996208,-0.071505,-0.030336;;, + 143;4;-0.038639, 0.996224,-0.071513,-0.030100;;, + 144;4;-0.037892, 0.996249,-0.071525,-0.029733;;, + 145;4;-0.036906, 0.996282,-0.071542,-0.029250;;, + 146;4;-0.035703, 0.996322,-0.071562,-0.028665;;, + 147;4;-0.034305, 0.996368,-0.071585,-0.027990;;, + 148;4;-0.032728, 0.996419,-0.071611,-0.027232;;, + 149;4;-0.030984, 0.996475,-0.071640,-0.026401;;, + 150;4;-0.029084, 0.996536,-0.071671,-0.025504;;, + 151;4;-0.027040, 0.996600,-0.071705,-0.024547;;, + 152;4;-0.024856, 0.996668,-0.071741,-0.023537;;, + 153;4;-0.022540, 0.996739,-0.071779,-0.022479;;, + 154;4;-0.020096, 0.996813,-0.071819,-0.021379;;, + 155;4;-0.017525, 0.996888,-0.071861,-0.020245;;, + 156;4;-0.014829, 0.996965,-0.071904,-0.019082;;, + 157;4;-0.012005, 0.997043,-0.071950,-0.017902;;, + 158;4;-0.009047, 0.997120,-0.071997,-0.016718;;, + 159;4;-0.005937, 0.997194,-0.072046,-0.015556;;, + 160;4;-0.002640, 0.997260,-0.072098,-0.014470;;, + 161;4; 0.000990, 0.997299,-0.072151,-0.013690;;, + 162;4; 0.003930, 0.958043,-0.286296,-0.013151;;, + 163;4; 0.003930, 0.958043,-0.286296,-0.013151;;, + 164;4; 0.003930, 0.958043,-0.286296,-0.013151;;, + 165;4; 0.003930, 0.958043,-0.286296,-0.013151;;, + 166;4; 0.003930, 0.958043,-0.286296,-0.013151;;, + 167;4; 0.003930, 0.958043,-0.286296,-0.013151;;, + 168;4; 0.000990, 0.997299,-0.072151,-0.013690;;, + 169;4; 0.027474, 0.993490,-0.067047,-0.017181;;, + 170;4; 0.101898, 0.981967,-0.063625,-0.027024;;, + 171;4; 0.197393, 0.966975,-0.061969,-0.039667;;, + 172;4; 0.271749, 0.955237,-0.061526,-0.049515;;, + 173;4; 0.298147, 0.951060,-0.061513,-0.053012;;, + 174;4; 0.281322, 0.955152,-0.062327,-0.050806;;, + 175;4; 0.229768, 0.966687,-0.064677,-0.044029;;, + 176;4; 0.152321, 0.981519,-0.067849,-0.033813;;, + 177;4; 0.070049, 0.993110,-0.070621,-0.022912;;, + 178;4; 0.000990, 0.997299,-0.072151,-0.013690;;, + 179;4;-0.068084, 0.993365,-0.072516,-0.004357;;, + 180;4;-0.150401, 0.982077,-0.072003, 0.006858;;, + 181;4;-0.227906, 0.967531,-0.070959, 0.017477;;, + 182;4;-0.279505, 0.956187,-0.070026, 0.024569;;, + 183;4;-0.296346, 0.952156,-0.069674, 0.026885;;, + 184;4;-0.269920, 0.956169,-0.069894, 0.023278;;, + 185;4;-0.195492, 0.967472,-0.070514, 0.013118;;, + 186;4;-0.099917, 0.981984,-0.071310, 0.000073;;, + 187;4;-0.025455, 0.993287,-0.071931,-0.010085;;, + 188;4; 0.000990, 0.997299,-0.072151,-0.013690;;, + 189;4; 0.000990, 0.997299,-0.072151,-0.013690;;, + 190;4; 0.008557, 0.996939,-0.072023,-0.015345;;, + 191;4; 0.029870, 0.995925,-0.071661,-0.020005;;, + 192;4; 0.057234, 0.994623,-0.071198,-0.025988;;, + 193;4; 0.078546, 0.993608,-0.070836,-0.030648;;, + 194;4; 0.086112, 0.993248,-0.070708,-0.032302;;, + 195;4; 0.078546, 0.993608,-0.070836,-0.030648;;, + 196;4; 0.057234, 0.994623,-0.071198,-0.025988;;, + 197;4; 0.029870, 0.995925,-0.071661,-0.020005;;, + 198;4; 0.008557, 0.996939,-0.072023,-0.015345;;, + 199;4; 0.000990, 0.997299,-0.072151,-0.013690;;, + 200;4; 0.000990, 0.997299,-0.072151,-0.013690;;, + 201;4; 0.027420, 0.993189,-0.071206,-0.017185;;, + 202;4; 0.101837, 0.981612,-0.068542,-0.027028;;, + 203;4; 0.197354, 0.966747,-0.065122,-0.039670;;, + 204;4; 0.271737, 0.955170,-0.062459,-0.049516;;, + 205;4; 0.298147, 0.951060,-0.061513,-0.053012;;, + 206;4; 0.281322, 0.955152,-0.062327,-0.050806;;, + 207;4; 0.229768, 0.966687,-0.064677,-0.044029;;, + 208;4; 0.152321, 0.981519,-0.067849,-0.033813;;, + 209;4; 0.070049, 0.993110,-0.070621,-0.022912;;, + 210;4; 0.000990, 0.997299,-0.072151,-0.013690;;, + 211;4;-0.068084, 0.993365,-0.072516,-0.004357;;, + 212;4;-0.150401, 0.982077,-0.072003, 0.006858;;, + 213;4;-0.227906, 0.967531,-0.070959, 0.017477;;, + 214;4;-0.279505, 0.956187,-0.070026, 0.024569;;, + 215;4;-0.296346, 0.952156,-0.069674, 0.026885;;, + 216;4;-0.269931, 0.956169,-0.069894, 0.023278;;, + 217;4;-0.195556, 0.967471,-0.070513, 0.013114;;, + 218;4;-0.100016, 0.981984,-0.071309, 0.000067;;, + 219;4;-0.025503, 0.993286,-0.071930,-0.010088;;, + 220;4; 0.000990, 0.997299,-0.072151,-0.013690;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 0.999995, 1.000000, 1.000000;;, + 1;3; 0.999995, 1.000000, 1.000000;;, + 2;3; 0.999995, 1.000000, 1.000000;;, + 3;3; 0.999995, 1.000000, 1.000000;;, + 4;3; 0.999995, 1.000000, 1.000000;;, + 5;3; 0.999995, 1.000000, 1.000000;;, + 6;3; 0.999995, 1.000000, 1.000000;;, + 7;3; 0.999995, 1.000000, 1.000000;;, + 8;3; 0.999995, 1.000000, 1.000000;;, + 9;3; 0.999995, 1.000000, 1.000000;;, + 10;3; 0.999995, 1.000000, 1.000000;;, + 11;3; 0.999995, 1.000000, 1.000000;;, + 12;3; 0.999995, 1.000000, 1.000000;;, + 13;3; 0.999995, 1.000000, 1.000000;;, + 14;3; 0.999995, 1.000000, 1.000000;;, + 15;3; 0.999995, 1.000000, 1.000000;;, + 16;3; 0.999995, 1.000000, 1.000000;;, + 17;3; 0.999995, 1.000000, 1.000000;;, + 18;3; 0.999995, 1.000000, 1.000000;;, + 19;3; 0.999995, 1.000000, 1.000000;;, + 20;3; 0.999995, 1.000000, 1.000000;;, + 21;3; 0.999995, 1.000000, 1.000000;;, + 22;3; 0.999995, 1.000000, 1.000000;;, + 23;3; 0.999995, 1.000000, 1.000000;;, + 24;3; 0.999995, 1.000000, 1.000000;;, + 25;3; 0.999995, 1.000000, 1.000000;;, + 26;3; 0.999995, 1.000000, 1.000000;;, + 27;3; 0.999995, 1.000000, 1.000000;;, + 28;3; 0.999995, 1.000000, 1.000000;;, + 29;3; 0.999995, 1.000000, 1.000000;;, + 30;3; 0.999995, 1.000000, 1.000000;;, + 31;3; 0.999995, 1.000000, 1.000000;;, + 32;3; 0.999995, 1.000000, 1.000000;;, + 33;3; 0.999995, 1.000000, 1.000000;;, + 34;3; 0.999995, 1.000000, 1.000000;;, + 35;3; 0.999995, 1.000000, 1.000000;;, + 36;3; 0.999995, 1.000000, 1.000000;;, + 37;3; 0.999995, 1.000000, 1.000000;;, + 38;3; 0.999995, 1.000000, 1.000000;;, + 39;3; 0.999995, 1.000000, 1.000000;;, + 40;3; 0.999995, 1.000000, 1.000000;;, + 41;3; 0.999995, 1.000000, 1.000000;;, + 42;3; 0.999995, 1.000000, 1.000000;;, + 43;3; 0.999995, 1.000000, 1.000000;;, + 44;3; 0.999995, 1.000000, 1.000000;;, + 45;3; 0.999995, 1.000000, 1.000000;;, + 46;3; 0.999995, 1.000000, 1.000000;;, + 47;3; 0.999995, 1.000000, 1.000000;;, + 48;3; 0.999995, 1.000000, 1.000000;;, + 49;3; 0.999995, 1.000000, 1.000000;;, + 50;3; 0.999995, 1.000000, 1.000000;;, + 51;3; 0.999995, 1.000000, 1.000000;;, + 52;3; 0.999995, 1.000000, 1.000000;;, + 53;3; 0.999995, 1.000000, 1.000000;;, + 54;3; 0.999995, 1.000000, 1.000000;;, + 55;3; 0.999995, 1.000000, 1.000000;;, + 56;3; 0.999995, 1.000000, 1.000000;;, + 57;3; 0.999995, 1.000000, 1.000000;;, + 58;3; 0.999995, 1.000000, 1.000000;;, + 59;3; 0.999995, 1.000000, 1.000000;;, + 60;3; 0.999995, 1.000000, 1.000000;;, + 61;3; 0.999995, 1.000000, 1.000000;;, + 62;3; 0.999995, 1.000000, 1.000000;;, + 63;3; 0.999995, 1.000000, 1.000000;;, + 64;3; 0.999995, 1.000000, 1.000000;;, + 65;3; 0.999995, 1.000000, 1.000000;;, + 66;3; 0.999995, 1.000000, 1.000000;;, + 67;3; 0.999995, 1.000000, 1.000000;;, + 68;3; 0.999995, 1.000000, 1.000000;;, + 69;3; 0.999995, 1.000000, 1.000000;;, + 70;3; 0.999995, 1.000000, 1.000000;;, + 71;3; 0.999995, 1.000000, 1.000000;;, + 72;3; 0.999995, 1.000000, 1.000000;;, + 73;3; 0.999995, 1.000000, 1.000000;;, + 74;3; 0.999995, 1.000000, 1.000000;;, + 75;3; 0.999995, 1.000000, 1.000000;;, + 76;3; 0.999995, 1.000000, 1.000000;;, + 77;3; 0.999995, 1.000000, 1.000000;;, + 78;3; 0.999995, 1.000000, 1.000000;;, + 79;3; 0.999995, 1.000000, 1.000000;;, + 80;3; 0.999995, 1.000000, 1.000000;;, + 81;3; 0.999995, 1.000000, 1.000000;;, + 82;3; 0.999995, 1.000000, 1.000000;;, + 83;3; 0.999995, 1.000000, 1.000000;;, + 84;3; 0.999995, 1.000000, 1.000000;;, + 85;3; 0.999995, 1.000000, 1.000000;;, + 86;3; 0.999995, 1.000000, 1.000000;;, + 87;3; 0.999995, 1.000000, 1.000000;;, + 88;3; 0.999995, 1.000000, 1.000000;;, + 89;3; 0.999995, 1.000000, 1.000000;;, + 90;3; 0.999995, 1.000000, 1.000000;;, + 91;3; 0.999995, 1.000000, 1.000000;;, + 92;3; 0.999995, 1.000000, 1.000000;;, + 93;3; 0.999995, 1.000000, 1.000000;;, + 94;3; 0.999995, 1.000000, 1.000000;;, + 95;3; 0.999995, 1.000000, 1.000000;;, + 96;3; 0.999995, 1.000000, 1.000000;;, + 97;3; 0.999995, 1.000000, 1.000000;;, + 98;3; 0.999995, 1.000000, 1.000000;;, + 99;3; 0.999995, 1.000000, 1.000000;;, + 100;3; 0.999995, 1.000000, 1.000000;;, + 101;3; 0.999995, 1.000000, 1.000000;;, + 102;3; 0.999995, 1.000000, 1.000000;;, + 103;3; 0.999995, 1.000000, 1.000000;;, + 104;3; 0.999995, 1.000000, 1.000000;;, + 105;3; 0.999995, 1.000000, 1.000000;;, + 106;3; 0.999995, 1.000000, 1.000000;;, + 107;3; 0.999995, 1.000000, 1.000000;;, + 108;3; 0.999995, 1.000000, 1.000000;;, + 109;3; 0.999995, 1.000000, 1.000000;;, + 110;3; 0.999995, 1.000000, 1.000000;;, + 111;3; 0.999995, 1.000000, 1.000000;;, + 112;3; 0.999995, 1.000000, 1.000000;;, + 113;3; 0.999995, 1.000000, 1.000000;;, + 114;3; 0.999995, 1.000000, 1.000000;;, + 115;3; 0.999995, 1.000000, 1.000000;;, + 116;3; 0.999995, 1.000000, 1.000000;;, + 117;3; 0.999995, 1.000000, 1.000000;;, + 118;3; 0.999995, 1.000000, 1.000000;;, + 119;3; 0.999995, 1.000000, 1.000000;;, + 120;3; 0.999995, 1.000000, 1.000000;;, + 121;3; 0.999995, 1.000000, 1.000000;;, + 122;3; 0.999995, 1.000000, 1.000000;;, + 123;3; 0.999995, 1.000000, 1.000000;;, + 124;3; 0.999995, 1.000000, 1.000000;;, + 125;3; 0.999995, 1.000000, 1.000000;;, + 126;3; 0.999995, 1.000000, 1.000000;;, + 127;3; 0.999995, 1.000000, 1.000000;;, + 128;3; 0.999995, 1.000000, 1.000000;;, + 129;3; 0.999995, 1.000000, 1.000000;;, + 130;3; 0.999995, 1.000000, 1.000000;;, + 131;3; 0.999995, 1.000000, 1.000000;;, + 132;3; 0.999995, 1.000000, 1.000000;;, + 133;3; 0.999995, 1.000000, 1.000000;;, + 134;3; 0.999995, 1.000000, 1.000000;;, + 135;3; 0.999995, 1.000000, 1.000000;;, + 136;3; 0.999995, 1.000000, 1.000000;;, + 137;3; 0.999995, 1.000000, 1.000000;;, + 138;3; 0.999995, 1.000000, 1.000000;;, + 139;3; 0.999995, 1.000000, 1.000000;;, + 140;3; 0.999995, 1.000000, 1.000000;;, + 141;3; 0.999995, 1.000000, 1.000000;;, + 142;3; 0.999995, 1.000000, 1.000000;;, + 143;3; 0.999995, 1.000000, 1.000000;;, + 144;3; 0.999995, 1.000000, 1.000000;;, + 145;3; 0.999995, 1.000000, 1.000000;;, + 146;3; 0.999995, 1.000000, 1.000000;;, + 147;3; 0.999995, 1.000000, 1.000000;;, + 148;3; 0.999995, 1.000000, 1.000000;;, + 149;3; 0.999995, 1.000000, 1.000000;;, + 150;3; 0.999995, 1.000000, 1.000000;;, + 151;3; 0.999995, 1.000000, 1.000000;;, + 152;3; 0.999995, 1.000000, 1.000000;;, + 153;3; 0.999995, 1.000000, 1.000000;;, + 154;3; 0.999995, 1.000000, 1.000000;;, + 155;3; 0.999995, 1.000000, 1.000000;;, + 156;3; 0.999995, 1.000000, 1.000000;;, + 157;3; 0.999995, 1.000000, 1.000000;;, + 158;3; 0.999995, 1.000000, 1.000000;;, + 159;3; 0.999995, 1.000000, 1.000000;;, + 160;3; 0.999995, 1.000000, 1.000000;;, + 161;3; 0.999995, 1.000000, 1.000000;;, + 162;3; 0.999996, 0.999999, 1.000000;;, + 163;3; 0.999996, 0.999999, 1.000000;;, + 164;3; 0.999996, 0.999999, 1.000000;;, + 165;3; 0.999996, 0.999999, 1.000000;;, + 166;3; 0.999996, 0.999999, 1.000000;;, + 167;3; 0.999996, 0.999999, 1.000000;;, + 168;3; 0.999995, 1.000000, 1.000000;;, + 169;3; 0.999995, 1.000000, 1.000000;;, + 170;3; 0.999995, 1.000000, 1.000000;;, + 171;3; 0.999995, 1.000000, 1.000000;;, + 172;3; 0.999995, 1.000000, 1.000000;;, + 173;3; 0.999995, 1.000000, 1.000000;;, + 174;3; 0.999995, 1.000000, 1.000000;;, + 175;3; 0.999995, 1.000000, 1.000000;;, + 176;3; 0.999995, 1.000000, 1.000000;;, + 177;3; 0.999995, 1.000000, 1.000000;;, + 178;3; 0.999995, 1.000000, 1.000000;;, + 179;3; 0.999995, 1.000000, 1.000000;;, + 180;3; 0.999995, 1.000000, 1.000000;;, + 181;3; 0.999995, 1.000000, 1.000000;;, + 182;3; 0.999995, 1.000000, 1.000000;;, + 183;3; 0.999995, 1.000000, 1.000000;;, + 184;3; 0.999995, 1.000000, 1.000000;;, + 185;3; 0.999995, 1.000000, 1.000000;;, + 186;3; 0.999995, 1.000000, 1.000000;;, + 187;3; 0.999995, 1.000000, 1.000000;;, + 188;3; 0.999995, 1.000000, 1.000000;;, + 189;3; 0.999995, 1.000000, 1.000000;;, + 190;3; 0.999995, 1.000000, 1.000000;;, + 191;3; 0.999995, 1.000000, 1.000000;;, + 192;3; 0.999995, 1.000000, 1.000000;;, + 193;3; 0.999995, 1.000000, 1.000000;;, + 194;3; 0.999995, 1.000000, 1.000000;;, + 195;3; 0.999995, 1.000000, 1.000000;;, + 196;3; 0.999995, 1.000000, 1.000000;;, + 197;3; 0.999995, 1.000000, 1.000000;;, + 198;3; 0.999995, 1.000000, 1.000000;;, + 199;3; 0.999995, 1.000000, 1.000000;;, + 200;3; 0.999995, 1.000000, 1.000000;;, + 201;3; 0.999995, 1.000000, 1.000000;;, + 202;3; 0.999995, 1.000000, 1.000000;;, + 203;3; 0.999995, 1.000000, 1.000000;;, + 204;3; 0.999995, 1.000000, 1.000000;;, + 205;3; 0.999995, 1.000000, 1.000000;;, + 206;3; 0.999995, 1.000000, 1.000000;;, + 207;3; 0.999995, 1.000000, 1.000000;;, + 208;3; 0.999995, 1.000000, 1.000000;;, + 209;3; 0.999995, 1.000000, 1.000000;;, + 210;3; 0.999995, 1.000000, 1.000000;;, + 211;3; 0.999995, 1.000000, 1.000000;;, + 212;3; 0.999995, 1.000000, 1.000000;;, + 213;3; 0.999995, 1.000000, 1.000000;;, + 214;3; 0.999995, 1.000000, 1.000000;;, + 215;3; 0.999995, 1.000000, 1.000000;;, + 216;3; 0.999995, 1.000000, 1.000000;;, + 217;3; 0.999995, 1.000000, 1.000000;;, + 218;3; 0.999995, 1.000000, 1.000000;;, + 219;3; 0.999995, 1.000000, 1.000000;;, + 220;3; 0.999995, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3;-2.000000, 6.750000, 0.000000;;, + 1;3;-2.000000, 6.750000, 0.000000;;, + 2;3;-2.000000, 6.750000, 0.000000;;, + 3;3;-2.000000, 6.750000, 0.000000;;, + 4;3;-2.000000, 6.750000, 0.000000;;, + 5;3;-2.000000, 6.750000,-0.000000;;, + 6;3;-2.000000, 6.750000, 0.000000;;, + 7;3;-2.000000, 6.750000,-0.000000;;, + 8;3;-2.000000, 6.750000,-0.000000;;, + 9;3;-2.000000, 6.750000,-0.000000;;, + 10;3;-2.000000, 6.750000,-0.000000;;, + 11;3;-2.000000, 6.750000,-0.000000;;, + 12;3;-2.000000, 6.750000, 0.000000;;, + 13;3;-2.000000, 6.750000, 0.000000;;, + 14;3;-2.000000, 6.750000, 0.000000;;, + 15;3;-2.000000, 6.750000, 0.000000;;, + 16;3;-2.000000, 6.750000,-0.000000;;, + 17;3;-2.000000, 6.750000,-0.000000;;, + 18;3;-2.000000, 6.750000, 0.000000;;, + 19;3;-2.000000, 6.750000, 0.000000;;, + 20;3;-2.000000, 6.750000,-0.000000;;, + 21;3;-2.000000, 6.750000, 0.000000;;, + 22;3;-2.000000, 6.750000, 0.000000;;, + 23;3;-2.000000, 6.750000,-0.000000;;, + 24;3;-2.000000, 6.750000,-0.000000;;, + 25;3;-2.000000, 6.750000,-0.000000;;, + 26;3;-2.000000, 6.750000, 0.000000;;, + 27;3;-2.000000, 6.750000, 0.000000;;, + 28;3;-2.000000, 6.750000, 0.000000;;, + 29;3;-2.000000, 6.750000,-0.000000;;, + 30;3;-2.000000, 6.750000, 0.000000;;, + 31;3;-2.000000, 6.750000, 0.000000;;, + 32;3;-2.000000, 6.750000,-0.000000;;, + 33;3;-2.000000, 6.750000, 0.000000;;, + 34;3;-2.000000, 6.750000, 0.000000;;, + 35;3;-2.000000, 6.750000, 0.000000;;, + 36;3;-2.000000, 6.750000, 0.000000;;, + 37;3;-2.000000, 6.750000, 0.000000;;, + 38;3;-2.000000, 6.750000, 0.000000;;, + 39;3;-2.000000, 6.750000,-0.000000;;, + 40;3;-2.000000, 6.750000, 0.000000;;, + 41;3;-2.000000, 6.750000,-0.000000;;, + 42;3;-2.000000, 6.750000,-0.000000;;, + 43;3;-2.000000, 6.750000, 0.000000;;, + 44;3;-2.000000, 6.750000,-0.000000;;, + 45;3;-2.000000, 6.750000, 0.000000;;, + 46;3;-2.000000, 6.750000, 0.000000;;, + 47;3;-2.000000, 6.750000, 0.000000;;, + 48;3;-2.000000, 6.750000,-0.000000;;, + 49;3;-2.000000, 6.750000, 0.000000;;, + 50;3;-2.000000, 6.750000,-0.000000;;, + 51;3;-2.000000, 6.750000, 0.000000;;, + 52;3;-2.000000, 6.750000, 0.000000;;, + 53;3;-2.000000, 6.750000, 0.000000;;, + 54;3;-2.000000, 6.750000,-0.000000;;, + 55;3;-2.000000, 6.750000,-0.000000;;, + 56;3;-2.000000, 6.750000,-0.000000;;, + 57;3;-2.000000, 6.750000,-0.000000;;, + 58;3;-2.000000, 6.750000, 0.000000;;, + 59;3;-2.000000, 6.750000, 0.000000;;, + 60;3;-2.000000, 6.750000,-0.000000;;, + 61;3;-2.000000, 6.750000,-0.000000;;, + 62;3;-2.000000, 6.750000, 0.000000;;, + 63;3;-2.000000, 6.750000, 0.000000;;, + 64;3;-2.000000, 6.750000, 0.000000;;, + 65;3;-2.000000, 6.750000, 0.000000;;, + 66;3;-2.000000, 6.750000, 0.000000;;, + 67;3;-2.000000, 6.750000,-0.000000;;, + 68;3;-2.000000, 6.750000, 0.000000;;, + 69;3;-2.000000, 6.750000, 0.000000;;, + 70;3;-2.000000, 6.750000, 0.000000;;, + 71;3;-2.000000, 6.750000, 0.000000;;, + 72;3;-2.000000, 6.750000, 0.000000;;, + 73;3;-2.000000, 6.750000,-0.000000;;, + 74;3;-2.000000, 6.750000,-0.000000;;, + 75;3;-2.000000, 6.750000, 0.000000;;, + 76;3;-2.000000, 6.750000, 0.000000;;, + 77;3;-2.000000, 6.750000, 0.000000;;, + 78;3;-2.000000, 6.750001,-0.000000;;, + 79;3;-2.000000, 6.750000, 0.000000;;, + 80;3;-2.000000, 6.750000, 0.000000;;, + 81;3;-2.000000, 6.750000, 0.000000;;, + 82;3;-2.000000, 6.750000,-0.000000;;, + 83;3;-2.000000, 6.750000,-0.000000;;, + 84;3;-2.000000, 6.750000, 0.000000;;, + 85;3;-2.000000, 6.750000,-0.000000;;, + 86;3;-2.000000, 6.750000,-0.000000;;, + 87;3;-2.000000, 6.750000,-0.000000;;, + 88;3;-2.000000, 6.750000, 0.000000;;, + 89;3;-2.000000, 6.750000,-0.000000;;, + 90;3;-2.000000, 6.750000,-0.000000;;, + 91;3;-2.000000, 6.750000,-0.000000;;, + 92;3;-2.000000, 6.750000,-0.000000;;, + 93;3;-2.000000, 6.750000, 0.000000;;, + 94;3;-2.000000, 6.750000, 0.000000;;, + 95;3;-2.000000, 6.750000, 0.000000;;, + 96;3;-2.000000, 6.750000,-0.000000;;, + 97;3;-2.000000, 6.750000,-0.000000;;, + 98;3;-2.000000, 6.750000,-0.000000;;, + 99;3;-2.000000, 6.750000,-0.000000;;, + 100;3;-2.000000, 6.750000, 0.000000;;, + 101;3;-2.000000, 6.750000,-0.000000;;, + 102;3;-2.000000, 6.750000,-0.000000;;, + 103;3;-2.000000, 6.750000, 0.000000;;, + 104;3;-2.000000, 6.750000, 0.000000;;, + 105;3;-2.000000, 6.750000, 0.000000;;, + 106;3;-2.000000, 6.750000,-0.000000;;, + 107;3;-2.000000, 6.750000, 0.000000;;, + 108;3;-2.000000, 6.750000,-0.000000;;, + 109;3;-2.000000, 6.750000, 0.000000;;, + 110;3;-2.000000, 6.750000,-0.000000;;, + 111;3;-2.000000, 6.750000, 0.000000;;, + 112;3;-2.000000, 6.750000, 0.000000;;, + 113;3;-2.000000, 6.750000,-0.000000;;, + 114;3;-2.000000, 6.750000, 0.000000;;, + 115;3;-2.000000, 6.750000,-0.000000;;, + 116;3;-2.000000, 6.750000,-0.000000;;, + 117;3;-2.000000, 6.750000,-0.000000;;, + 118;3;-2.000000, 6.750000, 0.000000;;, + 119;3;-2.000000, 6.750000,-0.000000;;, + 120;3;-2.000000, 6.750000, 0.000000;;, + 121;3;-2.000000, 6.750000, 0.000000;;, + 122;3;-2.000000, 6.750000, 0.000000;;, + 123;3;-2.000000, 6.750000, 0.000000;;, + 124;3;-2.000000, 6.750000,-0.000000;;, + 125;3;-2.000000, 6.750000,-0.000000;;, + 126;3;-2.000000, 6.750000,-0.000000;;, + 127;3;-2.000000, 6.750000,-0.000000;;, + 128;3;-2.000000, 6.750000, 0.000000;;, + 129;3;-2.000000, 6.750000,-0.000000;;, + 130;3;-2.000000, 6.750000,-0.000000;;, + 131;3;-2.000000, 6.750000, 0.000000;;, + 132;3;-2.000000, 6.750000, 0.000000;;, + 133;3;-2.000000, 6.750000, 0.000000;;, + 134;3;-2.000000, 6.750000,-0.000000;;, + 135;3;-2.000000, 6.750000, 0.000000;;, + 136;3;-2.000000, 6.750000,-0.000000;;, + 137;3;-2.000000, 6.750000, 0.000000;;, + 138;3;-2.000000, 6.750000, 0.000000;;, + 139;3;-2.000000, 6.750000, 0.000000;;, + 140;3;-2.000000, 6.750000,-0.000000;;, + 141;3;-2.000000, 6.750000,-0.000000;;, + 142;3;-2.000000, 6.750000,-0.000000;;, + 143;3;-2.000000, 6.750000,-0.000000;;, + 144;3;-2.000000, 6.750000,-0.000000;;, + 145;3;-2.000000, 6.750000,-0.000000;;, + 146;3;-2.000000, 6.750000, 0.000000;;, + 147;3;-2.000000, 6.750000, 0.000000;;, + 148;3;-2.000000, 6.750000,-0.000000;;, + 149;3;-2.000000, 6.750000,-0.000000;;, + 150;3;-2.000000, 6.750000, 0.000000;;, + 151;3;-2.000000, 6.750000,-0.000000;;, + 152;3;-2.000000, 6.750000,-0.000000;;, + 153;3;-2.000000, 6.750000,-0.000000;;, + 154;3;-2.000000, 6.750000,-0.000000;;, + 155;3;-2.000000, 6.750000,-0.000000;;, + 156;3;-2.000000, 6.750000,-0.000000;;, + 157;3;-2.000000, 6.750000, 0.000000;;, + 158;3;-2.000000, 6.750000, 0.000000;;, + 159;3;-2.000000, 6.750000,-0.000000;;, + 160;3;-2.000000, 6.750000,-0.000000;;, + 161;3;-2.000000, 6.750000, 0.000000;;, + 162;3;-2.000000, 6.750000,-0.000000;;, + 163;3;-2.000000, 6.750000,-0.000000;;, + 164;3;-2.000000, 6.750000,-0.000000;;, + 165;3;-2.000000, 6.750000,-0.000000;;, + 166;3;-2.000000, 6.750000,-0.000000;;, + 167;3;-2.000000, 6.750000,-0.000000;;, + 168;3;-2.000000, 6.750000, 0.000000;;, + 169;3;-2.000000, 6.750000, 0.000000;;, + 170;3;-2.000000, 6.750000, 0.000000;;, + 171;3;-2.000000, 6.750000, 0.000000;;, + 172;3;-2.000000, 6.750000, 0.000000;;, + 173;3;-2.000000, 6.750000, 0.000000;;, + 174;3;-2.000000, 6.750000, 0.000000;;, + 175;3;-2.000000, 6.750000, 0.000000;;, + 176;3;-2.000000, 6.750000, 0.000000;;, + 177;3;-2.000000, 6.750000, 0.000000;;, + 178;3;-2.000000, 6.750000, 0.000000;;, + 179;3;-2.000000, 6.750000, 0.000000;;, + 180;3;-2.000000, 6.750000, 0.000000;;, + 181;3;-2.000000, 6.750000, 0.000000;;, + 182;3;-2.000000, 6.750000, 0.000000;;, + 183;3;-2.000000, 6.750000, 0.000000;;, + 184;3;-2.000000, 6.750000, 0.000000;;, + 185;3;-2.000000, 6.750000, 0.000000;;, + 186;3;-2.000000, 6.750000, 0.000000;;, + 187;3;-2.000000, 6.750000, 0.000000;;, + 188;3;-2.000000, 6.750000, 0.000000;;, + 189;3;-2.000000, 6.750000, 0.000000;;, + 190;3;-2.000000, 6.750000, 0.000000;;, + 191;3;-2.000000, 6.750000,-0.000000;;, + 192;3;-2.000000, 6.750000, 0.000000;;, + 193;3;-2.000000, 6.750000, 0.000000;;, + 194;3;-2.000000, 6.750001, 0.000000;;, + 195;3;-2.000000, 6.750000, 0.000000;;, + 196;3;-2.000000, 6.750000,-0.000000;;, + 197;3;-2.000000, 6.750000,-0.000000;;, + 198;3;-2.000000, 6.750000, 0.000000;;, + 199;3;-2.000000, 6.750000, 0.000000;;, + 200;3;-2.000000, 6.750000, 0.000000;;, + 201;3;-2.000000, 6.750000,-0.000000;;, + 202;3;-2.000000, 6.750000,-0.000000;;, + 203;3;-2.000000, 6.750000, 0.000000;;, + 204;3;-2.000000, 6.750000,-0.000000;;, + 205;3;-2.000000, 6.750000,-0.000000;;, + 206;3;-2.000000, 6.750000, 0.000000;;, + 207;3;-2.000000, 6.750000,-0.000000;;, + 208;3;-2.000000, 6.750000, 0.000000;;, + 209;3;-2.000000, 6.750000,-0.000000;;, + 210;3;-2.000000, 6.750001, 0.000000;;, + 211;3;-2.000000, 6.750000,-0.000000;;, + 212;3;-2.000000, 6.750000, 0.000000;;, + 213;3;-2.000000, 6.750000,-0.000000;;, + 214;3;-2.000000, 6.750000, 0.000000;;, + 215;3;-2.000000, 6.750000,-0.000000;;, + 216;3;-2.000000, 6.750000,-0.000000;;, + 217;3;-2.000000, 6.750000, 0.000000;;, + 218;3;-2.000000, 6.750000, 0.000000;;, + 219;3;-2.000000, 6.750000, 0.000000;;, + 220;3;-2.000000, 6.750000, 0.000000;;; + } + } + Animation { + {Armature_Arm_Right} + AnimationKey { // Rotation + 0; + 221; + 0;4; 0.000990, 0.997299, 0.072151, 0.013690;;, + 1;4; 0.000768, 0.997293, 0.072147, 0.013783;;, + 2;4; 0.000098, 0.997275, 0.072137, 0.014061;;, + 3;4;-0.001024, 0.997244, 0.072119, 0.014527;;, + 4;4;-0.002590, 0.997202, 0.072093, 0.015177;;, + 5;4;-0.004579, 0.997148, 0.072061, 0.016004;;, + 6;4;-0.006959, 0.997083, 0.072023, 0.016992;;, + 7;4;-0.009679, 0.997009, 0.071979, 0.018122;;, + 8;4;-0.012673, 0.996927, 0.071931, 0.019366;;, + 9;4;-0.015860, 0.996840, 0.071880, 0.020690;;, + 10;4;-0.019147, 0.996751, 0.071827, 0.022055;;, + 11;4;-0.022434, 0.996661, 0.071774, 0.023420;;, + 12;4;-0.025621, 0.996574, 0.071722, 0.024744;;, + 13;4;-0.028615, 0.996493, 0.071674, 0.025988;;, + 14;4;-0.031335, 0.996419, 0.071630, 0.027118;;, + 15;4;-0.033715, 0.996354, 0.071592, 0.028106;;, + 16;4;-0.035704, 0.996300, 0.071560, 0.028932;;, + 17;4;-0.037270, 0.996257, 0.071535, 0.029583;;, + 18;4;-0.038392, 0.996227, 0.071517, 0.030049;;, + 19;4;-0.039063, 0.996208, 0.071506, 0.030327;;, + 20;4;-0.039284, 0.996202, 0.071502, 0.030419;;, + 21;4;-0.039063, 0.996208, 0.071506, 0.030327;;, + 22;4;-0.038392, 0.996227, 0.071517, 0.030049;;, + 23;4;-0.037270, 0.996257, 0.071535, 0.029583;;, + 24;4;-0.035704, 0.996300, 0.071560, 0.028932;;, + 25;4;-0.033715, 0.996354, 0.071592, 0.028106;;, + 26;4;-0.031335, 0.996419, 0.071630, 0.027118;;, + 27;4;-0.028615, 0.996493, 0.071674, 0.025988;;, + 28;4;-0.025621, 0.996574, 0.071722, 0.024744;;, + 29;4;-0.022434, 0.996661, 0.071774, 0.023420;;, + 30;4;-0.019147, 0.996751, 0.071827, 0.022055;;, + 31;4;-0.015860, 0.996840, 0.071880, 0.020690;;, + 32;4;-0.012673, 0.996927, 0.071931, 0.019366;;, + 33;4;-0.009679, 0.997009, 0.071979, 0.018122;;, + 34;4;-0.006959, 0.997083, 0.072023, 0.016992;;, + 35;4;-0.004579, 0.997148, 0.072061, 0.016004;;, + 36;4;-0.002590, 0.997202, 0.072093, 0.015177;;, + 37;4;-0.001024, 0.997244, 0.072119, 0.014527;;, + 38;4; 0.000098, 0.997275, 0.072137, 0.014061;;, + 39;4; 0.000768, 0.997293, 0.072147, 0.013783;;, + 40;4; 0.000990, 0.997299, 0.072151, 0.013690;;, + 41;4; 0.000768, 0.997293, 0.072147, 0.013783;;, + 42;4; 0.000098, 0.997275, 0.072137, 0.014061;;, + 43;4;-0.001024, 0.997244, 0.072119, 0.014527;;, + 44;4;-0.002590, 0.997202, 0.072093, 0.015177;;, + 45;4;-0.004579, 0.997148, 0.072061, 0.016004;;, + 46;4;-0.006959, 0.997083, 0.072023, 0.016992;;, + 47;4;-0.009679, 0.997009, 0.071979, 0.018122;;, + 48;4;-0.012673, 0.996927, 0.071931, 0.019366;;, + 49;4;-0.015860, 0.996840, 0.071880, 0.020690;;, + 50;4;-0.019147, 0.996751, 0.071827, 0.022055;;, + 51;4;-0.022434, 0.996661, 0.071774, 0.023420;;, + 52;4;-0.025621, 0.996574, 0.071722, 0.024744;;, + 53;4;-0.028615, 0.996493, 0.071674, 0.025988;;, + 54;4;-0.031335, 0.996419, 0.071630, 0.027118;;, + 55;4;-0.033715, 0.996354, 0.071592, 0.028106;;, + 56;4;-0.035704, 0.996300, 0.071560, 0.028932;;, + 57;4;-0.037270, 0.996257, 0.071535, 0.029583;;, + 58;4;-0.038392, 0.996227, 0.071517, 0.030049;;, + 59;4;-0.039063, 0.996208, 0.071506, 0.030327;;, + 60;4;-0.039284, 0.996202, 0.071502, 0.030419;;, + 61;4;-0.039076, 0.996208, 0.071506, 0.030333;;, + 62;4;-0.038489, 0.996224, 0.071515, 0.030089;;, + 63;4;-0.037576, 0.996249, 0.071530, 0.029710;;, + 64;4;-0.036378, 0.996281, 0.071549, 0.029212;;, + 65;4;-0.034926, 0.996321, 0.071572, 0.028609;;, + 66;4;-0.033251, 0.996367, 0.071599, 0.027913;;, + 67;4;-0.031375, 0.996418, 0.071630, 0.027134;;, + 68;4;-0.029321, 0.996474, 0.071663, 0.026281;;, + 69;4;-0.027106, 0.996534, 0.071698, 0.025361;;, + 70;4;-0.024748, 0.996598, 0.071736, 0.024381;;, + 71;4;-0.022263, 0.996666, 0.071776, 0.023349;;, + 72;4;-0.019668, 0.996737, 0.071818, 0.022271;;, + 73;4;-0.016978, 0.996810, 0.071862, 0.021154;;, + 74;4;-0.014212, 0.996885, 0.071906, 0.020005;;, + 75;4;-0.011392, 0.996962, 0.071952, 0.018834;;, + 76;4;-0.008547, 0.997039, 0.071997, 0.017652;;, + 77;4;-0.005720, 0.997117, 0.072043, 0.016478;;, + 78;4;-0.002986, 0.997191, 0.072087, 0.015342;;, + 79;4;-0.000516, 0.997258, 0.072127, 0.014316;;, + 80;4; 0.000990, 0.997299, 0.072151, 0.013690;;, + 81;4; 0.000990, 0.997299, 0.072151, 0.013690;;, + 82;4;-0.000516, 0.997258, 0.072127, 0.014316;;, + 83;4;-0.002986, 0.997191, 0.072087, 0.015342;;, + 84;4;-0.005720, 0.997117, 0.072043, 0.016478;;, + 85;4;-0.008547, 0.997039, 0.071997, 0.017652;;, + 86;4;-0.011392, 0.996962, 0.071952, 0.018834;;, + 87;4;-0.014212, 0.996885, 0.071906, 0.020005;;, + 88;4;-0.016978, 0.996810, 0.071862, 0.021154;;, + 89;4;-0.019668, 0.996737, 0.071818, 0.022271;;, + 90;4;-0.022263, 0.996666, 0.071776, 0.023349;;, + 91;4;-0.024748, 0.996598, 0.071736, 0.024381;;, + 92;4;-0.027106, 0.996534, 0.071698, 0.025361;;, + 93;4;-0.029321, 0.996474, 0.071663, 0.026281;;, + 94;4;-0.031375, 0.996418, 0.071630, 0.027134;;, + 95;4;-0.033251, 0.996367, 0.071599, 0.027913;;, + 96;4;-0.034926, 0.996321, 0.071572, 0.028609;;, + 97;4;-0.036378, 0.996281, 0.071549, 0.029212;;, + 98;4;-0.037576, 0.996249, 0.071530, 0.029710;;, + 99;4;-0.038489, 0.996224, 0.071515, 0.030089;;, + 100;4;-0.039076, 0.996208, 0.071506, 0.030333;;, + 101;4;-0.039284, 0.996202, 0.071502, 0.030419;;, + 102;4;-0.039063, 0.996208, 0.071506, 0.030327;;, + 103;4;-0.038392, 0.996227, 0.071517, 0.030049;;, + 104;4;-0.037270, 0.996257, 0.071535, 0.029583;;, + 105;4;-0.035704, 0.996300, 0.071560, 0.028932;;, + 106;4;-0.033715, 0.996354, 0.071592, 0.028106;;, + 107;4;-0.031335, 0.996419, 0.071630, 0.027118;;, + 108;4;-0.028615, 0.996493, 0.071674, 0.025988;;, + 109;4;-0.025621, 0.996574, 0.071722, 0.024744;;, + 110;4;-0.022434, 0.996661, 0.071774, 0.023420;;, + 111;4;-0.019147, 0.996751, 0.071827, 0.022055;;, + 112;4;-0.015860, 0.996840, 0.071880, 0.020690;;, + 113;4;-0.012673, 0.996927, 0.071931, 0.019366;;, + 114;4;-0.009679, 0.997009, 0.071979, 0.018122;;, + 115;4;-0.006959, 0.997083, 0.072023, 0.016992;;, + 116;4;-0.004579, 0.997148, 0.072061, 0.016004;;, + 117;4;-0.002590, 0.997202, 0.072093, 0.015177;;, + 118;4;-0.001024, 0.997244, 0.072119, 0.014527;;, + 119;4; 0.000098, 0.997275, 0.072137, 0.014061;;, + 120;4; 0.000768, 0.997293, 0.072147, 0.013783;;, + 121;4; 0.000990, 0.997299, 0.072151, 0.013690;;, + 122;4; 0.000768, 0.997293, 0.072147, 0.013783;;, + 123;4; 0.000098, 0.997275, 0.072137, 0.014061;;, + 124;4;-0.001024, 0.997244, 0.072119, 0.014527;;, + 125;4;-0.002590, 0.997202, 0.072093, 0.015177;;, + 126;4;-0.004579, 0.997148, 0.072061, 0.016004;;, + 127;4;-0.006959, 0.997083, 0.072023, 0.016992;;, + 128;4;-0.009679, 0.997009, 0.071979, 0.018122;;, + 129;4;-0.012673, 0.996927, 0.071931, 0.019366;;, + 130;4;-0.015860, 0.996840, 0.071880, 0.020690;;, + 131;4;-0.019147, 0.996751, 0.071827, 0.022055;;, + 132;4;-0.022434, 0.996661, 0.071774, 0.023420;;, + 133;4;-0.025621, 0.996574, 0.071722, 0.024744;;, + 134;4;-0.028615, 0.996493, 0.071674, 0.025988;;, + 135;4;-0.031335, 0.996419, 0.071630, 0.027118;;, + 136;4;-0.033715, 0.996354, 0.071592, 0.028106;;, + 137;4;-0.035704, 0.996300, 0.071560, 0.028932;;, + 138;4;-0.037270, 0.996257, 0.071535, 0.029583;;, + 139;4;-0.038392, 0.996227, 0.071517, 0.030049;;, + 140;4;-0.039063, 0.996208, 0.071506, 0.030327;;, + 141;4;-0.039284, 0.996202, 0.071502, 0.030419;;, + 142;4;-0.039115, 0.996208, 0.071505, 0.030336;;, + 143;4;-0.038639, 0.996224, 0.071513, 0.030100;;, + 144;4;-0.037892, 0.996249, 0.071525, 0.029733;;, + 145;4;-0.036906, 0.996282, 0.071542, 0.029250;;, + 146;4;-0.035703, 0.996322, 0.071562, 0.028665;;, + 147;4;-0.034305, 0.996368, 0.071585, 0.027990;;, + 148;4;-0.032728, 0.996419, 0.071611, 0.027232;;, + 149;4;-0.030984, 0.996475, 0.071640, 0.026401;;, + 150;4;-0.029084, 0.996536, 0.071671, 0.025504;;, + 151;4;-0.027040, 0.996600, 0.071705, 0.024547;;, + 152;4;-0.024856, 0.996668, 0.071741, 0.023537;;, + 153;4;-0.022540, 0.996739, 0.071779, 0.022479;;, + 154;4;-0.020096, 0.996813, 0.071819, 0.021379;;, + 155;4;-0.017525, 0.996888, 0.071861, 0.020245;;, + 156;4;-0.014829, 0.996965, 0.071904, 0.019082;;, + 157;4;-0.012005, 0.997043, 0.071950, 0.017902;;, + 158;4;-0.009047, 0.997120, 0.071997, 0.016718;;, + 159;4;-0.005937, 0.997194, 0.072046, 0.015556;;, + 160;4;-0.002640, 0.997260, 0.072098, 0.014470;;, + 161;4; 0.000990, 0.997299, 0.072151, 0.013690;;, + 162;4; 0.003930, 0.958043, 0.286296, 0.013151;;, + 163;4; 0.003930, 0.958043, 0.286296, 0.013151;;, + 164;4; 0.003930, 0.958043, 0.286296, 0.013151;;, + 165;4; 0.003930, 0.958043, 0.286296, 0.013151;;, + 166;4; 0.003930, 0.958043, 0.286296, 0.013151;;, + 167;4; 0.003930, 0.958043, 0.286296, 0.013151;;, + 168;4; 0.000990, 0.997299, 0.072151, 0.013690;;, + 169;4;-0.036334, 0.993297, 0.071785, 0.010872;;, + 170;4;-0.112795, 0.981996, 0.071141, 0.000858;;, + 171;4;-0.203764, 0.967479, 0.070405,-0.012520;;, + 172;4;-0.272368, 0.956171, 0.069861,-0.023101;;, + 173;4;-0.296346, 0.952156, 0.069674,-0.026885;;, + 174;4;-0.279505, 0.956187, 0.070026,-0.024569;;, + 175;4;-0.227906, 0.967531, 0.070959,-0.017477;;, + 176;4;-0.150401, 0.982077, 0.072003,-0.006858;;, + 177;4;-0.068084, 0.993365, 0.072516, 0.004357;;, + 178;4; 0.000990, 0.997299, 0.072151, 0.013690;;, + 179;4; 0.070049, 0.993110, 0.070621, 0.022912;;, + 180;4; 0.152321, 0.981519, 0.067849, 0.033813;;, + 181;4; 0.229768, 0.966687, 0.064677, 0.044029;;, + 182;4; 0.281322, 0.955152, 0.062327, 0.050806;;, + 183;4; 0.298147, 0.951060, 0.061513, 0.053012;;, + 184;4; 0.272271, 0.955137, 0.062463, 0.049483;;, + 185;4; 0.200483, 0.966553, 0.065150, 0.039474;;, + 186;4; 0.106848, 0.981306, 0.068587, 0.026713;;, + 187;4; 0.029980, 0.993038, 0.071229, 0.017022;;, + 188;4; 0.000990, 0.997299, 0.072151, 0.013690;;, + 189;4; 0.835222, 0.536095,-0.025763, 0.119765;;, + 190;4; 0.803188, 0.565880,-0.021823, 0.111185;;, + 191;4; 0.718121, 0.648323,-0.010764, 0.086701;;, + 192;4; 0.614362, 0.752496, 0.003385, 0.054936;;, + 193;4; 0.534781, 0.833221, 0.014391, 0.030125;;, + 194;4; 0.506108, 0.862012, 0.018302, 0.021341;;, + 195;4; 0.535304, 0.833108, 0.014389, 0.030093;;, + 196;4; 0.617421, 0.751829, 0.003376, 0.054751;;, + 197;4; 0.723032, 0.647272,-0.010777, 0.086403;;, + 198;4; 0.805707, 0.565360,-0.021828, 0.111030;;, + 199;4; 0.835222, 0.536095,-0.025763, 0.119765;;, + 200;4; 0.538719, 0.840704, 0.006525, 0.054376;;, + 201;4; 0.565322, 0.813342, 0.003638, 0.060174;;, + 202;4; 0.639820, 0.736775,-0.004464, 0.076530;;, + 203;4; 0.734955, 0.639062,-0.014831, 0.097562;;, + 204;4; 0.808921, 0.563107,-0.022896, 0.113949;;, + 205;4; 0.835222, 0.536095,-0.025763, 0.119765;;, + 206;4; 0.805967, 0.565065,-0.021846, 0.111016;;, + 207;4; 0.723565, 0.646666,-0.010813, 0.086373;;, + 208;4; 0.617763, 0.751441, 0.003353, 0.054733;;, + 209;4; 0.535362, 0.833042, 0.014385, 0.030090;;, + 210;4; 0.506108, 0.862012, 0.018302, 0.021341;;, + 211;4; 0.535362, 0.833042, 0.014385, 0.030090;;, + 212;4; 0.617763, 0.751441, 0.003353, 0.054733;;, + 213;4; 0.723565, 0.646666,-0.010813, 0.086373;;, + 214;4; 0.805967, 0.565065,-0.021846, 0.111016;;, + 215;4; 0.835222, 0.536095,-0.025763, 0.119765;;, + 216;4; 0.808879, 0.563155,-0.022894, 0.113952;;, + 217;4; 0.734711, 0.639342,-0.014814, 0.097576;;, + 218;4; 0.639439, 0.737214,-0.004438, 0.076552;;, + 219;4; 0.565137, 0.813556, 0.003651, 0.060184;;, + 220;4; 0.538719, 0.840704, 0.006525, 0.054376;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 0.999995, 1.000000, 1.000000;;, + 1;3; 0.999995, 1.000000, 1.000000;;, + 2;3; 0.999995, 1.000000, 1.000000;;, + 3;3; 0.999995, 1.000000, 1.000000;;, + 4;3; 0.999995, 1.000000, 1.000000;;, + 5;3; 0.999995, 1.000000, 1.000000;;, + 6;3; 0.999995, 1.000000, 1.000000;;, + 7;3; 0.999995, 1.000000, 1.000000;;, + 8;3; 0.999995, 1.000000, 1.000000;;, + 9;3; 0.999995, 1.000000, 1.000000;;, + 10;3; 0.999995, 1.000000, 1.000000;;, + 11;3; 0.999995, 1.000000, 1.000000;;, + 12;3; 0.999995, 1.000000, 1.000000;;, + 13;3; 0.999995, 1.000000, 1.000000;;, + 14;3; 0.999995, 1.000000, 1.000000;;, + 15;3; 0.999995, 1.000000, 1.000000;;, + 16;3; 0.999995, 1.000000, 1.000000;;, + 17;3; 0.999995, 1.000000, 1.000000;;, + 18;3; 0.999995, 1.000000, 1.000000;;, + 19;3; 0.999995, 1.000000, 1.000000;;, + 20;3; 0.999995, 1.000000, 1.000000;;, + 21;3; 0.999995, 1.000000, 1.000000;;, + 22;3; 0.999995, 1.000000, 1.000000;;, + 23;3; 0.999995, 1.000000, 1.000000;;, + 24;3; 0.999995, 1.000000, 1.000000;;, + 25;3; 0.999995, 1.000000, 1.000000;;, + 26;3; 0.999995, 1.000000, 1.000000;;, + 27;3; 0.999995, 1.000000, 1.000000;;, + 28;3; 0.999995, 1.000000, 1.000000;;, + 29;3; 0.999995, 1.000000, 1.000000;;, + 30;3; 0.999995, 1.000000, 1.000000;;, + 31;3; 0.999995, 1.000000, 1.000000;;, + 32;3; 0.999995, 1.000000, 1.000000;;, + 33;3; 0.999995, 1.000000, 1.000000;;, + 34;3; 0.999995, 1.000000, 1.000000;;, + 35;3; 0.999995, 1.000000, 1.000000;;, + 36;3; 0.999995, 1.000000, 1.000000;;, + 37;3; 0.999995, 1.000000, 1.000000;;, + 38;3; 0.999995, 1.000000, 1.000000;;, + 39;3; 0.999995, 1.000000, 1.000000;;, + 40;3; 0.999995, 1.000000, 1.000000;;, + 41;3; 0.999995, 1.000000, 1.000000;;, + 42;3; 0.999995, 1.000000, 1.000000;;, + 43;3; 0.999995, 1.000000, 1.000000;;, + 44;3; 0.999995, 1.000000, 1.000000;;, + 45;3; 0.999995, 1.000000, 1.000000;;, + 46;3; 0.999995, 1.000000, 1.000000;;, + 47;3; 0.999995, 1.000000, 1.000000;;, + 48;3; 0.999995, 1.000000, 1.000000;;, + 49;3; 0.999995, 1.000000, 1.000000;;, + 50;3; 0.999995, 1.000000, 1.000000;;, + 51;3; 0.999995, 1.000000, 1.000000;;, + 52;3; 0.999995, 1.000000, 1.000000;;, + 53;3; 0.999995, 1.000000, 1.000000;;, + 54;3; 0.999995, 1.000000, 1.000000;;, + 55;3; 0.999995, 1.000000, 1.000000;;, + 56;3; 0.999995, 1.000000, 1.000000;;, + 57;3; 0.999995, 1.000000, 1.000000;;, + 58;3; 0.999995, 1.000000, 1.000000;;, + 59;3; 0.999995, 1.000000, 1.000000;;, + 60;3; 0.999995, 1.000000, 1.000000;;, + 61;3; 0.999995, 1.000000, 1.000000;;, + 62;3; 0.999995, 1.000000, 1.000000;;, + 63;3; 0.999995, 1.000000, 1.000000;;, + 64;3; 0.999995, 1.000000, 1.000000;;, + 65;3; 0.999995, 1.000000, 1.000000;;, + 66;3; 0.999995, 1.000000, 1.000000;;, + 67;3; 0.999995, 1.000000, 1.000000;;, + 68;3; 0.999995, 1.000000, 1.000000;;, + 69;3; 0.999995, 1.000000, 1.000000;;, + 70;3; 0.999995, 1.000000, 1.000000;;, + 71;3; 0.999995, 1.000000, 1.000000;;, + 72;3; 0.999995, 1.000000, 1.000000;;, + 73;3; 0.999995, 1.000000, 1.000000;;, + 74;3; 0.999995, 1.000000, 1.000000;;, + 75;3; 0.999995, 1.000000, 1.000000;;, + 76;3; 0.999995, 1.000000, 1.000000;;, + 77;3; 0.999995, 1.000000, 1.000000;;, + 78;3; 0.999995, 1.000000, 1.000000;;, + 79;3; 0.999995, 1.000000, 1.000000;;, + 80;3; 0.999995, 1.000000, 1.000000;;, + 81;3; 0.999995, 1.000000, 1.000000;;, + 82;3; 0.999995, 1.000000, 1.000000;;, + 83;3; 0.999995, 1.000000, 1.000000;;, + 84;3; 0.999995, 1.000000, 1.000000;;, + 85;3; 0.999995, 1.000000, 1.000000;;, + 86;3; 0.999995, 1.000000, 1.000000;;, + 87;3; 0.999995, 1.000000, 1.000000;;, + 88;3; 0.999995, 1.000000, 1.000000;;, + 89;3; 0.999995, 1.000000, 1.000000;;, + 90;3; 0.999995, 1.000000, 1.000000;;, + 91;3; 0.999995, 1.000000, 1.000000;;, + 92;3; 0.999995, 1.000000, 1.000000;;, + 93;3; 0.999995, 1.000000, 1.000000;;, + 94;3; 0.999995, 1.000000, 1.000000;;, + 95;3; 0.999995, 1.000000, 1.000000;;, + 96;3; 0.999995, 1.000000, 1.000000;;, + 97;3; 0.999995, 1.000000, 1.000000;;, + 98;3; 0.999995, 1.000000, 1.000000;;, + 99;3; 0.999995, 1.000000, 1.000000;;, + 100;3; 0.999995, 1.000000, 1.000000;;, + 101;3; 0.999995, 1.000000, 1.000000;;, + 102;3; 0.999995, 1.000000, 1.000000;;, + 103;3; 0.999995, 1.000000, 1.000000;;, + 104;3; 0.999995, 1.000000, 1.000000;;, + 105;3; 0.999995, 1.000000, 1.000000;;, + 106;3; 0.999995, 1.000000, 1.000000;;, + 107;3; 0.999995, 1.000000, 1.000000;;, + 108;3; 0.999995, 1.000000, 1.000000;;, + 109;3; 0.999995, 1.000000, 1.000000;;, + 110;3; 0.999995, 1.000000, 1.000000;;, + 111;3; 0.999995, 1.000000, 1.000000;;, + 112;3; 0.999995, 1.000000, 1.000000;;, + 113;3; 0.999995, 1.000000, 1.000000;;, + 114;3; 0.999995, 1.000000, 1.000000;;, + 115;3; 0.999995, 1.000000, 1.000000;;, + 116;3; 0.999995, 1.000000, 1.000000;;, + 117;3; 0.999995, 1.000000, 1.000000;;, + 118;3; 0.999995, 1.000000, 1.000000;;, + 119;3; 0.999995, 1.000000, 1.000000;;, + 120;3; 0.999995, 1.000000, 1.000000;;, + 121;3; 0.999995, 1.000000, 1.000000;;, + 122;3; 0.999995, 1.000000, 1.000000;;, + 123;3; 0.999995, 1.000000, 1.000000;;, + 124;3; 0.999995, 1.000000, 1.000000;;, + 125;3; 0.999995, 1.000000, 1.000000;;, + 126;3; 0.999995, 1.000000, 1.000000;;, + 127;3; 0.999995, 1.000000, 1.000000;;, + 128;3; 0.999995, 1.000000, 1.000000;;, + 129;3; 0.999995, 1.000000, 1.000000;;, + 130;3; 0.999995, 1.000000, 1.000000;;, + 131;3; 0.999995, 1.000000, 1.000000;;, + 132;3; 0.999995, 1.000000, 1.000000;;, + 133;3; 0.999995, 1.000000, 1.000000;;, + 134;3; 0.999995, 1.000000, 1.000000;;, + 135;3; 0.999995, 1.000000, 1.000000;;, + 136;3; 0.999995, 1.000000, 1.000000;;, + 137;3; 0.999995, 1.000000, 1.000000;;, + 138;3; 0.999995, 1.000000, 1.000000;;, + 139;3; 0.999995, 1.000000, 1.000000;;, + 140;3; 0.999995, 1.000000, 1.000000;;, + 141;3; 0.999995, 1.000000, 1.000000;;, + 142;3; 0.999995, 1.000000, 1.000000;;, + 143;3; 0.999995, 1.000000, 1.000000;;, + 144;3; 0.999995, 1.000000, 1.000000;;, + 145;3; 0.999995, 1.000000, 1.000000;;, + 146;3; 0.999995, 1.000000, 1.000000;;, + 147;3; 0.999995, 1.000000, 1.000000;;, + 148;3; 0.999995, 1.000000, 1.000000;;, + 149;3; 0.999995, 1.000000, 1.000000;;, + 150;3; 0.999995, 1.000000, 1.000000;;, + 151;3; 0.999995, 1.000000, 1.000000;;, + 152;3; 0.999995, 1.000000, 1.000000;;, + 153;3; 0.999995, 1.000000, 1.000000;;, + 154;3; 0.999995, 1.000000, 1.000000;;, + 155;3; 0.999995, 1.000000, 1.000000;;, + 156;3; 0.999995, 1.000000, 1.000000;;, + 157;3; 0.999995, 1.000000, 1.000000;;, + 158;3; 0.999995, 1.000000, 1.000000;;, + 159;3; 0.999995, 1.000000, 1.000000;;, + 160;3; 0.999995, 1.000000, 1.000000;;, + 161;3; 0.999995, 1.000000, 1.000000;;, + 162;3; 0.999996, 0.999999, 1.000000;;, + 163;3; 0.999996, 0.999999, 1.000000;;, + 164;3; 0.999996, 0.999999, 1.000000;;, + 165;3; 0.999996, 0.999999, 1.000000;;, + 166;3; 0.999996, 0.999999, 1.000000;;, + 167;3; 0.999996, 0.999999, 1.000000;;, + 168;3; 0.999995, 1.000000, 1.000000;;, + 169;3; 0.999995, 1.000000, 1.000000;;, + 170;3; 0.999995, 1.000000, 1.000000;;, + 171;3; 0.999995, 1.000000, 1.000000;;, + 172;3; 0.999995, 1.000000, 1.000000;;, + 173;3; 0.999995, 1.000000, 1.000000;;, + 174;3; 0.999995, 1.000000, 1.000000;;, + 175;3; 0.999995, 1.000000, 1.000000;;, + 176;3; 0.999995, 1.000000, 1.000000;;, + 177;3; 0.999995, 1.000000, 1.000000;;, + 178;3; 0.999995, 1.000000, 1.000000;;, + 179;3; 0.999995, 1.000000, 1.000000;;, + 180;3; 0.999995, 1.000000, 1.000000;;, + 181;3; 0.999995, 1.000000, 1.000000;;, + 182;3; 0.999995, 1.000000, 1.000000;;, + 183;3; 0.999995, 1.000000, 1.000000;;, + 184;3; 0.999995, 1.000000, 1.000000;;, + 185;3; 0.999995, 1.000000, 1.000000;;, + 186;3; 0.999995, 1.000000, 1.000000;;, + 187;3; 0.999995, 1.000000, 1.000000;;, + 188;3; 0.999995, 1.000000, 1.000000;;, + 189;3; 0.999996, 1.000000, 0.999999;;, + 190;3; 0.999996, 1.000000, 0.999999;;, + 191;3; 0.999996, 1.000000, 0.999999;;, + 192;3; 0.999995, 1.000000, 0.999999;;, + 193;3; 0.999995, 1.000000, 1.000000;;, + 194;3; 0.999995, 1.000000, 1.000000;;, + 195;3; 0.999995, 1.000000, 1.000000;;, + 196;3; 0.999996, 1.000000, 0.999999;;, + 197;3; 0.999996, 1.000000, 0.999999;;, + 198;3; 0.999996, 1.000000, 0.999999;;, + 199;3; 0.999996, 1.000000, 0.999999;;, + 200;3; 0.999996, 1.000000, 1.000000;;, + 201;3; 0.999996, 1.000000, 1.000000;;, + 202;3; 0.999996, 1.000000, 0.999999;;, + 203;3; 0.999996, 1.000000, 0.999999;;, + 204;3; 0.999996, 1.000000, 0.999999;;, + 205;3; 0.999996, 1.000000, 0.999999;;, + 206;3; 0.999996, 1.000000, 0.999999;;, + 207;3; 0.999996, 1.000000, 0.999999;;, + 208;3; 0.999996, 1.000000, 1.000000;;, + 209;3; 0.999995, 1.000000, 1.000000;;, + 210;3; 0.999995, 1.000000, 1.000000;;, + 211;3; 0.999995, 1.000000, 1.000000;;, + 212;3; 0.999995, 1.000000, 1.000000;;, + 213;3; 0.999996, 1.000000, 0.999999;;, + 214;3; 0.999996, 1.000000, 0.999999;;, + 215;3; 0.999996, 1.000000, 0.999999;;, + 216;3; 0.999996, 1.000000, 1.000000;;, + 217;3; 0.999996, 1.000000, 0.999999;;, + 218;3; 0.999996, 1.000000, 1.000000;;, + 219;3; 0.999996, 1.000000, 1.000000;;, + 220;3; 0.999996, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3; 2.000000, 6.750000, 0.000000;;, + 1;3; 2.000000, 6.750000, 0.000000;;, + 2;3; 2.000000, 6.750000, 0.000000;;, + 3;3; 2.000000, 6.750000, 0.000000;;, + 4;3; 2.000000, 6.750000, 0.000000;;, + 5;3; 2.000000, 6.750000,-0.000000;;, + 6;3; 2.000000, 6.750000, 0.000000;;, + 7;3; 2.000000, 6.750000,-0.000000;;, + 8;3; 2.000000, 6.750000,-0.000000;;, + 9;3; 2.000000, 6.750000,-0.000000;;, + 10;3; 2.000000, 6.750000,-0.000000;;, + 11;3; 2.000000, 6.750000,-0.000000;;, + 12;3; 2.000000, 6.750000, 0.000000;;, + 13;3; 2.000000, 6.750000, 0.000000;;, + 14;3; 2.000000, 6.750000, 0.000000;;, + 15;3; 2.000000, 6.750000, 0.000000;;, + 16;3; 2.000000, 6.750000,-0.000000;;, + 17;3; 2.000000, 6.750000,-0.000000;;, + 18;3; 2.000000, 6.750000, 0.000000;;, + 19;3; 2.000000, 6.750000, 0.000000;;, + 20;3; 2.000000, 6.750000,-0.000000;;, + 21;3; 2.000000, 6.750000, 0.000000;;, + 22;3; 2.000000, 6.750000, 0.000000;;, + 23;3; 2.000000, 6.750000,-0.000000;;, + 24;3; 2.000000, 6.750000,-0.000000;;, + 25;3; 2.000000, 6.750000,-0.000000;;, + 26;3; 2.000000, 6.750000, 0.000000;;, + 27;3; 2.000000, 6.750000, 0.000000;;, + 28;3; 2.000000, 6.750000, 0.000000;;, + 29;3; 2.000000, 6.750000,-0.000000;;, + 30;3; 2.000000, 6.750000, 0.000000;;, + 31;3; 2.000000, 6.750000, 0.000000;;, + 32;3; 2.000000, 6.750000,-0.000000;;, + 33;3; 2.000000, 6.750000, 0.000000;;, + 34;3; 2.000000, 6.750000, 0.000000;;, + 35;3; 2.000000, 6.750000, 0.000000;;, + 36;3; 2.000000, 6.750000, 0.000000;;, + 37;3; 2.000000, 6.750000, 0.000000;;, + 38;3; 2.000000, 6.750000, 0.000000;;, + 39;3; 2.000000, 6.750000,-0.000000;;, + 40;3; 2.000000, 6.750000, 0.000000;;, + 41;3; 2.000000, 6.750000,-0.000000;;, + 42;3; 2.000000, 6.750000,-0.000000;;, + 43;3; 2.000000, 6.750000, 0.000000;;, + 44;3; 2.000000, 6.750000,-0.000000;;, + 45;3; 2.000000, 6.750000, 0.000000;;, + 46;3; 2.000000, 6.750000, 0.000000;;, + 47;3; 2.000000, 6.750000, 0.000000;;, + 48;3; 2.000000, 6.750000,-0.000000;;, + 49;3; 2.000000, 6.750000, 0.000000;;, + 50;3; 2.000000, 6.750000,-0.000000;;, + 51;3; 2.000000, 6.750000, 0.000000;;, + 52;3; 2.000000, 6.750000, 0.000000;;, + 53;3; 2.000000, 6.750000, 0.000000;;, + 54;3; 2.000000, 6.750000,-0.000000;;, + 55;3; 2.000000, 6.750000,-0.000000;;, + 56;3; 2.000000, 6.750000,-0.000000;;, + 57;3; 2.000000, 6.750000,-0.000000;;, + 58;3; 2.000000, 6.750000, 0.000000;;, + 59;3; 2.000000, 6.750000, 0.000000;;, + 60;3; 2.000000, 6.750000,-0.000000;;, + 61;3; 2.000000, 6.750000,-0.000000;;, + 62;3; 2.000000, 6.750000, 0.000000;;, + 63;3; 2.000000, 6.750000, 0.000000;;, + 64;3; 2.000000, 6.750000, 0.000000;;, + 65;3; 2.000000, 6.750000, 0.000000;;, + 66;3; 2.000000, 6.750000, 0.000000;;, + 67;3; 2.000000, 6.750000,-0.000000;;, + 68;3; 2.000000, 6.750000, 0.000000;;, + 69;3; 2.000000, 6.750000, 0.000000;;, + 70;3; 2.000000, 6.750000, 0.000000;;, + 71;3; 2.000000, 6.750000, 0.000000;;, + 72;3; 2.000000, 6.750000, 0.000000;;, + 73;3; 2.000000, 6.750000,-0.000000;;, + 74;3; 2.000000, 6.750000,-0.000000;;, + 75;3; 2.000000, 6.750000, 0.000000;;, + 76;3; 2.000000, 6.750000, 0.000000;;, + 77;3; 2.000000, 6.750000, 0.000000;;, + 78;3; 2.000000, 6.750001,-0.000000;;, + 79;3; 2.000000, 6.750000, 0.000000;;, + 80;3; 2.000000, 6.750000, 0.000000;;, + 81;3; 2.000000, 6.750000, 0.000000;;, + 82;3; 2.000000, 6.750000,-0.000000;;, + 83;3; 2.000000, 6.750000,-0.000000;;, + 84;3; 2.000000, 6.750000, 0.000000;;, + 85;3; 2.000000, 6.750000,-0.000000;;, + 86;3; 2.000000, 6.750000,-0.000000;;, + 87;3; 2.000000, 6.750000,-0.000000;;, + 88;3; 2.000000, 6.750000, 0.000000;;, + 89;3; 2.000000, 6.750000,-0.000000;;, + 90;3; 2.000000, 6.750000,-0.000000;;, + 91;3; 2.000000, 6.750000,-0.000000;;, + 92;3; 2.000000, 6.750000,-0.000000;;, + 93;3; 2.000000, 6.750000, 0.000000;;, + 94;3; 2.000000, 6.750000, 0.000000;;, + 95;3; 2.000000, 6.750000, 0.000000;;, + 96;3; 2.000000, 6.750000,-0.000000;;, + 97;3; 2.000000, 6.750000,-0.000000;;, + 98;3; 2.000000, 6.750000,-0.000000;;, + 99;3; 2.000000, 6.750000,-0.000000;;, + 100;3; 2.000000, 6.750000, 0.000000;;, + 101;3; 2.000000, 6.750000,-0.000000;;, + 102;3; 2.000000, 6.750000,-0.000000;;, + 103;3; 2.000000, 6.750000, 0.000000;;, + 104;3; 2.000000, 6.750000, 0.000000;;, + 105;3; 2.000000, 6.750000, 0.000000;;, + 106;3; 2.000000, 6.750000,-0.000000;;, + 107;3; 2.000000, 6.750000, 0.000000;;, + 108;3; 2.000000, 6.750000,-0.000000;;, + 109;3; 2.000000, 6.750000, 0.000000;;, + 110;3; 2.000000, 6.750000,-0.000000;;, + 111;3; 2.000000, 6.750000, 0.000000;;, + 112;3; 2.000000, 6.750000, 0.000000;;, + 113;3; 2.000000, 6.750000,-0.000000;;, + 114;3; 2.000000, 6.750000, 0.000000;;, + 115;3; 2.000000, 6.750000,-0.000000;;, + 116;3; 2.000000, 6.750000,-0.000000;;, + 117;3; 2.000000, 6.750000,-0.000000;;, + 118;3; 2.000000, 6.750000, 0.000000;;, + 119;3; 2.000000, 6.750000,-0.000000;;, + 120;3; 2.000000, 6.750000, 0.000000;;, + 121;3; 2.000000, 6.750000, 0.000000;;, + 122;3; 2.000000, 6.750000, 0.000000;;, + 123;3; 2.000000, 6.750000, 0.000000;;, + 124;3; 2.000000, 6.750000,-0.000000;;, + 125;3; 2.000000, 6.750000,-0.000000;;, + 126;3; 2.000000, 6.750000,-0.000000;;, + 127;3; 2.000000, 6.750000,-0.000000;;, + 128;3; 2.000000, 6.750000, 0.000000;;, + 129;3; 2.000000, 6.750000,-0.000000;;, + 130;3; 2.000000, 6.750000,-0.000000;;, + 131;3; 2.000000, 6.750000, 0.000000;;, + 132;3; 2.000000, 6.750000, 0.000000;;, + 133;3; 2.000000, 6.750000, 0.000000;;, + 134;3; 2.000000, 6.750000,-0.000000;;, + 135;3; 2.000000, 6.750000, 0.000000;;, + 136;3; 2.000000, 6.750000,-0.000000;;, + 137;3; 2.000000, 6.750000, 0.000000;;, + 138;3; 2.000000, 6.750000, 0.000000;;, + 139;3; 2.000000, 6.750000, 0.000000;;, + 140;3; 2.000000, 6.750000,-0.000000;;, + 141;3; 2.000000, 6.750000,-0.000000;;, + 142;3; 2.000000, 6.750000,-0.000000;;, + 143;3; 2.000000, 6.750000,-0.000000;;, + 144;3; 2.000000, 6.750000,-0.000000;;, + 145;3; 2.000000, 6.750000,-0.000000;;, + 146;3; 2.000000, 6.750000, 0.000000;;, + 147;3; 2.000000, 6.750000, 0.000000;;, + 148;3; 2.000000, 6.750000,-0.000000;;, + 149;3; 2.000000, 6.750000,-0.000000;;, + 150;3; 2.000000, 6.750000, 0.000000;;, + 151;3; 2.000000, 6.750000,-0.000000;;, + 152;3; 2.000000, 6.750000,-0.000000;;, + 153;3; 2.000000, 6.750000,-0.000000;;, + 154;3; 2.000000, 6.750000,-0.000000;;, + 155;3; 2.000000, 6.750000,-0.000000;;, + 156;3; 2.000000, 6.750000,-0.000000;;, + 157;3; 2.000000, 6.750000, 0.000000;;, + 158;3; 2.000000, 6.750000, 0.000000;;, + 159;3; 2.000000, 6.750000,-0.000000;;, + 160;3; 2.000000, 6.750000,-0.000000;;, + 161;3; 2.000000, 6.750000, 0.000000;;, + 162;3; 2.000000, 6.750000,-0.000000;;, + 163;3; 2.000000, 6.750000,-0.000000;;, + 164;3; 2.000000, 6.750000,-0.000000;;, + 165;3; 2.000000, 6.750000,-0.000000;;, + 166;3; 2.000000, 6.750000,-0.000000;;, + 167;3; 2.000000, 6.750000,-0.000000;;, + 168;3; 2.000000, 6.750000, 0.000000;;, + 169;3; 2.000000, 6.750000, 0.000000;;, + 170;3; 2.000000, 6.750000, 0.000000;;, + 171;3; 2.000000, 6.750000, 0.000000;;, + 172;3; 2.000000, 6.750000, 0.000000;;, + 173;3; 2.000000, 6.750000, 0.000000;;, + 174;3; 2.000000, 6.750000, 0.000000;;, + 175;3; 2.000000, 6.750000, 0.000000;;, + 176;3; 2.000000, 6.750000, 0.000000;;, + 177;3; 2.000000, 6.750000, 0.000000;;, + 178;3; 2.000000, 6.750000, 0.000000;;, + 179;3; 2.000000, 6.750000, 0.000000;;, + 180;3; 2.000000, 6.750000, 0.000000;;, + 181;3; 2.000000, 6.750000, 0.000000;;, + 182;3; 2.000000, 6.750000, 0.000000;;, + 183;3; 2.000000, 6.750000, 0.000000;;, + 184;3; 2.000000, 6.750000, 0.000000;;, + 185;3; 2.000000, 6.750000, 0.000000;;, + 186;3; 2.000000, 6.750000, 0.000000;;, + 187;3; 2.000000, 6.750000, 0.000000;;, + 188;3; 2.000000, 6.750000, 0.000000;;, + 189;3; 2.000000, 6.750000, 0.000000;;, + 190;3; 2.000000, 6.750000, 0.000000;;, + 191;3; 2.000000, 6.750000,-0.000000;;, + 192;3; 2.000000, 6.750000, 0.000000;;, + 193;3; 2.000000, 6.750000, 0.000000;;, + 194;3; 2.000000, 6.750001, 0.000000;;, + 195;3; 2.000000, 6.750000, 0.000000;;, + 196;3; 2.000000, 6.750000,-0.000000;;, + 197;3; 2.000000, 6.750000,-0.000000;;, + 198;3; 2.000000, 6.750000, 0.000000;;, + 199;3; 2.000000, 6.750000, 0.000000;;, + 200;3; 2.000000, 6.750000, 0.000000;;, + 201;3; 2.000000, 6.750000,-0.000000;;, + 202;3; 2.000000, 6.750000,-0.000000;;, + 203;3; 2.000000, 6.750000, 0.000000;;, + 204;3; 2.000000, 6.750000,-0.000000;;, + 205;3; 2.000000, 6.750000,-0.000000;;, + 206;3; 2.000000, 6.750000, 0.000000;;, + 207;3; 2.000000, 6.750000,-0.000000;;, + 208;3; 2.000000, 6.750000, 0.000000;;, + 209;3; 2.000000, 6.750000,-0.000000;;, + 210;3; 2.000000, 6.750001, 0.000000;;, + 211;3; 2.000000, 6.750000,-0.000000;;, + 212;3; 2.000000, 6.750000, 0.000000;;, + 213;3; 2.000000, 6.750000,-0.000000;;, + 214;3; 2.000000, 6.750000, 0.000000;;, + 215;3; 2.000000, 6.750000,-0.000000;;, + 216;3; 2.000000, 6.750000,-0.000000;;, + 217;3; 2.000000, 6.750000, 0.000000;;, + 218;3; 2.000000, 6.750000, 0.000000;;, + 219;3; 2.000000, 6.750000, 0.000000;;, + 220;3; 2.000000, 6.750000, 0.000000;;; + } + } + Animation { + {Armature_Leg_Right} + AnimationKey { // Rotation + 0; + 221; + 0;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4;-0.000240, 0.999995,-0.000000,-0.000000;;, + 2;4;-0.000967, 0.999979,-0.000000,-0.000000;;, + 3;4;-0.002182, 0.999952,-0.000000,-0.000000;;, + 4;4;-0.003877, 0.999915,-0.000000,-0.000000;;, + 5;4;-0.006032, 0.999868,-0.000000,-0.000000;;, + 6;4;-0.008609, 0.999812,-0.000000,-0.000000;;, + 7;4;-0.011555, 0.999748,-0.000000,-0.000000;;, + 8;4;-0.014798, 0.999677,-0.000000,-0.000000;;, + 9;4;-0.018250, 0.999602,-0.000000,-0.000000;;, + 10;4;-0.021810, 0.999524,-0.000000,-0.000000;;, + 11;4;-0.025369, 0.999446,-0.000000,-0.000000;;, + 12;4;-0.028821, 0.999371,-0.000000,-0.000000;;, + 13;4;-0.032064, 0.999300,-0.000000,-0.000000;;, + 14;4;-0.035010, 0.999236,-0.000000,-0.000000;;, + 15;4;-0.037588, 0.999180,-0.000000,-0.000000;;, + 16;4;-0.039742, 0.999133,-0.000000,-0.000000;;, + 17;4;-0.041437, 0.999096,-0.000000,-0.000000;;, + 18;4;-0.042652, 0.999069,-0.000000,-0.000000;;, + 19;4;-0.043379, 0.999053,-0.000000,-0.000000;;, + 20;4;-0.043619, 0.999048,-0.000000,-0.000000;;, + 21;4;-0.043379, 0.999053,-0.000000,-0.000000;;, + 22;4;-0.042652, 0.999069,-0.000000,-0.000000;;, + 23;4;-0.041437, 0.999096,-0.000000,-0.000000;;, + 24;4;-0.039742, 0.999133,-0.000000,-0.000000;;, + 25;4;-0.037587, 0.999180,-0.000000,-0.000000;;, + 26;4;-0.035010, 0.999236,-0.000000,-0.000000;;, + 27;4;-0.032064, 0.999300,-0.000000,-0.000000;;, + 28;4;-0.028821, 0.999371,-0.000000,-0.000000;;, + 29;4;-0.025369, 0.999446,-0.000000,-0.000000;;, + 30;4;-0.021810, 0.999524,-0.000000,-0.000000;;, + 31;4;-0.018250, 0.999602,-0.000000,-0.000000;;, + 32;4;-0.014798, 0.999677,-0.000000,-0.000000;;, + 33;4;-0.011555, 0.999748,-0.000000,-0.000000;;, + 34;4;-0.008609, 0.999812,-0.000000,-0.000000;;, + 35;4;-0.006032, 0.999868,-0.000000,-0.000000;;, + 36;4;-0.003877, 0.999915,-0.000000,-0.000000;;, + 37;4;-0.002182, 0.999952,-0.000000,-0.000000;;, + 38;4;-0.000967, 0.999979,-0.000000,-0.000000;;, + 39;4;-0.000240, 0.999995,-0.000000,-0.000000;;, + 40;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4;-0.000240, 0.999995,-0.000000,-0.000000;;, + 42;4;-0.000967, 0.999979,-0.000000,-0.000000;;, + 43;4;-0.002182, 0.999952,-0.000000,-0.000000;;, + 44;4;-0.003877, 0.999915,-0.000000,-0.000000;;, + 45;4;-0.006032, 0.999868,-0.000000,-0.000000;;, + 46;4;-0.008609, 0.999812,-0.000000,-0.000000;;, + 47;4;-0.011555, 0.999748,-0.000000,-0.000000;;, + 48;4;-0.014798, 0.999677,-0.000000,-0.000000;;, + 49;4;-0.018250, 0.999602,-0.000000,-0.000000;;, + 50;4;-0.021810, 0.999524,-0.000000,-0.000000;;, + 51;4;-0.025369, 0.999446,-0.000000,-0.000000;;, + 52;4;-0.028821, 0.999371,-0.000000,-0.000000;;, + 53;4;-0.032064, 0.999300,-0.000000,-0.000000;;, + 54;4;-0.035010, 0.999236,-0.000000,-0.000000;;, + 55;4;-0.037587, 0.999180,-0.000000,-0.000000;;, + 56;4;-0.039742, 0.999133,-0.000000,-0.000000;;, + 57;4;-0.041437, 0.999096,-0.000000,-0.000000;;, + 58;4;-0.042652, 0.999069,-0.000000,-0.000000;;, + 59;4;-0.043379, 0.999053,-0.000000,-0.000000;;, + 60;4;-0.043619, 0.999048,-0.000000,-0.000000;;, + 61;4;-0.043616, 0.999053,-0.000000,-0.000000;;, + 62;4;-0.043594, 0.999067,-0.000000,-0.000000;;, + 63;4;-0.043536, 0.999089,-0.000000,-0.000000;;, + 64;4;-0.043427, 0.999117,-0.000000,-0.000000;;, + 65;4;-0.043250, 0.999151,-0.000000,-0.000000;;, + 66;4;-0.042989, 0.999191,-0.000000,-0.000000;;, + 67;4;-0.042626, 0.999235,-0.000000,-0.000000;;, + 68;4;-0.042144, 0.999283,-0.000000,-0.000000;;, + 69;4;-0.041519, 0.999336,-0.000000,-0.000000;;, + 70;4;-0.040726, 0.999391,-0.000000,-0.000000;;, + 71;4;-0.039733, 0.999450,-0.000000,-0.000000;;, + 72;4;-0.038501, 0.999511,-0.000000,-0.000000;;, + 73;4;-0.036980, 0.999575,-0.000000,-0.000000;;, + 74;4;-0.035101, 0.999640,-0.000000,-0.000000;;, + 75;4;-0.032770, 0.999707,-0.000000,-0.000000;;, + 76;4;-0.029842, 0.999774,-0.000000,-0.000000;;, + 77;4;-0.026086, 0.999841,-0.000000,-0.000000;;, + 78;4;-0.021070, 0.999906,-0.000000,-0.000000;;, + 79;4;-0.013794, 0.999964,-0.000000,-0.000000;;, + 80;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 81;4; 0.707107, 0.707107, 0.000000,-0.000000;;, + 82;4; 0.705874, 0.708245, 0.000000,-0.000000;;, + 83;4; 0.703907, 0.710101, 0.000000,-0.000000;;, + 84;4; 0.701752, 0.712152, 0.000000,-0.000000;;, + 85;4; 0.699534, 0.714271, 0.000000,-0.000000;;, + 86;4; 0.697308, 0.716402, 0.000000,-0.000000;;, + 87;4; 0.695107, 0.718513, 0.000000,-0.000000;;, + 88;4; 0.692951, 0.720584, 0.000000,-0.000000;;, + 89;4; 0.690857, 0.722597, 0.000000,-0.000000;;, + 90;4; 0.688837, 0.724539, 0.000000,-0.000000;;, + 91;4; 0.686904, 0.726399, 0.000000,-0.000000;;, + 92;4; 0.685070, 0.728163, 0.000000,-0.000000;;, + 93;4; 0.683348, 0.729820, 0.000000,-0.000000;;, + 94;4; 0.681750, 0.731358, 0.000000,-0.000000;;, + 95;4; 0.680291, 0.732761, 0.000000,-0.000000;;, + 96;4; 0.678987, 0.734015, 0.000000,-0.000000;;, + 97;4; 0.677857, 0.735101, 0.000000,-0.000000;;, + 98;4; 0.676923, 0.735999, 0.000000,-0.000000;;, + 99;4; 0.676211, 0.736682, 0.000000,-0.000000;;, + 100;4; 0.675754, 0.737121, 0.000000,-0.000000;;, + 101;4; 0.675590, 0.737277, 0.000000,-0.000000;;, + 102;4; 0.675764, 0.737111, 0.000000,-0.000000;;, + 103;4; 0.676289, 0.736609, 0.000000,-0.000000;;, + 104;4; 0.677167, 0.735768, 0.000000,-0.000000;;, + 105;4; 0.678392, 0.734596, 0.000000,-0.000000;;, + 106;4; 0.679949, 0.733105, 0.000000,-0.000000;;, + 107;4; 0.681811, 0.731323, 0.000000,-0.000000;;, + 108;4; 0.683939, 0.729285, 0.000000,-0.000000;;, + 109;4; 0.686283, 0.727042, 0.000000,-0.000000;;, + 110;4; 0.688777, 0.724654, 0.000000,-0.000000;;, + 111;4; 0.691349, 0.722192, 0.000000,-0.000000;;, + 112;4; 0.693920, 0.719730, 0.000000,-0.000000;;, + 113;4; 0.696414, 0.717343, 0.000000,-0.000000;;, + 114;4; 0.698758, 0.715099, 0.000000,-0.000000;;, + 115;4; 0.700886, 0.713062, 0.000000,-0.000000;;, + 116;4; 0.702749, 0.711279, 0.000000,-0.000000;;, + 117;4; 0.704305, 0.709789, 0.000000,-0.000000;;, + 118;4; 0.705530, 0.708616, 0.000000,-0.000000;;, + 119;4; 0.706408, 0.707776, 0.000000,-0.000000;;, + 120;4; 0.706933, 0.707273, 0.000000,-0.000000;;, + 121;4; 0.707107, 0.707107, 0.000000,-0.000000;;, + 122;4; 0.706933, 0.707273, 0.000000,-0.000000;;, + 123;4; 0.706408, 0.707776, 0.000000,-0.000000;;, + 124;4; 0.705530, 0.708616, 0.000000,-0.000000;;, + 125;4; 0.704305, 0.709789, 0.000000,-0.000000;;, + 126;4; 0.702749, 0.711279, 0.000000,-0.000000;;, + 127;4; 0.700886, 0.713062, 0.000000,-0.000000;;, + 128;4; 0.698758, 0.715099, 0.000000,-0.000000;;, + 129;4; 0.696414, 0.717343, 0.000000,-0.000000;;, + 130;4; 0.693920, 0.719730, 0.000000,-0.000000;;, + 131;4; 0.691349, 0.722192, 0.000000,-0.000000;;, + 132;4; 0.688777, 0.724654, 0.000000,-0.000000;;, + 133;4; 0.686283, 0.727042, 0.000000,-0.000000;;, + 134;4; 0.683939, 0.729285, 0.000000,-0.000000;;, + 135;4; 0.681811, 0.731323, 0.000000,-0.000000;;, + 136;4; 0.679949, 0.733105, 0.000000,-0.000000;;, + 137;4; 0.678392, 0.734596, 0.000000,-0.000000;;, + 138;4; 0.677167, 0.735768, 0.000000,-0.000000;;, + 139;4; 0.676289, 0.736609, 0.000000,-0.000000;;, + 140;4; 0.675764, 0.737111, 0.000000,-0.000000;;, + 141;4; 0.675590, 0.737277, 0.000000,-0.000000;;, + 142;4; 0.675754, 0.737121, 0.000000,-0.000000;;, + 143;4; 0.676211, 0.736682, 0.000000,-0.000000;;, + 144;4; 0.676923, 0.735998, 0.000000,-0.000000;;, + 145;4; 0.677857, 0.735101, 0.000000,-0.000000;;, + 146;4; 0.678987, 0.734015, 0.000000,-0.000000;;, + 147;4; 0.680291, 0.732761, 0.000000,-0.000000;;, + 148;4; 0.681750, 0.731357, 0.000000,-0.000000;;, + 149;4; 0.683348, 0.729820, 0.000000,-0.000000;;, + 150;4; 0.685070, 0.728163, 0.000000,-0.000000;;, + 151;4; 0.686904, 0.726398, 0.000000,-0.000000;;, + 152;4; 0.688837, 0.724539, 0.000000,-0.000000;;, + 153;4; 0.690857, 0.722596, 0.000000,-0.000000;;, + 154;4; 0.692951, 0.720583, 0.000000,-0.000000;;, + 155;4; 0.695107, 0.718512, 0.000000,-0.000000;;, + 156;4; 0.697308, 0.716401, 0.000000,-0.000000;;, + 157;4; 0.699534, 0.714270, 0.000000,-0.000000;;, + 158;4; 0.701752, 0.712151, 0.000000,-0.000000;;, + 159;4; 0.703907, 0.710100, 0.000000,-0.000000;;, + 160;4; 0.705874, 0.708244, 0.000000,-0.000000;;, + 161;4; 0.707107, 0.707107, 0.000000,-0.000000;;, + 162;4;-0.000000, 0.991445, 0.130526,-0.000000;;, + 163;4;-0.000000, 0.991445, 0.130526,-0.000000;;, + 164;4;-0.000000, 0.991445, 0.130526,-0.000000;;, + 165;4;-0.000000, 0.991445, 0.130526,-0.000000;;, + 166;4;-0.000000, 0.991445, 0.130526,-0.000000;;, + 167;4;-0.000000, 0.991445, 0.130526,-0.000000;;, + 168;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 169;4; 0.034052, 0.993234, 0.000000,-0.000000;;, + 170;4; 0.129903, 0.974175, 0.000000,-0.000000;;, + 171;4; 0.252901, 0.949704, 0.000000,-0.000000;;, + 172;4; 0.348675, 0.930646, 0.000000,-0.000000;;, + 173;4; 0.382683, 0.923880, 0.000000,-0.000000;;, + 174;4; 0.361005, 0.930646, 0.000000,-0.000000;;, + 175;4; 0.294618, 0.949704, 0.000000,-0.000000;;, + 176;4; 0.194899, 0.974175, 0.000000,-0.000000;;, + 177;4; 0.088939, 0.993234, 0.000000,-0.000000;;, + 178;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 179;4;-0.088939, 0.993234,-0.000000,-0.000000;;, + 180;4;-0.194899, 0.974175,-0.000000,-0.000000;;, + 181;4;-0.294618, 0.949704,-0.000000,-0.000000;;, + 182;4;-0.361005, 0.930646,-0.000000,-0.000000;;, + 183;4;-0.382683, 0.923880,-0.000000,-0.000000;;, + 184;4;-0.348675, 0.930646,-0.000000,-0.000000;;, + 185;4;-0.252901, 0.949704,-0.000000,-0.000000;;, + 186;4;-0.129903, 0.974175,-0.000000,-0.000000;;, + 187;4;-0.034052, 0.993233,-0.000000,-0.000000;;, + 188;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 189;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 190;4; 0.003877, 0.999915, 0.000000,-0.000000;;, + 191;4; 0.014798, 0.999677, 0.000000,-0.000000;;, + 192;4; 0.028821, 0.999371, 0.000000,-0.000000;;, + 193;4; 0.039742, 0.999133, 0.000000,-0.000000;;, + 194;4; 0.043619, 0.999048, 0.000000,-0.000000;;, + 195;4; 0.039742, 0.999133, 0.000000,-0.000000;;, + 196;4; 0.028821, 0.999371, 0.000000,-0.000000;;, + 197;4; 0.014798, 0.999677, 0.000000,-0.000000;;, + 198;4; 0.003877, 0.999915, 0.000000,-0.000000;;, + 199;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 200;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 201;4; 0.034052, 0.993233, 0.000000,-0.000000;;, + 202;4; 0.129903, 0.974175, 0.000000,-0.000000;;, + 203;4; 0.252901, 0.949704, 0.000000,-0.000000;;, + 204;4; 0.348675, 0.930646, 0.000000,-0.000000;;, + 205;4; 0.382683, 0.923880, 0.000000,-0.000000;;, + 206;4; 0.361005, 0.930646, 0.000000,-0.000000;;, + 207;4; 0.294618, 0.949704, 0.000000,-0.000000;;, + 208;4; 0.194899, 0.974175, 0.000000,-0.000000;;, + 209;4; 0.088939, 0.993234, 0.000000,-0.000000;;, + 210;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 211;4;-0.088939, 0.993234,-0.000000,-0.000000;;, + 212;4;-0.194899, 0.974175,-0.000000,-0.000000;;, + 213;4;-0.294618, 0.949704,-0.000000,-0.000000;;, + 214;4;-0.361005, 0.930646,-0.000000,-0.000000;;, + 215;4;-0.382683, 0.923880,-0.000000,-0.000000;;, + 216;4;-0.348699, 0.930646,-0.000000,-0.000000;;, + 217;4;-0.253041, 0.949703,-0.000000,-0.000000;;, + 218;4;-0.130122, 0.974173,-0.000000,-0.000000;;, + 219;4;-0.034158, 0.993233,-0.000000,-0.000000;;, + 220;4;-0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3; 1.000000, 0.000000, 0.000000;;, + 1;3; 1.000000, 0.000000, 0.000000;;, + 2;3; 1.000000,-0.000000, 0.000000;;, + 3;3; 1.000000,-0.000000,-0.000000;;, + 4;3; 1.000000,-0.000000, 0.000000;;, + 5;3; 1.000000,-0.000000, 0.000000;;, + 6;3; 1.000000,-0.000000,-0.000000;;, + 7;3; 1.000000, 0.000000,-0.000000;;, + 8;3; 1.000000,-0.000000, 0.000000;;, + 9;3; 1.000000,-0.000000,-0.000000;;, + 10;3; 1.000000,-0.000000, 0.000000;;, + 11;3; 1.000000,-0.000000,-0.000000;;, + 12;3; 1.000000,-0.000000, 0.000000;;, + 13;3; 1.000000, 0.000000, 0.000000;;, + 14;3; 1.000000, 0.000000, 0.000000;;, + 15;3; 1.000000,-0.000000, 0.000000;;, + 16;3; 1.000000,-0.000000,-0.000000;;, + 17;3; 1.000000, 0.000000,-0.000000;;, + 18;3; 1.000000, 0.000000,-0.000000;;, + 19;3; 1.000000,-0.000000, 0.000000;;, + 20;3; 1.000000, 0.000000,-0.000000;;, + 21;3; 1.000000,-0.000000, 0.000000;;, + 22;3; 1.000000, 0.000000,-0.000000;;, + 23;3; 1.000000, 0.000000,-0.000000;;, + 24;3; 1.000000,-0.000000,-0.000000;;, + 25;3; 1.000000,-0.000000, 0.000000;;, + 26;3; 1.000000, 0.000000, 0.000000;;, + 27;3; 1.000000, 0.000000, 0.000000;;, + 28;3; 1.000000,-0.000000,-0.000000;;, + 29;3; 1.000000,-0.000000,-0.000000;;, + 30;3; 1.000000,-0.000000, 0.000000;;, + 31;3; 1.000000,-0.000000, 0.000000;;, + 32;3; 1.000000,-0.000000, 0.000000;;, + 33;3; 1.000000, 0.000000,-0.000000;;, + 34;3; 1.000000,-0.000000, 0.000000;;, + 35;3; 1.000000,-0.000000,-0.000000;;, + 36;3; 1.000000,-0.000000, 0.000000;;, + 37;3; 1.000000,-0.000000,-0.000000;;, + 38;3; 1.000000,-0.000000, 0.000000;;, + 39;3; 1.000000, 0.000000,-0.000000;;, + 40;3; 1.000000, 0.000000, 0.000000;;, + 41;3; 1.000000, 0.000000,-0.000000;;, + 42;3; 1.000000,-0.000000,-0.000000;;, + 43;3; 1.000000,-0.000000,-0.000000;;, + 44;3; 1.000000,-0.000000,-0.000000;;, + 45;3; 1.000000,-0.000000, 0.000000;;, + 46;3; 1.000000,-0.000000, 0.000000;;, + 47;3; 1.000000, 0.000000,-0.000000;;, + 48;3; 1.000000,-0.000000, 0.000000;;, + 49;3; 1.000000,-0.000000, 0.000000;;, + 50;3; 1.000000,-0.000000,-0.000000;;, + 51;3; 1.000000,-0.000000, 0.000000;;, + 52;3; 1.000000,-0.000000, 0.000000;;, + 53;3; 1.000000, 0.000000, 0.000000;;, + 54;3; 1.000000, 0.000000,-0.000000;;, + 55;3; 1.000000,-0.000000, 0.000000;;, + 56;3; 1.000000,-0.000000,-0.000000;;, + 57;3; 1.000000, 0.000000,-0.000000;;, + 58;3; 1.000000, 0.000000,-0.000000;;, + 59;3; 1.000000,-0.000000, 0.000000;;, + 60;3; 1.000000, 0.000000,-0.000000;;, + 61;3; 1.000000, 0.000000, 0.000000;;, + 62;3; 1.000000,-0.000000, 0.000000;;, + 63;3; 1.000000,-0.000000, 0.000000;;, + 64;3; 1.000000, 0.000000,-0.000000;;, + 65;3; 1.000000,-0.000000, 0.000000;;, + 66;3; 1.000000, 0.000000, 0.000000;;, + 67;3; 1.000000,-0.000000,-0.000000;;, + 68;3; 1.000000, 0.000000, 0.000000;;, + 69;3; 1.000000,-0.000000, 0.000000;;, + 70;3; 1.000000,-0.000000,-0.000000;;, + 71;3; 1.000000,-0.000000, 0.000000;;, + 72;3; 1.000000,-0.000000, 0.000000;;, + 73;3; 1.000000, 0.000000,-0.000000;;, + 74;3; 1.000000,-0.000000, 0.000000;;, + 75;3; 1.000000, 0.000000,-0.000000;;, + 76;3; 1.000000,-0.000000, 0.000000;;, + 77;3; 1.000000,-0.000000, 0.000000;;, + 78;3; 1.000000, 0.000000,-0.000000;;, + 79;3; 1.000000,-0.000000, 0.000000;;, + 80;3; 1.000000, 0.000000, 0.000000;;, + 81;3; 1.000000, 0.000000, 0.000000;;, + 82;3; 1.000000,-0.000000, 0.000000;;, + 83;3; 1.000000,-0.000000,-0.000000;;, + 84;3; 1.000000,-0.000000,-0.000000;;, + 85;3; 1.000000,-0.000000,-0.000000;;, + 86;3; 1.000000,-0.000000, 0.000000;;, + 87;3; 1.000000,-0.000000, 0.000000;;, + 88;3; 1.000000, 0.000000, 0.000000;;, + 89;3; 1.000000, 0.000000, 0.000000;;, + 90;3; 1.000000, 0.000000, 0.000000;;, + 91;3; 1.000000, 0.000000, 0.000000;;, + 92;3; 1.000000, 0.000000, 0.000000;;, + 93;3; 1.000000, 0.000000,-0.000000;;, + 94;3; 1.000000,-0.000000,-0.000000;;, + 95;3; 1.000000,-0.000000,-0.000000;;, + 96;3; 1.000000,-0.000000,-0.000000;;, + 97;3; 1.000000,-0.000000,-0.000000;;, + 98;3; 1.000000,-0.000000,-0.000000;;, + 99;3; 1.000000,-0.000000,-0.000000;;, + 100;3; 1.000000,-0.000000,-0.000000;;, + 101;3; 1.000000,-0.000000,-0.000000;;, + 102;3; 1.000000,-0.000000,-0.000000;;, + 103;3; 1.000000,-0.000000,-0.000000;;, + 104;3; 1.000000,-0.000000,-0.000000;;, + 105;3; 1.000000,-0.000000,-0.000000;;, + 106;3; 1.000000,-0.000000,-0.000000;;, + 107;3; 1.000000,-0.000000,-0.000000;;, + 108;3; 1.000000, 0.000000,-0.000000;;, + 109;3; 1.000000, 0.000000, 0.000000;;, + 110;3; 1.000000, 0.000000, 0.000000;;, + 111;3; 1.000000, 0.000000, 0.000000;;, + 112;3; 1.000000, 0.000000, 0.000000;;, + 113;3; 1.000000,-0.000000, 0.000000;;, + 114;3; 1.000000,-0.000000,-0.000000;;, + 115;3; 1.000000,-0.000000,-0.000000;;, + 116;3; 1.000000,-0.000000,-0.000000;;, + 117;3; 1.000000,-0.000000,-0.000000;;, + 118;3; 1.000000,-0.000000,-0.000000;;, + 119;3; 1.000000,-0.000000, 0.000000;;, + 120;3; 1.000000,-0.000000,-0.000000;;, + 121;3; 1.000000, 0.000000, 0.000000;;, + 122;3; 1.000000,-0.000000,-0.000000;;, + 123;3; 1.000000,-0.000000, 0.000000;;, + 124;3; 1.000000,-0.000000,-0.000000;;, + 125;3; 1.000000,-0.000000,-0.000000;;, + 126;3; 1.000000,-0.000000,-0.000000;;, + 127;3; 1.000000,-0.000000,-0.000000;;, + 128;3; 1.000000,-0.000000,-0.000000;;, + 129;3; 1.000000,-0.000000, 0.000000;;, + 130;3; 1.000000, 0.000000, 0.000000;;, + 131;3; 1.000000, 0.000000, 0.000000;;, + 132;3; 1.000000, 0.000000, 0.000000;;, + 133;3; 1.000000, 0.000000, 0.000000;;, + 134;3; 1.000000, 0.000000,-0.000000;;, + 135;3; 1.000000,-0.000000,-0.000000;;, + 136;3; 1.000000,-0.000000,-0.000000;;, + 137;3; 1.000000,-0.000000,-0.000000;;, + 138;3; 1.000000,-0.000000,-0.000000;;, + 139;3; 1.000000,-0.000000,-0.000000;;, + 140;3; 1.000000,-0.000000,-0.000000;;, + 141;3; 1.000000,-0.000000,-0.000000;;, + 142;3; 1.000000,-0.000000,-0.000000;;, + 143;3; 1.000000,-0.000000,-0.000000;;, + 144;3; 1.000000,-0.000000,-0.000000;;, + 145;3; 1.000000,-0.000000,-0.000000;;, + 146;3; 1.000000,-0.000000,-0.000000;;, + 147;3; 1.000000,-0.000000,-0.000000;;, + 148;3; 1.000000,-0.000000,-0.000000;;, + 149;3; 1.000000, 0.000000,-0.000000;;, + 150;3; 1.000000, 0.000000, 0.000000;;, + 151;3; 1.000000, 0.000000, 0.000000;;, + 152;3; 1.000000, 0.000000, 0.000000;;, + 153;3; 1.000000, 0.000000, 0.000000;;, + 154;3; 1.000000, 0.000000, 0.000000;;, + 155;3; 1.000000,-0.000000, 0.000000;;, + 156;3; 1.000000,-0.000000, 0.000000;;, + 157;3; 1.000000,-0.000000,-0.000000;;, + 158;3; 1.000000,-0.000000,-0.000000;;, + 159;3; 1.000000,-0.000000,-0.000000;;, + 160;3; 1.000000,-0.000000, 0.000000;;, + 161;3; 1.000000, 0.000000, 0.000000;;, + 162;3; 1.000000,-0.000000,-0.000000;;, + 163;3; 1.000000,-0.000000,-0.000000;;, + 164;3; 1.000000,-0.000000,-0.000000;;, + 165;3; 1.000000,-0.000000,-0.000000;;, + 166;3; 1.000000,-0.000000,-0.000000;;, + 167;3; 1.000000,-0.000000,-0.000000;;, + 168;3; 1.000000, 0.000000, 0.000000;;, + 169;3; 1.000000, 0.000000, 0.000000;;, + 170;3; 1.000000, 0.000000, 0.000000;;, + 171;3; 1.000000, 0.000000, 0.000000;;, + 172;3; 1.000000, 0.000000, 0.000000;;, + 173;3; 1.000000, 0.000000, 0.000000;;, + 174;3; 1.000000, 0.000000, 0.000000;;, + 175;3; 1.000000, 0.000000, 0.000000;;, + 176;3; 1.000000, 0.000000, 0.000000;;, + 177;3; 1.000000, 0.000000, 0.000000;;, + 178;3; 1.000000, 0.000000, 0.000000;;, + 179;3; 1.000000, 0.000000, 0.000000;;, + 180;3; 1.000000, 0.000000, 0.000000;;, + 181;3; 1.000000, 0.000000, 0.000000;;, + 182;3; 1.000000, 0.000000, 0.000000;;, + 183;3; 1.000000, 0.000000, 0.000000;;, + 184;3; 1.000000, 0.000000, 0.000000;;, + 185;3; 1.000000, 0.000000, 0.000000;;, + 186;3; 1.000000, 0.000000, 0.000000;;, + 187;3; 1.000000, 0.000000, 0.000000;;, + 188;3; 1.000000, 0.000000, 0.000000;;, + 189;3; 1.000000, 0.000000, 0.000000;;, + 190;3; 1.000000,-0.000000, 0.000000;;, + 191;3; 1.000000,-0.000000,-0.000000;;, + 192;3; 1.000000,-0.000000, 0.000000;;, + 193;3; 1.000000, 0.000000,-0.000000;;, + 194;3; 1.000000, 0.000000,-0.000000;;, + 195;3; 1.000000, 0.000000,-0.000000;;, + 196;3; 1.000000,-0.000000,-0.000000;;, + 197;3; 1.000000,-0.000000,-0.000000;;, + 198;3; 1.000000,-0.000000,-0.000000;;, + 199;3; 1.000000, 0.000000, 0.000000;;, + 200;3; 1.000000, 0.000000, 0.000000;;, + 201;3; 1.000000,-0.000000,-0.000000;;, + 202;3; 1.000000,-0.000000, 0.000000;;, + 203;3; 1.000000,-0.000000, 0.000000;;, + 204;3; 1.000000,-0.000000,-0.000000;;, + 205;3; 1.000000, 0.000000,-0.000000;;, + 206;3; 1.000000,-0.000000, 0.000000;;, + 207;3; 1.000000,-0.000000, 0.000000;;, + 208;3; 1.000000,-0.000000,-0.000000;;, + 209;3; 1.000000, 0.000000,-0.000000;;, + 210;3; 1.000000, 0.000000,-0.000000;;, + 211;3; 1.000000, 0.000000,-0.000000;;, + 212;3; 1.000000,-0.000000, 0.000000;;, + 213;3; 1.000000,-0.000000, 0.000000;;, + 214;3; 1.000000,-0.000000, 0.000000;;, + 215;3; 1.000000, 0.000000,-0.000000;;, + 216;3; 1.000000,-0.000000,-0.000000;;, + 217;3; 1.000000,-0.000000, 0.000000;;, + 218;3; 1.000000,-0.000000, 0.000000;;, + 219;3; 1.000000,-0.000000, 0.000000;;, + 220;3; 1.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Armature_Leg_Left} + AnimationKey { // Rotation + 0; + 221; + 0;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4;-0.000240, 0.999995,-0.000000,-0.000000;;, + 2;4;-0.000967, 0.999979,-0.000000,-0.000000;;, + 3;4;-0.002182, 0.999952,-0.000000,-0.000000;;, + 4;4;-0.003877, 0.999915,-0.000000,-0.000000;;, + 5;4;-0.006032, 0.999868,-0.000000,-0.000000;;, + 6;4;-0.008609, 0.999812,-0.000000,-0.000000;;, + 7;4;-0.011555, 0.999748,-0.000000,-0.000000;;, + 8;4;-0.014798, 0.999677,-0.000000,-0.000000;;, + 9;4;-0.018250, 0.999602,-0.000000,-0.000000;;, + 10;4;-0.021810, 0.999524,-0.000000,-0.000000;;, + 11;4;-0.025369, 0.999446,-0.000000,-0.000000;;, + 12;4;-0.028821, 0.999371,-0.000000,-0.000000;;, + 13;4;-0.032064, 0.999300,-0.000000,-0.000000;;, + 14;4;-0.035010, 0.999236,-0.000000,-0.000000;;, + 15;4;-0.037588, 0.999180,-0.000000,-0.000000;;, + 16;4;-0.039742, 0.999133,-0.000000,-0.000000;;, + 17;4;-0.041437, 0.999096,-0.000000,-0.000000;;, + 18;4;-0.042652, 0.999069,-0.000000,-0.000000;;, + 19;4;-0.043379, 0.999053,-0.000000,-0.000000;;, + 20;4;-0.043619, 0.999048,-0.000000,-0.000000;;, + 21;4;-0.043379, 0.999053,-0.000000,-0.000000;;, + 22;4;-0.042652, 0.999069,-0.000000,-0.000000;;, + 23;4;-0.041437, 0.999096,-0.000000,-0.000000;;, + 24;4;-0.039742, 0.999133,-0.000000,-0.000000;;, + 25;4;-0.037587, 0.999180,-0.000000,-0.000000;;, + 26;4;-0.035010, 0.999236,-0.000000,-0.000000;;, + 27;4;-0.032064, 0.999300,-0.000000,-0.000000;;, + 28;4;-0.028821, 0.999371,-0.000000,-0.000000;;, + 29;4;-0.025369, 0.999446,-0.000000,-0.000000;;, + 30;4;-0.021810, 0.999524,-0.000000,-0.000000;;, + 31;4;-0.018250, 0.999602,-0.000000,-0.000000;;, + 32;4;-0.014798, 0.999677,-0.000000,-0.000000;;, + 33;4;-0.011555, 0.999748,-0.000000,-0.000000;;, + 34;4;-0.008609, 0.999812,-0.000000,-0.000000;;, + 35;4;-0.006032, 0.999868,-0.000000,-0.000000;;, + 36;4;-0.003877, 0.999915,-0.000000,-0.000000;;, + 37;4;-0.002182, 0.999952,-0.000000,-0.000000;;, + 38;4;-0.000967, 0.999979,-0.000000,-0.000000;;, + 39;4;-0.000240, 0.999995,-0.000000,-0.000000;;, + 40;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4;-0.000240, 0.999995,-0.000000,-0.000000;;, + 42;4;-0.000967, 0.999979,-0.000000,-0.000000;;, + 43;4;-0.002182, 0.999952,-0.000000,-0.000000;;, + 44;4;-0.003877, 0.999915,-0.000000,-0.000000;;, + 45;4;-0.006032, 0.999868,-0.000000,-0.000000;;, + 46;4;-0.008609, 0.999812,-0.000000,-0.000000;;, + 47;4;-0.011555, 0.999748,-0.000000,-0.000000;;, + 48;4;-0.014798, 0.999677,-0.000000,-0.000000;;, + 49;4;-0.018250, 0.999602,-0.000000,-0.000000;;, + 50;4;-0.021810, 0.999524,-0.000000,-0.000000;;, + 51;4;-0.025369, 0.999446,-0.000000,-0.000000;;, + 52;4;-0.028821, 0.999371,-0.000000,-0.000000;;, + 53;4;-0.032064, 0.999300,-0.000000,-0.000000;;, + 54;4;-0.035010, 0.999236,-0.000000,-0.000000;;, + 55;4;-0.037587, 0.999180,-0.000000,-0.000000;;, + 56;4;-0.039742, 0.999133,-0.000000,-0.000000;;, + 57;4;-0.041437, 0.999096,-0.000000,-0.000000;;, + 58;4;-0.042652, 0.999069,-0.000000,-0.000000;;, + 59;4;-0.043379, 0.999053,-0.000000,-0.000000;;, + 60;4;-0.043619, 0.999048,-0.000000,-0.000000;;, + 61;4;-0.043616, 0.999053,-0.000000,-0.000000;;, + 62;4;-0.043594, 0.999067,-0.000000,-0.000000;;, + 63;4;-0.043536, 0.999089,-0.000000,-0.000000;;, + 64;4;-0.043427, 0.999117,-0.000000,-0.000000;;, + 65;4;-0.043250, 0.999151,-0.000000,-0.000000;;, + 66;4;-0.042989, 0.999191,-0.000000,-0.000000;;, + 67;4;-0.042626, 0.999235,-0.000000,-0.000000;;, + 68;4;-0.042144, 0.999283,-0.000000,-0.000000;;, + 69;4;-0.041519, 0.999336,-0.000000,-0.000000;;, + 70;4;-0.040726, 0.999391,-0.000000,-0.000000;;, + 71;4;-0.039733, 0.999450,-0.000000,-0.000000;;, + 72;4;-0.038501, 0.999511,-0.000000,-0.000000;;, + 73;4;-0.036980, 0.999575,-0.000000,-0.000000;;, + 74;4;-0.035101, 0.999640,-0.000000,-0.000000;;, + 75;4;-0.032770, 0.999707,-0.000000,-0.000000;;, + 76;4;-0.029842, 0.999774,-0.000000,-0.000000;;, + 77;4;-0.026086, 0.999841,-0.000000,-0.000000;;, + 78;4;-0.021070, 0.999906,-0.000000,-0.000000;;, + 79;4;-0.013794, 0.999964,-0.000000,-0.000000;;, + 80;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 81;4; 0.707107, 0.707107, 0.000000,-0.000000;;, + 82;4; 0.705874, 0.708245, 0.000000,-0.000000;;, + 83;4; 0.703907, 0.710101, 0.000000,-0.000000;;, + 84;4; 0.701752, 0.712152, 0.000000,-0.000000;;, + 85;4; 0.699534, 0.714271, 0.000000,-0.000000;;, + 86;4; 0.697308, 0.716402, 0.000000,-0.000000;;, + 87;4; 0.695107, 0.718513, 0.000000,-0.000000;;, + 88;4; 0.692951, 0.720584, 0.000000,-0.000000;;, + 89;4; 0.690857, 0.722597, 0.000000,-0.000000;;, + 90;4; 0.688837, 0.724539, 0.000000,-0.000000;;, + 91;4; 0.686904, 0.726399, 0.000000,-0.000000;;, + 92;4; 0.685070, 0.728163, 0.000000,-0.000000;;, + 93;4; 0.683348, 0.729820, 0.000000,-0.000000;;, + 94;4; 0.681750, 0.731358, 0.000000,-0.000000;;, + 95;4; 0.680291, 0.732761, 0.000000,-0.000000;;, + 96;4; 0.678987, 0.734015, 0.000000,-0.000000;;, + 97;4; 0.677857, 0.735101, 0.000000,-0.000000;;, + 98;4; 0.676923, 0.735999, 0.000000,-0.000000;;, + 99;4; 0.676211, 0.736682, 0.000000,-0.000000;;, + 100;4; 0.675754, 0.737121, 0.000000,-0.000000;;, + 101;4; 0.675590, 0.737277, 0.000000,-0.000000;;, + 102;4; 0.675764, 0.737111, 0.000000,-0.000000;;, + 103;4; 0.676289, 0.736609, 0.000000,-0.000000;;, + 104;4; 0.677167, 0.735768, 0.000000,-0.000000;;, + 105;4; 0.678392, 0.734596, 0.000000,-0.000000;;, + 106;4; 0.679949, 0.733105, 0.000000,-0.000000;;, + 107;4; 0.681811, 0.731323, 0.000000,-0.000000;;, + 108;4; 0.683939, 0.729285, 0.000000,-0.000000;;, + 109;4; 0.686283, 0.727042, 0.000000,-0.000000;;, + 110;4; 0.688777, 0.724654, 0.000000,-0.000000;;, + 111;4; 0.691349, 0.722192, 0.000000,-0.000000;;, + 112;4; 0.693920, 0.719730, 0.000000,-0.000000;;, + 113;4; 0.696414, 0.717343, 0.000000,-0.000000;;, + 114;4; 0.698758, 0.715099, 0.000000,-0.000000;;, + 115;4; 0.700886, 0.713062, 0.000000,-0.000000;;, + 116;4; 0.702749, 0.711279, 0.000000,-0.000000;;, + 117;4; 0.704305, 0.709789, 0.000000,-0.000000;;, + 118;4; 0.705530, 0.708616, 0.000000,-0.000000;;, + 119;4; 0.706408, 0.707776, 0.000000,-0.000000;;, + 120;4; 0.706933, 0.707273, 0.000000,-0.000000;;, + 121;4; 0.707107, 0.707107, 0.000000,-0.000000;;, + 122;4; 0.706933, 0.707273, 0.000000,-0.000000;;, + 123;4; 0.706408, 0.707776, 0.000000,-0.000000;;, + 124;4; 0.705530, 0.708616, 0.000000,-0.000000;;, + 125;4; 0.704305, 0.709789, 0.000000,-0.000000;;, + 126;4; 0.702749, 0.711279, 0.000000,-0.000000;;, + 127;4; 0.700886, 0.713062, 0.000000,-0.000000;;, + 128;4; 0.698758, 0.715099, 0.000000,-0.000000;;, + 129;4; 0.696414, 0.717343, 0.000000,-0.000000;;, + 130;4; 0.693920, 0.719730, 0.000000,-0.000000;;, + 131;4; 0.691349, 0.722192, 0.000000,-0.000000;;, + 132;4; 0.688777, 0.724654, 0.000000,-0.000000;;, + 133;4; 0.686283, 0.727042, 0.000000,-0.000000;;, + 134;4; 0.683939, 0.729285, 0.000000,-0.000000;;, + 135;4; 0.681811, 0.731323, 0.000000,-0.000000;;, + 136;4; 0.679949, 0.733105, 0.000000,-0.000000;;, + 137;4; 0.678392, 0.734596, 0.000000,-0.000000;;, + 138;4; 0.677167, 0.735768, 0.000000,-0.000000;;, + 139;4; 0.676289, 0.736609, 0.000000,-0.000000;;, + 140;4; 0.675764, 0.737111, 0.000000,-0.000000;;, + 141;4; 0.675590, 0.737277, 0.000000,-0.000000;;, + 142;4; 0.675754, 0.737121, 0.000000,-0.000000;;, + 143;4; 0.676211, 0.736682, 0.000000,-0.000000;;, + 144;4; 0.676923, 0.735998, 0.000000,-0.000000;;, + 145;4; 0.677857, 0.735101, 0.000000,-0.000000;;, + 146;4; 0.678987, 0.734015, 0.000000,-0.000000;;, + 147;4; 0.680291, 0.732761, 0.000000,-0.000000;;, + 148;4; 0.681750, 0.731357, 0.000000,-0.000000;;, + 149;4; 0.683348, 0.729820, 0.000000,-0.000000;;, + 150;4; 0.685070, 0.728163, 0.000000,-0.000000;;, + 151;4; 0.686904, 0.726398, 0.000000,-0.000000;;, + 152;4; 0.688837, 0.724539, 0.000000,-0.000000;;, + 153;4; 0.690857, 0.722596, 0.000000,-0.000000;;, + 154;4; 0.692951, 0.720583, 0.000000,-0.000000;;, + 155;4; 0.695107, 0.718512, 0.000000,-0.000000;;, + 156;4; 0.697308, 0.716401, 0.000000,-0.000000;;, + 157;4; 0.699534, 0.714270, 0.000000,-0.000000;;, + 158;4; 0.701752, 0.712151, 0.000000,-0.000000;;, + 159;4; 0.703907, 0.710100, 0.000000,-0.000000;;, + 160;4; 0.705874, 0.708244, 0.000000,-0.000000;;, + 161;4; 0.707107, 0.707107, 0.000000,-0.000000;;, + 162;4; 0.000000, 0.991445,-0.130526,-0.000000;;, + 163;4; 0.000000, 0.991445,-0.130526,-0.000000;;, + 164;4; 0.000000, 0.991445,-0.130526,-0.000000;;, + 165;4; 0.000000, 0.991445,-0.130526,-0.000000;;, + 166;4; 0.000000, 0.991445,-0.130526,-0.000000;;, + 167;4; 0.000000, 0.991445,-0.130526,-0.000000;;, + 168;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 169;4;-0.034052, 0.993234,-0.000000,-0.000000;;, + 170;4;-0.129903, 0.974175,-0.000000,-0.000000;;, + 171;4;-0.252901, 0.949704,-0.000000,-0.000000;;, + 172;4;-0.348675, 0.930646,-0.000000,-0.000000;;, + 173;4;-0.382683, 0.923880,-0.000000,-0.000000;;, + 174;4;-0.361005, 0.930646,-0.000000,-0.000000;;, + 175;4;-0.294618, 0.949704,-0.000000,-0.000000;;, + 176;4;-0.194899, 0.974175,-0.000000,-0.000000;;, + 177;4;-0.088939, 0.993234,-0.000000,-0.000000;;, + 178;4; 0.000000, 1.000000,-0.000000,-0.000000;;, + 179;4; 0.088939, 0.993234, 0.000000,-0.000000;;, + 180;4; 0.194899, 0.974175, 0.000000,-0.000000;;, + 181;4; 0.294618, 0.949704, 0.000000,-0.000000;;, + 182;4; 0.361005, 0.930646, 0.000000,-0.000000;;, + 183;4; 0.382683, 0.923880, 0.000000,-0.000000;;, + 184;4; 0.348675, 0.930646, 0.000000,-0.000000;;, + 185;4; 0.252901, 0.949704, 0.000000,-0.000000;;, + 186;4; 0.129903, 0.974175, 0.000000,-0.000000;;, + 187;4; 0.034052, 0.993233, 0.000000,-0.000000;;, + 188;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 189;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 190;4; 0.003877, 0.999915, 0.000000,-0.000000;;, + 191;4; 0.014798, 0.999677, 0.000000,-0.000000;;, + 192;4; 0.028821, 0.999371, 0.000000,-0.000000;;, + 193;4; 0.039742, 0.999133, 0.000000,-0.000000;;, + 194;4; 0.043619, 0.999048, 0.000000,-0.000000;;, + 195;4; 0.039742, 0.999133, 0.000000,-0.000000;;, + 196;4; 0.028821, 0.999371, 0.000000,-0.000000;;, + 197;4; 0.014798, 0.999677, 0.000000,-0.000000;;, + 198;4; 0.003877, 0.999915, 0.000000,-0.000000;;, + 199;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 200;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 201;4;-0.034052, 0.993233,-0.000000,-0.000000;;, + 202;4;-0.129903, 0.974175,-0.000000,-0.000000;;, + 203;4;-0.252901, 0.949704,-0.000000,-0.000000;;, + 204;4;-0.348675, 0.930646,-0.000000,-0.000000;;, + 205;4;-0.382683, 0.923880,-0.000000,-0.000000;;, + 206;4;-0.361005, 0.930646,-0.000000,-0.000000;;, + 207;4;-0.294618, 0.949704,-0.000000,-0.000000;;, + 208;4;-0.194899, 0.974175,-0.000000,-0.000000;;, + 209;4;-0.088939, 0.993234,-0.000000,-0.000000;;, + 210;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 211;4; 0.088939, 0.993234, 0.000000,-0.000000;;, + 212;4; 0.194899, 0.974175, 0.000000,-0.000000;;, + 213;4; 0.294618, 0.949704, 0.000000,-0.000000;;, + 214;4; 0.361005, 0.930646, 0.000000,-0.000000;;, + 215;4; 0.382683, 0.923880, 0.000000,-0.000000;;, + 216;4; 0.348699, 0.930646, 0.000000,-0.000000;;, + 217;4; 0.253041, 0.949703, 0.000000,-0.000000;;, + 218;4; 0.130122, 0.974173, 0.000000,-0.000000;;, + 219;4; 0.034158, 0.993233, 0.000000,-0.000000;;, + 220;4;-0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3;-1.000000, 0.000000, 0.000000;;, + 1;3;-1.000000, 0.000000, 0.000000;;, + 2;3;-1.000000,-0.000000, 0.000000;;, + 3;3;-1.000000,-0.000000,-0.000000;;, + 4;3;-1.000000,-0.000000, 0.000000;;, + 5;3;-1.000000,-0.000000, 0.000000;;, + 6;3;-1.000000,-0.000000,-0.000000;;, + 7;3;-1.000000, 0.000000,-0.000000;;, + 8;3;-1.000000,-0.000000, 0.000000;;, + 9;3;-1.000000,-0.000000,-0.000000;;, + 10;3;-1.000000,-0.000000, 0.000000;;, + 11;3;-1.000000,-0.000000,-0.000000;;, + 12;3;-1.000000,-0.000000, 0.000000;;, + 13;3;-1.000000, 0.000000, 0.000000;;, + 14;3;-1.000000, 0.000000, 0.000000;;, + 15;3;-1.000000,-0.000000, 0.000000;;, + 16;3;-1.000000,-0.000000,-0.000000;;, + 17;3;-1.000000, 0.000000,-0.000000;;, + 18;3;-1.000000, 0.000000,-0.000000;;, + 19;3;-1.000000,-0.000000, 0.000000;;, + 20;3;-1.000000, 0.000000,-0.000000;;, + 21;3;-1.000000,-0.000000, 0.000000;;, + 22;3;-1.000000, 0.000000,-0.000000;;, + 23;3;-1.000000, 0.000000,-0.000000;;, + 24;3;-1.000000,-0.000000,-0.000000;;, + 25;3;-1.000000,-0.000000, 0.000000;;, + 26;3;-1.000000, 0.000000, 0.000000;;, + 27;3;-1.000000, 0.000000, 0.000000;;, + 28;3;-1.000000,-0.000000,-0.000000;;, + 29;3;-1.000000,-0.000000,-0.000000;;, + 30;3;-1.000000,-0.000000, 0.000000;;, + 31;3;-1.000000,-0.000000, 0.000000;;, + 32;3;-1.000000,-0.000000, 0.000000;;, + 33;3;-1.000000, 0.000000,-0.000000;;, + 34;3;-1.000000,-0.000000, 0.000000;;, + 35;3;-1.000000,-0.000000,-0.000000;;, + 36;3;-1.000000,-0.000000, 0.000000;;, + 37;3;-1.000000,-0.000000,-0.000000;;, + 38;3;-1.000000,-0.000000, 0.000000;;, + 39;3;-1.000000, 0.000000,-0.000000;;, + 40;3;-1.000000, 0.000000, 0.000000;;, + 41;3;-1.000000, 0.000000,-0.000000;;, + 42;3;-1.000000,-0.000000,-0.000000;;, + 43;3;-1.000000,-0.000000,-0.000000;;, + 44;3;-1.000000,-0.000000,-0.000000;;, + 45;3;-1.000000,-0.000000, 0.000000;;, + 46;3;-1.000000,-0.000000, 0.000000;;, + 47;3;-1.000000, 0.000000,-0.000000;;, + 48;3;-1.000000,-0.000000, 0.000000;;, + 49;3;-1.000000,-0.000000, 0.000000;;, + 50;3;-1.000000,-0.000000,-0.000000;;, + 51;3;-1.000000,-0.000000, 0.000000;;, + 52;3;-1.000000,-0.000000, 0.000000;;, + 53;3;-1.000000, 0.000000, 0.000000;;, + 54;3;-1.000000, 0.000000,-0.000000;;, + 55;3;-1.000000,-0.000000, 0.000000;;, + 56;3;-1.000000,-0.000000,-0.000000;;, + 57;3;-1.000000, 0.000000,-0.000000;;, + 58;3;-1.000000, 0.000000,-0.000000;;, + 59;3;-1.000000,-0.000000, 0.000000;;, + 60;3;-1.000000, 0.000000,-0.000000;;, + 61;3;-1.000000, 0.000000, 0.000000;;, + 62;3;-1.000000,-0.000000, 0.000000;;, + 63;3;-1.000000,-0.000000, 0.000000;;, + 64;3;-1.000000, 0.000000,-0.000000;;, + 65;3;-1.000000,-0.000000, 0.000000;;, + 66;3;-1.000000, 0.000000, 0.000000;;, + 67;3;-1.000000,-0.000000,-0.000000;;, + 68;3;-1.000000, 0.000000, 0.000000;;, + 69;3;-1.000000,-0.000000, 0.000000;;, + 70;3;-1.000000,-0.000000,-0.000000;;, + 71;3;-1.000000,-0.000000, 0.000000;;, + 72;3;-1.000000,-0.000000, 0.000000;;, + 73;3;-1.000000, 0.000000,-0.000000;;, + 74;3;-1.000000,-0.000000, 0.000000;;, + 75;3;-1.000000, 0.000000,-0.000000;;, + 76;3;-1.000000,-0.000000, 0.000000;;, + 77;3;-1.000000,-0.000000, 0.000000;;, + 78;3;-1.000000, 0.000000,-0.000000;;, + 79;3;-1.000000,-0.000000, 0.000000;;, + 80;3;-1.000000, 0.000000, 0.000000;;, + 81;3;-1.000000, 0.000000, 0.000000;;, + 82;3;-1.000000,-0.000000, 0.000000;;, + 83;3;-1.000000,-0.000000,-0.000000;;, + 84;3;-1.000000,-0.000000,-0.000000;;, + 85;3;-1.000000,-0.000000,-0.000000;;, + 86;3;-1.000000,-0.000000, 0.000000;;, + 87;3;-1.000000,-0.000000, 0.000000;;, + 88;3;-1.000000, 0.000000, 0.000000;;, + 89;3;-1.000000, 0.000000, 0.000000;;, + 90;3;-1.000000, 0.000000, 0.000000;;, + 91;3;-1.000000, 0.000000, 0.000000;;, + 92;3;-1.000000, 0.000000, 0.000000;;, + 93;3;-1.000000, 0.000000,-0.000000;;, + 94;3;-1.000000,-0.000000,-0.000000;;, + 95;3;-1.000000,-0.000000,-0.000000;;, + 96;3;-1.000000,-0.000000,-0.000000;;, + 97;3;-1.000000,-0.000000,-0.000000;;, + 98;3;-1.000000,-0.000000,-0.000000;;, + 99;3;-1.000000,-0.000000,-0.000000;;, + 100;3;-1.000000,-0.000000,-0.000000;;, + 101;3;-1.000000,-0.000000,-0.000000;;, + 102;3;-1.000000,-0.000000,-0.000000;;, + 103;3;-1.000000,-0.000000,-0.000000;;, + 104;3;-1.000000,-0.000000,-0.000000;;, + 105;3;-1.000000,-0.000000,-0.000000;;, + 106;3;-1.000000,-0.000000,-0.000000;;, + 107;3;-1.000000,-0.000000,-0.000000;;, + 108;3;-1.000000, 0.000000,-0.000000;;, + 109;3;-1.000000, 0.000000, 0.000000;;, + 110;3;-1.000000, 0.000000, 0.000000;;, + 111;3;-1.000000, 0.000000, 0.000000;;, + 112;3;-1.000000, 0.000000, 0.000000;;, + 113;3;-1.000000,-0.000000, 0.000000;;, + 114;3;-1.000000,-0.000000,-0.000000;;, + 115;3;-1.000000,-0.000000,-0.000000;;, + 116;3;-1.000000,-0.000000,-0.000000;;, + 117;3;-1.000000,-0.000000,-0.000000;;, + 118;3;-1.000000,-0.000000,-0.000000;;, + 119;3;-1.000000,-0.000000, 0.000000;;, + 120;3;-1.000000,-0.000000,-0.000000;;, + 121;3;-1.000000, 0.000000, 0.000000;;, + 122;3;-1.000000,-0.000000,-0.000000;;, + 123;3;-1.000000,-0.000000, 0.000000;;, + 124;3;-1.000000,-0.000000,-0.000000;;, + 125;3;-1.000000,-0.000000,-0.000000;;, + 126;3;-1.000000,-0.000000,-0.000000;;, + 127;3;-1.000000,-0.000000,-0.000000;;, + 128;3;-1.000000,-0.000000,-0.000000;;, + 129;3;-1.000000,-0.000000, 0.000000;;, + 130;3;-1.000000, 0.000000, 0.000000;;, + 131;3;-1.000000, 0.000000, 0.000000;;, + 132;3;-1.000000, 0.000000, 0.000000;;, + 133;3;-1.000000, 0.000000, 0.000000;;, + 134;3;-1.000000, 0.000000,-0.000000;;, + 135;3;-1.000000,-0.000000,-0.000000;;, + 136;3;-1.000000,-0.000000,-0.000000;;, + 137;3;-1.000000,-0.000000,-0.000000;;, + 138;3;-1.000000,-0.000000,-0.000000;;, + 139;3;-1.000000,-0.000000,-0.000000;;, + 140;3;-1.000000,-0.000000,-0.000000;;, + 141;3;-1.000000,-0.000000,-0.000000;;, + 142;3;-1.000000,-0.000000,-0.000000;;, + 143;3;-1.000000,-0.000000,-0.000000;;, + 144;3;-1.000000,-0.000000,-0.000000;;, + 145;3;-1.000000,-0.000000,-0.000000;;, + 146;3;-1.000000,-0.000000,-0.000000;;, + 147;3;-1.000000,-0.000000,-0.000000;;, + 148;3;-1.000000,-0.000000,-0.000000;;, + 149;3;-1.000000, 0.000000,-0.000000;;, + 150;3;-1.000000, 0.000000, 0.000000;;, + 151;3;-1.000000, 0.000000, 0.000000;;, + 152;3;-1.000000, 0.000000, 0.000000;;, + 153;3;-1.000000, 0.000000, 0.000000;;, + 154;3;-1.000000, 0.000000, 0.000000;;, + 155;3;-1.000000,-0.000000, 0.000000;;, + 156;3;-1.000000,-0.000000, 0.000000;;, + 157;3;-1.000000,-0.000000,-0.000000;;, + 158;3;-1.000000,-0.000000,-0.000000;;, + 159;3;-1.000000,-0.000000,-0.000000;;, + 160;3;-1.000000,-0.000000, 0.000000;;, + 161;3;-1.000000, 0.000000, 0.000000;;, + 162;3;-1.000000,-0.000000,-0.000000;;, + 163;3;-1.000000,-0.000000,-0.000000;;, + 164;3;-1.000000,-0.000000,-0.000000;;, + 165;3;-1.000000,-0.000000,-0.000000;;, + 166;3;-1.000000,-0.000000,-0.000000;;, + 167;3;-1.000000,-0.000000,-0.000000;;, + 168;3;-1.000000, 0.000000, 0.000000;;, + 169;3;-1.000000, 0.000000, 0.000000;;, + 170;3;-1.000000, 0.000000, 0.000000;;, + 171;3;-1.000000, 0.000000, 0.000000;;, + 172;3;-1.000000, 0.000000, 0.000000;;, + 173;3;-1.000000, 0.000000, 0.000000;;, + 174;3;-1.000000, 0.000000, 0.000000;;, + 175;3;-1.000000, 0.000000, 0.000000;;, + 176;3;-1.000000, 0.000000, 0.000000;;, + 177;3;-1.000000, 0.000000, 0.000000;;, + 178;3;-1.000000, 0.000000, 0.000000;;, + 179;3;-1.000000, 0.000000, 0.000000;;, + 180;3;-1.000000, 0.000000, 0.000000;;, + 181;3;-1.000000, 0.000000, 0.000000;;, + 182;3;-1.000000, 0.000000, 0.000000;;, + 183;3;-1.000000, 0.000000, 0.000000;;, + 184;3;-1.000000, 0.000000, 0.000000;;, + 185;3;-1.000000, 0.000000, 0.000000;;, + 186;3;-1.000000, 0.000000, 0.000000;;, + 187;3;-1.000000, 0.000000, 0.000000;;, + 188;3;-1.000000, 0.000000, 0.000000;;, + 189;3;-1.000000, 0.000000, 0.000000;;, + 190;3;-1.000000,-0.000000, 0.000000;;, + 191;3;-1.000000,-0.000000,-0.000000;;, + 192;3;-1.000000,-0.000000, 0.000000;;, + 193;3;-1.000000, 0.000000,-0.000000;;, + 194;3;-1.000000, 0.000000,-0.000000;;, + 195;3;-1.000000, 0.000000,-0.000000;;, + 196;3;-1.000000,-0.000000,-0.000000;;, + 197;3;-1.000000,-0.000000,-0.000000;;, + 198;3;-1.000000,-0.000000,-0.000000;;, + 199;3;-1.000000, 0.000000, 0.000000;;, + 200;3;-1.000000, 0.000000, 0.000000;;, + 201;3;-1.000000,-0.000000,-0.000000;;, + 202;3;-1.000000,-0.000000, 0.000000;;, + 203;3;-1.000000,-0.000000, 0.000000;;, + 204;3;-1.000000,-0.000000,-0.000000;;, + 205;3;-1.000000, 0.000000,-0.000000;;, + 206;3;-1.000000,-0.000000, 0.000000;;, + 207;3;-1.000000,-0.000000, 0.000000;;, + 208;3;-1.000000,-0.000000,-0.000000;;, + 209;3;-1.000000, 0.000000,-0.000000;;, + 210;3;-1.000000, 0.000000,-0.000000;;, + 211;3;-1.000000, 0.000000,-0.000000;;, + 212;3;-1.000000,-0.000000, 0.000000;;, + 213;3;-1.000000,-0.000000, 0.000000;;, + 214;3;-1.000000,-0.000000, 0.000000;;, + 215;3;-1.000000, 0.000000,-0.000000;;, + 216;3;-1.000000,-0.000000,-0.000000;;, + 217;3;-1.000000,-0.000000, 0.000000;;, + 218;3;-1.000000,-0.000000, 0.000000;;, + 219;3;-1.000000,-0.000000, 0.000000;;, + 220;3;-1.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Armature_Cape} + AnimationKey { // Rotation + 0; + 221; + 0;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4;-0.000248, 1.000000, 0.000000,-0.000000;;, + 2;4;-0.000998, 1.000000, 0.000000,-0.000000;;, + 3;4;-0.002251, 1.000000, 0.000000,-0.000000;;, + 4;4;-0.004000, 1.000000, 0.000000,-0.000000;;, + 5;4;-0.006223, 1.000000, 0.000000,-0.000000;;, + 6;4;-0.008882, 1.000000, 0.000000,-0.000000;;, + 7;4;-0.011921, 1.000000, 0.000000,-0.000000;;, + 8;4;-0.015267, 1.000000, 0.000000,-0.000000;;, + 9;4;-0.018828, 1.000000, 0.000000,-0.000000;;, + 10;4;-0.022500, 1.000000, 0.000000,-0.000000;;, + 11;4;-0.026172, 1.000000, 0.000000,-0.000000;;, + 12;4;-0.029733, 1.000000, 0.000000,-0.000000;;, + 13;4;-0.033079, 1.000000, 0.000000,-0.000000;;, + 14;4;-0.036118, 1.000000, 0.000000,-0.000000;;, + 15;4;-0.038777, 1.000000, 0.000000,-0.000000;;, + 16;4;-0.041000, 1.000000, 0.000000,-0.000000;;, + 17;4;-0.042749, 1.000000, 0.000000,-0.000000;;, + 18;4;-0.044002, 1.000000, 0.000000,-0.000000;;, + 19;4;-0.044752, 1.000000, 0.000000,-0.000000;;, + 20;4;-0.045000, 1.000000, 0.000000,-0.000000;;, + 21;4;-0.044752, 1.000000, 0.000000,-0.000000;;, + 22;4;-0.044002, 1.000000, 0.000000,-0.000000;;, + 23;4;-0.042749, 1.000000, 0.000000,-0.000000;;, + 24;4;-0.041000, 1.000000, 0.000000,-0.000000;;, + 25;4;-0.038777, 1.000000, 0.000000,-0.000000;;, + 26;4;-0.036118, 1.000000, 0.000000,-0.000000;;, + 27;4;-0.033079, 1.000000, 0.000000,-0.000000;;, + 28;4;-0.029733, 1.000000, 0.000000,-0.000000;;, + 29;4;-0.026172, 1.000000, 0.000000,-0.000000;;, + 30;4;-0.022500, 1.000000, 0.000000,-0.000000;;, + 31;4;-0.018828, 1.000000, 0.000000,-0.000000;;, + 32;4;-0.015267, 1.000000, 0.000000,-0.000000;;, + 33;4;-0.011921, 1.000000, 0.000000,-0.000000;;, + 34;4;-0.008882, 1.000000, 0.000000,-0.000000;;, + 35;4;-0.006223, 1.000000, 0.000000,-0.000000;;, + 36;4;-0.004000, 1.000000, 0.000000,-0.000000;;, + 37;4;-0.002251, 1.000000, 0.000000,-0.000000;;, + 38;4;-0.000998, 1.000000, 0.000000,-0.000000;;, + 39;4;-0.000248, 1.000000, 0.000000,-0.000000;;, + 40;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4;-0.000248, 1.000000, 0.000000,-0.000000;;, + 42;4;-0.000998, 1.000000, 0.000000,-0.000000;;, + 43;4;-0.002251, 1.000000, 0.000000,-0.000000;;, + 44;4;-0.004000, 1.000000, 0.000000,-0.000000;;, + 45;4;-0.006223, 1.000000, 0.000000,-0.000000;;, + 46;4;-0.008882, 1.000000, 0.000000,-0.000000;;, + 47;4;-0.011921, 1.000000, 0.000000,-0.000000;;, + 48;4;-0.015267, 1.000000, 0.000000,-0.000000;;, + 49;4;-0.018828, 1.000000, 0.000000,-0.000000;;, + 50;4;-0.022500, 1.000000, 0.000000,-0.000000;;, + 51;4;-0.026172, 1.000000, 0.000000,-0.000000;;, + 52;4;-0.029733, 1.000000, 0.000000,-0.000000;;, + 53;4;-0.033079, 1.000000, 0.000000,-0.000000;;, + 54;4;-0.036118, 1.000000, 0.000000,-0.000000;;, + 55;4;-0.038777, 1.000000, 0.000000,-0.000000;;, + 56;4;-0.041000, 1.000000, 0.000000,-0.000000;;, + 57;4;-0.042749, 1.000000, 0.000000,-0.000000;;, + 58;4;-0.044002, 1.000000, 0.000000,-0.000000;;, + 59;4;-0.044752, 1.000000, 0.000000,-0.000000;;, + 60;4;-0.045000, 1.000000, 0.000000,-0.000000;;, + 61;4;-0.044767, 1.000000, 0.000000,-0.000000;;, + 62;4;-0.044112, 1.000000, 0.000000,-0.000000;;, + 63;4;-0.043092, 1.000000, 0.000000,-0.000000;;, + 64;4;-0.041752, 1.000000, 0.000000,-0.000000;;, + 65;4;-0.040131, 1.000000, 0.000000,-0.000000;;, + 66;4;-0.038259, 1.000000, 0.000000,-0.000000;;, + 67;4;-0.036163, 1.000000, 0.000000,-0.000000;;, + 68;4;-0.033867, 1.000000, 0.000000,-0.000000;;, + 69;4;-0.031393, 1.000000, 0.000000,-0.000000;;, + 70;4;-0.028758, 1.000000, 0.000000,-0.000000;;, + 71;4;-0.025982, 1.000000, 0.000000,-0.000000;;, + 72;4;-0.023082, 1.000000, 0.000000,-0.000000;;, + 73;4;-0.020076, 1.000000, 0.000000,-0.000000;;, + 74;4;-0.016986, 1.000000, 0.000000,-0.000000;;, + 75;4;-0.013835, 1.000000, 0.000000,-0.000000;;, + 76;4;-0.010656, 1.000000, 0.000000,-0.000000;;, + 77;4;-0.007497, 1.000000, 0.000000,-0.000000;;, + 78;4;-0.004443, 1.000000, 0.000000,-0.000000;;, + 79;4;-0.001683, 1.000000, 0.000000,-0.000000;;, + 80;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 81;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 82;4;-0.001683, 1.000000, 0.000000,-0.000000;;, + 83;4;-0.004443, 1.000000, 0.000000,-0.000000;;, + 84;4;-0.007497, 1.000000, 0.000000,-0.000000;;, + 85;4;-0.010656, 1.000000, 0.000000,-0.000000;;, + 86;4;-0.013835, 1.000000, 0.000000,-0.000000;;, + 87;4;-0.016986, 1.000000, 0.000000,-0.000000;;, + 88;4;-0.020076, 1.000000, 0.000000,-0.000000;;, + 89;4;-0.023082, 1.000000, 0.000000,-0.000000;;, + 90;4;-0.025982, 1.000000, 0.000000,-0.000000;;, + 91;4;-0.028758, 1.000000, 0.000000,-0.000000;;, + 92;4;-0.031393, 1.000000, 0.000000,-0.000000;;, + 93;4;-0.033867, 1.000000, 0.000000,-0.000000;;, + 94;4;-0.036163, 1.000000, 0.000000,-0.000000;;, + 95;4;-0.038259, 1.000000, 0.000000,-0.000000;;, + 96;4;-0.040131, 1.000000, 0.000000,-0.000000;;, + 97;4;-0.041752, 1.000000, 0.000000,-0.000000;;, + 98;4;-0.043092, 1.000000, 0.000000,-0.000000;;, + 99;4;-0.044112, 1.000000, 0.000000,-0.000000;;, + 100;4;-0.044767, 1.000000, 0.000000,-0.000000;;, + 101;4;-0.045000, 1.000000, 0.000000,-0.000000;;, + 102;4;-0.044752, 1.000000, 0.000000,-0.000000;;, + 103;4;-0.044002, 1.000000, 0.000000,-0.000000;;, + 104;4;-0.042749, 1.000000, 0.000000,-0.000000;;, + 105;4;-0.041000, 1.000000, 0.000000,-0.000000;;, + 106;4;-0.038777, 1.000000, 0.000000,-0.000000;;, + 107;4;-0.036118, 1.000000, 0.000000,-0.000000;;, + 108;4;-0.033079, 1.000000, 0.000000,-0.000000;;, + 109;4;-0.029733, 1.000000, 0.000000,-0.000000;;, + 110;4;-0.026172, 1.000000, 0.000000,-0.000000;;, + 111;4;-0.022500, 1.000000, 0.000000,-0.000000;;, + 112;4;-0.018828, 1.000000, 0.000000,-0.000000;;, + 113;4;-0.015267, 1.000000, 0.000000,-0.000000;;, + 114;4;-0.011921, 1.000000, 0.000000,-0.000000;;, + 115;4;-0.008882, 1.000000, 0.000000,-0.000000;;, + 116;4;-0.006223, 1.000000, 0.000000,-0.000000;;, + 117;4;-0.004000, 1.000000, 0.000000,-0.000000;;, + 118;4;-0.002251, 1.000000, 0.000000,-0.000000;;, + 119;4;-0.000998, 1.000000, 0.000000,-0.000000;;, + 120;4;-0.000248, 1.000000, 0.000000,-0.000000;;, + 121;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 122;4;-0.000248, 1.000000, 0.000000,-0.000000;;, + 123;4;-0.000998, 1.000000, 0.000000,-0.000000;;, + 124;4;-0.002251, 1.000000, 0.000000,-0.000000;;, + 125;4;-0.004000, 1.000000, 0.000000,-0.000000;;, + 126;4;-0.006223, 1.000000, 0.000000,-0.000000;;, + 127;4;-0.008882, 1.000000, 0.000000,-0.000000;;, + 128;4;-0.011921, 1.000000, 0.000000,-0.000000;;, + 129;4;-0.015267, 1.000000, 0.000000,-0.000000;;, + 130;4;-0.018828, 1.000000, 0.000000,-0.000000;;, + 131;4;-0.022500, 1.000000, 0.000000,-0.000000;;, + 132;4;-0.026172, 1.000000, 0.000000,-0.000000;;, + 133;4;-0.029733, 1.000000, 0.000000,-0.000000;;, + 134;4;-0.033079, 1.000000, 0.000000,-0.000000;;, + 135;4;-0.036118, 1.000000, 0.000000,-0.000000;;, + 136;4;-0.038777, 1.000000, 0.000000,-0.000000;;, + 137;4;-0.041000, 1.000000, 0.000000,-0.000000;;, + 138;4;-0.042749, 1.000000, 0.000000,-0.000000;;, + 139;4;-0.044002, 1.000000, 0.000000,-0.000000;;, + 140;4;-0.044752, 1.000000, 0.000000,-0.000000;;, + 141;4;-0.045000, 1.000000, 0.000000,-0.000000;;, + 142;4;-0.044767, 1.000000, 0.000000,-0.000000;;, + 143;4;-0.044112, 1.000000, 0.000000,-0.000000;;, + 144;4;-0.043092, 1.000000, 0.000000,-0.000000;;, + 145;4;-0.041752, 1.000000, 0.000000,-0.000000;;, + 146;4;-0.040131, 1.000000, 0.000000,-0.000000;;, + 147;4;-0.038259, 1.000000, 0.000000,-0.000000;;, + 148;4;-0.036163, 1.000000, 0.000000,-0.000000;;, + 149;4;-0.033867, 1.000000, 0.000000,-0.000000;;, + 150;4;-0.031393, 1.000000, 0.000000,-0.000000;;, + 151;4;-0.028758, 1.000000, 0.000000,-0.000000;;, + 152;4;-0.025982, 1.000000, 0.000000,-0.000000;;, + 153;4;-0.023082, 1.000000, 0.000000,-0.000000;;, + 154;4;-0.020076, 1.000000, 0.000000,-0.000000;;, + 155;4;-0.016986, 1.000000, 0.000000,-0.000000;;, + 156;4;-0.013835, 1.000000, 0.000000,-0.000000;;, + 157;4;-0.010656, 1.000000, 0.000000,-0.000000;;, + 158;4;-0.007497, 1.000000, 0.000000,-0.000000;;, + 159;4;-0.004443, 1.000000, 0.000000,-0.000000;;, + 160;4;-0.001683, 1.000000, 0.000000,-0.000000;;, + 161;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 162;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 163;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 164;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 165;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 166;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 167;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 168;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 169;4;-0.023583, 1.000000, 0.000000,-0.000000;;, + 170;4;-0.071069, 1.000000, 0.000000,-0.000000;;, + 171;4;-0.127005, 1.000000, 0.000000,-0.000000;;, + 172;4;-0.184755, 1.000000, 0.000000,-0.000000;;, + 173;4;-0.240443, 1.000000, 0.000000,-0.000000;;, + 174;4;-0.291290, 1.000000, 0.000000,-0.000000;;, + 175;4;-0.334966, 1.000000, 0.000000,-0.000000;;, + 176;4;-0.369249, 1.000000, 0.000000,-0.000000;;, + 177;4;-0.391810, 1.000000, 0.000000,-0.000000;;, + 178;4;-0.400000, 1.000000, 0.000000,-0.000000;;, + 179;4;-0.391810, 1.000000, 0.000000,-0.000000;;, + 180;4;-0.369249, 1.000000, 0.000000,-0.000000;;, + 181;4;-0.334966, 1.000000, 0.000000,-0.000000;;, + 182;4;-0.291290, 1.000000, 0.000000,-0.000000;;, + 183;4;-0.240443, 1.000000, 0.000000,-0.000000;;, + 184;4;-0.184755, 1.000000, 0.000000,-0.000000;;, + 185;4;-0.127005, 1.000000, 0.000000,-0.000000;;, + 186;4;-0.071069, 1.000000, 0.000000,-0.000000;;, + 187;4;-0.023583, 1.000000, 0.000000,-0.000000;;, + 188;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 189;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 190;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 191;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 192;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 193;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 194;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 195;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 196;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 197;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 198;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 199;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 200;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 201;4;-0.004000, 1.000000, 0.000000,-0.000000;;, + 202;4;-0.015267, 1.000000, 0.000000,-0.000000;;, + 203;4;-0.029733, 1.000000, 0.000000,-0.000000;;, + 204;4;-0.041000, 1.000000, 0.000000,-0.000000;;, + 205;4;-0.045000, 1.000000, 0.000000,-0.000000;;, + 206;4;-0.041000, 1.000000, 0.000000,-0.000000;;, + 207;4;-0.029733, 1.000000, 0.000000,-0.000000;;, + 208;4;-0.015267, 1.000000, 0.000000,-0.000000;;, + 209;4;-0.004000, 1.000000, 0.000000,-0.000000;;, + 210;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 211;4;-0.004000, 1.000000, 0.000000,-0.000000;;, + 212;4;-0.015267, 1.000000, 0.000000,-0.000000;;, + 213;4;-0.029733, 1.000000, 0.000000,-0.000000;;, + 214;4;-0.041000, 1.000000, 0.000000,-0.000000;;, + 215;4;-0.045000, 1.000000, 0.000000,-0.000000;;, + 216;4;-0.041000, 1.000000, 0.000000,-0.000000;;, + 217;4;-0.029734, 1.000000, 0.000000,-0.000000;;, + 218;4;-0.015267, 1.000000, 0.000000,-0.000000;;, + 219;4;-0.004000, 1.000000, 0.000000,-0.000000;;, + 220;4;-0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3; 0.000000, 6.950000, 1.100000;;, + 1;3; 0.000000, 6.950000, 1.100000;;, + 2;3; 0.000000, 6.950000, 1.100000;;, + 3;3; 0.000000, 6.950000, 1.100000;;, + 4;3; 0.000000, 6.950000, 1.100000;;, + 5;3; 0.000000, 6.950000, 1.100000;;, + 6;3; 0.000000, 6.950000, 1.100000;;, + 7;3; 0.000000, 6.950000, 1.100000;;, + 8;3; 0.000000, 6.949999, 1.100000;;, + 9;3; 0.000000, 6.950000, 1.100000;;, + 10;3; 0.000000, 6.950000, 1.100000;;, + 11;3; 0.000000, 6.950000, 1.100000;;, + 12;3; 0.000000, 6.950000, 1.100000;;, + 13;3; 0.000000, 6.950000, 1.100000;;, + 14;3; 0.000000, 6.950000, 1.100000;;, + 15;3; 0.000000, 6.949999, 1.100000;;, + 16;3; 0.000000, 6.950000, 1.100000;;, + 17;3; 0.000000, 6.950000, 1.100000;;, + 18;3; 0.000000, 6.950000, 1.100000;;, + 19;3; 0.000000, 6.950000, 1.100000;;, + 20;3; 0.000000, 6.950000, 1.100000;;, + 21;3; 0.000000, 6.950000, 1.100000;;, + 22;3; 0.000000, 6.950000, 1.100000;;, + 23;3; 0.000000, 6.950000, 1.100000;;, + 24;3; 0.000000, 6.950000, 1.100000;;, + 25;3; 0.000000, 6.949999, 1.100000;;, + 26;3; 0.000000, 6.950000, 1.100000;;, + 27;3; 0.000000, 6.950000, 1.100000;;, + 28;3; 0.000000, 6.949999, 1.100000;;, + 29;3; 0.000000, 6.950000, 1.100000;;, + 30;3; 0.000000, 6.950000, 1.100000;;, + 31;3; 0.000000, 6.950000, 1.100000;;, + 32;3; 0.000000, 6.949999, 1.100000;;, + 33;3; 0.000000, 6.950000, 1.100000;;, + 34;3; 0.000000, 6.950000, 1.100000;;, + 35;3; 0.000000, 6.950000, 1.100000;;, + 36;3; 0.000000, 6.950000, 1.100000;;, + 37;3; 0.000000, 6.950000, 1.100000;;, + 38;3; 0.000000, 6.950000, 1.100000;;, + 39;3; 0.000000, 6.950000, 1.100000;;, + 40;3; 0.000000, 6.950000, 1.100000;;, + 41;3; 0.000000, 6.950000, 1.100000;;, + 42;3; 0.000000, 6.950000, 1.100000;;, + 43;3; 0.000000, 6.950000, 1.100000;;, + 44;3; 0.000000, 6.950000, 1.100000;;, + 45;3; 0.000000, 6.950000, 1.100000;;, + 46;3; 0.000000, 6.950000, 1.100000;;, + 47;3; 0.000000, 6.950000, 1.100000;;, + 48;3; 0.000000, 6.949999, 1.100000;;, + 49;3; 0.000000, 6.950000, 1.100000;;, + 50;3; 0.000000, 6.950000, 1.100000;;, + 51;3; 0.000000, 6.950000, 1.100000;;, + 52;3; 0.000000, 6.949999, 1.100000;;, + 53;3; 0.000000, 6.950000, 1.100000;;, + 54;3; 0.000000, 6.950000, 1.100000;;, + 55;3; 0.000000, 6.949999, 1.100000;;, + 56;3; 0.000000, 6.950000, 1.100000;;, + 57;3; 0.000000, 6.950000, 1.100000;;, + 58;3; 0.000000, 6.950000, 1.100000;;, + 59;3; 0.000000, 6.950000, 1.100000;;, + 60;3; 0.000000, 6.950000, 1.100000;;, + 61;3; 0.000000, 6.950000, 1.100000;;, + 62;3; 0.000000, 6.949999, 1.100000;;, + 63;3; 0.000000, 6.949999, 1.100000;;, + 64;3; 0.000000, 6.949999, 1.100000;;, + 65;3; 0.000000, 6.950000, 1.100000;;, + 66;3; 0.000000, 6.950000, 1.100000;;, + 67;3; 0.000000, 6.949999, 1.100000;;, + 68;3; 0.000000, 6.950000, 1.100000;;, + 69;3; 0.000000, 6.950000, 1.100000;;, + 70;3; 0.000000, 6.950000, 1.100000;;, + 71;3; 0.000000, 6.950000, 1.100000;;, + 72;3; 0.000000, 6.950000, 1.100000;;, + 73;3; 0.000000, 6.950000, 1.100000;;, + 74;3; 0.000000, 6.950000, 1.100000;;, + 75;3; 0.000000, 6.950000, 1.100000;;, + 76;3; 0.000000, 6.950000, 1.100000;;, + 77;3; 0.000000, 6.950000, 1.100000;;, + 78;3; 0.000000, 6.950000, 1.100000;;, + 79;3; 0.000000, 6.950000, 1.100000;;, + 80;3; 0.000000, 6.950000, 1.100000;;, + 81;3; 0.000000, 6.950000, 1.100000;;, + 82;3; 0.000000, 6.950000, 1.100000;;, + 83;3; 0.000000, 6.950000, 1.100000;;, + 84;3; 0.000000, 6.950000, 1.100000;;, + 85;3; 0.000000, 6.950000, 1.100000;;, + 86;3; 0.000000, 6.950000, 1.100000;;, + 87;3; 0.000000, 6.950000, 1.100000;;, + 88;3; 0.000000, 6.950000, 1.100000;;, + 89;3; 0.000000, 6.950000, 1.100000;;, + 90;3; 0.000000, 6.950000, 1.100000;;, + 91;3; 0.000000, 6.950000, 1.100000;;, + 92;3; 0.000000, 6.950000, 1.100000;;, + 93;3; 0.000000, 6.950000, 1.100000;;, + 94;3; 0.000000, 6.950000, 1.100000;;, + 95;3; 0.000000, 6.949999, 1.100000;;, + 96;3; 0.000000, 6.950000, 1.100000;;, + 97;3; 0.000000, 6.950000, 1.100000;;, + 98;3; 0.000000, 6.950000, 1.100000;;, + 99;3; 0.000000, 6.950000, 1.100000;;, + 100;3; 0.000000, 6.950000, 1.100000;;, + 101;3; 0.000000, 6.950000, 1.100000;;, + 102;3; 0.000000, 6.950000, 1.100000;;, + 103;3; 0.000000, 6.950000, 1.100000;;, + 104;3; 0.000000, 6.950000, 1.100000;;, + 105;3; 0.000000, 6.950000, 1.100000;;, + 106;3; 0.000000, 6.950000, 1.100000;;, + 107;3; 0.000000, 6.950000, 1.100000;;, + 108;3; 0.000000, 6.950000, 1.100000;;, + 109;3; 0.000000, 6.950000, 1.100000;;, + 110;3; 0.000000, 6.950000, 1.100000;;, + 111;3; 0.000000, 6.950000, 1.100000;;, + 112;3; 0.000000, 6.950000, 1.100000;;, + 113;3; 0.000000, 6.950000, 1.100000;;, + 114;3; 0.000000, 6.950000, 1.100000;;, + 115;3; 0.000000, 6.949999, 1.100000;;, + 116;3; 0.000000, 6.950000, 1.100000;;, + 117;3; 0.000000, 6.950000, 1.100000;;, + 118;3; 0.000000, 6.949999, 1.100000;;, + 119;3; 0.000000, 6.950000, 1.100000;;, + 120;3; 0.000000, 6.950000, 1.100000;;, + 121;3; 0.000000, 6.950000, 1.100000;;, + 122;3; 0.000000, 6.950000, 1.100000;;, + 123;3; 0.000000, 6.950000, 1.100000;;, + 124;3; 0.000000, 6.949999, 1.100000;;, + 125;3; 0.000000, 6.950000, 1.100000;;, + 126;3; 0.000000, 6.950000, 1.100000;;, + 127;3; 0.000000, 6.949999, 1.100000;;, + 128;3; 0.000000, 6.950000, 1.100000;;, + 129;3; 0.000000, 6.950000, 1.100000;;, + 130;3; 0.000000, 6.950000, 1.100000;;, + 131;3; 0.000000, 6.950000, 1.100000;;, + 132;3; 0.000000, 6.950000, 1.100000;;, + 133;3; 0.000000, 6.950000, 1.100000;;, + 134;3; 0.000000, 6.950000, 1.100000;;, + 135;3; 0.000000, 6.950000, 1.100000;;, + 136;3; 0.000000, 6.950000, 1.100000;;, + 137;3; 0.000000, 6.950000, 1.100000;;, + 138;3; 0.000000, 6.950000, 1.100000;;, + 139;3; 0.000000, 6.950000, 1.100000;;, + 140;3; 0.000000, 6.950000, 1.100000;;, + 141;3; 0.000000, 6.950000, 1.100000;;, + 142;3; 0.000000, 6.950000, 1.100000;;, + 143;3; 0.000000, 6.949999, 1.100000;;, + 144;3; 0.000000, 6.950000, 1.100000;;, + 145;3; 0.000000, 6.950000, 1.100000;;, + 146;3; 0.000000, 6.950000, 1.100000;;, + 147;3; 0.000000, 6.950000, 1.100000;;, + 148;3; 0.000000, 6.950000, 1.100000;;, + 149;3; 0.000000, 6.950000, 1.100000;;, + 150;3; 0.000000, 6.950000, 1.100000;;, + 151;3; 0.000000, 6.950000, 1.100000;;, + 152;3; 0.000000, 6.950000, 1.100000;;, + 153;3; 0.000000, 6.950000, 1.100000;;, + 154;3; 0.000000, 6.950000, 1.100000;;, + 155;3; 0.000000, 6.950000, 1.100000;;, + 156;3; 0.000000, 6.950000, 1.100000;;, + 157;3; 0.000000, 6.950000, 1.100000;;, + 158;3; 0.000000, 6.950000, 1.100000;;, + 159;3; 0.000000, 6.950000, 1.100000;;, + 160;3; 0.000000, 6.950000, 1.100000;;, + 161;3; 0.000000, 6.950000, 1.100000;;, + 162;3; 0.000000, 6.950000, 1.100000;;, + 163;3; 0.000000, 6.950000, 1.100000;;, + 164;3; 0.000000, 6.950000, 1.100000;;, + 165;3; 0.000000, 6.950000, 1.100000;;, + 166;3; 0.000000, 6.950000, 1.100000;;, + 167;3; 0.000000, 6.950000, 1.100000;;, + 168;3; 0.000000, 6.950000, 1.100000;;, + 169;3; 0.000000, 6.950000, 1.100000;;, + 170;3; 0.000000, 6.950000, 1.100000;;, + 171;3; 0.000000, 6.950000, 1.100000;;, + 172;3; 0.000000, 6.950000, 1.100000;;, + 173;3; 0.000000, 6.950000, 1.100000;;, + 174;3; 0.000000, 6.950000, 1.100000;;, + 175;3; 0.000000, 6.950000, 1.100000;;, + 176;3; 0.000000, 6.950000, 1.100000;;, + 177;3; 0.000000, 6.950000, 1.100000;;, + 178;3; 0.000000, 6.950000, 1.100000;;, + 179;3; 0.000000, 6.950000, 1.100000;;, + 180;3; 0.000000, 6.950000, 1.100000;;, + 181;3; 0.000000, 6.950000, 1.100000;;, + 182;3; 0.000000, 6.950000, 1.100000;;, + 183;3; 0.000000, 6.950000, 1.100000;;, + 184;3; 0.000000, 6.950000, 1.100000;;, + 185;3; 0.000000, 6.950000, 1.100000;;, + 186;3; 0.000000, 6.950000, 1.100000;;, + 187;3; 0.000000, 6.950000, 1.100000;;, + 188;3; 0.000000, 6.950000, 1.100000;;, + 189;3; 0.000000, 6.950000, 1.100000;;, + 190;3; 0.000000, 6.950000, 1.100000;;, + 191;3; 0.000000, 6.950000, 1.100000;;, + 192;3; 0.000000, 6.950000, 1.100000;;, + 193;3; 0.000000, 6.950000, 1.100000;;, + 194;3; 0.000000, 6.950000, 1.100000;;, + 195;3; 0.000000, 6.950000, 1.100000;;, + 196;3; 0.000000, 6.950000, 1.100000;;, + 197;3; 0.000000, 6.950000, 1.100000;;, + 198;3; 0.000000, 6.950000, 1.100000;;, + 199;3; 0.000000, 6.950000, 1.100000;;, + 200;3; 0.000000, 6.950000, 1.100000;;, + 201;3; 0.000000, 6.950000, 1.100000;;, + 202;3; 0.000000, 6.949999, 1.100000;;, + 203;3; 0.000000, 6.949999, 1.100000;;, + 204;3; 0.000000, 6.950000, 1.100000;;, + 205;3; 0.000000, 6.950000, 1.100000;;, + 206;3; 0.000000, 6.949999, 1.100000;;, + 207;3; 0.000000, 6.950000, 1.100000;;, + 208;3; 0.000000, 6.950000, 1.100000;;, + 209;3; 0.000000, 6.950000, 1.100000;;, + 210;3; 0.000000, 6.950000, 1.100000;;, + 211;3; 0.000000, 6.950000, 1.100000;;, + 212;3; 0.000000, 6.950000, 1.100000;;, + 213;3; 0.000000, 6.950000, 1.100000;;, + 214;3; 0.000000, 6.949999, 1.100000;;, + 215;3; 0.000000, 6.950000, 1.100000;;, + 216;3; 0.000000, 6.950000, 1.100000;;, + 217;3; 0.000000, 6.950000, 1.100000;;, + 218;3; 0.000000, 6.950000, 1.100000;;, + 219;3; 0.000000, 6.950000, 1.100000;;, + 220;3; 0.000000, 6.950000, 1.100000;;; + } + } +} // End of AnimationSet ArmatureAction +AnimationSet Default_Action { + Animation { + {Player} + AnimationKey { // Rotation + 0; + 221; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 190;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 191;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 192;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 193;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 194;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 195;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 196;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 197;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 198;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 199;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 200;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 201;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 202;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 203;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 204;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 205;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 206;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 207;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 208;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 209;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 210;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 211;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 212;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 213;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 214;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 215;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 216;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 217;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 218;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 219;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 220;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 221; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 221; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;, + 180;3; 0.000000, 0.000000, 0.000000;;, + 181;3; 0.000000, 0.000000, 0.000000;;, + 182;3; 0.000000, 0.000000, 0.000000;;, + 183;3; 0.000000, 0.000000, 0.000000;;, + 184;3; 0.000000, 0.000000, 0.000000;;, + 185;3; 0.000000, 0.000000, 0.000000;;, + 186;3; 0.000000, 0.000000, 0.000000;;, + 187;3; 0.000000, 0.000000, 0.000000;;, + 188;3; 0.000000, 0.000000, 0.000000;;, + 189;3; 0.000000, 0.000000, 0.000000;;, + 190;3; 0.000000, 0.000000, 0.000000;;, + 191;3; 0.000000, 0.000000, 0.000000;;, + 192;3; 0.000000, 0.000000, 0.000000;;, + 193;3; 0.000000, 0.000000, 0.000000;;, + 194;3; 0.000000, 0.000000, 0.000000;;, + 195;3; 0.000000, 0.000000, 0.000000;;, + 196;3; 0.000000, 0.000000, 0.000000;;, + 197;3; 0.000000, 0.000000, 0.000000;;, + 198;3; 0.000000, 0.000000, 0.000000;;, + 199;3; 0.000000, 0.000000, 0.000000;;, + 200;3; 0.000000, 0.000000, 0.000000;;, + 201;3; 0.000000, 0.000000, 0.000000;;, + 202;3; 0.000000, 0.000000, 0.000000;;, + 203;3; 0.000000, 0.000000, 0.000000;;, + 204;3; 0.000000, 0.000000, 0.000000;;, + 205;3; 0.000000, 0.000000, 0.000000;;, + 206;3; 0.000000, 0.000000, 0.000000;;, + 207;3; 0.000000, 0.000000, 0.000000;;, + 208;3; 0.000000, 0.000000, 0.000000;;, + 209;3; 0.000000, 0.000000, 0.000000;;, + 210;3; 0.000000, 0.000000, 0.000000;;, + 211;3; 0.000000, 0.000000, 0.000000;;, + 212;3; 0.000000, 0.000000, 0.000000;;, + 213;3; 0.000000, 0.000000, 0.000000;;, + 214;3; 0.000000, 0.000000, 0.000000;;, + 215;3; 0.000000, 0.000000, 0.000000;;, + 216;3; 0.000000, 0.000000, 0.000000;;, + 217;3; 0.000000, 0.000000, 0.000000;;, + 218;3; 0.000000, 0.000000, 0.000000;;, + 219;3; 0.000000, 0.000000, 0.000000;;, + 220;3; 0.000000, 0.000000, 0.000000;;; + } + } +} // End of AnimationSet Default_Action diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_boots_bronze.png b/mods/3d_armor/3d_armor/textures/3d_armor_boots_bronze.png new file mode 100644 index 0000000..1b09421 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_boots_bronze.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_boots_bronze_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_boots_bronze_preview.png new file mode 100644 index 0000000..eba8879 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_boots_bronze_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_boots_diamond.png b/mods/3d_armor/3d_armor/textures/3d_armor_boots_diamond.png new file mode 100644 index 0000000..ccd696c Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_boots_diamond.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_boots_diamond_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_boots_diamond_preview.png new file mode 100644 index 0000000..bd9fc7c Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_boots_diamond_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_boots_gold.png b/mods/3d_armor/3d_armor/textures/3d_armor_boots_gold.png new file mode 100644 index 0000000..68eef7d Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_boots_gold.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_boots_gold_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_boots_gold_preview.png new file mode 100644 index 0000000..6870fb5 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_boots_gold_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_boots_mithril.png b/mods/3d_armor/3d_armor/textures/3d_armor_boots_mithril.png new file mode 100644 index 0000000..fa0b504 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_boots_mithril.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_boots_mithril_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_boots_mithril_preview.png new file mode 100644 index 0000000..f7ded16 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_boots_mithril_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_boots_steel.png b/mods/3d_armor/3d_armor/textures/3d_armor_boots_steel.png new file mode 100644 index 0000000..51752c2 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_boots_steel.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_boots_steel_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_boots_steel_preview.png new file mode 100644 index 0000000..a8a4d6a Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_boots_steel_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_boots_wood.png b/mods/3d_armor/3d_armor/textures/3d_armor_boots_wood.png new file mode 100644 index 0000000..1fbe616 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_boots_wood.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_boots_wood_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_boots_wood_preview.png new file mode 100644 index 0000000..357e72b Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_boots_wood_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_bronze.png b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_bronze.png new file mode 100644 index 0000000..b4fbf2d Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_bronze.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_bronze_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_bronze_preview.png new file mode 100644 index 0000000..08ed599 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_bronze_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_diamond.png b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_diamond.png new file mode 100644 index 0000000..ce959c5 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_diamond.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_diamond_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_diamond_preview.png new file mode 100644 index 0000000..6a78608 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_diamond_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_gold.png b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_gold.png new file mode 100644 index 0000000..bcfe52d Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_gold.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_gold_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_gold_preview.png new file mode 100644 index 0000000..5ddd5d9 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_gold_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_mithril.png b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_mithril.png new file mode 100644 index 0000000..cedf0d9 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_mithril.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_mithril_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_mithril_preview.png new file mode 100644 index 0000000..ac83eec Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_mithril_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_steel.png b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_steel.png new file mode 100644 index 0000000..8d7d5aa Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_steel.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_steel_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_steel_preview.png new file mode 100644 index 0000000..a33c2b4 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_steel_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_wood.png b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_wood.png new file mode 100644 index 0000000..2e38314 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_wood.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_wood_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_wood_preview.png new file mode 100644 index 0000000..218a5ae Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_chestplate_wood_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_helmet_bronze.png b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_bronze.png new file mode 100644 index 0000000..04a32f7 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_bronze.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_helmet_bronze_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_bronze_preview.png new file mode 100644 index 0000000..f79b966 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_bronze_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_helmet_diamond.png b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_diamond.png new file mode 100644 index 0000000..de9ae22 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_diamond.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_helmet_diamond_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_diamond_preview.png new file mode 100644 index 0000000..537bac5 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_diamond_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_helmet_gold.png b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_gold.png new file mode 100644 index 0000000..ed00cfe Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_gold.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_helmet_gold_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_gold_preview.png new file mode 100644 index 0000000..73a5102 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_gold_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_helmet_mithril.png b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_mithril.png new file mode 100644 index 0000000..f7c6cae Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_mithril.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_helmet_mithril_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_mithril_preview.png new file mode 100644 index 0000000..713a9fe Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_mithril_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_helmet_steel.png b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_steel.png new file mode 100644 index 0000000..f092ead Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_steel.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_helmet_steel_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_steel_preview.png new file mode 100644 index 0000000..4a91205 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_steel_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_helmet_wood.png b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_wood.png new file mode 100644 index 0000000..9faac93 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_wood.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_helmet_wood_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_wood_preview.png new file mode 100644 index 0000000..5730372 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_helmet_wood_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_bronze.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_bronze.png new file mode 100644 index 0000000..795903c Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_bronze.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_diamond.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_diamond.png new file mode 100644 index 0000000..87e3443 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_diamond.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_gold.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_gold.png new file mode 100644 index 0000000..f60ded1 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_gold.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_mithril.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_mithril.png new file mode 100644 index 0000000..f15bbe6 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_mithril.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_steel.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_steel.png new file mode 100644 index 0000000..2d13249 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_steel.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_wood.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_wood.png new file mode 100644 index 0000000..6e18501 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_boots_wood.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_bronze.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_bronze.png new file mode 100644 index 0000000..793f875 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_bronze.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_diamond.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_diamond.png new file mode 100644 index 0000000..cfb71e1 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_diamond.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_gold.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_gold.png new file mode 100644 index 0000000..adce8a3 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_gold.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_mithril.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_mithril.png new file mode 100644 index 0000000..367e442 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_mithril.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_steel.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_steel.png new file mode 100644 index 0000000..e5d16ec Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_steel.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_wood.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_wood.png new file mode 100644 index 0000000..ae7defb Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_chestplate_wood.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_bronze.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_bronze.png new file mode 100644 index 0000000..20e5b56 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_bronze.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_diamond.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_diamond.png new file mode 100644 index 0000000..d05d1de Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_diamond.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_gold.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_gold.png new file mode 100644 index 0000000..5a225c8 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_gold.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_mithril.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_mithril.png new file mode 100644 index 0000000..edb8fef Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_mithril.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_steel.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_steel.png new file mode 100644 index 0000000..a420b23 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_steel.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_wood.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_wood.png new file mode 100644 index 0000000..73ec833 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_helmet_wood.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_bronze.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_bronze.png new file mode 100644 index 0000000..8930538 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_bronze.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_diamond.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_diamond.png new file mode 100644 index 0000000..88d7d33 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_diamond.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_gold.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_gold.png new file mode 100644 index 0000000..29a7da9 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_gold.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_mithril.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_mithril.png new file mode 100644 index 0000000..6635f8a Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_mithril.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_steel.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_steel.png new file mode 100644 index 0000000..95eb156 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_steel.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_wood.png b/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_wood.png new file mode 100644 index 0000000..f0082bb Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_inv_leggings_wood.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_leggings_bronze.png b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_bronze.png new file mode 100644 index 0000000..1adabde Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_bronze.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_leggings_bronze_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_bronze_preview.png new file mode 100644 index 0000000..e755a01 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_bronze_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_leggings_diamond.png b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_diamond.png new file mode 100644 index 0000000..e406989 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_diamond.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_leggings_diamond_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_diamond_preview.png new file mode 100644 index 0000000..d91b31b Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_diamond_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_leggings_gold.png b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_gold.png new file mode 100644 index 0000000..3ef2693 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_gold.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_leggings_gold_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_gold_preview.png new file mode 100644 index 0000000..6d2fe4c Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_gold_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_leggings_mithril.png b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_mithril.png new file mode 100644 index 0000000..96fbf35 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_mithril.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_leggings_mithril_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_mithril_preview.png new file mode 100644 index 0000000..6b936f6 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_mithril_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_leggings_steel.png b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_steel.png new file mode 100644 index 0000000..717d9c3 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_steel.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_leggings_steel_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_steel_preview.png new file mode 100644 index 0000000..d0565d6 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_steel_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_leggings_wood.png b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_wood.png new file mode 100644 index 0000000..2c5b5a6 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_wood.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_leggings_wood_preview.png b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_wood_preview.png new file mode 100644 index 0000000..792ae35 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_leggings_wood_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_trans.png b/mods/3d_armor/3d_armor/textures/3d_armor_trans.png new file mode 100644 index 0000000..e215ca2 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_trans.png differ diff --git a/mods/3d_armor/3d_armor/textures/3d_armor_ui_form.png b/mods/3d_armor/3d_armor/textures/3d_armor_ui_form.png new file mode 100644 index 0000000..fe20f05 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/3d_armor_ui_form.png differ diff --git a/mods/3d_armor/3d_armor/textures/character_preview.png b/mods/3d_armor/3d_armor/textures/character_preview.png new file mode 100644 index 0000000..76f6bfd Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/character_preview.png differ diff --git a/mods/3d_armor/3d_armor/textures/inventory_plus_armor.png b/mods/3d_armor/3d_armor/textures/inventory_plus_armor.png new file mode 100644 index 0000000..11fb508 Binary files /dev/null and b/mods/3d_armor/3d_armor/textures/inventory_plus_armor.png differ diff --git a/mods/3d_armor/LICENSE.md b/mods/3d_armor/LICENSE.md new file mode 100644 index 0000000..d383270 --- /dev/null +++ b/mods/3d_armor/LICENSE.md @@ -0,0 +1,11 @@ +3D Armor - Visible Player Armor +=============================== + +Default Item Textures (C) Cisoun - WTFPL + +Armor Textures: Copyright (C) 2013 Ryan Jones - CC-BY-SA + +Source Code: Copyright (C) 2013 Stuart Jones - LGPL + +Special credit to Jordach and MirceaKitsune for providing the default 3d character model. + diff --git a/mods/3d_armor/README.md b/mods/3d_armor/README.md new file mode 100644 index 0000000..35509d5 --- /dev/null +++ b/mods/3d_armor/README.md @@ -0,0 +1,38 @@ +Modpack - 3d Armor [0.4.2] +========================== + +[mod] Visible Player Armor [3d_armor] +------------------------------------- + +depends: default + +recommends: inventory_plus or unified_inventory (use only one) + +Adds craftable armor that is visible to other players. Each armor item worn contributes to +a player's armor group level making them less vulnerable to weapons. + +Armor takes damage when a player is hurt, however, many armor items offer a 'stackable' +percentage chance of restoring the lost health points. Overall armor level is boosted by 10% +when wearing a full matching set (helmet, chestplate, leggings and boots of the same material) + +Compatible with player skins [skins] by Zeg9 and Player Textures [player_textures] by PilzAdam +and [simple_skins] by TenPlus1. + +Armor can be configured by adding a file called armor.conf in 3d_armor mod or world directory. +see armor.conf.example for all available options. + +[mod] Visible Wielded Items [wieldview] +--------------------------------------- + +depends: 3d_armor + +Makes hand wielded items visible to other players. + +[mod] Shields [shields] +------------------------------------- + +depends: 3d_armor + +Originally a part of 3d_armor, shields have been re-included as an optional extra. +If you do not want shields then simply remove the shields folder from the modpack. + diff --git a/mods/3d_armor/modpack.txt b/mods/3d_armor/modpack.txt new file mode 100644 index 0000000..e69de29 diff --git a/mods/3d_armor/shields/README.txt b/mods/3d_armor/shields/README.txt new file mode 100644 index 0000000..80988c1 --- /dev/null +++ b/mods/3d_armor/shields/README.txt @@ -0,0 +1,6 @@ +A 3d character model re-texturing api used as the framework for this modpack. + +depends: 3d_armor + +Originally a part of 3d_armor, shields have been re-included as an optional extra. +If you do not what shields then simply remove the shields folder from the modpack. diff --git a/mods/3d_armor/shields/crafting_guide.txt b/mods/3d_armor/shields/crafting_guide.txt new file mode 100644 index 0000000..6426f68 --- /dev/null +++ b/mods/3d_armor/shields/crafting_guide.txt @@ -0,0 +1,16 @@ +Shields -- Crafting Guide +-------------------------- + ++---+---+---+ +| X | X | X | ++---+---+---+ +| X | X | X | ++---+---+---+ +| | X | | ++---+---+---+ + +[shields:shield_wood] X = [default:wood] +[shields:shield_steel] X = [default:steel_ingot] +[shields:shield_bronze] X = [default:bronze_ingot] +[shields:shield_diamond] X = [default:diamond] +[shields:shield_gold] X = [default:gold_ingot] diff --git a/mods/3d_armor/shields/depends.txt b/mods/3d_armor/shields/depends.txt new file mode 100644 index 0000000..585cc7a --- /dev/null +++ b/mods/3d_armor/shields/depends.txt @@ -0,0 +1,2 @@ +default +3d_armor diff --git a/mods/3d_armor/shields/init.lua b/mods/3d_armor/shields/init.lua new file mode 100644 index 0000000..cb82582 --- /dev/null +++ b/mods/3d_armor/shields/init.lua @@ -0,0 +1,76 @@ +local use_moreores = minetest.get_modpath("moreores") + +-- Regisiter Shields + +minetest.register_tool("shields:shield_wood", { + description = "Wooden Shield", + inventory_image = "shields_inv_shield_wood.png", + groups = {armor_shield=5, armor_heal=0, armor_use=2000}, + wear = 0, +}) + +minetest.register_tool("shields:shield_steel", { + description = "Steel Shield", + inventory_image = "shields_inv_shield_steel.png", + groups = {armor_shield=10, armor_heal=0, armor_use=500}, + wear = 0, +}) + +minetest.register_tool("shields:shield_bronze", { + description = "Bronze Shield", + inventory_image = "shields_inv_shield_bronze.png", + groups = {armor_shield=10, armor_heal=6, armor_use=250}, + wear = 0, +}) + +minetest.register_tool("shields:shield_diamond", { + description = "Diamond Shield", + inventory_image = "shields_inv_shield_diamond.png", + groups = {armor_shield=15, armor_heal=12, armor_use=100}, + wear = 0, +}) + +minetest.register_tool("shields:shield_gold", { + description = "Gold Shield", + inventory_image = "shields_inv_shield_gold.png", + groups = {armor_shield=10, armor_heal=6, armor_use=250}, + wear = 0, +}) + +if use_moreores then + minetest.register_tool("shields:shield_mithril", { + description = "Mithril Shield", + inventory_image = "shields_inv_shield_mithril.png", + groups = {armor_shield=15, armor_heal=12, armor_use=50}, + wear = 0, + }) +end + +local craft_ingreds = { + wood = "default:wood", + steel = "default:steel_ingot", + bronze = "default:bronze_ingot", + diamond = "default:diamond", + gold = "default:gold_ingot", +} + +if use_moreores then + craft_ingreds.mithril = "moreores:mithril_ingot" +end + +for k, v in pairs(craft_ingreds) do + minetest.register_craft({ + output = "shields:shield_"..k, + recipe = { + {v, v, v}, + {v, v, v}, + {"", v, ""}, + }, + }) +end + +minetest.after(0, function() + table.insert(armor.elements, "shield") +end) + + diff --git a/mods/3d_armor/shields/textures/shields_inv_shield_bronze.png b/mods/3d_armor/shields/textures/shields_inv_shield_bronze.png new file mode 100644 index 0000000..25f6769 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_inv_shield_bronze.png differ diff --git a/mods/3d_armor/shields/textures/shields_inv_shield_diamond.png b/mods/3d_armor/shields/textures/shields_inv_shield_diamond.png new file mode 100644 index 0000000..b114587 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_inv_shield_diamond.png differ diff --git a/mods/3d_armor/shields/textures/shields_inv_shield_gold.png b/mods/3d_armor/shields/textures/shields_inv_shield_gold.png new file mode 100644 index 0000000..56ef351 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_inv_shield_gold.png differ diff --git a/mods/3d_armor/shields/textures/shields_inv_shield_mithril.png b/mods/3d_armor/shields/textures/shields_inv_shield_mithril.png new file mode 100644 index 0000000..7c1d7d3 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_inv_shield_mithril.png differ diff --git a/mods/3d_armor/shields/textures/shields_inv_shield_steel.png b/mods/3d_armor/shields/textures/shields_inv_shield_steel.png new file mode 100644 index 0000000..8eaee8f Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_inv_shield_steel.png differ diff --git a/mods/3d_armor/shields/textures/shields_inv_shield_wood.png b/mods/3d_armor/shields/textures/shields_inv_shield_wood.png new file mode 100644 index 0000000..3e3c14a Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_inv_shield_wood.png differ diff --git a/mods/3d_armor/shields/textures/shields_shield_bronze.png b/mods/3d_armor/shields/textures/shields_shield_bronze.png new file mode 100644 index 0000000..62297a0 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_shield_bronze.png differ diff --git a/mods/3d_armor/shields/textures/shields_shield_bronze_preview.png b/mods/3d_armor/shields/textures/shields_shield_bronze_preview.png new file mode 100644 index 0000000..f0d1326 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_shield_bronze_preview.png differ diff --git a/mods/3d_armor/shields/textures/shields_shield_diamond.png b/mods/3d_armor/shields/textures/shields_shield_diamond.png new file mode 100644 index 0000000..3f37300 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_shield_diamond.png differ diff --git a/mods/3d_armor/shields/textures/shields_shield_diamond_preview.png b/mods/3d_armor/shields/textures/shields_shield_diamond_preview.png new file mode 100644 index 0000000..d67f484 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_shield_diamond_preview.png differ diff --git a/mods/3d_armor/shields/textures/shields_shield_gold.png b/mods/3d_armor/shields/textures/shields_shield_gold.png new file mode 100644 index 0000000..1bea476 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_shield_gold.png differ diff --git a/mods/3d_armor/shields/textures/shields_shield_gold_preview.png b/mods/3d_armor/shields/textures/shields_shield_gold_preview.png new file mode 100644 index 0000000..10e76d9 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_shield_gold_preview.png differ diff --git a/mods/3d_armor/shields/textures/shields_shield_mithril.png b/mods/3d_armor/shields/textures/shields_shield_mithril.png new file mode 100644 index 0000000..13666d1 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_shield_mithril.png differ diff --git a/mods/3d_armor/shields/textures/shields_shield_mithril_preview.png b/mods/3d_armor/shields/textures/shields_shield_mithril_preview.png new file mode 100644 index 0000000..d63df6d Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_shield_mithril_preview.png differ diff --git a/mods/3d_armor/shields/textures/shields_shield_steel.png b/mods/3d_armor/shields/textures/shields_shield_steel.png new file mode 100644 index 0000000..5d3ef06 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_shield_steel.png differ diff --git a/mods/3d_armor/shields/textures/shields_shield_steel_preview.png b/mods/3d_armor/shields/textures/shields_shield_steel_preview.png new file mode 100644 index 0000000..fcd2b64 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_shield_steel_preview.png differ diff --git a/mods/3d_armor/shields/textures/shields_shield_wood.png b/mods/3d_armor/shields/textures/shields_shield_wood.png new file mode 100644 index 0000000..69c9e3a Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_shield_wood.png differ diff --git a/mods/3d_armor/shields/textures/shields_shield_wood_preview.png b/mods/3d_armor/shields/textures/shields_shield_wood_preview.png new file mode 100644 index 0000000..d8484d9 Binary files /dev/null and b/mods/3d_armor/shields/textures/shields_shield_wood_preview.png differ diff --git a/mods/3d_armor/wieldview/README.txt b/mods/3d_armor/wieldview/README.txt new file mode 100644 index 0000000..cffae46 --- /dev/null +++ b/mods/3d_armor/wieldview/README.txt @@ -0,0 +1,15 @@ +[mod] visible wielded items [wieldview] +======================================= + +depends: default, 3d_armor + +Makes hand wielded items visible to other players. + +default settings: [minetest.conf] + +# Set number of seconds between visible wielded item updates. +wieldview_update_time = 2 + +# Show nodes as tiles, disabled by default +wieldview_node_tiles = false + diff --git a/mods/3d_armor/wieldview/depends.txt b/mods/3d_armor/wieldview/depends.txt new file mode 100644 index 0000000..585cc7a --- /dev/null +++ b/mods/3d_armor/wieldview/depends.txt @@ -0,0 +1,2 @@ +default +3d_armor diff --git a/mods/3d_armor/wieldview/init.lua b/mods/3d_armor/wieldview/init.lua new file mode 100644 index 0000000..dd86ea9 --- /dev/null +++ b/mods/3d_armor/wieldview/init.lua @@ -0,0 +1,75 @@ +local time = 0 +local update_time = tonumber(minetest.setting_get("wieldview_update_time")) +if not update_time then + update_time = 2 + minetest.setting_set("wieldview_update_time", tostring(update_time)) +end +local node_tiles = minetest.setting_getbool("wieldview_node_tiles") +if not node_tiles then + node_tiles = false + minetest.setting_set("wieldview_node_tiles", "false") +end + +wieldview = { + wielded_item = {}, + transform = {}, +} + +dofile(minetest.get_modpath(minetest.get_current_modname()).."/transform.lua") + +wieldview.get_item_texture = function(self, item) + local texture = "3d_armor_trans.png" + if item ~= "" then + if minetest.registered_items[item] then + local inventory_image = minetest.registered_items[item].inventory_image + if inventory_image and inventory_image ~= "" then + texture = inventory_image + elseif node_tiles == true and minetest.registered_items[item].tiles then + texture = minetest.registered_items[item].tiles[1] + end + end + if wieldview.transform[item] then + texture = texture.."^[transform"..wieldview.transform[item] + end + end + return texture +end + +wieldview.update_wielded_item = function(self, player) + if not player then + return + end + local name = player:get_player_name() + local stack = player:get_wielded_item() + local item = stack:get_name() + if not item then + return + end + if self.wielded_item[name] then + if self.wielded_item[name] == item then + return + end + armor.textures[name].wielditem = self:get_item_texture(item) + armor:update_player_visuals(player) + end + self.wielded_item[name] = item +end + +minetest.register_on_joinplayer(function(player) + local name = player:get_player_name() + wieldview.wielded_item[name] = "" + minetest.after(0, function(player) + wieldview:update_wielded_item(player) + end, player) +end) + +minetest.register_globalstep(function(dtime) + time = time + dtime + if time > update_time then + for _,player in ipairs(minetest.get_connected_players()) do + wieldview:update_wielded_item(player) + end + time = 0 + end +end) + diff --git a/mods/3d_armor/wieldview/transform.lua b/mods/3d_armor/wieldview/transform.lua new file mode 100644 index 0000000..4d5133e --- /dev/null +++ b/mods/3d_armor/wieldview/transform.lua @@ -0,0 +1,24 @@ +-- Wielded Item Transformations - http://dev.minetest.net/texture + +wieldview.transform = { + ["default:torch"]="R270", + ["default:sapling"]="R270", + ["flowers:dandelion_white"]="R270", + ["flowers:dandelion_yellow"]="R270", + ["flowers:geranium"]="R270", + ["flowers:rose"]="R270", + ["flowers:tulip"]="R270", + ["flowers:viola"]="R270", + ["bucket:bucket_empty"]="R270", + ["bucket:bucket_water"]="R270", + ["bucket:bucket_lava"]="R270", + ["screwdriver:screwdriver"]="R270", + ["screwdriver:screwdriver1"]="R270", + ["screwdriver:screwdriver2"]="R270", + ["screwdriver:screwdriver3"]="R270", + ["screwdriver:screwdriver4"]="R270", + ["vessels:glass_bottle"]="R270", + ["vessels:drinking_glass"]="R270", + ["vessels:steel_bottle"]="R270", +} + diff --git a/mods/Minetest-WorldEdit-master.zip b/mods/Minetest-WorldEdit-master.zip new file mode 100644 index 0000000..dff4986 Binary files /dev/null and b/mods/Minetest-WorldEdit-master.zip differ diff --git a/mods/WorldEdit/Chat Commands.md b/mods/WorldEdit/Chat Commands.md new file mode 100644 index 0000000..07bcfd6 --- /dev/null +++ b/mods/WorldEdit/Chat Commands.md @@ -0,0 +1,376 @@ +Chat Commands +------------- +For more information, see the [README](README.md). + +Many commands also have shorter names that can be typed faster. For example, if we wanted to use `//move ? 5`, we could instead type `//m ? 5`. All shortened names are listed below: + +| Short Name | Original Name | +|:-----------|:-------------------| +| `//i` | `//inspect` | +| `//rst` | `//reset` | +| `//mk` | `//mark` | +| `//umk` | `//unmark` | +| `//1` | `//pos1` | +| `//2` | `//pos2` | +| `//fp` | `//fixedpos` | +| `//v` | `//volume` | +| `//s` | `//set` | +| `//r` | `//replace` | +| `//ri` | `//replaceinverse` | +| `//hspr` | `//hollowsphere` | +| `//spr` | `//sphere` | +| `//hdo` | `//hollowdome` | +| `//do` | `//dome` | +| `//hcyl` | `//hollowcylinder` | + +### `//about` + +Get information about the mod. + + //about + +### `//inspect on/off/1/0/true/false/yes/no/enable/disable/` + +Enable or disable node inspection. + + //inspect on + //inspect off + //inspect 1 + //inspect 0 + //inspect true + //inspect false + //inspect yes + //inspect no + //inspect enable + //inspect disable + //inspect + +### `//reset` + +Reset the region so that it is empty. + + //reset + +### `//mark` + +Show markers at the region positions. + + //mark + +### `//unmark` + +Hide markers if currently shown. + + //unmark + +### `//pos1` + +Set WorldEdit region position 1 to the player's location. + + //pos1 + +### `//pos2` + +Set WorldEdit region position 2 to the player's location. + + //pos2 + +### `//p set/set1/set2/get` + +Set WorldEdit region, WorldEdit position 1, or WorldEdit position 2 by punching nodes, or display the current WorldEdit region. + + //p set + //p set1 + //p set2 + //p get + +### `//fixedpos set1 x y z` + +Set a WorldEdit region position to the position at (``, ``, ``). + + //fixedpos set1 0 0 0 + //fixedpos set1 -30 5 28 + //fixedpos set2 1004 -200 432 + +### `//volume` + +Display the volume of the current WorldEdit region. + + //volume + +### `//set ` + +Set the current WorldEdit region to ``. + + //set air + //set cactus + //set Blue Lightstone + //set dirt with grass + +### `//mix ...` + +Fill the current WorldEdit region with a random mix of ``, `...`. + + //mix air + //mix cactus stone glass sandstone + //mix Bronze + //mix default:cobble air + +### `//replace ` + +Replace all instances of `` with `` in the current WorldEdit region. + + //replace Cobblestone air + //replace lightstone_blue glass + //replace dirt Bronze Block + //replace mesecons:wire_00000000_off flowers:flower_tulip + +### `//replaceinverse ` + +Replace all nodes other than `` with `` in the current WorldEdit region. + + //replaceinverse Cobblestone air + //replaceinverse flowers:flower_waterlily glass + //replaceinverse dirt Bronze Block + //replaceinverse mesecons:wire_00000000_off flowers:flower_tulip + +### `//hollowsphere ` + +Add hollow sphere centered at WorldEdit position 1 with radius ``, composed of ``. + + //hollowsphere 5 Diamond Block + //hollowsphere 12 glass + //hollowsphere 17 mesecons:wire_00000000_off + +### `//sphere ` + +Add sphere centered at WorldEdit position 1 with radius ``, composed of ``. + + //sphere 5 Diamond Block + //sphere 12 glass + //sphere 17 mesecons:wire_00000000_off + +### `//hollowdome ` + +Add hollow dome centered at WorldEdit position 1 with radius ``, composed of ``. + + //hollowdome 5 Diamond Block + //hollowdome -12 glass + //hollowdome 17 mesecons:wire_00000000_off + +### `//dome ` + +Add dome centered at WorldEdit position 1 with radius ``, composed of ``. + + //dome 5 Diamond Block + //dome -12 glass + //dome 17 mesecons:wire_00000000_off + +### `//hollowcylinder x/y/z/? ` + +Add hollow cylinder at WorldEdit position 1 along the x/y/z/? axis with length `` and radius ``, composed of ``. + + //hollowcylinder x +5 8 Bronze Block + //hollowcylinder y 28 10 glass + //hollowcylinder z -12 3 mesecons:wire_00000000_off + //hollowcylinder ? 2 4 default:stone + +### `//cylinder x/y/z/? ` + +Add cylinder at WorldEdit position 1 along the x/y/z/? axis with length `` and radius ``, composed of ``. + + //cylinder x +5 8 Bronze Block + //cylinder y 28 10 glass + //cylinder z -12 3 mesecons:wire_00000000_off + //cylinder ? 2 4 default:stone + +### `//pyramid x/y/z? ` + +Add pyramid centered at WorldEdit position 1 along the x/y/z/? axis with height ``, composed of ``. + + //pyramid x 8 Diamond Block + //pyramid y -5 glass + //pyramid z 2 mesecons:wire_00000000_off + //pyramid ? 12 mesecons:wire_00000000_off + +### `//spiral ` + +Add spiral centered at WorldEdit position 1 with side length ``, height ``, space between walls ``, composed of ``. + + //spiral 20 5 3 Diamond Block + //spiral 5 2 1 glass + //spiral 7 1 5 mesecons:wire_00000000_off + +### `//copy x/y/z/? ` + +Copy the current WorldEdit region along the x/y/z/? axis by `` nodes. + + //copy x 15 + //copy y -7 + //copy z +4 + //copy ? 8 + +### `//move x/y/z/? ` + +Move the current WorldEdit positions and region along the x/y/z/? axis by `` nodes. + + //move x 15 + //move y -7 + //move z +4 + //move ? -1 + +### `//stack x/y/z/? ` + +Stack the current WorldEdit region along the x/y/z/? axis `` times. + + //stack x 3 + //stack y -1 + //stack z +5 + //stack ? 12 + +### `//stack2 ` + +Stack the current WorldEdit region `` times by offset ``, ``, ``. + + //stack2 5 3 8 2 + //stack2 1 -1 -1 -1 + +### `//scale ` + +Scale the current WorldEdit positions and region by a factor of positive integer `` with position 1 as the origin. + + //scale 2 + //scale 1 + //scale 10 + +### `//transpose x/y/z/? x/y/z/?` + +Transpose the current WorldEdit positions and region along the x/y/z/? and x/y/z/? axes. + + //transpose x y + //transpose x z + //transpose y z + //transpose ? y + +### `//flip x/y/z/?` + +Flip the current WorldEdit region along the x/y/z/? axis. + + //flip x + //flip y + //flip z + //flip ? + +### `//rotate x/y/z/? ` + +Rotate the current WorldEdit positions and region along the x/y/z/? axis by angle `` (90 degree increment). + + //rotate x 90 + //rotate y 180 + //rotate z 270 + //rotate ? -90 + +### `//orient ` + +Rotate oriented nodes in the current WorldEdit region around the Y axis by angle `` (90 degree increment) + + //orient 90 + //orient 180 + //orient 270 + //orient -90 + +### `//fixlight` + +Fixes the lighting in the current WorldEdit region. + + //fixlight + +### `//hide` + +Hide all nodes in the current WorldEdit region non-destructively. + + //hide + +### `//suppress ` + +Suppress all in the current WorldEdit region non-destructively. + + //suppress Diamond Block + //suppress glass + //suppress mesecons:wire_00000000_off + +### `//highlight ` + +Highlight in the current WorldEdit region by hiding everything else non-destructively. + + //highlight Diamond Block + //highlight glass + //highlight mesecons:wire_00000000_off + +### `//restore` + +Restores nodes hidden with WorldEdit in the current WorldEdit region. + + //restore + +### `//save ` + +Save the current WorldEdit region to "(world folder)/schems/``.we". + + //save some random filename + //save huge_base + +### `//allocate ` + +Set the region defined by nodes from "(world folder)/schems/``.we" as the current WorldEdit region. + + //allocate some random filename + //allocate huge_base + +### `//load ` + +Load nodes from "(world folder)/schems/``.we" with position 1 of the current WorldEdit region as the origin. + + //load some random filename + //load huge_base + +### `//lua ` + +Executes `` as a Lua chunk in the global namespace. + + //lua worldedit.pos1["singleplayer"] = {x=0, y=0, z=0} + //lua worldedit.rotate(worldedit.pos1["singleplayer"], worldedit.pos2["singleplayer"], "y", 90) + +### `//luatransform ` + +Executes `` as a Lua chunk in the global namespace with the variable pos available, for each node in the current WorldEdit region. + + //luatransform minetest.add_node(pos, {name="default:stone"}) + //luatransform if minetest.get_node(pos).name == "air" then minetest.add_node(pos, {name="default:water_source"}) + +### `//mtschemcreate ` + +Save the current WorldEdit region using the Minetest Schematic format to "(world folder)/schems/``.mts". + + //mtschemcreate some random filename + //mtschemcreate huge_base + +### `//mtschemplace ` + +Load nodes from "(world folder)/schems/``.mts" with position 1 of the current WorldEdit region as the origin. + + //mtschemplace some random filename + //mtschemplace huge_base + +### `//mtschemprob start/finish/get` + +After using `//mtschemprob start` all nodes punched will bring up a text field where a probablity can be entered. +This mode can be left with `//mtschemprob finish`. `//mtschemprob get` will display the probabilities saved for the nodes. + + //mtschemprob get + +### `//clearobjects` + +Clears all objects within the WorldEdit region. + + //clearobjects diff --git a/mods/WorldEdit/LICENSE.txt b/mods/WorldEdit/LICENSE.txt new file mode 100644 index 0000000..dba13ed --- /dev/null +++ b/mods/WorldEdit/LICENSE.txt @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/mods/WorldEdit/README.md b/mods/WorldEdit/README.md new file mode 100644 index 0000000..7d3077b --- /dev/null +++ b/mods/WorldEdit/README.md @@ -0,0 +1,160 @@ +WorldEdit v1.0 for Minetest 0.4.8+ +================================== +The ultimate in-game world editing tool for [Minetest](http://minetest.net/)! Tons of functionality to help with building, fixing, and more. + +For more information, see the [forum topic](https://forum.minetest.net/viewtopic.php?id=572) at the Minetest forums. + +# New users should see the [tutorial](Tutorial.md). + +![Screenshot](http://i.imgur.com/lwhodrv.png) + +Installing +---------- + +If you are using Windows, consider installing this mod using [MODSTER](https://forum.minetest.net/viewtopic.php?id=6497), a super simple mod installer that will take care of everything for you. If you are using MODSTER, skip directly to step 6 in the instructions below. + +There is a nice installation guide over at the [Minetest Wiki](http://wiki.minetest.com/wiki/Installing_mods). Here is a short summary: + +1. Download the mod from the [official releases page](https://github.com/Uberi/Minetest-WorldEdit/releases). The download links are labelled "Source Code". If you are using Windows, you will probably want to download the ZIP version. +2. You should have a file named `SOMETHING.zip` or `SOMETHING.tar.gz`. +3. Extract this file using your archiver of choice. If you are using Windows, open the ZIP file and move the folder inside to a safe place outside of the ZIP file. +4. Make sure that you now have a folder with a file named README.md inside it. If you just have another folder inside this folder, use this nested folder instead. +5. Move this folder into the `MINETEST_FOLDER/mods` folder, where `MINETEST_FOLDER` is the folder Minetest is located in. +6. Open Minetest to a world selection screen. +7. Select a world you want to use WorldEdit in by left clicking on it once, and press the **Configure** button. +8. You should have a mod selection screen. Select the one named something like `Minetest-WorldEdit` by left clicking once and press the **Enable MP** button. +9. Press the **Save** button. You can now use WorldEdit in that world. Repeat steps 7 to 9 to enable WorldEdit for other worlds too. + +If you are having trouble, try asking for help in the [IRC channel](http://webchat.freenode.net/?channels=#minetest) (faster but may not always have helpers online) or ask on the [forum topic](https://forum.minetest.net/viewtopic.php?id=572) (slower but more likely to get help). + +Usage +----- +WorldEdit works primarily through the WorldEdit GUI and chat commands. Depending on your key bindings, you can invoke chat entry with the "t" key, and open the chat console with the "F10" key. + +WorldEdit has a huge potential for abuse by untrusted players. Therefore, users will not be able to use WorldEdit unless they have the `worldedit` privelege. This is available by default in single player, but in multiplayer the permission must be explicitly given by someone with the right credentials, using the follwoing chat command: `/grant worldedit`. This privelege can later be removed using the following chat command: `/revoke worldedit`. + +Certain functions/commands such as WorldEdit GUI's "Run Lua" function (equivalent to the `//lua` and `//luatransform` chat command) additionally require the `server` privilege. This is because it is extremely dangerous to give access to these commands to untrusted players, since they essentially are able to control the computer the server is running on. Give this privilege only to people you trust with your computer. + +For in-game information about these commands, type `/help ` in the chat. For example, to learn more about the `//copy` command, simply type `/help /copy` to display information relevant to copying a region. + +Interface +--------- +WorldEdit is accessed in-game in two main ways. + +The GUI adds a screen to each player's inventory that gives access to various WorldEdit functions. The [tutorial](Tutorial.md) and the [Chat Commands Reference](Chat Commands.md) may be helpful in learning to use it. + +The chat interface adds many chat commands that perform various WorldEdit powered tasks. It is documented in the [Chat Commands Reference](Chat Commands.md). + +Compatibility +------------- +This mod supports Minetest versions 0.4.8 and newer. Older versions of WorldEdit may work with older versions of Minetest, but are not recommended or supported. + +WorldEdit works quite well with other mods, and does not have any known mod conflicts. + +WorldEdit GUI works with [Unified Inventory](https://forum.minetest.net/viewtopic.php?id=3933) and [Inventory++](https://forum.minetest.net/viewtopic.php?id=6204), but these are not required to use the mod. + +If you use any other inventory manager mods, note that they may conflict with the WorldEdit GUI. If this is the case, it may be necessary to disable them. + +WorldEdit API +------------- +WorldEdit exposes all significant functionality in a simple Lua interface. Adding WorldEdit to the file "depends.txt" in your mod gives you access to all of the `worldedit` functions. The API is useful for tasks such as high-performance node manipulation, alternative interfaces, and map creation. + +If you don't add WorldEdit to your "depends.txt" file, each file in the WorldEdit mod is also independent. For example, one may import the WorldEdit primitives API using the following code: + + dofile(minetest.get_modpath("worldedit").."/primitives.lua") + +AGPLv3 compatible mods may further include WorldEdit files in their own mods. This may be useful if a modder wishes to completely avoid any dependencies on WorldEdit. Note that it is required to give credit to the authors. + +This API is documented in the [WorldEdit API Reference](WorldEdit API.md). + +Axes +---- +The coordinate system is the same as that used by Minetest; positive Y is upwards, positive X is rightwards, and positive Z is forwards, if a player is facing North (positive Z axis). + +When an axis is specified in a WorldEdit chat command, it is specified as one of the following values: `x`, `y`, `z`, or `?`. + +In the GUI, there is a dropdown menu for this purpose. The "Look direction" option has the same effect as `?` does in chat commands. + +The value `?` represents the axis the player is currently facing. If the player is facing more than one axis, the axis the player face direction is closest to will be used. + +Nodes +----- +Node names are required for many types of commands that identify or modify specific types of nodes. They can be specified in a number of ways. + +First, by description - the tooltip that appears when hovering over the item in an inventory. This is case insensitive and includes values such as "Cobblestone" and "bronze block". Note that certain commands (namely, `//replace` and `//replaceinverse`) do not support descriptions that contain spaces in the `` field. + +Second, by name - the node name that is defined by code, but without the mod name prefix. This is case sensitive and includes values such as "piston_normal_off" and "cactus". Nodes defined in the `default` mod always take precedence over other nodes when searching for the correct one, and if there are multiple possible nodes (such as "a:celery" and "b:celery"), one is chosen in no particular order. + +Finally, by full name - the unambiguous identifier of the node, prefixes and all. This is case sensitive and includes values such as "default:stone" and "mesecons:wire_00000000_off". + +The node name "air" can be used anywhere a normal node name can, and acts as a blank node. This is useful for clearing or removing nodes. For example, `//set air` would remove all the nodes in the current WorldEdit region. Similarly, `//sphere 10 air`, when WorldEdit position 1 underground, would dig a large sphere out of the ground. + +Regions +------- +Most WorldEdit commands operate on regions. Regions are a set of two positions that define a 3D cuboid. They are local to each player and chat commands affect only the region for the player giving the commands. + +Each positions together define two opposing corners of the cube. With two opposing corners it is possible to determine both the location and dimensions of the region. + +Regions are not saved between server restarts. They start off as empty regions, and cannot be used with most WorldEdit commands until they are set to valid values. + +Markers +------- +Entities are used to mark the location of the WorldEdit regions. They appear as boxes containing the number 1 or 2, and represent position 1 and 2 of the WorldEdit region, respectively. + +To remove the entities, simply punch them. This does not reset the positions themselves. + +Schematics +---------- +WorldEdit supports two different types of schematics. + +The first is the WorldEdit Schematic format, with the file extension ".we", and in some older versions, ".wem". There have been several previous versions of the WorldEdit Schematic format, but WorldEdit is capable of loading any past versions, and will always support them - there is no need to worry about schematics becoming obselete. + +As of version 5, WorldEdit schematics include a header. The header is seperated from the content by a colon (`:`). It contains fields seperated by commas (`,`). Currently only one field is used, which contains the version in ASCII decimal. + +The current version of the WorldEdit Schematic format is essentially an array of node data tables in Lua 5.1 table syntax preceded by a header. +Specifically it looks like this: + + 5:return { + { + y = , + x = , + z = , + name = , + param1 = , + param2 = , + meta = , + }, + <...> + } + + +The ordering of the values and minor aspects of the syntax, such as trailing commas or newlines, are not guaranteed to stay the same in future versions. + +The WorldEdit Schematic format is accessed via the WorldEdit API, or WorldEdit serialization chat commands such as `//serialize` and `//deserialize`. + +The second is the Minetest Schematic format (MTS). The details of this format may be found in the Minetest documentation and are out of the scope of this document. Access to this format is done via specialized MTS commands such as `//mtschemcreate` and `//mtschemplace`. + +Authors +------- +WorldEdit would not be possible without the contributions of many developers and designers. Below, they are listed alphabetically: + + cheapie + cornernote + cyisfor + electricface + kaeza + khonkhortisan + sfan5 + ShadowNinja + spillz + Uberi/Temperest + +License +------- +Copyright 2013 sfan5, Anthony Zhang (Uberi/Temperest), and Brett O'Donnell (cornernote). + +This mod is licensed under the [GNU Affero General Public License](http://www.gnu.org/licenses/agpl-3.0.html). + +Basically, this means everyone is free to use, modify, and distribute the files, as long as these modifications are also licensed the same way. + +Most importantly, the Affero variant of the GPL requires you to publish your modifications in source form, even if the mod is run only on the server, and not distributed. diff --git a/mods/WorldEdit/Tutorial.md b/mods/WorldEdit/Tutorial.md new file mode 100644 index 0000000..abe554a --- /dev/null +++ b/mods/WorldEdit/Tutorial.md @@ -0,0 +1,120 @@ +WorldEdit Tutorial +================== +This is a step-by-step tutorial outlining the basic usage of WorldEdit. For more information, see the [README](README.md). + +Let's start with a few assumptions: + +* You have a compatible version of Minetest working. + * See the [README](README.md) for compatibility information. +* You have WorldEdit installed as a mod. + * If using Windows, [MODSTER](https://forum.minetest.net/viewtopic.php?pid=101463) makes installing mods totally painless. + * Simply download the file, extract the archive, and move it to the correct mod folder for Minetest. + * See the installation instructions in [README](README.md) if you need more details. +* You are familiar with the basics of the game. + * How to walk, jump, and climb. + * How to dig, place, and punch blocks. + * One of the following: + * How to type into the chat and read text from it. + * How to open the inventory screen and press buttons on it. + +Overview +-------- +WorldEdit has a "region", which is simply a cuboid area defined by two markers, both of which the player can move around. Every player can have their own region with their own two markers. + +WorldEdit GUI buttons and chat commands generally work inside the region selected, or around the first marker. + +If you are using the chat commands, follow the steps under **Chat Commands**. If you are using the WorldEdit GUI, follow the steps under **WorldEdit GUI**. + +Step 1: Selecting a region +-------------------------- +### Chat Commands + +In the chat prompt, enter `//p set`. In the chat, you are prompted to punch two nodes to set the positions of the two markers. + +Punch a nearby node. Be careful of breakable ones such as torches. A black cube reading "1" will appear around the node. This is the marker for WorldEdit position 1. + +Walk away from the node you just punched. Now, punch another node. A black cube reading "2" will appear around the node. This is the marker for WorldEdit position 2. + +### WorldEdit GUI + +Open the main WorldEdit GUI from your inventory screen. The icon looks like a globe with a red dot in the center. + +Press the "Get/Set Positions" button. On the new screen, press the "Set Position 1" button. The inventory screen should close. + +Punch a nearby node. Be careful of breakable ones such as torches. A black cube reading "1" will appear around the node. This is the marker for WorldEdit position 1. + +Walk away from the node you just punched. Open your inventory again. It should be on the same page as it was before. + +Press the "Set Position 2" button. The inventory screen should close. + +Now, punch another node. A black cube reading "2" will appear around the node. This is the marker for WorldEdit position 2. + +Step 2: Region commands +----------------------- +### Chat Commands + +In the chat prompt, enter `//set mese`. In the chat, you will see a message showing the number of nodes set after a small delay. + +Look at the place between the two markers: it is now filled with MESE blocks! + +The `//set ` command fills the region with whatever node you want. It is a region-oriented command, which means it works inside the WorldEdit region only. + +Now, try a few different variations, such as `//set torch`, `//set cobble`, and `//set water`. + +### WorldEdit GUI + +Open the main WorldEdit GUI from your inventory screen. + +Press the "Set Nodes" button. You should see a new screen with various options for setting nodes. + +Enter "mese" in the "Name" field. Press Search if you would like to see what the node you just entered looks like. + +Press the "Set Nodes" button on this screen. In the chat, you will see a message showing the number of nodes set after a small delay. + +Look at the place between the two markers: it is now filled with MESE blocks! + +The "Set Nodes" function fills the region with whatever node you want. It is a region-oriented command, which means it works inside the WorldEdit region only. + +Now, try a few different variations on the node name, such as "torch", "cobble", and "water". + +Step 3: Position commands +------------------------- +### Chat Commands + +In the chat prompt, enter `//hollowdome 30 glass`. In the chat, you will see a message showing the number of nodes set after a small delay. + +Look around marker 1: it is now surrounded by a hollow glass dome! + +The `//hollowdome ` command creates a hollow dome centered around marker 1, made of any node you want. It is a position-oriented command, which means it works around marker 1 and can go outside the WorldEdit region. + +### WorldEdit GUI + +Open the main WorldEdit GUI from your inventory screen. + +Press the "Sphere/Dome" button. You should see a new screen with various options for making spheres or domes. + +Enter "glass" in the "Name" field. Press Search if you would like to see what the node you just entered looks like. + +Enter "30" in the "Radius" field. + +Press the "Hollow Dome" button on this screen. In the chat, you will see a message showing the number of nodes added after a small delay. + +Look around marker 1: it is now surrounded by a hollow glass dome! + +The "Hollow Dome" function creates a hollow dome centered around marker 1, made of any node you want. It is a position-oriented command, which means it works around marker 1 and can go outside the WorldEdit region. + +Step 4: Other commands +---------------------- +### Chat Commands + +There are many more commands than what is shown here. See the [Chat Commands Reference](Chat Commands.md) for a detailed list of them, along with descriptions and examples for every single one. + +If you're in-game and forgot how a command works, just use the `/help ` command, without the first forward slash. For example, to see some information about the `//set ` command mentioned earlier, simply use `/help /set`. + +A very useful command to check out is the `//save ` command, which can save everything inside the WorldEdit region to a file, stored on the computer hosting the server (the player's computer, in single player mode). You can then later use `//load ` to load the data in a file into a world, even another world on another computer. + +### WorldEdit GUI + +This only scratches the surface of what WorldEdit is capable of. Most of the functions in the WorldEdit GUI correspond to chat commands, and so the [Chat Commands Reference](Chat Commands.md) may be useful if you get stuck. + +It is helpful to explore the various buttons in the interface and check out what they do. Learning the chat command interface is also useful if you use WorldEdit intensively - an experienced chat command user can usually work faster than an experienced WorldEdit GUI user. \ No newline at end of file diff --git a/mods/WorldEdit/WorldEdit API.md b/mods/WorldEdit/WorldEdit API.md new file mode 100644 index 0000000..af7138b --- /dev/null +++ b/mods/WorldEdit/WorldEdit API.md @@ -0,0 +1,237 @@ +WorldEdit API +============= +The WorldEdit API is composed of multiple modules, each of which is independent and can be used without the other. Each module is contained within a single file. + +If needed, individual modules such as visualization.lua can be removed without affecting the rest of the program. The only file that cannot be removed is init.lua, which is necessary for the mod to run. + +For more information, see the [README](README.md). + +General +------- + +### value = worldedit.version + +Contains the current version of WorldEdit in a table of the form `{major=MAJOR_INTEGER, minor=MINOR_INTEGER}`, where `MAJOR_INTEGER` is the major version (the number before the period) as an integer, and `MINOR_INTEGER` is the minor version (the number after the period) as an integer. This is intended for version checking purposes. + +### value = worldedit.version_string + +Contains the current version of WorldEdit in the form of a string `"MAJOR_INTEGER.MINOR_INTEGER"`, where `MAJOR_INTEGER` is the major version (the number before the period) as an integer, and `MINOR_INTEGER` is the minor version (the number after the period) as an integer. This is intended for display purposes. + +Manipulations +------------- +Contained in manipulations.lua, this module allows several node operations to be applied over a region. + +### count = worldedit.set(pos1, pos2, nodename) + +Sets a region defined by positions `pos1` and `pos2` to `nodename`. To clear a region, use "air" as the value of `nodename`. + +Returns the number of nodes set. + +### count = worldedit.replace(pos1, pos2, searchnode, replacenode) + +Replaces all instances of `searchnode` with `replacenode` in a region defined by positions `pos1` and `pos2`. + +Returns the number of nodes replaced. + +### count = worldedit.replaceinverse(pos1, pos2, searchnode, replacenode) + +Replaces all nodes other than `searchnode` with `replacenode` in a region defined by positions `pos1` and `pos2`. + +Returns the number of nodes replaced. + +### count = worldedit.copy(pos1, pos2, axis, amount) + +Copies the region defined by positions `pos1` and `pos2` along the `axis` axis ("x" or "y" or "z") by `amount` nodes. + +Returns the number of nodes copied. + +### count = worldedit.move(pos1, pos2, axis, amount) + +Moves the region defined by positions `pos1` and `pos2` along the `axis` axis ("x" or "y" or "z") by `amount` nodes. + +Returns the number of nodes moved. + +### count = worldedit.stack(pos1, pos2, axis, count) + +Duplicates the region defined by positions `pos1` and `pos2` along the `axis` axis ("x" or "y" or "z") `count` times. + +Returns the number of nodes stacked. + +### count = worldedit.stack2(pos1, pos2, direction, amount) + +Duplicates the region defined by positions `pos1` and `pos2` `amount` times with offset vector `direction`. + +Returns the number of nodes stacked. + +### count, newpos1, newpos2 = worldedit.stretch(pos1, pos2, stretchx, stretchy, stretchz) + +Stretches the region defined by positions `pos1` and `pos2` by an factor of positive integers `stretchx`, `stretchy`. and `stretchz` along the X, Y, and Z axes, respectively, with `pos1` as the origin. + +Returns the number of nodes stretched, the new scaled position 1, and the new scaled position 2. + +### count, newpos1, newpos2 = worldedit.transpose(pos1, pos2, axis1, axis2) + +Transposes a region defined by the positions `pos1` and `pos2` between the `axis1` and `axis2` axes ("x" or "y" or "z"). + +Returns the number of nodes transposed, the new transposed position 1, and the new transposed position 2. + +### count = worldedit.flip(pos1, pos2, axis) + +Flips a region defined by the positions `pos1` and `pos2` along the `axis` axis ("x" or "y" or "z"). + +Returns the number of nodes flipped. + +### count, newpos2, newpos2 = worldedit.rotate(pos1, pos2, angle) + +Rotates a region defined by the positions `pos1` and `pos2` by `angle` degrees clockwise around the y axis (supporting 90 degree increments only). + +Returns the number of nodes rotated, the new position 1, and the new position 2. + +### count = worldedit.orient(pos1, pos2, angle) + +Rotates all oriented nodes in a region defined by the positions `pos1` and `pos2` by `angle` degrees clockwise (90 degree increment) around the Y axis. + +Returns the number of nodes oriented. + +### count = worldedit.fixlight(pos1, pos2) + +Fixes the lighting in a region defined by positions `pos1` and `pos2`. + +Returns the number of nodes updated. + +### count = worldedit.clearobjects(pos1, pos2) + +Clears all objects in a region defined by the positions `pos1` and `pos2`. + +Returns the number of objects cleared. + +Primitives +---------- +Contained in primitives.lua, this module allows the creation of several geometric primitives. + +### count = worldedit.hollow_sphere(pos, radius, nodename) + +Adds a hollow sphere centered at `pos` with radius `radius`, composed of `nodename`. + +Returns the number of nodes added. + +### count = worldedit.sphere(pos, radius, nodename) + +Adds a sphere centered at `pos` with radius `radius`, composed of `nodename`. + +Returns the number of nodes added. + +### count = worldedit.hollow_dome(pos, radius, nodename) + +Adds a hollow dome centered at `pos` with radius `radius`, composed of `nodename`. + +Returns the number of nodes added. + +### count = worldedit.dome(pos, radius, nodename) + +Adds a dome centered at `pos` with radius `radius`, composed of `nodename`. + +Returns the number of nodes added. + +### count = worldedit.hollow_cylinder(pos, axis, length, radius, nodename) + +Adds a hollow cylinder at `pos` along the `axis` axis ("x" or "y" or "z") with length `length` and radius `radius`, composed of `nodename`. + +Returns the number of nodes added. + +### count = worldedit.cylinder(pos, axis, length, radius, nodename) + +Adds a cylinder at `pos` along the `axis` axis ("x" or "y" or "z") with length `length` and radius `radius`, composed of `nodename`. + +Returns the number of nodes added. + +### count = worldedit.pyramid(pos, axis, height, nodename) + +Adds a pyramid centered at `pos` along the `axis` axis ("x" or "y" or "z") with height `height`. + +Returns the number of nodes added. + +### count = worldedit.spiral(pos, length, height, spacer, nodename) + +Adds a spiral centered at `pos` with side length `length`, height `height`, space between walls `spacer`, composed of `nodename`. + +Returns the number of nodes added. + +Visualization +------------- +Contained in visualization.lua, this module allows nodes to be visualized in different ways. + +### volume = worldedit.volume(pos1, pos2) + +Determines the volume of the region defined by positions `pos1` and `pos2`. + +Returns the volume. + +### count = worldedit.hide(pos1, pos2) + +Hides all nodes in a region defined by positions `pos1` and `pos2` by non-destructively replacing them with invisible nodes. + +Returns the number of nodes hidden. + +### count = worldedit.suppress(pos1, pos2, nodename) + +Suppresses all instances of `nodename` in a region defined by positions `pos1` and `pos2` by non-destructively replacing them with invisible nodes. + +Returns the number of nodes suppressed. + +### count = worldedit.highlight(pos1, pos2, nodename) + +Highlights all instances of `nodename` in a region defined by positions `pos1` and `pos2` by non-destructively hiding all other nodes. + +Returns the number of nodes found. + +### count = worldedit.restore(pos1, pos2) + +Restores all nodes hidden with WorldEdit functions in a region defined by positions `pos1` and `pos2`. + +Returns the number of nodes restored. + +Serialization +------------- +Contained in serialization.lua, this module allows regions of nodes to be serialized and deserialized to formats suitable for use outside MineTest. + +### version, extra_fields, content = worldedit.read_header(value) + +Reads the header from serialized data `value`. + +Returns the version as a positive integer (nil for unknown versions), +extra header fields (nil if not supported), and the content after the header. + +### data, count = worldedit.serialize(pos1, pos2) + +Converts the region defined by positions `pos1` and `pos2` into a single string. + +Returns the serialized data and the number of nodes serialized, or nil. + +### pos1, pos2, count = worldedit.allocate(origin_pos, value) + +Determines the volume the nodes represented by string `value` would occupy if deserialized at `origin_pos`. + +Returns the two corner positions and the number of nodes, or nil. + +### count = worldedit.deserialize(origin_pos, value) + +Loads the nodes represented by string `value` at position `origin_pos`. + +Returns the number of nodes deserialized or nil. + +Code +---- +Contained in code.lua, this module allows arbitrary Lua code to be used with WorldEdit. + +### error = worldedit.lua(code) + +Executes `code` as a Lua chunk in the global namespace. + +Returns an error if the code fails or nil otherwise. + +### error = worldedit.luatransform(pos1, pos2, code) + +Executes `code` as a Lua chunk in the global namespace with the variable `pos` available, for each node in a region defined by positions `pos1` and `pos2`. + +Returns an error if the code fails or nil otherwise. diff --git a/mods/WorldEdit/modpack.txt b/mods/WorldEdit/modpack.txt new file mode 100644 index 0000000..e69de29 diff --git a/mods/WorldEdit/worldedit/code.lua b/mods/WorldEdit/worldedit/code.lua new file mode 100644 index 0000000..2959bf8 --- /dev/null +++ b/mods/WorldEdit/worldedit/code.lua @@ -0,0 +1,70 @@ +worldedit = worldedit or {} +local minetest = minetest -- local copy of global + +-- Copies and modifies positions `pos1` and `pos2` so that each component of +-- `pos1` is less than or equal to the corresponding component of `pos2`. +-- Returns the new positions. +worldedit.sort_pos = function(pos1, pos2) + pos1 = {x=pos1.x, y=pos1.y, z=pos1.z} + pos2 = {x=pos2.x, y=pos2.y, z=pos2.z} + if pos1.x > pos2.x then + pos2.x, pos1.x = pos1.x, pos2.x + end + if pos1.y > pos2.y then + pos2.y, pos1.y = pos1.y, pos2.y + end + if pos1.z > pos2.z then + pos2.z, pos1.z = pos1.z, pos2.z + end + return pos1, pos2 +end + +-- Executes `code` as a Lua chunk in the global namespace, +-- returning an error if the code fails, or nil otherwise. +worldedit.lua = function(code) + local func, err = loadstring(code) + if not func then -- Syntax error + return err + end + local good, err = pcall(func) + if not good then -- Runtime error + return err + end + return nil +end + +-- Executes `code` as a Lua chunk in the global namespace with the variable +-- pos available, for each node in a region defined by positions `pos1` and +-- `pos2`, returning an error if the code fails, or nil otherwise +worldedit.luatransform = function(pos1, pos2, code) + pos1, pos2 = worldedit.sort_pos(pos1, pos2) + + local factory, err = loadstring("return function(pos) " .. code .. " end") + if not factory then -- Syntax error + return err + end + local func = factory() + + -- Keep area loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + local pos = {x=pos1.x, y=0, z=0} + while pos.x <= pos2.x do + pos.y = pos1.y + while pos.y <= pos2.y do + pos.z = pos1.z + while pos.z <= pos2.z do + local good, err = pcall(func, pos) + if not good then -- Runtime error + return err + end + pos.z = pos.z + 1 + end + pos.y = pos.y + 1 + end + pos.x = pos.x + 1 + end + return nil +end + diff --git a/mods/WorldEdit/worldedit/compatibility.lua b/mods/WorldEdit/worldedit/compatibility.lua new file mode 100644 index 0000000..e44e43b --- /dev/null +++ b/mods/WorldEdit/worldedit/compatibility.lua @@ -0,0 +1,36 @@ +worldedit = worldedit or {} +local minetest = minetest --local copy of global + +worldedit.allocate_old = worldedit.allocate + +worldedit.deserialize_old = worldedit.deserialize + +worldedit.metasave = function(pos1, pos2, filename) + local file, err = io.open(filename, "wb") + if err then return 0 end + local data, count = worldedit.serialize(pos1, pos2) + file:write(data) + file:close() + return count +end + +worldedit.metaload = function(originpos, filename) + filename = minetest.get_worldpath() .. "/schems/" .. file .. ".wem" + local file, err = io.open(filename, "wb") + if err then return 0 end + local data = file:read("*a") + return worldedit.deserialize(originpos, data) +end + +worldedit.scale = function(pos1, pos2, factor) + return worldedit.stretch(pos1, pos2, factor, factor, factor) +end + +worldedit.valueversion = function(value) + local version = worldedit.read_header(value) + if not version or version > worldedit.LATEST_SERIALIZATION_VERSION then + return 0 + end + return version +end + diff --git a/mods/WorldEdit/worldedit/init.lua b/mods/WorldEdit/worldedit/init.lua new file mode 100644 index 0000000..7a68498 --- /dev/null +++ b/mods/WorldEdit/worldedit/init.lua @@ -0,0 +1,25 @@ +worldedit = {} -- rnd +worldedit.version = {major=1, minor=0} +worldedit.version_string = "1.0" + +assert(minetest.get_voxel_manip, string.rep(">", 300) .. "HEY YOU! YES, YOU OVER THERE. THIS VERSION OF WORLDEDIT REQUIRES MINETEST 0.4.8 OR LATER! YOU HAVE AN OLD VERSION." .. string.rep("<", 300)) + +local path = minetest.get_modpath(minetest.get_current_modname()) + +local loadmodule = function(path) + local file = io.open(path) + if not file then + return + end + file:close() + return dofile(path) +end + +loadmodule(path .. "/manipulations.lua") +loadmodule(path .. "/primitives.lua") +loadmodule(path .. "/visualization.lua") +loadmodule(path .. "/serialization.lua") +loadmodule(path .. "/code.lua") +loadmodule(path .. "/compatibility.lua") + +print("[MOD] WorldEdit loaded!") diff --git a/mods/WorldEdit/worldedit/manipulations.lua b/mods/WorldEdit/worldedit/manipulations.lua new file mode 100644 index 0000000..2b16c32 --- /dev/null +++ b/mods/WorldEdit/worldedit/manipulations.lua @@ -0,0 +1,731 @@ +worldedit = worldedit or {} +local minetest = minetest --local copy of global + +-- Copies and modifies positions `pos1` and `pos2` so that each component of +-- `pos1` is less than or equal to the corresponding component of `pos2`. +-- Returns the new positions. +worldedit.sort_pos = function(pos1, pos2) + pos1 = {x=pos1.x, y=pos1.y, z=pos1.z} + pos2 = {x=pos2.x, y=pos2.y, z=pos2.z} + if pos1.x > pos2.x then + pos2.x, pos1.x = pos1.x, pos2.x + end + if pos1.y > pos2.y then + pos2.y, pos1.y = pos1.y, pos2.y + end + if pos1.z > pos2.z then + pos2.z, pos1.z = pos1.z, pos2.z + end + return pos1, pos2 +end + +--determines the volume of the region defined by positions `pos1` and `pos2`, returning the volume +worldedit.volume = function(pos1, pos2) + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + return (pos2.x - pos1.x + 1) * (pos2.y - pos1.y + 1) * (pos2.z - pos1.z + 1) +end + +--sets a region defined by positions `pos1` and `pos2` to `nodename`, returning the number of nodes filled +worldedit.set = function(pos1, pos2, nodenames) + if type(nodenames) == "string" then + nodenames = {nodenames} + end + + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + + --set up voxel manipulator + local manip = minetest.get_voxel_manip() + local emerged_pos1, emerged_pos2 = manip:read_from_map(pos1, pos2) + local area = VoxelArea:new({MinEdge=emerged_pos1, MaxEdge=emerged_pos2}) + + --fill emerged area with ignore + local nodes = {} + local ignore = minetest.get_content_id("ignore") + for i = 1, worldedit.volume(emerged_pos1, emerged_pos2) do + nodes[i] = ignore + end + + --fill selected area with node + local node_ids = {} + for i,v in ipairs(nodenames) do + node_ids[i] = minetest.get_content_id(nodenames[i]) + end + if #node_ids == 1 then --only one type of node + local id = node_ids[1] + for i in area:iterp(pos1, pos2) do nodes[i] = id end --fill area with node + else --several types of nodes specified + local id_count, rand = #node_ids, math.random + for i in area:iterp(pos1, pos2) do nodes[i] = node_ids[rand(id_count)] end --fill randomly with all types of specified nodes + end + + --update map nodes + manip:set_data(nodes) + manip:write_to_map() + manip:update_map() + + return worldedit.volume(pos1, pos2) +end + +--replaces all instances of `searchnode` with `replacenode` in a region defined by positions `pos1` and `pos2`, returning the number of nodes replaced +worldedit.replace = function(pos1, pos2, searchnode, replacenode) + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + + --set up voxel manipulator + local manip = minetest.get_voxel_manip() + local emerged_pos1, emerged_pos2 = manip:read_from_map(pos1, pos2) + local area = VoxelArea:new({MinEdge=emerged_pos1, MaxEdge=emerged_pos2}) + + local nodes = manip:get_data() + local searchnode_id = minetest.get_content_id(searchnode) + local replacenode_id = minetest.get_content_id(replacenode) + local count = 0 + for i in area:iterp(pos1, pos2) do --replace searchnode with replacenode + if nodes[i] == searchnode_id then + nodes[i] = replacenode_id + count = count + 1 + end + end + + --update map nodes + manip:set_data(nodes) + manip:write_to_map() + manip:update_map() + + return count +end + +--replaces all nodes other than `searchnode` with `replacenode` in a region defined by positions `pos1` and `pos2`, returning the number of nodes replaced +worldedit.replaceinverse = function(pos1, pos2, searchnode, replacenode) + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + + --set up voxel manipulator + local manip = minetest.get_voxel_manip() + local emerged_pos1, emerged_pos2 = manip:read_from_map(pos1, pos2) + local area = VoxelArea:new({MinEdge=emerged_pos1, MaxEdge=emerged_pos2}) + + local nodes = manip:get_data() + local searchnode_id = minetest.get_content_id(searchnode) + local replacenode_id = minetest.get_content_id(replacenode) + local count = 0 + for i in area:iterp(pos1, pos2) do --replace anything that is not searchnode with replacenode + if nodes[i] ~= searchnode_id then + nodes[i] = replacenode_id + count = count + 1 + end + end + + --update map nodes + manip:set_data(nodes) + manip:write_to_map() + manip:update_map() + + return count +end + +--copies the region defined by positions `pos1` and `pos2` along the `axis` axis ("x" or "y" or "z") by `amount` nodes, returning the number of nodes copied +worldedit.copy = function(pos1, pos2, axis, amount) --wip: replace the old version below + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + + if amount == 0 then + return + end + + local other1, other2 + if axis == "x" then + other1, other2 = "y", "z" + elseif axis == "y" then + other1, other2 = "x", "z" + else --axis == "z" + other1, other2 = "x", "y" + end + + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + --prepare slice along axis + local extent = { + [axis] = 1, + [other1]=pos2[other1] - pos1[other1] + 1, + [other2]=pos2[other2] - pos1[other2] + 1, + } + local nodes = {} + local schematic = {size=extent, data=nodes} + + local currentpos = {x=pos1.x, y=pos1.y, z=pos1.z} + local stride = {x=1, y=extent.x, z=extent.x * extent.y} + local get_node = minetest.get_node + for index1 = 1, extent[axis] do --go through each slice + --copy slice into schematic + local newindex1 = (index1 + offset[axis]) * stride[axis] + 1 --offset contributed by axis plus 1 to make it 1-indexed + for index2 = 1, extent[other1] do + local newindex2 = newindex1 + (index2 + offset[other1]) * stride[other1] + for index3 = 1, extent[other2] do + local i = newindex2 + (index3 + offset[other2]) * stride[other2] + local node = get_node(pos) + node.param1 = 255 --node will always appear + nodes[i] = node + end + end + + --copy schematic to target + currentpos[axis] = currentpos[axis] + amount + place_schematic(currentpos, schematic) + + --wip: copy meta + + currentpos[axis] = currentpos[axis] + 1 + end + return worldedit.volume(pos1, pos2) +end + +worldedit.copy2 = function(pos1, pos2, direction, volume) + -- the overlap shouldn't matter as long as we + -- 1) start at the furthest separated corner + -- 2) complete an edge before moving inward, either edge works + -- 3) complete a face before moving inward, similarly + -- + -- to do this I + -- 1) find the furthest destination in the direction, of each axis + -- 2) call those the furthest separated corner + -- 3) make sure to iterate inward from there + -- 4) nested loop to make sure complete edge, complete face, then complete cube. + + local get_node, get_meta, add_node = minetest.get_node, minetest.get_meta, minetest.add_node + local somemeta = get_meta(pos1) -- hax lol + local to_table = somemeta.to_table + local from_table = somemeta.from_table + somemeta = nil + + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + local sx, sy, sz -- direction sign + local ix, iy, iz -- initial destination + local ex, ey, ez -- final destination + local originalx, originaly, originalz -- source + -- vim -> :'<,'>s/\<\([ioes]\?\)x\>/\1y/g + if direction.x > 0 then + originalx = pos2.x + ix = originalx + direction.x + ex = pos1.x + direction.x + sx = -1 + elseif direction.x < 0 then + originalx = pos1.x + ix = originalx + direction.x + ex = pos2.x + direction.x + sx = 1 + else + originalx = pos1.x + ix = originalx -- whatever + ex = pos2.x + sx = 1 + end + + if direction.y > 0 then + originaly = pos2.y + iy = originaly + direction.y + ey = pos1.y + direction.y + sy = -1 + elseif direction.y < 0 then + originaly = pos1.y + iy = originaly + direction.y + ey = pos2.y + direction.y + sy = 1 + else + originaly = pos1.y + iy = originaly -- whatever + ey = pos2.y + sy = 1 + end + + if direction.z > 0 then + originalz = pos2.z + iz = originalz + direction.z + ez = pos1.z + direction.z + sz = -1 + elseif direction.z < 0 then + originalz = pos1.z + iz = originalz + direction.z + ez = pos2.z + direction.z + sz = 1 + else + originalz = pos1.z + iz = originalz -- whatever + ez = pos2.z + sz = 1 + end + -- print('copy',originalx,ix,ex,sx,originaly,iy,ey,sy,originalz,iz,ez,sz) + + local ox,oy,oz + + ox = originalx + for x = ix, ex, sx do + oy = originaly + for y = iy, ey, sy do + oz = originalz + for z = iz, ez, sz do + -- reusing pos1/pos2 as source/dest here + pos1.x, pos1.y, pos1.z = ox, oy, oz + pos2.x, pos2.y, pos2.z = x, y, z + local node = get_node(pos1) + local meta = to_table(get_meta(pos1)) --get meta of current node + add_node(pos2,node) + from_table(get_meta(pos2),meta) + oz = oz + sz + end + oy = oy + sy + end + ox = ox + sx + end +end + +--duplicates the region defined by positions `pos1` and `pos2` `amount` times with offset vector `direction`, returning the number of nodes stacked +worldedit.stack2 = function(pos1, pos2, direction, amount, finished) + local i = 0 + local translated = {x=0,y=0,z=0} + local function nextone() + if i < amount then + i = i + 1 + translated.x = translated.x + direction.x + translated.y = translated.y + direction.y + translated.z = translated.z + direction.z + worldedit.copy2(pos1, pos2, translated, volume) + minetest.after(0, nextone) + else + if finished then + finished() + end + end + end + nextone() + return worldedit.volume(pos1, pos2) * amount +end + +--copies the region defined by positions `pos1` and `pos2` along the `axis` axis ("x" or "y" or "z") by `amount` nodes, returning the number of nodes copied +worldedit.copy = function(pos1, pos2, axis, amount) + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + local get_node, get_meta, add_node = minetest.get_node, minetest.get_meta, minetest.add_node + if amount < 0 then + local pos = {x=pos1.x, y=0, z=0} + while pos.x <= pos2.x do + pos.y = pos1.y + while pos.y <= pos2.y do + pos.z = pos1.z + while pos.z <= pos2.z do + local node = get_node(pos) --obtain current node + local meta = get_meta(pos):to_table() --get meta of current node + local value = pos[axis] --store current position + pos[axis] = value + amount --move along axis + add_node(pos, node) --copy node to new position + get_meta(pos):from_table(meta) --set metadata of new node + pos[axis] = value --restore old position + pos.z = pos.z + 1 + end + pos.y = pos.y + 1 + end + pos.x = pos.x + 1 + end + else + local pos = {x=pos2.x, y=0, z=0} + while pos.x >= pos1.x do + pos.y = pos2.y + while pos.y >= pos1.y do + pos.z = pos2.z + while pos.z >= pos1.z do + local node = get_node(pos) --obtain current node + local meta = get_meta(pos):to_table() --get meta of current node + local value = pos[axis] --store current position + pos[axis] = value + amount --move along axis + add_node(pos, node) --copy node to new position + get_meta(pos):from_table(meta) --set metadata of new node + pos[axis] = value --restore old position + pos.z = pos.z - 1 + end + pos.y = pos.y - 1 + end + pos.x = pos.x - 1 + end + end + return worldedit.volume(pos1, pos2) +end + +--moves the region defined by positions `pos1` and `pos2` along the `axis` axis ("x" or "y" or "z") by `amount` nodes, returning the number of nodes moved +worldedit.move = function(pos1, pos2, axis, amount) + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + --wip: move slice by slice using schematic method in the move axis and transfer metadata in separate loop (and if the amount is greater than the length in the axis, copy whole thing at a time and erase original after, using schematic method) + local get_node, get_meta, add_node, remove_node = minetest.get_node, minetest.get_meta, minetest.add_node, minetest.remove_node + if amount < 0 then + local pos = {x=pos1.x, y=0, z=0} + while pos.x <= pos2.x do + pos.y = pos1.y + while pos.y <= pos2.y do + pos.z = pos1.z + while pos.z <= pos2.z do + local node = get_node(pos) --obtain current node + local meta = get_meta(pos):to_table() --get metadata of current node + remove_node(pos) + local value = pos[axis] --store current position + pos[axis] = value + amount --move along axis + add_node(pos, node) --move node to new position + get_meta(pos):from_table(meta) --set metadata of new node + pos[axis] = value --restore old position + pos.z = pos.z + 1 + end + pos.y = pos.y + 1 + end + pos.x = pos.x + 1 + end + else + local pos = {x=pos2.x, y=0, z=0} + while pos.x >= pos1.x do + pos.y = pos2.y + while pos.y >= pos1.y do + pos.z = pos2.z + while pos.z >= pos1.z do + local node = get_node(pos) --obtain current node + local meta = get_meta(pos):to_table() --get metadata of current node + remove_node(pos) + local value = pos[axis] --store current position + pos[axis] = value + amount --move along axis + add_node(pos, node) --move node to new position + get_meta(pos):from_table(meta) --set metadata of new node + pos[axis] = value --restore old position + pos.z = pos.z - 1 + end + pos.y = pos.y - 1 + end + pos.x = pos.x - 1 + end + end + return worldedit.volume(pos1, pos2) +end + +--duplicates the region defined by positions `pos1` and `pos2` along the `axis` axis ("x" or "y" or "z") `count` times, returning the number of nodes stacked +worldedit.stack = function(pos1, pos2, axis, count) + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + local length = pos2[axis] - pos1[axis] + 1 + if count < 0 then + count = -count + length = -length + end + local amount = 0 + local copy = worldedit.copy + local i = 1 + function nextone() + if i <= count then + i = i + 1 + amount = amount + length + copy(pos1, pos2, axis, amount) + minetest.after(0, nextone) + end + end + nextone() + return worldedit.volume(pos1, pos2) * count +end + +--stretches the region defined by positions `pos1` and `pos2` by an factor of positive integers `stretchx`, `stretchy`. and `stretchz` along the X, Y, and Z axes, respectively, with `pos1` as the origin, returning the number of nodes scaled, the new scaled position 1, and the new scaled position 2 +worldedit.stretch = function(pos1, pos2, stretchx, stretchy, stretchz) --wip: test this + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + + --prepare schematic of large node + local get_node, get_meta, place_schematic = minetest.get_node, minetest.get_meta, minetest.place_schematic + local placeholder_node = {name="", param1=255, param2=0} + local nodes = {} + for i = 1, stretchx * stretchy * stretchz do + nodes[i] = placeholder_node + end + local schematic = {size={x=stretchx, y=stretchy, z=stretchz}, data=nodes} + + local sizex, sizey, sizez = stretchx - 1, stretchy - 1, stretchz - 1 + + --make area stay loaded + local manip = minetest.get_voxel_manip() + local new_pos2 = { + x=pos1.x + (pos2.x - pos1.x) * stretchx + sizex, + y=pos1.y + (pos2.y - pos1.y) * stretchy + sizey, + z=pos1.z + (pos2.z - pos1.z) * stretchz + sizez, + } + manip:read_from_map(pos1, new_pos2) + + local pos = {x=pos2.x, y=0, z=0} + local bigpos = {x=0, y=0, z=0} + while pos.x >= pos1.x do + pos.y = pos2.y + while pos.y >= pos1.y do + pos.z = pos2.z + while pos.z >= pos1.z do + local node = get_node(pos) --obtain current node + local meta = get_meta(pos):to_table() --get meta of current node + + --calculate far corner of the big node + local posx = pos1.x + (pos.x - pos1.x) * stretchx + local posy = pos1.y + (pos.y - pos1.y) * stretchy + local posz = pos1.z + (pos.z - pos1.z) * stretchz + + --create large node + placeholder_node.name = node.name + placeholder_node.param2 = node.param2 + bigpos.x, bigpos.y, bigpos.z = posx, posy, posz + place_schematic(bigpos, schematic) + + --fill in large node meta + if next(meta.fields) ~= nil or next(meta.inventory) ~= nil then --node has meta fields + for x = 0, sizex do + for y = 0, sizey do + for z = 0, sizez do + bigpos.x, bigpos.y, bigpos.z = posx + x, posy + y, posz + z + get_meta(bigpos):from_table(meta) --set metadata of new node + end + end + end + end + pos.z = pos.z - 1 + end + pos.y = pos.y - 1 + end + pos.x = pos.x - 1 + end + return worldedit.volume(pos1, pos2) * stretchx * stretchy * stretchz, pos1, new_pos2 +end + +--transposes a region defined by the positions `pos1` and `pos2` between the `axis1` and `axis2` axes, returning the number of nodes transposed, the new transposed position 1, and the new transposed position 2 +worldedit.transpose = function(pos1, pos2, axis1, axis2) + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + + local compare + local extent1, extent2 = pos2[axis1] - pos1[axis1], pos2[axis2] - pos1[axis2] + + if extent1 > extent2 then + compare = function(extent1, extent2) + return extent1 > extent2 + end + else + compare = function(extent1, extent2) + return extent1 < extent2 + end + end + + --calculate the new position 2 after transposition + local new_pos2 = {x=pos2.x, y=pos2.y, z=pos2.z} + new_pos2[axis1] = pos1[axis1] + extent2 + new_pos2[axis2] = pos1[axis2] + extent1 + + --make area stay loaded + local manip = minetest.get_voxel_manip() + local upperbound = {x=pos2.x, y=pos2.y, z=pos2.z} + if upperbound[axis1] < new_pos2[axis1] then upperbound[axis1] = new_pos2[axis1] end + if upperbound[axis2] < new_pos2[axis2] then upperbound[axis2] = new_pos2[axis2] end + manip:read_from_map(pos1, upperbound) + + local pos = {x=pos1.x, y=0, z=0} + local get_node, get_meta, add_node = minetest.get_node, minetest.get_meta, minetest.add_node + while pos.x <= pos2.x do + pos.y = pos1.y + while pos.y <= pos2.y do + pos.z = pos1.z + while pos.z <= pos2.z do + local extent1, extent2 = pos[axis1] - pos1[axis1], pos[axis2] - pos1[axis2] + if compare(extent1, extent2) then --transpose only if below the diagonal + local node1 = get_node(pos) + local meta1 = get_meta(pos):to_table() + local value1, value2 = pos[axis1], pos[axis2] --save position values + pos[axis1], pos[axis2] = pos1[axis1] + extent2, pos1[axis2] + extent1 --swap axis extents + local node2 = get_node(pos) + local meta2 = get_meta(pos):to_table() + add_node(pos, node1) + get_meta(pos):from_table(meta1) + pos[axis1], pos[axis2] = value1, value2 --restore position values + add_node(pos, node2) + get_meta(pos):from_table(meta2) + end + pos.z = pos.z + 1 + end + pos.y = pos.y + 1 + end + pos.x = pos.x + 1 + end + return worldedit.volume(pos1, pos2), pos1, new_pos2 +end + +--flips a region defined by the positions `pos1` and `pos2` along the `axis` axis ("x" or "y" or "z"), returning the number of nodes flipped +worldedit.flip = function(pos1, pos2, axis) + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + --wip: flip the region slice by slice along the flip axis using schematic method + local pos = {x=pos1.x, y=0, z=0} + local start = pos1[axis] + pos2[axis] + pos2[axis] = pos1[axis] + math.floor((pos2[axis] - pos1[axis]) / 2) + local get_node, get_meta, add_node = minetest.get_node, minetest.get_meta, minetest.add_node + while pos.x <= pos2.x do + pos.y = pos1.y + while pos.y <= pos2.y do + pos.z = pos1.z + while pos.z <= pos2.z do + local node1 = get_node(pos) + local meta1 = get_meta(pos):to_table() + local value = pos[axis] + pos[axis] = start - value + local node2 = get_node(pos) + local meta2 = get_meta(pos):to_table() + add_node(pos, node1) + get_meta(pos):from_table(meta1) + pos[axis] = value + add_node(pos, node2) + get_meta(pos):from_table(meta2) + pos.z = pos.z + 1 + end + pos.y = pos.y + 1 + end + pos.x = pos.x + 1 + end + return worldedit.volume(pos1, pos2) +end + +--rotates a region defined by the positions `pos1` and `pos2` by `angle` degrees clockwise around axis `axis` (90 degree increment), returning the number of nodes rotated +worldedit.rotate = function(pos1, pos2, axis, angle) + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + + local axis1, axis2 + if axis == "x" then + axis1, axis2 = "z", "y" + elseif axis == "y" then + axis1, axis2 = "x", "z" + else --axis == "z" + axis1, axis2 = "y", "x" + end + angle = angle % 360 + + local count + if angle == 90 then + worldedit.flip(pos1, pos2, axis1) + count, pos1, pos2 = worldedit.transpose(pos1, pos2, axis1, axis2) + elseif angle == 180 then + worldedit.flip(pos1, pos2, axis1) + count = worldedit.flip(pos1, pos2, axis2) + elseif angle == 270 then + worldedit.flip(pos1, pos2, axis2) + count, pos1, pos2 = worldedit.transpose(pos1, pos2, axis1, axis2) + end + return count, pos1, pos2 +end + +--rotates all oriented nodes in a region defined by the positions `pos1` and `pos2` by `angle` degrees clockwise (90 degree increment) around the Y axis, returning the number of nodes oriented +worldedit.orient = function(pos1, pos2, angle) --wip: support 6D facedir rotation along arbitrary axis + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + local registered_nodes = minetest.registered_nodes + + local wallmounted = { + [90]={[0]=0, [1]=1, [2]=5, [3]=4, [4]=2, [5]=3}, + [180]={[0]=0, [1]=1, [2]=3, [3]=2, [4]=5, [5]=4}, + [270]={[0]=0, [1]=1, [2]=4, [3]=5, [4]=3, [5]=2} + } + local facedir = { + [90]={[0]=1, [1]=2, [2]=3, [3]=0}, + [180]={[0]=2, [1]=3, [2]=0, [3]=1}, + [270]={[0]=3, [1]=0, [2]=1, [3]=2} + } + + angle = angle % 360 + if angle == 0 then + return 0 + end + local wallmounted_substitution = wallmounted[angle] + local facedir_substitution = facedir[angle] + + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + local count = 0 + local get_node, get_meta, add_node = minetest.get_node, minetest.get_meta, minetest.add_node + local pos = {x=pos1.x, y=0, z=0} + while pos.x <= pos2.x do + pos.y = pos1.y + while pos.y <= pos2.y do + pos.z = pos1.z + while pos.z <= pos2.z do + local node = get_node(pos) + local def = registered_nodes[node.name] + if def then + if def.paramtype2 == "wallmounted" then + node.param2 = wallmounted_substitution[node.param2] + local meta = get_meta(pos):to_table() + add_node(pos, node) + get_meta(pos):from_table(meta) + count = count + 1 + elseif def.paramtype2 == "facedir" then + node.param2 = facedir_substitution[node.param2] + local meta = get_meta(pos):to_table() + add_node(pos, node) + get_meta(pos):from_table(meta) + count = count + 1 + end + end + pos.z = pos.z + 1 + end + pos.y = pos.y + 1 + end + pos.x = pos.x + 1 + end + return count +end + +--fixes the lighting in a region defined by positions `pos1` and `pos2`, returning the number of nodes updated +worldedit.fixlight = function(pos1, pos2) + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + local nodes = minetest.find_nodes_in_area(pos1, pos2, "air") + local dig_node = minetest.dig_node + for _, pos in ipairs(nodes) do + dig_node(pos) + end + return #nodes +end + +--clears all objects in a region defined by the positions `pos1` and `pos2`, returning the number of objects cleared +worldedit.clearobjects = function(pos1, pos2) + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + local pos1x, pos1y, pos1z = pos1.x, pos1.y, pos1.z + local pos2x, pos2y, pos2z = pos2.x + 1, pos2.y + 1, pos2.z + 1 + local center = {x=(pos1x + pos2x) / 2, y=(pos1y + pos2y) / 2, z=(pos1z + pos2z) / 2} --center of region + local radius = ((center.x - pos1x + 0.5) + (center.y - pos1y + 0.5) + (center.z - pos1z + 0.5)) ^ 0.5 --bounding sphere radius + local count = 0 + for _, obj in pairs(minetest.get_objects_inside_radius(center, radius)) do --all objects in bounding sphere + local entity = obj:get_luaentity() + if not (entity and entity.name:find("^worldedit:")) then --avoid WorldEdit entities + local pos = obj:getpos() + if pos.x >= pos1x and pos.x <= pos2x + and pos.y >= pos1y and pos.y <= pos2y + and pos.z >= pos1z and pos.z <= pos2z then --inside region + obj:remove() + count = count + 1 + end + end + end + return count +end diff --git a/mods/WorldEdit/worldedit/primitives.lua b/mods/WorldEdit/worldedit/primitives.lua new file mode 100644 index 0000000..1baa29e --- /dev/null +++ b/mods/WorldEdit/worldedit/primitives.lua @@ -0,0 +1,470 @@ +worldedit = worldedit or {} +local minetest = minetest --local copy of global + +--adds a hollow sphere centered at `pos` with radius `radius`, composed of `nodename`, returning the number of nodes added +worldedit.hollow_sphere = function(pos, radius, nodename) + --set up voxel manipulator + local manip = minetest.get_voxel_manip() + local pos1 = {x=pos.x - radius, y=pos.y - radius, z=pos.z - radius} + local pos2 = {x=pos.x + radius, y=pos.y + radius, z=pos.z + radius} + local emerged_pos1, emerged_pos2 = manip:read_from_map(pos1, pos2) + local area = VoxelArea:new({MinEdge=emerged_pos1, MaxEdge=emerged_pos2}) + + --fill emerged area with ignore + local nodes = {} + local ignore = minetest.get_content_id("ignore") + for i = 1, worldedit.volume(emerged_pos1, emerged_pos2) do + nodes[i] = ignore + end + + --fill selected area with node + local node_id = minetest.get_content_id(nodename) + local min_radius, max_radius = radius * (radius - 1), radius * (radius + 1) + local offsetx, offsety, offsetz = pos.x - emerged_pos1.x, pos.y - emerged_pos1.y, pos.z - emerged_pos1.z + local zstride, ystride = area.zstride, area.ystride + local count = 0 + for z = -radius, radius do + local newz = (z + offsetz) * zstride + 1 --offset contributed by z plus 1 to make it 1-indexed + for y = -radius, radius do + local newy = newz + (y + offsety) * ystride + for x = -radius, radius do + local squared = x * x + y * y + z * z + if squared >= min_radius and squared <= max_radius then --position is on surface of sphere + local i = newy + (x + offsetx) + nodes[i] = node_id + count = count + 1 + end + end + end + end + + --update map nodes + manip:set_data(nodes) + manip:write_to_map() + manip:update_map() + + return count +end + +--adds a sphere centered at `pos` with radius `radius`, composed of `nodename`, returning the number of nodes added +worldedit.sphere = function(pos, radius, nodename) + --set up voxel manipulator + local manip = minetest.get_voxel_manip() + local pos1 = {x=pos.x - radius, y=pos.y - radius, z=pos.z - radius} + local pos2 = {x=pos.x + radius, y=pos.y + radius, z=pos.z + radius} + local emerged_pos1, emerged_pos2 = manip:read_from_map(pos1, pos2) + local area = VoxelArea:new({MinEdge=emerged_pos1, MaxEdge=emerged_pos2}) + + --fill emerged area with ignore + local nodes = {} + local ignore = minetest.get_content_id("ignore") + for i = 1, worldedit.volume(emerged_pos1, emerged_pos2) do + nodes[i] = ignore + end + + --fill selected area with node + local node_id = minetest.get_content_id(nodename) + local max_radius = radius * (radius + 1) + local offsetx, offsety, offsetz = pos.x - emerged_pos1.x, pos.y - emerged_pos1.y, pos.z - emerged_pos1.z + local zstride, ystride = area.zstride, area.ystride + local count = 0 + for z = -radius, radius do + local newz = (z + offsetz) * zstride + 1 --offset contributed by z plus 1 to make it 1-indexed + for y = -radius, radius do + local newy = newz + (y + offsety) * ystride + for x = -radius, radius do + if x * x + y * y + z * z <= max_radius then --position is inside sphere + local i = newy + (x + offsetx) + nodes[i] = node_id + count = count + 1 + end + end + end + end + + --update map nodes + manip:set_data(nodes) + manip:write_to_map() + manip:update_map() + + return count +end + +--adds a hollow dome centered at `pos` with radius `radius`, composed of `nodename`, returning the number of nodes added +worldedit.hollow_dome = function(pos, radius, nodename) + --set up voxel manipulator + local manip = minetest.get_voxel_manip() + local pos1 = {x=pos.x - radius, y=pos.y, z=pos.z - radius} + local pos2 = {x=pos.x + radius, y=pos.y + radius, z=pos.z + radius} + local emerged_pos1, emerged_pos2 = manip:read_from_map(pos1, pos2) + local area = VoxelArea:new({MinEdge=emerged_pos1, MaxEdge=emerged_pos2}) + + --fill emerged area with ignore + local nodes = {} + local ignore = minetest.get_content_id("ignore") + for i = 1, worldedit.volume(emerged_pos1, emerged_pos2) do + nodes[i] = ignore + end + + local miny, maxy = 0, radius + if radius < 0 then + radius = -radius + miny, maxy = -radius, 0 + end + + --fill selected area with node + local node_id = minetest.get_content_id(nodename) + local min_radius, max_radius = radius * (radius - 1), radius * (radius + 1) + local offsetx, offsety, offsetz = pos.x - emerged_pos1.x, pos.y - emerged_pos1.y, pos.z - emerged_pos1.z + local zstride, ystride = area.zstride, area.ystride + local count = 0 + for z = -radius, radius do + local newz = (z + offsetz) * zstride + 1 --offset contributed by z plus 1 to make it 1-indexed + for y = miny, maxy do + local newy = newz + (y + offsety) * ystride + for x = -radius, radius do + local squared = x * x + y * y + z * z + if squared >= min_radius and squared <= max_radius then --position is on surface of sphere + local i = newy + (x + offsetx) + nodes[i] = node_id + count = count + 1 + end + end + end + end + + --update map nodes + manip:set_data(nodes) + manip:write_to_map() + manip:update_map() + + return count +end + +--adds a dome centered at `pos` with radius `radius`, composed of `nodename`, returning the number of nodes added +worldedit.dome = function(pos, radius, nodename) + --set up voxel manipulator + local manip = minetest.get_voxel_manip() + local pos1 = {x=pos.x - radius, y=pos.y, z=pos.z - radius} + local pos2 = {x=pos.x + radius, y=pos.y + radius, z=pos.z + radius} + local emerged_pos1, emerged_pos2 = manip:read_from_map(pos1, pos2) + local area = VoxelArea:new({MinEdge=emerged_pos1, MaxEdge=emerged_pos2}) + + --fill emerged area with ignore + local nodes = {} + local ignore = minetest.get_content_id("ignore") + for i = 1, worldedit.volume(emerged_pos1, emerged_pos2) do + nodes[i] = ignore + end + + local miny, maxy = 0, radius + if radius < 0 then + radius = -radius + miny, maxy = -radius, 0 + end + + --fill selected area with node + local node_id = minetest.get_content_id(nodename) + local max_radius = radius * (radius + 1) + local offsetx, offsety, offsetz = pos.x - emerged_pos1.x, pos.y - emerged_pos1.y, pos.z - emerged_pos1.z + local zstride, ystride = area.zstride, area.ystride + local count = 0 + for z = -radius, radius do + local newz = (z + offsetz) * zstride + 1 --offset contributed by z plus 1 to make it 1-indexed + for y = miny, maxy do + local newy = newz + (y + offsety) * ystride + for x = -radius, radius do + if x * x + y * y + z * z <= max_radius then --position is inside sphere + local i = newy + (x + offsetx) + nodes[i] = node_id + count = count + 1 + end + end + end + end + + --update map nodes + manip:set_data(nodes) + manip:write_to_map() + manip:update_map() + + return count +end + +--adds a hollow cylinder at `pos` along the `axis` axis ("x" or "y" or "z") with length `length` and radius `radius`, composed of `nodename`, returning the number of nodes added +worldedit.hollow_cylinder = function(pos, axis, length, radius, nodename) + local other1, other2 + if axis == "x" then + other1, other2 = "y", "z" + elseif axis == "y" then + other1, other2 = "x", "z" + else --axis == "z" + other1, other2 = "x", "y" + end + + --handle negative lengths + local currentpos = {x=pos.x, y=pos.y, z=pos.z} + if length < 0 then + length = -length + currentpos[axis] = currentpos[axis] - length + end + + --set up voxel manipulator + local manip = minetest.get_voxel_manip() + local pos1 = { + [axis]=currentpos[axis], + [other1]=currentpos[other1] - radius, + [other2]=currentpos[other2] - radius + } + local pos2 = { + [axis]=currentpos[axis] + length - 1, + [other1]=currentpos[other1] + radius, + [other2]=currentpos[other2] + radius + } + local emerged_pos1, emerged_pos2 = manip:read_from_map(pos1, pos2) + local area = VoxelArea:new({MinEdge=emerged_pos1, MaxEdge=emerged_pos2}) + + --fill emerged area with ignore + local nodes = {} + local ignore = minetest.get_content_id("ignore") + for i = 1, worldedit.volume(emerged_pos1, emerged_pos2) do + nodes[i] = ignore + end + + --fill selected area with node + local node_id = minetest.get_content_id(nodename) + local min_radius, max_radius = radius * (radius - 1), radius * (radius + 1) + local stride = {x=1, y=area.ystride, z=area.zstride} + local offset = {x=currentpos.x - emerged_pos1.x, y=currentpos.y - emerged_pos1.y, z=currentpos.z - emerged_pos1.z} + local min_slice, max_slice = offset[axis], offset[axis] + length - 1 + local count = 0 + for index2 = -radius, radius do + local newindex2 = (index2 + offset[other1]) * stride[other1] + 1 --offset contributed by other axis 1 plus 1 to make it 1-indexed + for index3 = -radius, radius do + local newindex3 = newindex2 + (index3 + offset[other2]) * stride[other2] + local squared = index2 * index2 + index3 * index3 + if squared >= min_radius and squared <= max_radius then --position is on surface of cylinder + for index1 = min_slice, max_slice do --add column along axis + local i = newindex3 + index1 * stride[axis] + nodes[i] = node_id + end + count = count + length + end + end + end + + --update map nodes + manip:set_data(nodes) + manip:write_to_map() + manip:update_map() + + return count +end + +--adds a cylinder at `pos` along the `axis` axis ("x" or "y" or "z") with length `length` and radius `radius`, composed of `nodename`, returning the number of nodes added +worldedit.cylinder = function(pos, axis, length, radius, nodename) + local other1, other2 + if axis == "x" then + other1, other2 = "y", "z" + elseif axis == "y" then + other1, other2 = "x", "z" + else --axis == "z" + other1, other2 = "x", "y" + end + + --handle negative lengths + local currentpos = {x=pos.x, y=pos.y, z=pos.z} + if length < 0 then + length = -length + currentpos[axis] = currentpos[axis] - length + end + + --set up voxel manipulator + local manip = minetest.get_voxel_manip() + local pos1 = { + [axis]=currentpos[axis], + [other1]=currentpos[other1] - radius, + [other2]=currentpos[other2] - radius + } + local pos2 = { + [axis]=currentpos[axis] + length - 1, + [other1]=currentpos[other1] + radius, + [other2]=currentpos[other2] + radius + } + local emerged_pos1, emerged_pos2 = manip:read_from_map(pos1, pos2) + local area = VoxelArea:new({MinEdge=emerged_pos1, MaxEdge=emerged_pos2}) + + --fill emerged area with ignore + local nodes = {} + local ignore = minetest.get_content_id("ignore") + for i = 1, worldedit.volume(emerged_pos1, emerged_pos2) do + nodes[i] = ignore + end + + --fill selected area with node + local node_id = minetest.get_content_id(nodename) + local max_radius = radius * (radius + 1) + local stride = {x=1, y=area.ystride, z=area.zstride} + local offset = {x=currentpos.x - emerged_pos1.x, y=currentpos.y - emerged_pos1.y, z=currentpos.z - emerged_pos1.z} + local min_slice, max_slice = offset[axis], offset[axis] + length - 1 + local count = 0 + for index2 = -radius, radius do + local newindex2 = (index2 + offset[other1]) * stride[other1] + 1 --offset contributed by other axis 1 plus 1 to make it 1-indexed + for index3 = -radius, radius do + local newindex3 = newindex2 + (index3 + offset[other2]) * stride[other2] + if index2 * index2 + index3 * index3 <= max_radius then --position is within cylinder + for index1 = min_slice, max_slice do --add column along axis + local i = newindex3 + index1 * stride[axis] + nodes[i] = node_id + end + count = count + length + end + end + end + + --update map nodes + manip:set_data(nodes) + manip:write_to_map() + manip:update_map() + + return count +end + +--adds a pyramid centered at `pos` with height `height`, composed of `nodename`, returning the number of nodes added +worldedit.pyramid = function(pos, axis, height, nodename) + local other1, other2 + if axis == "x" then + other1, other2 = "y", "z" + elseif axis == "y" then + other1, other2 = "x", "z" + else --axis == "z" + other1, other2 = "x", "y" + end + + local pos1 = {x=pos.x - height, y=pos.y - height, z=pos.z - height} + local pos2 = {x=pos.x + height, y=pos.y + height, z=pos.z + height} + + --handle inverted pyramids + local startaxis, endaxis, step + if height > 0 then + height = height - 1 + step = 1 + pos1[axis] = pos[axis] --upper half of box + else + height = height + 1 + step = -1 + pos2[axis] = pos[axis] --lower half of box + end + + --set up voxel manipulator + local manip = minetest.get_voxel_manip() + local emerged_pos1, emerged_pos2 = manip:read_from_map(pos1, pos2) + local area = VoxelArea:new({MinEdge=emerged_pos1, MaxEdge=emerged_pos2}) + + --fill emerged area with ignore + local nodes = {} + local ignore = minetest.get_content_id("ignore") + for i = 1, worldedit.volume(emerged_pos1, emerged_pos2) do + nodes[i] = ignore + end + + --fill selected area with node + local node_id = minetest.get_content_id(nodename) + local stride = {x=1, y=area.ystride, z=area.zstride} + local offset = {x=pos.x - emerged_pos1.x, y=pos.y - emerged_pos1.y, z=pos.z - emerged_pos1.z} + local size = height * step + local count = 0 + for index1 = 0, height, step do --go through each level of the pyramid + local newindex1 = (index1 + offset[axis]) * stride[axis] + 1 --offset contributed by axis plus 1 to make it 1-indexed + for index2 = -size, size do + local newindex2 = newindex1 + (index2 + offset[other1]) * stride[other1] + for index3 = -size, size do + local i = newindex2 + (index3 + offset[other2]) * stride[other2] + nodes[i] = node_id + end + end + count = count + (size * 2 + 1) ^ 2 + size = size - 1 + end + + --update map nodes + manip:set_data(nodes) + manip:write_to_map() + manip:update_map() + + return count +end + +--adds a spiral centered at `pos` with side length `length`, height `height`, space between walls `spacer`, composed of `nodename`, returning the number of nodes added +worldedit.spiral = function(pos, length, height, spacer, nodename) + local extent = math.ceil(length / 2) + local pos1 = {x=pos.x - extent, y=pos.y, z=pos.z - extent} + local pos2 = {x=pos.x + extent, y=pos.y + height, z=pos.z + extent} + + --set up voxel manipulator + local manip = minetest.get_voxel_manip() + local emerged_pos1, emerged_pos2 = manip:read_from_map(pos1, pos2) + local area = VoxelArea:new({MinEdge=emerged_pos1, MaxEdge=emerged_pos2}) + + --fill emerged area with ignore + local nodes = {} + local ignore = minetest.get_content_id("ignore") + for i = 1, worldedit.volume(emerged_pos1, emerged_pos2) do + nodes[i] = ignore + end + + --set up variables + local node_id = minetest.get_content_id(nodename) + local stride = {x=1, y=area.ystride, z=area.zstride} + local offsetx, offsety, offsetz = pos.x - emerged_pos1.x, pos.y - emerged_pos1.y, pos.z - emerged_pos1.z + local i = offsetz * stride.z + offsety * stride.y + offsetx + 1 + + --add first column + local count = height + local column = i + for y = 1, height do + nodes[column] = node_id + column = column + stride.y + end + + --add spiral segments + local strideaxis, strideother = stride.x, stride.z + local sign = -1 + local segment_length = 0 + spacer = spacer + 1 + for segment = 1, math.floor(length / spacer) * 2 do --go through each segment except the last + if segment % 2 == 1 then --change sign and length every other turn starting with the first + sign = -sign + segment_length = segment_length + spacer + end + for index = 1, segment_length do --fill segment + i = i + strideaxis * sign --move along the direction of the segment + local column = i + for y = 1, height do --add column + nodes[column] = node_id + column = column + stride.y + end + end + count = count + segment_length * height + strideaxis, strideother = strideother, strideaxis --swap axes + end + + --add shorter final segment + sign = -sign + for index = 1, segment_length do + i = i + strideaxis * sign + local column = i + for y = 1, height do --add column + nodes[column] = node_id + column = column + stride.y + end + end + count = count + segment_length * height + + --update map nodes + manip:set_data(nodes) + manip:write_to_map() + manip:update_map() + + return count +end \ No newline at end of file diff --git a/mods/WorldEdit/worldedit/serialization.lua b/mods/WorldEdit/worldedit/serialization.lua new file mode 100644 index 0000000..f129168 --- /dev/null +++ b/mods/WorldEdit/worldedit/serialization.lua @@ -0,0 +1,242 @@ +worldedit = worldedit or {} +local minetest = minetest -- Local copy of global + +worldedit.LATEST_SERIALIZATION_VERSION = 5 +local LATEST_SERIALIZATION_HEADER = worldedit.LATEST_SERIALIZATION_VERSION .. ":" + + +--[[ +Serialization version history: + 1: Original format. Serialized Lua table with a weird linked format... + 2: Position and node seperated into sub-tables in fields `1` and `2`. + 3: List of nodes, one per line, with fields seperated by spaces. + Format: + 4: Serialized Lua table containing a list of nodes with `x`, `y`, `z`, + `name`, `param1`, `param2`, and `meta` fields. + 5: Added header and made `param1`, `param2`, and `meta` fields optional. + Header format: ,,...: +--]] + + +--- Reads the header of serialized data. +-- @param value Serialized WorldEdit data. +-- @return The version as a positive natural number, or 0 for unknown versions. +-- @return Extra header fields as a list of strings, or nil if not supported. +-- @return Content (data after header). +function worldedit.read_header(value) + if value:find("^[0-9]+[%-:]") then + local header_end = value:find(":", 1, true) + local header = value:sub(1, header_end - 1):split(",") + local version = tonumber(header[1]) + table.remove(header, 1) + local content = value:sub(header_end + 1) + return version, header, content + end + -- Old versions that didn't include a header with a version number + if value:find("([+-]?%d+)%s+([+-]?%d+)%s+([+-]?%d+)") and not value:find("%{") then -- List format + return 3, nil, value + elseif value:find("^[^\"']+%{%d+%}") then + if value:find("%[\"meta\"%]") then -- Meta flat table format + return 2, nil, value + end + return 1, nil, value -- Flat table format + elseif value:find("%{") then -- Raw nested table format + return 4, nil, value + end + return nil +end + + +--- Converts the region defined by positions `pos1` and `pos2` +-- into a single string. +-- @return The serialized data. +-- @return The number of nodes serialized. +function worldedit.serialize(pos1, pos2) + -- Keep area loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + local pos = {x=pos1.x, y=0, z=0} + local count = 0 + local result = {} + local get_node, get_meta = minetest.get_node, minetest.get_meta + while pos.x <= pos2.x do + pos.y = pos1.y + while pos.y <= pos2.y do + pos.z = pos1.z + while pos.z <= pos2.z do + local node = get_node(pos) + if node.name ~= "air" and node.name ~= "ignore" then + count = count + 1 + local meta = get_meta(pos):to_table() + + local meta_empty = true + -- Convert metadata item stacks to item strings + for name, inventory in pairs(meta.inventory) do + for index, stack in ipairs(inventory) do + meta_empty = false + inventory[index] = stack.to_string and stack:to_string() or stack + end + end + for k in pairs(meta) do + if k ~= "inventory" then + meta_empty = false + break + end + end + + result[count] = { + x = pos.x - pos1.x, + y = pos.y - pos1.y, + z = pos.z - pos1.z, + name = node.name, + param1 = node.param1 ~= 0 and node.param1 or nil, + param2 = node.param2 ~= 0 and node.param2 or nil, + meta = not meta_empty and meta or nil, + } + end + pos.z = pos.z + 1 + end + pos.y = pos.y + 1 + end + pos.x = pos.x + 1 + end + -- Serialize entries + result = minetest.serialize(result) + return LATEST_SERIALIZATION_HEADER .. result, count +end + + +--- Loads the schematic in `value` into a node list in the latest format. +-- Contains code based on [table.save/table.load](http://lua-users.org/wiki/SaveTableToFile) +-- by ChillCode, available under the MIT license. +-- @return A node list in the latest format, or nil on failure. +function worldedit.load_schematic(value) + local version, header, content = worldedit.read_header(value) + local nodes = {} + if version == 1 or version == 2 then -- Original flat table format + local tables = minetest.deserialize(content) + if not tables then return nil end + + -- Transform the node table into an array of nodes + for i = 1, #tables do + for j, v in pairs(tables[i]) do + if type(v) == "table" then + tables[i][j] = tables[v[1]] + end + end + end + nodes = tables[1] + + if version == 1 then --original flat table format + for i, entry in ipairs(nodes) do + local pos = entry[1] + entry.x, entry.y, entry.z = pos.x, pos.y, pos.z + entry[1] = nil + local node = entry[2] + entry.name, entry.param1, entry.param2 = node.name, node.param1, node.param2 + entry[2] = nil + end + end + elseif version == 3 then -- List format + for x, y, z, name, param1, param2 in content:gmatch( + "([+-]?%d+)%s+([+-]?%d+)%s+([+-]?%d+)%s+" .. + "([^%s]+)%s+(%d+)%s+(%d+)[^\r\n]*[\r\n]*") do + param1, param2 = tonumber(param1), tonumber(param2) + table.insert(nodes, { + x = originx + tonumber(x), + y = originy + tonumber(y), + z = originz + tonumber(z), + name = name, + param1 = param1 ~= 0 and param1 or nil, + param2 = param2 ~= 0 and param2 or nil, + }) + end + elseif version == 4 or version == 5 then -- Nested table format + if not jit then + -- This is broken for larger tables in the current version of LuaJIT + nodes = minetest.deserialize(content) + else + -- XXX: This is a filthy hack that works surprisingly well - in LuaJIT, `minetest.deserialize` will fail due to the register limit + nodes = {} + value = value:gsub("return%s*{", "", 1):gsub("}%s*$", "", 1) -- remove the starting and ending values to leave only the node data + local escaped = value:gsub("\\\\", "@@"):gsub("\\\"", "@@"):gsub("(\"[^\"]*\")", function(s) return string.rep("@", #s) end) + local startpos, startpos1, endpos = 1, 1 + while true do -- go through each individual node entry (except the last) + startpos, endpos = escaped:find("},%s*{", startpos) + if not startpos then + break + end + local current = value:sub(startpos1, startpos) + local entry = minetest.deserialize("return " .. current) + table.insert(nodes, entry) + startpos, startpos1 = endpos, endpos + end + local entry = minetest.deserialize("return " .. value:sub(startpos1)) -- process the last entry + table.insert(nodes, entry) + end + else + return nil + end + return nodes +end + +--- Determines the volume the nodes represented by string `value` would occupy +-- if deserialized at `origin_pos`. +-- @return Low corner position. +-- @return High corner position. +-- @return The number of nodes. +worldedit.allocate = function(origin_pos, value) + local nodes = worldedit.load_schematic(value) + if not nodes then return nil end + return worldedit.allocate_with_nodes(origin_pos, nodes) +end + + +-- Internal +worldedit.allocate_with_nodes = function(origin_pos, nodes) + local huge = math.huge + local pos1x, pos1y, pos1z = huge, huge, huge + local pos2x, pos2y, pos2z = -huge, -huge, -huge + local origin_x, origin_y, origin_z = origin_pos.x, origin_pos.y, origin_pos.z + for i, entry in ipairs(nodes) do + local x, y, z = origin_x + entry.x, origin_y + entry.y, origin_z + entry.z + if x < pos1x then pos1x = x end + if y < pos1y then pos1y = y end + if z < pos1z then pos1z = z end + if x > pos2x then pos2x = x end + if y > pos2y then pos2y = y end + if z > pos2z then pos2z = z end + end + local pos1 = {x=pos1x, y=pos1y, z=pos1z} + local pos2 = {x=pos2x, y=pos2y, z=pos2z} + return pos1, pos2, #nodes +end + + +--- Loads the nodes represented by string `value` at position `origin_pos`. +-- @return The number of nodes deserialized. +worldedit.deserialize = function(origin_pos, value) + local nodes = worldedit.load_schematic(value) + if not nodes then return nil end + + -- Make area stay loaded + local pos1, pos2 = worldedit.allocate_with_nodes(origin_pos, nodes) + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + local origin_x, origin_y, origin_z = origin_pos.x, origin_pos.y, origin_pos.z + local count = 0 + local add_node, get_meta = minetest.add_node, minetest.get_meta + for i, entry in ipairs(nodes) do + entry.x, entry.y, entry.z = origin_x + entry.x, origin_y + entry.y, origin_z + entry.z + -- Entry acts as both position and node + add_node(entry, entry) + if entry.meta then + get_meta(entry):from_table(entry.meta) + end + end + return #nodes +end + diff --git a/mods/WorldEdit/worldedit/visualization.lua b/mods/WorldEdit/worldedit/visualization.lua new file mode 100644 index 0000000..dbee5d0 --- /dev/null +++ b/mods/WorldEdit/worldedit/visualization.lua @@ -0,0 +1,142 @@ +worldedit = worldedit or {} +local minetest = minetest --local copy of global + +--modifies positions `pos1` and `pos2` so that each component of `pos1` is less than or equal to its corresponding conent of `pos2`, returning two new positions +worldedit.sort_pos = function(pos1, pos2) + pos1 = {x=pos1.x, y=pos1.y, z=pos1.z} + pos2 = {x=pos2.x, y=pos2.y, z=pos2.z} + if pos1.x > pos2.x then + pos2.x, pos1.x = pos1.x, pos2.x + end + if pos1.y > pos2.y then + pos2.y, pos1.y = pos1.y, pos2.y + end + if pos1.z > pos2.z then + pos2.z, pos1.z = pos1.z, pos2.z + end + return pos1, pos2 +end + +--determines the volume of the region defined by positions `pos1` and `pos2`, returning the volume +worldedit.volume = function(pos1, pos2) + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + return (pos2.x - pos1.x + 1) * (pos2.y - pos1.y + 1) * (pos2.z - pos1.z + 1) +end + +minetest.register_node("worldedit:placeholder", { + drawtype = "airlike", + paramtype = "light", + sunlight_propagates = true, + diggable = false, + groups = {not_in_creative_inventory=1}, +}) + +--hides all nodes in a region defined by positions `pos1` and `pos2` by non-destructively replacing them with invisible nodes, returning the number of nodes hidden +worldedit.hide = function(pos1, pos2) + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + local pos = {x=pos1.x, y=0, z=0} + local get_node, get_meta, add_node = minetest.get_node, minetest.get_meta, minetest.add_node + while pos.x <= pos2.x do + pos.y = pos1.y + while pos.y <= pos2.y do + pos.z = pos1.z + while pos.z <= pos2.z do + local node = get_node(pos) + if node.name ~= "worldedit:placeholder" then + local data = get_meta(pos):to_table() --obtain metadata of original node + data.fields.worldedit_placeholder = node.name --add the node's name + node.name = "worldedit:placeholder" --set node name + add_node(pos, node) --add placeholder node + get_meta(pos):from_table(data) --set placeholder metadata to the original node's metadata + end + pos.z = pos.z + 1 + end + pos.y = pos.y + 1 + end + pos.x = pos.x + 1 + end + return worldedit.volume(pos1, pos2) +end + +--suppresses all instances of `nodename` in a region defined by positions `pos1` and `pos2` by non-destructively replacing them with invisible nodes, returning the number of nodes suppressed +worldedit.suppress = function(pos1, pos2, nodename) + --ignore placeholder supression + if nodename == "worldedit:placeholder" then + return 0 + end + + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + local nodes = minetest.find_nodes_in_area(pos1, pos2, nodename) + local get_node, get_meta, add_node = minetest.get_node, minetest.get_meta, minetest.add_node + for _, pos in ipairs(nodes) do + local node = get_node(pos) + local data = get_meta(pos):to_table() --obtain metadata of original node + data.fields.worldedit_placeholder = node.name --add the node's name + node.name = "worldedit:placeholder" --set node name + add_node(pos, node) --add placeholder node + get_meta(pos):from_table(data) --set placeholder metadata to the original node's metadata + end + return #nodes +end + +--highlights all instances of `nodename` in a region defined by positions `pos1` and `pos2` by non-destructively hiding all other nodes, returning the number of nodes found +worldedit.highlight = function(pos1, pos2, nodename) + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + local pos = {x=pos1.x, y=0, z=0} + local get_node, get_meta, add_node = minetest.get_node, minetest.get_meta, minetest.add_node + local count = 0 + while pos.x <= pos2.x do + pos.y = pos1.y + while pos.y <= pos2.y do + pos.z = pos1.z + while pos.z <= pos2.z do + local node = get_node(pos) + if node.name == nodename then --node found + count = count + 1 + elseif node.name ~= "worldedit:placeholder" then --hide other nodes + local data = get_meta(pos):to_table() --obtain metadata of original node + data.fields.worldedit_placeholder = node.name --add the node's name + node.name = "worldedit:placeholder" --set node name + add_node(pos, node) --add placeholder node + get_meta(pos):from_table(data) --set placeholder metadata to the original node's metadata + end + pos.z = pos.z + 1 + end + pos.y = pos.y + 1 + end + pos.x = pos.x + 1 + end + return count +end + +--restores all nodes hidden with WorldEdit functions in a region defined by positions `pos1` and `pos2`, returning the number of nodes restored +worldedit.restore = function(pos1, pos2) + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + local nodes = minetest.find_nodes_in_area(pos1, pos2, "worldedit:placeholder") + local get_node, get_meta, add_node = minetest.get_node, minetest.get_meta, minetest.add_node + for _, pos in ipairs(nodes) do + local node = get_node(pos) + local data = get_meta(pos):to_table() --obtain node metadata + node.name = data.fields.worldedit_placeholder --set node name + data.fields.worldedit_placeholder = nil --delete old nodename + add_node(pos, node) --add original node + get_meta(pos):from_table(data) --set original node metadata + end + return #nodes +end diff --git a/mods/WorldEdit/worldedit_commands/depends.txt b/mods/WorldEdit/worldedit_commands/depends.txt new file mode 100644 index 0000000..df8caff --- /dev/null +++ b/mods/WorldEdit/worldedit_commands/depends.txt @@ -0,0 +1 @@ +worldedit \ No newline at end of file diff --git a/mods/WorldEdit/worldedit_commands/init.lua b/mods/WorldEdit/worldedit_commands/init.lua new file mode 100644 index 0000000..9daa809 --- /dev/null +++ b/mods/WorldEdit/worldedit_commands/init.lua @@ -0,0 +1,1120 @@ +minetest.register_privilege("worldedit", "Can use WorldEdit commands") + +--wip: fold the hollow stuff into the main functions and add a hollow flag at the end, then add the compatibility stuff + +worldedit.set_pos = {} +worldedit.inspect = {} + +worldedit.pos1 = {} +worldedit.pos2 = {} +if minetest.place_schematic then + worldedit.prob_pos = {} + worldedit.prob_list = {} +end + +dofile(minetest.get_modpath("worldedit_commands") .. "/mark.lua") +dofile(minetest.get_modpath("worldedit_commands") .. "/safe.lua"); safe_region = safe_region or function(callback) return callback end + +local get_position = function(name) --position 1 retrieval function for when not using `safe_region` + local pos1 = worldedit.pos1[name] + if pos1 == nil then + worldedit.player_notify(name, "no position 1 selected") + end + return pos1 +end + +local get_node = function(name, nodename) + local node = worldedit.normalize_nodename(nodename) + if not node then + worldedit.player_notify(name, "invalid node name: " .. nodename) + return nil + end + return node +end + +worldedit.player_notify = function(name, message) + minetest.chat_send_player(name, "WorldEdit -!- " .. message, false) +end + +--determines whether `nodename` is a valid node name, returning a boolean +worldedit.normalize_nodename = function(nodename) + nodename = nodename:gsub("^%s*(.-)%s*$", "%1") + if nodename == "" then return nil end + local fullname = ItemStack({name=nodename}):get_name() --resolve aliases of node names to full names + if minetest.registered_nodes[fullname] or fullname == "air" then --directly found node name or alias of nodename + return fullname + end + for key, value in pairs(minetest.registered_nodes) do + if key:find(":" .. nodename, 1, true) then --found in mod + return key + end + end + nodename = nodename:lower() --lowercase both for case insensitive comparison + for key, value in pairs(minetest.registered_nodes) do + if value.description:lower() == nodename then --found in description + return key + end + end + return nil +end + +--determines the axis in which a player is facing, returning an axis ("x", "y", or "z") and the sign (1 or -1) +worldedit.player_axis = function(name) + local dir = minetest.get_player_by_name(name):get_look_dir() + local x, y, z = math.abs(dir.x), math.abs(dir.y), math.abs(dir.z) + if x > y then + if x > z then + return "x", dir.x > 0 and 1 or -1 + end + elseif y > z then + return "y", dir.y > 0 and 1 or -1 + end + return "z", dir.z > 0 and 1 or -1 +end + +minetest.register_chatcommand("/about", { + params = "", + description = "Get information about the mod", + func = function(name, param) + worldedit.player_notify(name, "WorldEdit " .. worldedit.version_string .. " is available on this server. Type /help to get a list of commands, or get more information at https://github.com/Uberi/MineTest-WorldEdit/") + end, +}) + +minetest.register_chatcommand("/inspect", { + params = "on/off/1/0/true/false/yes/no/enable/disable/", + description = "Enable or disable node inspection", + privs = {worldedit=true}, + func = function(name, param) + if param == "on" or param == "1" or param == "true" or param == "yes" or param == "enable" or param == "" then + worldedit.inspect[name] = true + local axis, sign = worldedit.player_axis(name) + worldedit.player_notify(name, string.format("inspector: inspection enabled for %s, currently facing the %s axis", + name, axis .. (sign > 0 and "+" or "-"))) + elseif param == "off" or param == "0" or param == "false" or param == "no" or param == "disable" then + worldedit.inspect[name] = nil + worldedit.player_notify(name, "inspector: inspection disabled") + else + worldedit.player_notify(name, "invalid usage: " .. param) + end + end, +}) + +minetest.register_on_punchnode(function(pos, node, puncher) + local name = puncher:get_player_name() + if worldedit.inspect[name] then + if minetest.check_player_privs(name, {worldedit=true}) then + local axis, sign = worldedit.player_axis(name) + message = string.format("inspector: %s at %s (param1=%d, param2=%d) punched by %s facing the %s axis", + node.name, minetest.pos_to_string(pos), node.param1, node.param2, name, axis .. (sign > 0 and "+" or "-")) + else + message = "inspector: worldedit privileges required" + end + worldedit.player_notify(name, message) + end +end) + +minetest.register_chatcommand("/reset", { + params = "", + description = "Reset the region so that it is empty", + privs = {worldedit=true}, + func = function(name, param) + worldedit.pos1[name] = nil + worldedit.pos2[name] = nil + worldedit.mark_pos1(name) + worldedit.mark_pos2(name) + worldedit.set_pos[name] = nil + worldedit.player_notify(name, "region reset") + end, +}) + +minetest.register_chatcommand("/mark", { + params = "", + description = "Show markers at the region positions", + privs = {worldedit=true}, + func = function(name, param) + worldedit.mark_pos1(name) + worldedit.mark_pos2(name) + worldedit.player_notify(name, "region marked") + end, +}) + +minetest.register_chatcommand("/unmark", { + params = "", + description = "Hide markers if currently shown", + privs = {worldedit=true}, + func = function(name, param) + local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] + worldedit.pos1[name] = nil + worldedit.pos2[name] = nil + worldedit.mark_pos1(name) + worldedit.mark_pos2(name) + worldedit.pos1[name] = pos1 + worldedit.pos2[name] = pos2 + worldedit.player_notify(name, "region unmarked") + end, +}) + +minetest.register_chatcommand("/pos1", { + params = "", + description = "Set WorldEdit region position 1 to the player's location", + privs = {worldedit=true}, + func = function(name, param) + local pos = minetest.get_player_by_name(name):getpos() + pos.x, pos.y, pos.z = math.floor(pos.x + 0.5), math.floor(pos.y + 0.5), math.floor(pos.z + 0.5) + worldedit.pos1[name] = pos + worldedit.mark_pos1(name) + worldedit.player_notify(name, "position 1 set to " .. minetest.pos_to_string(pos)) + end, +}) + +minetest.register_chatcommand("/pos2", { + params = "", + description = "Set WorldEdit region position 2 to the player's location", + privs = {worldedit=true}, + func = function(name, param) + local pos = minetest.get_player_by_name(name):getpos() + pos.x, pos.y, pos.z = math.floor(pos.x + 0.5), math.floor(pos.y + 0.5), math.floor(pos.z + 0.5) + worldedit.pos2[name] = pos + worldedit.mark_pos2(name) + worldedit.player_notify(name, "position 2 set to " .. minetest.pos_to_string(pos)) + end, +}) + +minetest.register_chatcommand("/p", { + params = "set/set1/set2/get", + description = "Set WorldEdit region, WorldEdit position 1, or WorldEdit position 2 by punching nodes, or display the current WorldEdit region", + privs = {worldedit=true}, + func = function(name, param) + if param == "set" then --set both WorldEdit positions + worldedit.set_pos[name] = "pos1" + worldedit.player_notify(name, "select positions by punching two nodes") + elseif param == "set1" then --set WorldEdit position 1 + worldedit.set_pos[name] = "pos1only" + worldedit.player_notify(name, "select position 1 by punching a node") + elseif param == "set2" then --set WorldEdit position 2 + worldedit.set_pos[name] = "pos2" + worldedit.player_notify(name, "select position 2 by punching a node") + elseif param == "get" then --display current WorldEdit positions + if worldedit.pos1[name] ~= nil then + worldedit.player_notify(name, "position 1: " .. minetest.pos_to_string(worldedit.pos1[name])) + else + worldedit.player_notify(name, "position 1 not set") + end + if worldedit.pos2[name] ~= nil then + worldedit.player_notify(name, "position 2: " .. minetest.pos_to_string(worldedit.pos2[name])) + else + worldedit.player_notify(name, "position 2 not set") + end + else + worldedit.player_notify(name, "unknown subcommand: " .. param) + end + end, +}) + +minetest.register_chatcommand("/fixedpos", { + params = "set1/set2 x y z", + description = "Set a WorldEdit region position to the position at (, , )", + privs = {worldedit=true}, + func = function(name, param) + local found, _, flag, x, y, z = param:find("^(set[12])%s+([+-]?%d+)%s+([+-]?%d+)%s+([+-]?%d+)$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return + end + local pos = {x=tonumber(x), y=tonumber(y), z=tonumber(z)} + if flag == "set1" then + worldedit.pos1[name] = pos + worldedit.mark_pos1(name) + worldedit.player_notify(name, "position 1 set to " .. minetest.pos_to_string(pos)) + else --flag == "set2" + worldedit.pos2[name] = pos + worldedit.mark_pos2(name) + worldedit.player_notify(name, "position 2 set to " .. minetest.pos_to_string(pos)) + end + end, +}) + +minetest.register_on_punchnode(function(pos, node, puncher) + local name = puncher:get_player_name() + if name ~= "" and worldedit.set_pos[name] ~= nil then --currently setting position + if worldedit.set_pos[name] == "pos1" then --setting position 1 + worldedit.pos1[name] = pos + worldedit.mark_pos1(name) + worldedit.set_pos[name] = "pos2" --set position 2 on the next invocation + worldedit.player_notify(name, "position 1 set to " .. minetest.pos_to_string(pos)) + elseif worldedit.set_pos[name] == "pos1only" then --setting position 1 only + worldedit.pos1[name] = pos + worldedit.mark_pos1(name) + worldedit.set_pos[name] = nil --finished setting positions + worldedit.player_notify(name, "position 1 set to " .. minetest.pos_to_string(pos)) + elseif worldedit.set_pos[name] == "pos2" then --setting position 2 + worldedit.pos2[name] = pos + worldedit.mark_pos2(name) + worldedit.set_pos[name] = nil --finished setting positions + worldedit.player_notify(name, "position 2 set to " .. minetest.pos_to_string(pos)) + elseif worldedit.set_pos[name] == "prob" then --setting Minetest schematic node probabilities + worldedit.prob_pos[name] = pos + minetest.show_formspec(puncher:get_player_name(), "prob_val_enter", "field[text;;]") + end + end +end) + +minetest.register_chatcommand("/volume", { + params = "", + description = "Display the volume of the current WorldEdit region", + privs = {worldedit=true}, + func = function(name, param) + local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] + if pos1 == nil or pos2 == nil then + worldedit.player_notify(name, "no region selected") + return nil + end + + local volume = worldedit.volume(pos1, pos2) + local abs = math.abs + worldedit.player_notify(name, "current region has a volume of " .. volume .. " nodes (" + .. abs(pos2.x - pos1.x) + 1 .. "*" + .. abs(pos2.y - pos1.y) + 1 .. "*" + .. abs(pos2.z - pos1.z) + 1 .. ")") + end, +}) + +minetest.register_chatcommand("/set", { + params = "", + description = "Set the current WorldEdit region to ", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local node = get_node(name, param) + if not node then + worldedit.player_notify(name, "Could not identify node \"" .. param .. "\"") + return + end + + local count = worldedit.set(worldedit.pos1[name], worldedit.pos2[name], node) + worldedit.player_notify(name, count .. " nodes set") + end, check_region), +}) + +minetest.register_chatcommand("/mix", { + params = " ...", + description = "Fill the current WorldEdit region with a random mix of , ...", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local nodes = {} + for nodename in param:gmatch("[^%s]+") do + local node = get_node(name, nodename) + if not node then + worldedit.player_notify(name, "Could not identify node \"" .. name .. "\"") + return + end + nodes[#nodes + 1] = node + end + + local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] + local count = worldedit.set(pos1, pos2, nodes) + worldedit.player_notify(name, count .. " nodes set") + end, check_region), +}) + +local check_replace = function(name, param) + local found, _, searchnode, replacenode = param:find("^([^%s]+)%s+(.+)$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return nil + end + local newsearchnode = worldedit.normalize_nodename(searchnode) + if not newsearchnode then + worldedit.player_notify(name, "invalid search node name: " .. searchnode) + return nil + end + local newreplacenode = worldedit.normalize_nodename(replacenode) + if not newreplacenode then + worldedit.player_notify(name, "invalid replace node name: " .. replacenode) + return nil + end + return check_region(name, param) +end + +minetest.register_chatcommand("/replace", { + params = " ", + description = "Replace all instances of with in the current WorldEdit region", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local found, _, searchnode, replacenode = param:find("^([^%s]+)%s+(.+)$") + local newsearchnode = worldedit.normalize_nodename(searchnode) + local newreplacenode = worldedit.normalize_nodename(replacenode) + local count = worldedit.replace(worldedit.pos1[name], worldedit.pos2[name], newsearchnode, newreplacenode) + worldedit.player_notify(name, count .. " nodes replaced") + end, check_replace), +}) + +minetest.register_chatcommand("/replaceinverse", { + params = " ", + description = "Replace all nodes other than with in the current WorldEdit region", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local found, _, searchnode, replacenode = param:find("^([^%s]+)%s+(.+)$") + local newsearchnode = worldedit.normalize_nodename(searchnode) + local newreplacenode = worldedit.normalize_nodename(replacenode) + local count = worldedit.replaceinverse(worldedit.pos1[name], worldedit.pos2[name], searchnode, replacenode) + worldedit.player_notify(name, count .. " nodes replaced") + end, check_replace), +}) + +local check_sphere = function(name, param) + if worldedit.pos1[name] == nil then + worldedit.player_notify(name, "no position 1 selected") + return nil + end + local found, _, radius, nodename = param:find("^(%d+)%s+(.+)$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return nil + end + local node = get_node(name, nodename) + if not node then return nil end + return math.ceil((4 * math.pi * (tonumber(radius) ^ 3)) / 3) --volume of sphere +end + +minetest.register_chatcommand("/hollowsphere", { + params = " ", + description = "Add hollow sphere centered at WorldEdit position 1 with radius , composed of ", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local found, _, radius, nodename = param:find("^(%d+)%s+(.+)$") + local node = get_node(name, nodename) + local count = worldedit.hollow_sphere(worldedit.pos1[name], tonumber(radius), node) + worldedit.player_notify(name, count .. " nodes added") + end, check_sphere), +}) + +minetest.register_chatcommand("/sphere", { + params = " ", + description = "Add sphere centered at WorldEdit position 1 with radius , composed of ", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local found, _, radius, nodename = param:find("^(%d+)%s+(.+)$") + local node = get_node(name, nodename) + local count = worldedit.sphere(worldedit.pos1[name], tonumber(radius), node) + worldedit.player_notify(name, count .. " nodes added") + end, check_sphere), +}) + +local check_dome = function(name, param) + if worldedit.pos1[name] == nil then + worldedit.player_notify(name, "no position 1 selected") + return nil + end + local found, _, radius, nodename = param:find("^(%d+)%s+(.+)$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return nil + end + local node = get_node(name, nodename) + if not node then return nil end + return math.ceil((2 * math.pi * (tonumber(radius) ^ 3)) / 3) --volume of dome +end + +minetest.register_chatcommand("/hollowdome", { + params = " ", + description = "Add hollow dome centered at WorldEdit position 1 with radius , composed of ", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local found, _, radius, nodename = param:find("^(%d+)%s+(.+)$") + local node = get_node(name, nodename) + local count = worldedit.hollow_dome(worldedit.pos1[name], tonumber(radius), node) + worldedit.player_notify(name, count .. " nodes added") + end, check_dome), +}) + +minetest.register_chatcommand("/dome", { + params = " ", + description = "Add dome centered at WorldEdit position 1 with radius , composed of ", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local found, _, radius, nodename = param:find("^(%d+)%s+(.+)$") + local node = get_node(name, nodename) + local count = worldedit.dome(worldedit.pos1[name], tonumber(radius), node) + worldedit.player_notify(name, count .. " nodes added") + end, check_dome), +}) + +local check_cylinder = function(name, param) + if worldedit.pos1[name] == nil then + worldedit.player_notify(name, "no position 1 selected") + return nil + end + local found, _, axis, length, radius, nodename = param:find("^([xyz%?])%s+([+-]?%d+)%s+(%d+)%s+(.+)$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return nil + end + local node = get_node(name, nodename) + if not node then return nil end + return math.ceil(math.pi * (tonumber(radius) ^ 2) * tonumber(length)) +end + +minetest.register_chatcommand("/hollowcylinder", { + params = "x/y/z/? ", + description = "Add hollow cylinder at WorldEdit position 1 along the x/y/z/? axis with length and radius , composed of ", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local found, _, axis, length, radius, nodename = param:find("^([xyz%?])%s+([+-]?%d+)%s+(%d+)%s+(.+)$") + length = tonumber(length) + if axis == "?" then + axis, sign = worldedit.player_axis(name) + length = length * sign + end + local node = get_node(name, nodename) + local count = worldedit.hollow_cylinder(worldedit.pos1[name], axis, length, tonumber(radius), node) + worldedit.player_notify(name, count .. " nodes added") + end, check_cylinder), +}) + +minetest.register_chatcommand("/cylinder", { + params = "x/y/z/? ", + description = "Add cylinder at WorldEdit position 1 along the x/y/z/? axis with length and radius , composed of ", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local found, _, axis, length, radius, nodename = param:find("^([xyz%?])%s+([+-]?%d+)%s+(%d+)%s+(.+)$") + length = tonumber(length) + if axis == "?" then + axis, sign = worldedit.player_axis(name) + length = length * sign + end + local node = get_node(name, nodename) + local count = worldedit.cylinder(worldedit.pos1[name], axis, length, tonumber(radius), node) + worldedit.player_notify(name, count .. " nodes added") + end, check_cylinder), +}) + +minetest.register_chatcommand("/pyramid", { + params = "x/y/z/? ", + description = "Add pyramid centered at WorldEdit position 1 along the x/y/z/? axis with height , composed of ", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local found, _, axis, height, nodename = param:find("^([xyz%?])%s+([+-]?%d+)%s+(.+)$") + height = tonumber(height) + if axis == "?" then + axis, sign = worldedit.player_axis(name) + height = height * sign + end + local node = get_node(name, nodename) + local count = worldedit.pyramid(worldedit.pos1[name], axis, height, node) + worldedit.player_notify(name, count .. " nodes added") + end, + function(name, param) + if worldedit.pos1[name] == nil then + worldedit.player_notify(name, "no position 1 selected") + return nil + end + local found, _, axis, height, nodename = param:find("^([xyz%?])%s+([+-]?%d+)%s+(.+)$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return nil + end + local node = get_node(name, nodename) + if not node then return nil end + height = tonumber(height) + return math.ceil(((height * 2 + 1) ^ 2) * height / 3) + end), +}) + +minetest.register_chatcommand("/spiral", { + params = " ", + description = "Add spiral centered at WorldEdit position 1 with side length , height , space between walls , composed of ", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local found, _, length, height, space, nodename = param:find("^(%d+)%s+(%d+)%s+(%d+)%s+(.+)$") + local node = get_node(name, nodename) + local count = worldedit.spiral(worldedit.pos1[name], tonumber(length), tonumber(height), tonumber(space), node) + worldedit.player_notify(name, count .. " nodes added") + end, + function(name, param) + if worldedit.pos1[name] == nil then + worldedit.player_notify(name, "no position 1 selected") + return nil + end + local found, _, length, height, space, nodename = param:find("^(%d+)%s+(%d+)%s+(%d+)%s+(.+)$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return nil + end + local node = get_node(name, nodename) + if not node then return nil end + return check_region(name, param) + end), +}) + +minetest.register_chatcommand("/copy", { + params = "x/y/z/? ", + description = "Copy the current WorldEdit region along the x/y/z/? axis by nodes", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local found, _, axis, amount = param:find("^([xyz%?])%s+([+-]?%d+)$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return + end + amount = tonumber(amount) + if axis == "?" then + axis, sign = worldedit.player_axis(name) + amount = amount * sign + end + + local count = worldedit.copy(worldedit.pos1[name], worldedit.pos2[name], axis, amount) + worldedit.player_notify(name, count .. " nodes copied") + end, + function(name, param) + local volume = check_region(name, param) + return volume and volume * 2 or volume + end), +}) + +minetest.register_chatcommand("/move", { + params = "x/y/z/? ", + description = "Move the current WorldEdit region along the x/y/z/? axis by nodes", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] + local found, _, axis, amount = param:find("^([xyz%?])%s+([+-]?%d+)$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return + end + amount = tonumber(amount) + if axis == "?" then + axis, sign = worldedit.player_axis(name) + amount = amount * sign + end + + local count = worldedit.move(pos1, pos2, axis, amount) + + pos1[axis] = pos1[axis] + amount + pos2[axis] = pos2[axis] + amount + worldedit.mark_pos1(name) + worldedit.mark_pos2(name) + worldedit.player_notify(name, count .. " nodes moved") + end, check_region), +}) + +minetest.register_chatcommand("/stack", { + params = "x/y/z/? ", + description = "Stack the current WorldEdit region along the x/y/z/? axis times", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local found, _, axis, repetitions = param:find("^([xyz%?])%s+([+-]?%d+)$") + repetitions = tonumber(repetitions) + if axis == "?" then + axis, sign = worldedit.player_axis(name) + repetitions = repetitions * sign + end + local count = worldedit.stack(worldedit.pos1[name], worldedit.pos2[name], axis, repetitions) + worldedit.player_notify(name, count .. " nodes stacked") + end, + function(name, param) + local found, _, axis, repetitions = param:find("^([xyz%?])%s+([+-]?%d+)$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return + end + local count = check_region(name, param) + if count then return (tonumber(repetitions) + 1) * count end + return nil + end), +}) + +minetest.register_chatcommand("/stack2", { + params = " ", + description = "Stack the current WorldEdit region times by offset , , ", + privs = {worldedit=true}, + func = function(name, param) + local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] + if pos1 == nil or pos2 == nil then + worldedit.player_notify(name, "Select a position first!") + return + end + local repetitions, incs = param:match("(%d+)%s*(.+)") + if repetitions == nil then + worldedit.player_notify(name, "invalid count: " .. param) + return + end + repetitions = tonumber(repetitions) + + local x, y, z = incs:match("([+-]?%d+) ([+-]?%d+) ([+-]?%d+)") + if x == nil then + worldedit.player_notify(name, "invalid increments: " .. param) + return + end + x, y, z = tonumber(x), tonumber(y), tonumber(z) + + local count = worldedit.volume(pos1, pos2) * repetitions + + return safe_region(function() + worldedit.stack2(pos1, pos2, {x=x, y=y, z=z}, repetitions, + function() worldedit.player_notify(name, count .. " nodes stacked") end) + end, function() + return count + end)(name,param) -- more hax --wip: clean this up a little bit + end +}) + + +minetest.register_chatcommand("/stretch", { + params = " ", + description = "Scale the current WorldEdit positions and region by a factor of , , along the X, Y, and Z axes, repectively, with position 1 as the origin", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] + local found, _, stretchx, stretchy, stretchz = param:find("^(%d+)%s+(%d+)%s+(%d+)$") + stretchx, stretchy, stretchz = tonumber(stretchx), tonumber(stretchy), tonumber(stretchz) + local count, pos1, pos2 = worldedit.stretch(pos1, pos2, stretchx, stretchy, stretchz) + + --reset markers to scaled positions + worldedit.pos1[name] = pos1 + worldedit.pos2[name] = pos2 + worldedit.mark_pos1(name) + worldedit.mark_pos2(name) + + worldedit.player_notify(name, count .. " nodes stretched") + end, + function(name, param) + local found, _, stretchx, stretchy, stretchz = param:find("^(%d+)%s+(%d+)%s+(%d+)$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return nil + end + stretchx, stretchy, stretchz = tonumber(stretchx), tonumber(stretchy), tonumber(stretchz) + if stretchx == 0 or stretchy == 0 or stretchz == 0 then + worldedit.player_notify(name, "invalid scaling factors: " .. param) + end + local count = check_region(name, param) + if count then return tonumber(stretchx) * tonumber(stretchy) * tonumber(stretchz) * count end + return nil + end), +}) + +minetest.register_chatcommand("/transpose", { + params = "x/y/z/? x/y/z/?", + description = "Transpose the current WorldEdit region along the x/y/z/? and x/y/z/? axes", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] + local found, _, axis1, axis2 = param:find("^([xyz%?])%s+([xyz%?])$") + if axis1 == "?" then axis1 = worldedit.player_axis(name) end + if axis2 == "?" then axis2 = worldedit.player_axis(name) end + local count, pos1, pos2 = worldedit.transpose(pos1, pos2, axis1, axis2) + + --reset markers to transposed positions + worldedit.pos1[name] = pos1 + worldedit.pos2[name] = pos2 + worldedit.mark_pos1(name) + worldedit.mark_pos2(name) + + worldedit.player_notify(name, count .. " nodes transposed") + end, + function(name, param) + local found, _, axis1, axis2 = param:find("^([xyz%?])%s+([xyz%?])$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return nil + end + if axis1 == axis2 then + worldedit.player_notify(name, "invalid usage: axes must be different") + return nil + end + return check_region(name, param) + end), +}) + +minetest.register_chatcommand("/flip", { + params = "x/y/z/?", + description = "Flip the current WorldEdit region along the x/y/z/? axis", + privs = {worldedit=true}, + func = safe_region(function(name, param) + if param == "?" then param = worldedit.player_axis(name) end + local count = worldedit.flip(worldedit.pos1[name], worldedit.pos2[name], param) + worldedit.player_notify(name, count .. " nodes flipped") + end, + function(name, param) + if param ~= "x" and param ~= "y" and param ~= "z" and param ~= "?" then + worldedit.player_notify(name, "invalid usage: " .. param) + return nil + end + return check_region(name, param) + end), +}) + +minetest.register_chatcommand("/rotate", { + params = " ", + description = "Rotate the current WorldEdit region around the axis by angle (90 degree increment)", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] + local found, _, axis, angle = param:find("^([xyz%?])%s+([+-]?%d+)$") + if axis == "?" then axis = worldedit.player_axis(name) end + local count, pos1, pos2 = worldedit.rotate(pos1, pos2, axis, angle) + + --reset markers to rotated positions + worldedit.pos1[name] = pos1 + worldedit.pos2[name] = pos2 + worldedit.mark_pos1(name) + worldedit.mark_pos2(name) + + worldedit.player_notify(name, count .. " nodes rotated") + end, + function(name, param) + local found, _, axis, angle = param:find("^([xyz%?])%s+([+-]?%d+)$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return nil + end + if angle % 90 ~= 0 then + worldedit.player_notify(name, "invalid usage: angle must be multiple of 90") + return nil + end + return check_region(name, param) + end), +}) + +minetest.register_chatcommand("/orient", { + params = "", + description = "Rotate oriented nodes in the current WorldEdit region around the Y axis by angle (90 degree increment)", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local found, _, angle = param:find("^([+-]?%d+)$") + local count = worldedit.orient(worldedit.pos1[name], worldedit.pos2[name], angle) + worldedit.player_notify(name, count .. " nodes oriented") + end, + function(name, param) + local found, _, angle = param:find("^([+-]?%d+)$") + if found == nil then + worldedit.player_notify(name, "invalid usage: " .. param) + return nil + end + if angle % 90 ~= 0 then + worldedit.player_notify(name, "invalid usage: angle must be multiple of 90") + return nil + end + return check_region(name, param) + end), +}) + +minetest.register_chatcommand("/fixlight", { + params = "", + description = "Fix the lighting in the current WorldEdit region", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local count = worldedit.fixlight(worldedit.pos1[name], worldedit.pos2[name]) + worldedit.player_notify(name, count .. " nodes updated") + end), +}) + +minetest.register_chatcommand("/hide", { + params = "", + description = "Hide all nodes in the current WorldEdit region non-destructively", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local count = worldedit.hide(worldedit.pos1[name], worldedit.pos2[name]) + worldedit.player_notify(name, count .. " nodes hidden") + end), +}) + +minetest.register_chatcommand("/suppress", { + params = "", + description = "Suppress all in the current WorldEdit region non-destructively", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local node = get_node(name, param) + local count = worldedit.suppress(worldedit.pos1[name], worldedit.pos2[name], node) + worldedit.player_notify(name, count .. " nodes suppressed") + end, check_region), +}) + +minetest.register_chatcommand("/highlight", { + params = "", + description = "Highlight in the current WorldEdit region by hiding everything else non-destructively", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local node = get_node(name, param) + local count = worldedit.highlight(worldedit.pos1[name], worldedit.pos2[name], node) + worldedit.player_notify(name, count .. " nodes highlighted") + end, check_region), +}) + +minetest.register_chatcommand("/restore", { + params = "", + description = "Restores nodes hidden with WorldEdit in the current WorldEdit region", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local count = worldedit.restore(worldedit.pos1[name], worldedit.pos2[name]) + worldedit.player_notify(name, count .. " nodes restored") + end), +}) + +minetest.register_chatcommand("/save", { + params = "", + description = "Save the current WorldEdit region to \"(world folder)/schems/.we\"", + privs = {worldedit=true}, + func = safe_region(function(name, param) + if param == "" then + worldedit.player_notify(name, "invalid usage: " .. param) + return + end + if not string.find(param, "^[%w \t.,+-_=!@#$%%^&*()%[%]{};'\"]+$") then + worldedit.player_notify(name, "invalid file name: " .. param) + return + end + + local result, count = worldedit.serialize(worldedit.pos1[name], worldedit.pos2[name]) + + local path = minetest.get_worldpath() .. "/schems" + local filename = path .. "/" .. param .. ".we" + filename = filename:gsub("\"", "\\\""):gsub("\\", "\\\\") --escape any nasty characters + os.execute("mkdir \"" .. path .. "\"") --create directory if it does not already exist + local file, err = io.open(filename, "wb") + if err ~= nil then + worldedit.player_notify(name, "could not save file to \"" .. filename .. "\"") + return + end + file:write(result) + file:flush() + file:close() + + worldedit.player_notify(name, count .. " nodes saved") + end), +}) + +minetest.register_chatcommand("/allocate", { + params = "", + description = "Set the region defined by nodes from \"(world folder)/schems/.we\" as the current WorldEdit region", + privs = {worldedit=true}, + func = function(name, param) + local pos = get_position(name) + if pos == nil then return end + + if param == "" then + worldedit.player_notify(name, "invalid usage: " .. param) + return + end + if not string.find(param, "^[%w \t.,+-_=!@#$%%^&*()%[%]{};'\"]+$") then + worldedit.player_notify(name, "invalid file name: " .. param) + return + end + + local filename = minetest.get_worldpath() .. "/schems/" .. param .. ".we" + local file, err = io.open(filename, "rb") + if err ~= nil then + worldedit.player_notify(name, "could not open file \"" .. filename .. "\"") + return + end + local value = file:read("*a") + file:close() + + local version = worldedit.read_header(value) + if version == 0 then + worldedit.player_notify(name, "File is invalid!") + return + elseif version > worldedit.LATEST_SERIALIZATION_VERSION then + worldedit.player_notify(name, "File was created with newer version of WorldEdit!") + end + local nodepos1, nodepos2, count = worldedit.allocate(pos, value) + + worldedit.pos1[name] = nodepos1 + worldedit.mark_pos1(name) + worldedit.pos2[name] = nodepos2 + worldedit.mark_pos2(name) + + worldedit.player_notify(name, count .. " nodes allocated") + end, +}) + +minetest.register_chatcommand("/load", { + params = "", + description = "Load nodes from \"(world folder)/schems/[.we[m]]\" with position 1 of the current WorldEdit region as the origin", + privs = {worldedit=true}, + func = function(name, param) + local pos = get_position(name) + if pos == nil then return end + + if param == "" then + worldedit.player_notify(name, "invalid usage: " .. param) + return + end + if not string.find(param, "^[%w \t.,+-_=!@#$%%^&*()%[%]{};'\"]+$") then + worldedit.player_notify(name, "invalid file name: " .. param) + return + end + + --find the file in the world path + local testpaths = { + minetest.get_worldpath() .. "/schems/" .. param, + minetest.get_worldpath() .. "/schems/" .. param .. ".we", + minetest.get_worldpath() .. "/schems/" .. param .. ".wem", + } + local file, err + for index, path in ipairs(testpaths) do + file, err = io.open(path, "rb") + if not err then + break + end + end + if err then + worldedit.player_notify(name, "could not open file \"" .. param .. "\"") + return + end + local value = file:read("*a") + file:close() + + local version = worldedit.read_header(value) + if version == 0 then + worldedit.player_notify(name, "File is invalid!") + return + elseif version > worldedit.LATEST_SERIALIZATION_VERSION then + worldedit.player_notify(name, "File was created with newer version of WorldEdit!") + return + end + + local count = worldedit.deserialize(pos, value) + + worldedit.player_notify(name, count .. " nodes loaded") + end, +}) + +minetest.register_chatcommand("/lua", { + params = "", + description = "Executes as a Lua chunk in the global namespace", + privs = {worldedit=true, server=true}, + func = function(name, param) + local admin = minetest.setting_get("name") + if not admin or not name == admin then + worldedit.player_notify(name, "this command can only be run by the server administrator") + return + end + local err = worldedit.lua(param) + if err then + worldedit.player_notify(name, "code error: " .. err) + else + worldedit.player_notify(name, "code successfully executed", false) + end + end, +}) + +minetest.register_chatcommand("/luatransform", { + params = "", + description = "Executes as a Lua chunk in the global namespace with the variable pos available, for each node in the current WorldEdit region", + privs = {worldedit=true, server=true}, + func = safe_region(function(name, param) + local admin = minetest.setting_get("name") + if not admin or not name == admin then + worldedit.player_notify(name, "this command can only be run by the server administrator") + return + end + + local err = worldedit.luatransform(worldedit.pos1[name], worldedit.pos2[name], param) + if err then + worldedit.player_notify(name, "code error: " .. err, false) + else + worldedit.player_notify(name, "code successfully executed", false) + end + end), +}) + +minetest.register_chatcommand("/mtschemcreate", { + params = "", + description = "Save the current WorldEdit region using the Minetest Schematic format to \"(world folder)/schems/.mts\"", + privs = {worldedit=true}, + func = safe_region(function(name, param) + if param == nil then + worldedit.player_notify(name, "No filename specified") + return + end + + local path = minetest.get_worldpath() .. "/schems" + local filename = path .. "/" .. param .. ".mts" + filename = filename:gsub("\"", "\\\""):gsub("\\", "\\\\") --escape any nasty characters + os.execute("mkdir \"" .. path .. "\"") --create directory if it does not already exist + + local ret = minetest.create_schematic(worldedit.pos1[name], worldedit.pos2[name], worldedit.prob_list[name], filename) + if ret == nil then + worldedit.player_notify(name, "failed to create Minetest schematic", false) + else + worldedit.player_notify(name, "saved Minetest schematic to " .. param, false) + end + worldedit.prob_list[name] = {} + end), +}) + +minetest.register_chatcommand("/mtschemplace", { + params = "", + description = "Load nodes from \"(world folder)/schems/.mts\" with position 1 of the current WorldEdit region as the origin", + privs = {worldedit=true}, + func = function(name, param) + if param == nil then + worldedit.player_notify(name, "no filename specified") + return + end + + local pos = get_position(name) + if pos == nil then return end + + local path = minetest.get_worldpath() .. "/schems/" .. param .. ".mts" + if minetest.place_schematic(pos, path) == nil then + worldedit.player_notify(name, "failed to place Minetest schematic", false) + else + worldedit.player_notify(name, "placed Minetest schematic " .. param .. + " at " .. minetest.pos_to_string(pos), false) + end + end, +}) + +minetest.register_chatcommand("/mtschemprob", { + params = "start/finish/get", + description = "Begins node probability entry for Minetest schematics, gets the nodes that have probabilities set, or ends node probability entry", + privs = {worldedit=true}, + func = function(name, param) + if param == "start" then --start probability setting + worldedit.set_pos[name] = "prob" + worldedit.prob_list[name] = {} + worldedit.player_notify(name, "select Minetest schematic probability values by punching nodes") + elseif param == "finish" then --finish probability setting + worldedit.set_pos[name] = nil + worldedit.player_notify(name, "finished Minetest schematic probability selection") + elseif param == "get" then --get all nodes that had probabilities set on them + local text = "" + local problist = worldedit.prob_list[name] + if problist == nil then + return + end + for k,v in pairs(problist) do + local prob = math.floor(((v["prob"] / 256) * 100) * 100 + 0.5) / 100 + text = text .. minetest.pos_to_string(v["pos"]) .. ": " .. prob .. "% | " + end + worldedit.player_notify(name, "currently set node probabilities:") + worldedit.player_notify(name, text) + else + worldedit.player_notify(name, "unknown subcommand: " .. param) + end + end, +}) + +minetest.register_on_player_receive_fields( + function(player, formname, fields) + if (formname == "prob_val_enter") and (fields.text ~= "") then + local name = player:get_player_name() + local prob_entry = {pos=worldedit.prob_pos[name], prob=tonumber(fields.text)} + local index = table.getn(worldedit.prob_list[name]) + 1 + worldedit.prob_list[name][index] = prob_entry + end + end +) + +minetest.register_chatcommand("/clearobjects", { + params = "", + description = "Clears all objects within the WorldEdit region", + privs = {worldedit=true}, + func = safe_region(function(name, param) + local count = worldedit.clearobjects(worldedit.pos1[name], worldedit.pos2[name]) + worldedit.player_notify(name, count .. " objects cleared") + end), +}) diff --git a/mods/WorldEdit/worldedit_commands/mark.lua b/mods/WorldEdit/worldedit_commands/mark.lua new file mode 100644 index 0000000..e07e849 --- /dev/null +++ b/mods/WorldEdit/worldedit_commands/mark.lua @@ -0,0 +1,161 @@ +worldedit.marker1 = {} +worldedit.marker2 = {} +worldedit.marker_region = {} + +--marks worldedit region position 1 +worldedit.mark_pos1 = function(name) + local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] + + if pos1 ~= nil then + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos1) + end + if worldedit.marker1[name] ~= nil then --marker already exists + worldedit.marker1[name]:remove() --remove marker + worldedit.marker1[name] = nil + end + if pos1 ~= nil then + --add marker + worldedit.marker1[name] = minetest.add_entity(pos1, "worldedit:pos1") + if worldedit.marker1[name] ~= nil then + worldedit.marker1[name]:get_luaentity().name = name + end + end + worldedit.mark_region(name) +end + +--marks worldedit region position 2 +worldedit.mark_pos2 = function(name) + local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] + + if pos2 ~= nil then + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos2, pos2) + end + if worldedit.marker2[name] ~= nil then --marker already exists + worldedit.marker2[name]:remove() --remove marker + worldedit.marker2[name] = nil + end + if pos2 ~= nil then + --add marker + worldedit.marker2[name] = minetest.add_entity(pos2, "worldedit:pos2") + if worldedit.marker2[name] ~= nil then + worldedit.marker2[name]:get_luaentity().name = name + end + end + worldedit.mark_region(name) +end + +worldedit.mark_region = function(name) + local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] + + if worldedit.marker_region[name] ~= nil then --marker already exists + --wip: make the area stay loaded somehow + for _, entity in ipairs(worldedit.marker_region[name]) do + entity:remove() + end + worldedit.marker_region[name] = nil + end + if pos1 ~= nil and pos2 ~= nil then + local pos1, pos2 = worldedit.sort_pos(pos1, pos2) + local thickness = 0.2 + local sizex, sizey, sizez = (1 + pos2.x - pos1.x) / 2, (1 + pos2.y - pos1.y) / 2, (1 + pos2.z - pos1.z) / 2 + + --make area stay loaded + local manip = minetest.get_voxel_manip() + manip:read_from_map(pos1, pos2) + + local markers = {} + + --XY plane markers + for _, z in ipairs({pos1.z - 0.5, pos2.z + 0.5}) do + local marker = minetest.add_entity({x=pos1.x + sizex - 0.5, y=pos1.y + sizey - 0.5, z=z}, "worldedit:region_cube") + marker:set_properties({ + visual_size={x=sizex * 2, y=sizey * 2}, + collisionbox = {-sizex, -sizey, -thickness, sizex, sizey, thickness}, + }) + marker:get_luaentity().name = name + table.insert(markers, marker) + end + + --YZ plane markers + for _, x in ipairs({pos1.x - 0.5, pos2.x + 0.5}) do + local marker = minetest.add_entity({x=x, y=pos1.y + sizey - 0.5, z=pos1.z + sizez - 0.5}, "worldedit:region_cube") + marker:set_properties({ + visual_size={x=sizez * 2, y=sizey * 2}, + collisionbox = {-thickness, -sizey, -sizez, thickness, sizey, sizez}, + }) + marker:setyaw(math.pi / 2) + marker:get_luaentity().name = name + table.insert(markers, marker) + end + + worldedit.marker_region[name] = markers + end +end + +minetest.register_entity(":worldedit:pos1", { + initial_properties = { + visual = "cube", + visual_size = {x=1.1, y=1.1}, + textures = {"worldedit_pos1.png", "worldedit_pos1.png", + "worldedit_pos1.png", "worldedit_pos1.png", + "worldedit_pos1.png", "worldedit_pos1.png"}, + collisionbox = {-0.55, -0.55, -0.55, 0.55, 0.55, 0.55}, + physical = false, + }, + on_step = function(self, dtime) + if worldedit.marker1[self.name] == nil then + self.object:remove() + end + end, + on_punch = function(self, hitter) + self.object:remove() + worldedit.marker1[self.name] = nil + end, +}) + +minetest.register_entity(":worldedit:pos2", { + initial_properties = { + visual = "cube", + visual_size = {x=1.1, y=1.1}, + textures = {"worldedit_pos2.png", "worldedit_pos2.png", + "worldedit_pos2.png", "worldedit_pos2.png", + "worldedit_pos2.png", "worldedit_pos2.png"}, + collisionbox = {-0.55, -0.55, -0.55, 0.55, 0.55, 0.55}, + physical = false, + }, + on_step = function(self, dtime) + if worldedit.marker2[self.name] == nil then + self.object:remove() + end + end, + on_punch = function(self, hitter) + self.object:remove() + worldedit.marker2[self.name] = nil + end, +}) + +minetest.register_entity(":worldedit:region_cube", { + initial_properties = { + visual = "upright_sprite", + visual_size = {x=1.1, y=1.1}, + textures = {"worldedit_cube.png"}, + visual_size = {x=10, y=10}, + physical = false, + }, + on_step = function(self, dtime) + if worldedit.marker_region[self.name] == nil then + self.object:remove() + return + end + end, + on_punch = function(self, hitter) + for _, entity in ipairs(worldedit.marker_region[self.name]) do + entity:remove() + end + worldedit.marker_region[self.name] = nil + end, +}) \ No newline at end of file diff --git a/mods/WorldEdit/worldedit_commands/safe.lua b/mods/WorldEdit/worldedit_commands/safe.lua new file mode 100644 index 0000000..c6751c1 --- /dev/null +++ b/mods/WorldEdit/worldedit_commands/safe.lua @@ -0,0 +1,65 @@ +local safe_region_callback = {} +local safe_region_param = {} + +check_region = function(name, param) + local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] --obtain positions + if pos1 == nil or pos2 == nil then + worldedit.player_notify(name, "no region selected") + return nil + end + return worldedit.volume(pos1, pos2) +end + +--`callback` is a callback to run when the user confirms +--`nodes_needed` is a function accepting `param`, `pos1`, and `pos2` to calculate the number of nodes needed +safe_region = function(callback, nodes_needed) + --default node volume calculation + nodes_needed = nodes_needed or check_region + + return function(name, param) + --check if the operation applies to a safe number of nodes + local count = nodes_needed(name, param) + if count == nil then return end --invalid command + if count < 10000 then + return callback(name, param) + end + + --save callback to call later + safe_region_callback[name], safe_region_param[name] = callback, param + worldedit.player_notify(name, "WARNING: this operation could affect up to " .. count .. " nodes; type //y to continue or //n to cancel") + end +end + +minetest.register_chatcommand("/y", { + params = "", + description = "Confirm a pending operation", + func = function(name) + local callback, param = safe_region_callback[name], safe_region_param[name] + if not callback then + worldedit.player_notify(name, "no operation pending") + return + end + + --obtain positions + local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] + if pos1 == nil or pos2 == nil then + worldedit.player_notify(name, "no region selected") + return + end + + safe_region_callback[name], safe_region_param[name] = nil, nil --reset pending operation + callback(name, param, pos1, pos2) + end, +}) + +minetest.register_chatcommand("/n", { + params = "", + description = "Confirm a pending operation", + func = function(name) + if not safe_region_callback[name] then + worldedit.player_notify(name, "no operation pending") + return + end + safe_region_callback[name], safe_region_param[name] = nil, nil + end, +}) diff --git a/mods/WorldEdit/worldedit_commands/textures/worldedit_cube.png b/mods/WorldEdit/worldedit_commands/textures/worldedit_cube.png new file mode 100644 index 0000000..fde36a8 Binary files /dev/null and b/mods/WorldEdit/worldedit_commands/textures/worldedit_cube.png differ diff --git a/mods/WorldEdit/worldedit_commands/textures/worldedit_pos1.png b/mods/WorldEdit/worldedit_commands/textures/worldedit_pos1.png new file mode 100644 index 0000000..4c304aa Binary files /dev/null and b/mods/WorldEdit/worldedit_commands/textures/worldedit_pos1.png differ diff --git a/mods/WorldEdit/worldedit_commands/textures/worldedit_pos2.png b/mods/WorldEdit/worldedit_commands/textures/worldedit_pos2.png new file mode 100644 index 0000000..1502f16 Binary files /dev/null and b/mods/WorldEdit/worldedit_commands/textures/worldedit_pos2.png differ diff --git a/mods/WorldEdit/worldedit_limited/depends.txt b/mods/WorldEdit/worldedit_limited/depends.txt new file mode 100644 index 0000000..74054c6 --- /dev/null +++ b/mods/WorldEdit/worldedit_limited/depends.txt @@ -0,0 +1 @@ +worldedit diff --git a/mods/WorldEdit/worldedit_limited/init.lua b/mods/WorldEdit/worldedit_limited/init.lua new file mode 100644 index 0000000..801e19c --- /dev/null +++ b/mods/WorldEdit/worldedit_limited/init.lua @@ -0,0 +1,120 @@ +do return end +do + local MAX_VOLUME = 30 * 30 * 30 + + local we = worldedit + local volume = we.volume + local safewrap = function(func) + return function(pos1, pos2, ...) + if validbox(pos1, pos2) then + return func(pos1, pos2, ...) + end + return 0, pos1, pos2 + end + end + + local validbox = function(pos1, pos2) + tpos1, tpos2 = we.sort_pos(pos1, pos2) + + if volume(tpos1, tpos2) > MAX_VOLUME then + return false + end + + --check for ownership of area if ownership mod is installed + if owner_defs then + local inside = false + for _, def in pairs(owner_defs) do + --sort positions + local tdef = {x1=def.x1, x2 = def.x2, y1=def.y1, y2=def.y2, z1=def.z1, z2=def.z2} + if tdef.x1 > tdef.x2 then + tdef.x1, tdef.x2 = tdef.x2, tdef.x1 + end + if tdef.y1 > tdef.y2 then + tdef.y1, tdef.y2 = tdef.y2, tdef.y1 + end + if tdef.z1 > tdef.z2 then + tdef.z1, tdef.z2 = tdef.z2, tdef.z1 + end + + --check ownership + if tpos1.x >= tdef.x1 and tpos1.x <= tdef.x2 + and tpos2.x >= tdef.x1 and tpos2.x <= tdef.x2 + and tpos1.y >= tdef.y1 and tpos1.y <= tdef.y2 + and tpos2.y >= tdef.y1 and tpos2.y <= tdef.y2 + and tpos1.z >= tdef.z1 and tpos1.z <= tdef.z2 + and tpos2.z >= tdef.z1 and tpos2.z <= tdef.z2 + and name == def.owner then --wip: name isn't available here + inside = true + break + end + end + if not inside then + return false + end + end + + return true + end + + worldedit = { + sort_pos = we.sort_pos, + + set = safewrap(we.set), + replace = safewrap(we.replace), + replaceinverse = safewrap(we.replaceinverse), + copy = function(pos1, pos2, axis, amount) + tpos1, tpos2 = we.sort_pos(pos1, pos2) + tpos1[axis] = tpos1[axis] + amount + tpos2[axis] = tpos2[axis] + amount + if validbox(pos1, pos2) and validbox(tpos1, tpos2) then + we.copy(pos1, pos2, axis, amount) + else + return 0 + end + end, + move = function(pos1, pos2, axis, amount) + tpos1, tpos2 = we.sort_pos(pos1, pos2) + tpos1[axis] = tpos1[axis] + amount + tpos2[axis] = tpos2[axis] + amount + if validbox(pos1, pos2) and validbox(tpos1, tpos2) then + we.move(pos1, pos2, axis, amount) + else + return 0 + end + end, + stack = function(pos1, pos2, axis, count) + tpos1, tpos2 = we.sort_pos(pos1, pos2) + local length = (tpos2[axis] - tpos1[axis] + 1) * count + if count < 0 then + tpos1[axis] = tpos1[axis] + length + else + tpos2[axis] = tpos2[axis] + length + end + if validbox(tpos1, tpos2) then + we.stack(pos1, pos2, axis, amount) + else + return 0 + end + end, + --wip: add transpose, rotate safely + flip = safewrap(we.flip), + orient = safewrap(we.orient), + fixlight = safewrap(we.fixlight), + --wip: add primitives here + volume = we.volume, + hide = safewrap(we.hide), + suppress = safewrap(we.suppress), + highlight = safewrap(we.highlight), + restore = safewrap(we.restore), + serialize = safewrap(we.serialize), + allocate = we.allocate, + deserialize = function(originpos, value) + local tpos1, tpos2 = we.allocate(originpos, value) + if validbox(tpos1, tpos2) then + we.deserialize(originpos, value) + else + return 0 + end + end, + } +end \ No newline at end of file diff --git a/mods/WorldEdit/worldedit_shortcommands/depends.txt b/mods/WorldEdit/worldedit_shortcommands/depends.txt new file mode 100644 index 0000000..de1cb6c --- /dev/null +++ b/mods/WorldEdit/worldedit_shortcommands/depends.txt @@ -0,0 +1 @@ +worldedit_commands diff --git a/mods/WorldEdit/worldedit_shortcommands/init.lua b/mods/WorldEdit/worldedit_shortcommands/init.lua new file mode 100644 index 0000000..a3cbb67 --- /dev/null +++ b/mods/WorldEdit/worldedit_shortcommands/init.lua @@ -0,0 +1,50 @@ +--provides shorter names for the commands in `worldedit_commands` + +--returns true if command could not be aliased, false otherwise +worldedit.alias_chatcommand = function(alias, original_command) + if not minetest.chatcommands[original_command] then + minetest.log("error", "worldedit_shortcommands: original command " .. original_command .. " does not exist") + return true + end + if minetest.chatcommands[alias] then + minetest.log("error", "worldedit_shortcommands: alias " .. alias .. " already exists") + return true + end + minetest.register_chatcommand(alias, minetest.chatcommands[original_command]) + return false +end + +worldedit.alias_chatcommand("/i", "/inspect") +worldedit.alias_chatcommand("/rst", "/reset") +worldedit.alias_chatcommand("/mk", "/mark") +worldedit.alias_chatcommand("/umk", "/unmark") +worldedit.alias_chatcommand("/1", "/pos1") +worldedit.alias_chatcommand("/2", "/pos2") +worldedit.alias_chatcommand("/fp", "/fixedpos") +worldedit.alias_chatcommand("/v", "/volume") +worldedit.alias_chatcommand("/s", "/set") +worldedit.alias_chatcommand("/r", "/replace") +worldedit.alias_chatcommand("/ri", "/replaceinverse") +worldedit.alias_chatcommand("/hspr", "/hollowsphere") +worldedit.alias_chatcommand("/spr", "/sphere") +worldedit.alias_chatcommand("/hdo", "/hollowdome") +worldedit.alias_chatcommand("/do", "/dome") +worldedit.alias_chatcommand("/hcyl", "/hollowcylinder") +worldedit.alias_chatcommand("/cyl", "/cylinder") +worldedit.alias_chatcommand("/pyr", "/pyramid") +worldedit.alias_chatcommand("/spl", "/spiral") +worldedit.alias_chatcommand("/m", "/move") +worldedit.alias_chatcommand("/c", "/copy") +worldedit.alias_chatcommand("/stk", "/stack") +worldedit.alias_chatcommand("/sch", "/stretch") +worldedit.alias_chatcommand("/tps", "/transpose") +worldedit.alias_chatcommand("/fl", "/flip") +worldedit.alias_chatcommand("/rot", "/rotate") +worldedit.alias_chatcommand("/ort", "/orient") +worldedit.alias_chatcommand("/hi", "/hide") +worldedit.alias_chatcommand("/sup", "/suppress") +worldedit.alias_chatcommand("/hlt", "/highlight") +worldedit.alias_chatcommand("/rsr", "/restore") +worldedit.alias_chatcommand("/l", "/lua") +worldedit.alias_chatcommand("/lt", "/luatransform") +worldedit.alias_chatcommand("/clro", "/clearobjects") \ No newline at end of file diff --git a/mods/areas/LICENSE.txt b/mods/areas/LICENSE.txt new file mode 100644 index 0000000..4362b49 --- /dev/null +++ b/mods/areas/LICENSE.txt @@ -0,0 +1,502 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! diff --git a/mods/areas/README.md b/mods/areas/README.md new file mode 100644 index 0000000..02d71eb --- /dev/null +++ b/mods/areas/README.md @@ -0,0 +1,102 @@ +Areas mod for Minetest 0.4.8+ +============================= + + +Configuration +------------- + +If you wish to specify configuration options, such as whether players are +allowed to protect their own areas with the `protect` command (disabled by +default), you should check config.lua and set the appropriate settings in your +server's configuration file (probably `minetest.conf`). + + +Tutorial +-------- + +To protect an area you must first set the corner positions of the area. +In order to set the corner positions you can run: + * `/area_pos set` and punch the two corner nodes to set them. + * `/area_pos set1/set2` and punch only the first or second corner node to + set them one at a time. + * `/area_pos1/2` to set one of the positions to your current position. + * `/area_pos1/2 X Y Z` to set one of the positions to the specified + coordinates. + +Once you have set the border positions you can protect the area by running one +of the following commands: + * `/set_owner ` -- If you have the `areas` privilege. + * `/protect ` -- If you have the `areas` privilege or the server + administrator has enabled area self-protection. + +The area name is used only for informational purposes (so that you know what +an area is for). It is not used for any other purpose. +For example: `/set_owner SomePlayer Mese city` + +Now that you own an area you may want to add sub-owners to it. You can do this +with the `add_owner` command. Anyone with an area can use the `add_owner` +command on their areas. Before using the `add_owner` command you have to +select the corners of the sub-area as you did for `set_owner`. If your markers +are still around your original area and you want to grant access to your +entire area you will not have to re-set them. You can also use `select_area` to +place the markers at the corners of an existing area if you've reset your +markers and want to grant access to a full area. +The `add_owner` command expects three arguments: + 1. The ID number of the parent area (the area that you want to add a + sub-area to). + 2. The name of the player that will own the sub-area. + 3. The name of the sub-area. (can contain spaces) + +For example: `/add_owner 123 BobTheBuilder Diamond lighthouse` + + +Commands +-------- + + * `/protect ` -- Protects an area for yourself. (if + self-protection is enabled) + + * `/set_owner ` -- Protects an area for a specified + player. (requires the `areas` privilege) + + * `/add_owner ` -- Grants another player + control over part (or all) of an area. + + * `/rename_area ` -- Renames an existing area. + + * `/list_areas` -- Lists all of the areas that you own, or all areas if you + have the `areas` privilege. + + * `/find_areas ` -- Finds areas using a Lua regular expresion. + For example, to find castles: + + /find_areas [Cc]astle + + * `/remove_area ` -- Removes an area that you own. Any sub-areas of that + area are made sub-areas of the removed area's parent, if it exists. + If the removed area has no parent it's sub-areas will have no parent. + + * `/recursive_remove_areas ` -- Removes an area and all sub-areas of it. + + * `/change_owner ` -- Change the owner of an area. + + * `/select_area ` -- Sets the area positions to those of an existing + area. + + * `/area_pos {set,set1,set2,get}` -- Sets the area positions by punching + nodes or shows the current area positions. + + * `/area_pos1 [X,Y,Z|X Y Z]` -- Sets area position one to your position or + the one supplied. + + * `/area_pos2 [X,Y,Z|X Y Z]` -- Sets area position two to your position or + the one supplied. + +License +------- + +Copyright (C) 2013 ShadowNinja + +Licensed under the GNU LGPL version 2.1 or later. +See LICENSE.txt and http://www.gnu.org/licenses/lgpl-2.1.txt + diff --git a/mods/areas/api.lua b/mods/areas/api.lua new file mode 100644 index 0000000..1a4026b --- /dev/null +++ b/mods/areas/api.lua @@ -0,0 +1,83 @@ + +-- Returns a list of areas that include the provided position +function areas:getAreasAtPos(pos) + local a = {} + local px, py, pz = pos.x, pos.y, pos.z + for id, area in pairs(self.areas) do + local ap1, ap2 = area.pos1, area.pos2 + if px >= ap1.x and px <= ap2.x and + py >= ap1.y and py <= ap2.y and + pz >= ap1.z and pz <= ap2.z then + a[id] = area + end + end + return a +end + +-- Checks if the area is unprotected or owned by you +function areas:canInteract(pos, name) + if minetest.check_player_privs(name, self.adminPrivs) then + return true + end + local owned = false + for _, area in pairs(self:getAreasAtPos(pos)) do + if area.owner == name or area.open then + return true + else + owned = true + end + end + return not owned +end + +-- Returns a table (list) of all players that own an area +function areas:getNodeOwners(pos) + local owners = {} + for _, area in pairs(self:getAreasAtPos(pos)) do + table.insert(owners, area.owner) + end + return owners +end + +--- Checks if the area intersects with an area that the player can't interact in. +-- Note that this fails and returns false when the specified area is fully +-- owned by the player, but with multiple protection zones, none of which +-- cover the entire checked area. +-- @param name (optional) player name. If not specified checks for any intersecting areas. +-- @param allow_open Whether open areas should be counted as is they didn't exist. +-- @return Boolean indicating whether the player can interact in that area. +-- @return Un-owned intersecting area id, if found. +function areas:canInteractInArea(pos1, pos2, name, allow_open) + if name and minetest.check_player_privs(name, self.adminPrivs) then + return true + end + areas:sortPos(pos1, pos2) + -- First check for a fully enclosing owned area. + if name then + for id, area in pairs(self.areas) do + -- A little optimization: isAreaOwner isn't necessary + -- here since we're iterating through all areas. + if area.owner == name and + self:isSubarea(pos1, pos2, id) then + return true + end + end + end + -- Then check for intersecting (non-owned) areas. + for id, area in pairs(self.areas) do + local p1, p2 = area.pos1, area.pos2 + if (p1.x <= pos2.x and p2.x >= pos1.x) and + (p1.y <= pos2.y and p2.y >= pos1.y) and + (p1.z <= pos2.z and p2.z >= pos1.z) then + -- Found an intersecting area. + -- Return if the area is closed or open areas aren't + -- allowed, and the area isn't owned. + if (not allow_open or not area.open) and + (not name or not areas:isAreaOwner(id, name)) then + return false, id + end + end + end + return true +end + diff --git a/mods/areas/chatcommands.lua b/mods/areas/chatcommands.lua new file mode 100644 index 0000000..2edc38f --- /dev/null +++ b/mods/areas/chatcommands.lua @@ -0,0 +1,315 @@ + +minetest.register_chatcommand("protect", { + params = "", + description = "Protect your own area", + privs = {[areas.config.self_protection_privilege]=true}, + func = function(name, param) + if param == "" then + return false, "Invalid usage, see /help protect." + end + local pos1, pos2 = areas:getPos(name) + if not (pos1 and pos2) then + return false, "You need to select an area first." + end + + minetest.log("action", "/protect invoked, owner="..name.. + " AreaName="..param.. + " StartPos="..minetest.pos_to_string(pos1).. + " EndPos=" ..minetest.pos_to_string(pos2)) + + local canAdd, errMsg = areas:canPlayerAddArea(pos1, pos2, name) + if not canAdd then + return false, "You can't protect that area: "..errMsg + end + + local id = areas:add(name, param, pos1, pos2, nil) + areas:save() + + return true, "Area protected. ID: "..id + end +}) + + +minetest.register_chatcommand("set_owner", { + params = " ", + description = "Protect an area beetween two positions and give" + .." a player access to it without setting the parent of the" + .." area to any existing area", + privs = areas.adminPrivs, + func = function(name, param) + local ownerName, areaName = param:match('^(%S+)%s(.+)$') + + if not ownerName then + return false, "Incorrect usage, see /help set_owner." + end + + local pos1, pos2 = areas:getPos(name) + if not (pos1 and pos2) then + return false, "You need to select an area first." + end + + if not areas:player_exists(ownerName) then + return false, "The player \"" + ..ownerName.."\" does not exist." + end + + minetest.log("action", name.." runs /set_owner. Owner = "..ownerName.. + " AreaName = "..areaName.. + " StartPos = "..minetest.pos_to_string(pos1).. + " EndPos = " ..minetest.pos_to_string(pos2)) + + local id = areas:add(ownerName, areaName, pos1, pos2, nil) + areas:save() + + minetest.chat_send_player(ownerName, + "You have been granted control over area #".. + id..". Type /list_areas to show your areas.") + return true, "Area protected. ID: "..id + end +}) + + +minetest.register_chatcommand("add_owner", { + params = " ", + description = "Give a player access to a sub-area beetween two" + .." positions that have already been protected," + .." Use set_owner if you don't want the parent to be set.", + func = function(name, param) + local pid, ownerName, areaName + = param:match('^(%d+) ([^ ]+) (.+)$') + + if not pid then + minetest.chat_send_player(name, "Incorrect usage, see /help add_owner") + return + end + + local pos1, pos2 = areas:getPos(name) + if not (pos1 and pos2) then + return false, "You need to select an area first." + end + + if not areas:player_exists(ownerName) then + return false, "The player \""..ownerName.."\" does not exist." + end + + minetest.log("action", name.." runs /add_owner. Owner = "..ownerName.. + " AreaName = "..areaName.." ParentID = "..pid.. + " StartPos = "..pos1.x..","..pos1.y..","..pos1.z.. + " EndPos = " ..pos2.x..","..pos2.y..","..pos2.z) + + -- Check if this new area is inside an area owned by the player + pid = tonumber(pid) + if (not areas:isAreaOwner(pid, name)) or + (not areas:isSubarea(pos1, pos2, pid)) then + return false, "You can't protect that area." + end + + local id = areas:add(ownerName, areaName, pos1, pos2, pid) + areas:save() + + minetest.chat_send_player(ownerName, + "You have been granted control over area #".. + id..". Type /list_areas to show your areas.") + return true, "Area protected. ID: "..id + end +}) + + +minetest.register_chatcommand("rename_area", { + params = " ", + description = "Rename a area that you own", + func = function(name, param) + local id, newName = param:match("^(%d+)%s(.+)$") + if not id then + return false, "Invalid usage, see /help rename_area." + end + + id = tonumber(id) + if not id then + return false, "That area doesn't exist." + end + + if not areas:isAreaOwner(id, name) then + return true, "You don't own that area." + end + + areas.areas[id].name = newName + areas:save() + return true, "Area renamed." + end +}) + + +minetest.register_chatcommand("find_areas", { + params = "", + description = "Find areas using a Lua regular expression", + privs = areas.adminPrivs, + func = function(name, param) + if param == "" then + return false, "A regular expression is required." + end + + -- Check expression for validity + local function testRegExp() + ("Test [1]: Player (0,0,0) (0,0,0)"):find(param) + end + if not pcall(testRegExp) then + return false, "Invalid regular expression." + end + + local matches = {} + for id, area in pairs(areas.areas) do + local str = areas:toString(id) + if str:find(param) then + table.insert(matches, str) + end + end + if #matches > 0 then + return true, table.concat(matches, "\n") + else + return true, "No matches found." + end + end +}) + + +minetest.register_chatcommand("list_areas", { + description = "List your areas, or all areas if you are an admin.", + func = function(name, param) + local admin = minetest.check_player_privs(name, areas.adminPrivs) + local areaStrings = {} + for id, area in pairs(areas.areas) do + if admin or areas:isAreaOwner(id, name) then + table.insert(areaStrings, areas:toString(id)) + end + end + if #areaStrings == 0 then + return true, "No visible areas." + end + return true, table.concat(areaStrings, "\n") + end +}) + + +minetest.register_chatcommand("recursive_remove_areas", { + params = "", + description = "Recursively remove areas using an id", + func = function(name, param) + local id = tonumber(param) + if not id then + return false, "Invalid usage, see" + .." /help recursive_remove_areas" + end + + if not areas:isAreaOwner(id, name) then + return false, "Area "..id.." does not exist or is" + .." not owned by you." + end + + areas:remove(id, true) + areas:save() + return true, "Removed area "..id.." and it's sub areas." + end +}) + + +minetest.register_chatcommand("remove_area", { + params = "", + description = "Remove an area using an id", + func = function(name, param) + local id = tonumber(param) + if not id then + return false, "Invalid usage, see /help remove_area" + end + + if not areas:isAreaOwner(id, name) then + return false, "Area "..id.." does not exist or" + .." is not owned by you." + end + + areas:remove(id) + areas:save() + return true, "Removed area "..id + end +}) + + +minetest.register_chatcommand("change_owner", { + params = " ", + description = "Change the owner of an area using it's ID", + func = function(name, param) + local id, newOwner = param:match("^(%d+)%s(%S+)$") + if not id then + return false, "Invalid usage, see" + .." /help change_owner." + end + + if not areas:player_exists(newOwner) then + return false, "The player \""..newOwner + .."\" does not exist." + end + + id = tonumber(id) + if not areas:isAreaOwner(id, name) then + return false, "Area "..id.." does not exist" + .." or is not owned by you." + end + areas.areas[id].owner = newOwner + areas:save() + minetest.chat_send_player(newOwner, + ("%s has given you control over the area %q (ID %d).") + :format(name, areas.areas[id].name, id)) + return true, "Owner changed." + end +}) + + +minetest.register_chatcommand("area_open", { + params = "", + description = "Toggle an area open (anyone can interact) or closed", + func = function(name, param) + local id = tonumber(param) + if not id then + return false, "Invalid usage, see /help area_open." + end + + if not areas:isAreaOwner(id, name) then + return false, "Area "..id.." does not exist" + .." or is not owned by you." + end + local open = not areas.areas[id].open + -- Save false as nil to avoid inflating the DB. + areas.areas[id].open = open or nil + areas:save() + return true, ("Area %s."):format(open and "opened" or "closed") + end +}) + + +minetest.register_chatcommand("move_area", { + params = "", + description = "Move (or resize) an area to the current positions.", + privs = areas.adminPrivs, + func = function(name, param) + local id = tonumber(param) + if not id then + return false, "Invalid usage, see /help move_area." + end + + local area = areas.areas[id] + if not area then + return false, "Area does not exist." + end + + local pos1, pos2 = areas:getPos(name) + if not pos1 then + return false, "You need to select an area first." + end + + area.pos1 = pos1 + area.pos2 = pos2 + areas:save() + return true, "Area successfully moved." + end, +}) + diff --git a/mods/areas/hud.lua b/mods/areas/hud.lua new file mode 100644 index 0000000..604f6f3 --- /dev/null +++ b/mods/areas/hud.lua @@ -0,0 +1,50 @@ +-- This is inspired by the landrush mod by Bremaweb + +areas.hud = {} +local xOffset = 8 +local yOffset = -16 +-- Approximate the text height +local textHeight = (tonumber(minetest.setting_get("font_size")) or 13) * 1.16 + +minetest.register_globalstep(function(dtime) + for _, player in pairs(minetest.get_connected_players()) do + local name = player:get_player_name() + local pos = vector.round(player:getpos()) + local areaStrings = {} + for id, area in pairs(areas:getAreasAtPos(pos)) do + table.insert(areaStrings, ("%s [%u] (%s%s)") + :format(area.name, id, area.owner, + area.open and ":open" or "")) + end + local areaString = table.concat(areaStrings, "\n") + local hud = areas.hud[name] + if not hud then + hud = {} + areas.hud[name] = hud + hud.areasId = player:hud_add({ + hud_elem_type = "text", + name = "Areas", + number = 0xFFFFFF, + position = {x=0, y=1}, + offset = {x=xOffset, y=yOffset - ((#areaStrings + 1) * textHeight)}, + direction = 0, + text = "Areas:\n"..areaString, + scale = {x=200, y=60}, + alignment = {x=1, y=1}, + }) + hud.oldAreas = areaString + return + elseif hud.oldAreas ~= areaString then + player:hud_change(hud.areasId, "offset", + {x=xOffset, y=yOffset - ((#areaStrings + 1) * textHeight)}) + player:hud_change(hud.areasId, "text", + "Areas:\n"..areaString) + hud.oldAreas = areaString + end + end +end) + +minetest.register_on_leaveplayer(function(player) + areas.hud[player:get_player_name()] = nil +end) + diff --git a/mods/areas/init.lua b/mods/areas/init.lua new file mode 100644 index 0000000..73d0cd2 --- /dev/null +++ b/mods/areas/init.lua @@ -0,0 +1,39 @@ +-- Areas mod by ShadowNinja +-- Based on node_ownership +-- License: LGPLv2+ + +areas = {} + +areas.adminPrivs = {areas=true} +areas.startTime = os.clock() + +areas.modpath = minetest.get_modpath(minetest.get_current_modname()) +dofile(areas.modpath.."/settings.lua") +dofile(areas.modpath.."/api.lua") +dofile(areas.modpath.."/internal.lua") +dofile(areas.modpath.."/chatcommands.lua") +dofile(areas.modpath.."/pos.lua") +dofile(areas.modpath.."/interact.lua") +dofile(areas.modpath.."/legacy.lua") +dofile(areas.modpath.."/hud.lua") + +areas:load() + +minetest.register_privilege("areas", { + description = "Can administer areas." +}) +minetest.register_privilege("areas_high_limit", { + description = "Can can more, bigger areas." +}) + +if not minetest.registered_privileges[areas.config.self_protection_privilege] then + minetest.register_privilege(areas.config.self_protection_privilege, { + description = "Can protect areas.", + }) +end + +if minetest.setting_getbool("log_mod") then + local diffTime = os.clock() - areas.startTime + minetest.log("action", "areas loaded in "..diffTime.."s.") +end + diff --git a/mods/areas/interact.lua b/mods/areas/interact.lua new file mode 100644 index 0000000..2e54800 --- /dev/null +++ b/mods/areas/interact.lua @@ -0,0 +1,19 @@ + +local old_is_protected = minetest.is_protected +function minetest.is_protected(pos, name) + if not areas:canInteract(pos, name) then + return true + end + return old_is_protected(pos, name) +end + +minetest.register_on_protection_violation(function(pos, name) + if not areas:canInteract(pos, name) then + local owners = areas:getNodeOwners(pos) + minetest.chat_send_player(name, + ("%s is protected by %s."):format( + minetest.pos_to_string(pos), + table.concat(owners, ", "))) + end +end) + diff --git a/mods/areas/internal.lua b/mods/areas/internal.lua new file mode 100644 index 0000000..f1b048d --- /dev/null +++ b/mods/areas/internal.lua @@ -0,0 +1,212 @@ + +function areas:player_exists(name) + return minetest.auth_table[name] ~= nil +end + +-- Save the areas table to a file +function areas:save() + local datastr = minetest.serialize(self.areas) + if not datastr then + minetest.log("error", "[areas] Failed to serialize area data!") + return + end + local file, err = io.open(self.config.filename, "w") + if err then + return err + end + file:write(datastr) + file:close() +end + +-- Load the areas table from the save file +function areas:load() + local file, err = io.open(self.config.filename, "r") + if err then + self.areas = self.areas or {} + return err + end + self.areas = minetest.deserialize(file:read("*a")) + if type(self.areas) ~= "table" then + self.areas = {} + end + file:close() +end + +-- Finds the first usable index in a table +-- Eg: {[1]=false,[4]=true} -> 2 +local function findFirstUnusedIndex(t) + local i = 0 + repeat i = i + 1 + until t[i] == nil + return i +end + +-- Add a area, returning the new area's id. +function areas:add(owner, name, pos1, pos2, parent) + local id = findFirstUnusedIndex(self.areas) + self.areas[id] = {name=name, pos1=pos1, pos2=pos2, owner=owner, + parent=parent} + return id +end + +-- Remove a area, and optionally it's children recursively. +-- If a area is deleted non-recursively the children will +-- have the removed area's parent as their new parent. +function areas:remove(id, recurse) + if recurse then + -- Recursively find child entries and remove them + local cids = self:getChildren(id) + for _, cid in pairs(cids) do + self:remove(cid, true) + end + else + -- Update parents + local parent = self.areas[id].parent + local children = self:getChildren(id) + for _, cid in pairs(children) do + -- The subarea parent will be niled out if the + -- removed area does not have a parent + self.areas[cid].parent = parent + + end + end + + -- Remove main entry + self.areas[id] = nil +end + +-- Checks if a area between two points is entirely contained by another area +function areas:isSubarea(pos1, pos2, id) + local area = self.areas[id] + if not area then + return false + end + local p1, p2 = area.pos1, area.pos2 + if (pos1.x >= p1.x and pos1.x <= p2.x) and + (pos2.x >= p1.x and pos2.x <= p2.x) and + (pos1.y >= p1.y and pos1.y <= p2.y) and + (pos2.y >= p1.y and pos2.y <= p2.y) and + (pos1.z >= p1.z and pos1.z <= p2.z) and + (pos2.z >= p1.z and pos2.z <= p2.z) then + return true + end +end + +-- Returns a table (list) of children of an area given it's identifier +function areas:getChildren(id) + local children = {} + for cid, area in pairs(self.areas) do + if area.parent and area.parent == id then + table.insert(children, cid) + end + end + return children +end + +-- Checks if the user has sufficient privileges. +-- If the player is not a administrator it also checks +-- if the area intersects other areas that they do not own. +-- Also checks the size of the area and if the user already +-- has more than max_areas. +function areas:canPlayerAddArea(pos1, pos2, name) + local privs = minetest.get_player_privs(name) + if privs.areas then + return true + end + + -- Check self protection privilege, if it is enabled, + -- and if the area is too big. + if not self.config.self_protection or + not privs[areas.config.self_protection_privilege] then + return false, "Self protection is disabled or you do not have" + .." the necessary privilege." + end + + local max_size = privs.areas_high_limit and + self.config.self_protection_max_size_high or + self.config.self_protection_max_size + if + (pos2.x - pos1.x) > max_size.x or + (pos2.y - pos1.y) > max_size.y or + (pos2.z - pos1.z) > max_size.z then + return false, "Area is too big." + end + + -- Check number of areas the user has and make sure it not above the max + local count = 0 + for _, area in pairs(self.areas) do + if area.owner == name then + count = count + 1 + end + end + local max_areas = privs.areas_high_limit and + self.config.self_protection_max_areas_high or + self.config.self_protection_max_areas + if count >= max_areas then + return false, "You have reached the maximum amount of" + .." areas that you are allowed to protect." + end + + -- Check intersecting areas + local can, id = self:canInteractInArea(pos1, pos2, name) + if not can then + local area = self.areas[id] + return false, ("The area intersects with %s [%u] (%s).") + :format(area.name, id, area.owner) + end + + return true +end + +-- Given a id returns a string in the format: +-- "name [id]: owner (x1, y1, z1) (x2, y2, z2) -> children" +function areas:toString(id) + local area = self.areas[id] + local message = ("%s [%d]: %s %s %s"):format( + area.name, id, area.owner, + minetest.pos_to_string(area.pos1), + minetest.pos_to_string(area.pos2)) + + local children = areas:getChildren(id) + if #children > 0 then + message = message.." -> "..table.concat(children, ", ") + end + return message +end + +-- Re-order areas in table by their identifiers +function areas:sort() + local sa = {} + for k, area in pairs(self.areas) do + if not area.parent then + table.insert(sa, area) + local newid = #sa + for _, subarea in pairs(self.areas) do + if subarea.parent == k then + subarea.parent = newid + table.insert(sa, subarea) + end + end + end + end + self.areas = sa +end + +-- Checks if a player owns an area or a parent of it +function areas:isAreaOwner(id, name) + local cur = self.areas[id] + if cur and minetest.check_player_privs(name, self.adminPrivs) then + return true + end + while cur do + if cur.owner == name then + return true + elseif cur.parent then + cur = self.areas[cur.parent] + else + return false + end + end + return false +end + diff --git a/mods/areas/legacy.lua b/mods/areas/legacy.lua new file mode 100644 index 0000000..83b3d27 --- /dev/null +++ b/mods/areas/legacy.lua @@ -0,0 +1,138 @@ +-- This file contains functions to convert from +-- the old areas format and other compatability code. + +minetest.register_chatcommand("legacy_load_areas", { + params = "", + description = "Loads, converts, and saves the areas from" + .." a legacy save file.", + privs = {areas=true, server=true}, + func = function(name, param) + minetest.chat_send_player(name, "Converting areas...") + local version = tonumber(param) + if version == 0 then + err = areas:node_ownership_load() + if err then + minetest.chat_send_player(name, "Error loading legacy file: "..err) + return + end + else + minetest.chat_send_player(name, "Invalid version number. (0 allowed)") + return + end + minetest.chat_send_player(name, "Legacy file loaded.") + + for k, area in pairs(areas.areas) do + -- New position format + area.pos1 = {x=area.x1, y=area.y1, z=area.z1} + area.pos2 = {x=area.x2, y=area.y2, z=area.z2} + + area.x1, area.y1, area.z1, + area.x2, area.y2, area.z2 = + nil, nil, nil, nil, nil, nil + + -- Area positions sorting + areas:sortPos(area.pos1, area.pos2) + + -- Add name + area.name = "unnamed" + + -- Remove ID + area.id = nil + end + minetest.chat_send_player(name, "Table format updated.") + + areas:save() + minetest.chat_send_player(name, "Converted areas saved. Done.") + end +}) + +function areas:node_ownership_load() + local filename = minetest.get_worldpath().."/owners.tbl" + tables, err = loadfile(filename) + if err then + return err + end + + tables = tables() + for idx = 1, #tables do + local tolinkv, tolinki = {}, {} + for i, v in pairs(tables[idx]) do + if type(v) == "table" and tables[v[1]] then + table.insert(tolinkv, {i, tables[v[1]]}) + end + if type(i) == "table" and tables[i[1]] then + table.insert(tolinki, {i, tables[i[1]]}) + end + end + -- link values, first due to possible changes of indices + for _, v in ipairs(tolinkv) do + tables[idx][v[1]] = v[2] + end + -- link indices + for _, v in ipairs(tolinki) do + tables[idx][v[2]], tables[idx][v[1]] = tables[idx][v[1]], nil + end + end + self.areas = tables[1] +end + +-- Returns the name of the first player that owns an area +function areas.getNodeOwnerName(pos) + for id, area in pairs(areas:getAreasAtPos(pos)) do + return area.owner + end + return false +end + +-- Checks if a node is owned by you +function areas.isNodeOwner(pos, name) + if minetest.check_player_privs(name, areas.adminPrivs) then + return true + end + for id, area in pairs(areas:getAreasAtPos(pos)) do + if name == area.owner then + return true + end + end + return false +end + +-- Checks if an area has an owner +function areas.hasOwner(pos) + for id, area in pairs(areas:getAreasAtPos(pos)) do + return true + end + return false +end + +IsPlayerNodeOwner = areas.isNodeOwner +GetNodeOwnerName = areas.getNodeOwnerName +HasOwner = areas.hasOwner + +-- This is entirely untested and may break in strange and new ways. +if areas.config.legacy_table then + owner_defs = setmetatable({}, { + __index = function(table, key) + local a = rawget(areas.areas, key) + if not a then return a end + local b = {} + for k, v in pairs(a) do b[k] = v end + b.x1, b.y1, b.z1 = b.pos1.x, b.pos1.y, b.pos1.z + b.x2, b.y1, b.z2 = b.pos2.x, b.pos2.y, b.pos2.z + b.pos1, b.pos2 = nil, nil + b.id = key + return b + end, + __newindex = function(table, key, value) + local a = value + a.pos1, a.pos2 = {x=a.x1, y=a.y1, z=a.z1}, + {x=a.x2, y=a.y2, z=a.z2} + a.x1, a.y1, a.z1, a.x2, a.y2, a.z2 = + nil, nil, nil, nil, nil, nil + a.name = a.name or "unnamed" + a.id = nil + return rawset(areas.areas, key, a) + end + }) +end + diff --git a/mods/areas/pos.lua b/mods/areas/pos.lua new file mode 100644 index 0000000..8d3e6fe --- /dev/null +++ b/mods/areas/pos.lua @@ -0,0 +1,255 @@ + +-- I could depend on WorldEdit for this, but you need to have the 'worldedit' +-- permission to use those commands and you don't have +-- /area_pos{1,2} [X Y Z|X,Y,Z]. +-- Since this is mostly copied from WorldEdit it is mostly +-- licensed under the AGPL. (select_area is a exception) + +areas.marker1 = {} +areas.marker2 = {} +areas.set_pos = {} +areas.pos1 = {} +areas.pos2 = {} + +minetest.register_chatcommand("select_area", { + params = "", + description = "Select a area by id.", + func = function(name, param) + local id = tonumber(param) + if not id then + return false, "Invalid usage, see /help select_area." + end + if not areas.areas[id] then + return false, "The area "..id.." does not exist." + end + + areas:setPos1(name, areas.areas[id].pos1) + areas:setPos2(name, areas.areas[id].pos2) + return true, "Area "..id.." selected." + end, +}) + +minetest.register_chatcommand("area_pos1", { + params = "[X Y Z|X,Y,Z]", + description = "Set area protection region position 1 to your" + .." location or the one specified", + privs = {}, + func = function(name, param) + local pos = nil + local found, _, x, y, z = param:find( + "^(-?%d+)[, ](-?%d+)[, ](-?%d+)$") + if found then + pos = {x=tonumber(x), y=tonumber(y), z=tonumber(z)} + elseif param == "" then + local player = minetest.get_player_by_name(name) + if player then + pos = player:getpos() + else + return false, "Unable to get position." + end + else + return false, "Invalid usage, see /help area_pos1." + end + pos = vector.round(pos) + areas:setPos1(name, pos) + return true, "Area position 1 set to " + ..minetest.pos_to_string(pos) + end, +}) + +minetest.register_chatcommand("area_pos2", { + params = "[X Y Z|X,Y,Z]", + description = "Set area protection region position 2 to your" + .." location or the one specified", + func = function(name, param) + local pos = nil + local found, _, x, y, z = param:find( + "^(-?%d+)[, ](-?%d+)[, ](-?%d+)$") + if found then + pos = {x=tonumber(x), y=tonumber(y), z=tonumber(z)} + elseif param == "" then + local player = minetest.get_player_by_name(name) + if player then + pos = player:getpos() + else + return false, "Unable to get position." + end + else + return false, "Invalid usage, see /help area_pos2." + end + pos = vector.round(pos) + areas:setPos2(name, pos) + return true, "Area position 2 set to " + ..minetest.pos_to_string(pos) + end, +}) + + +minetest.register_chatcommand("area_pos", { + params = "set/set1/set2/get", + description = "Set area protection region, position 1, or position 2" + .." by punching nodes, or display the region", + func = function(name, param) + if param == "set" then -- Set both area positions + areas.set_pos[name] = "pos1" + return true, "Select positions by punching two nodes." + elseif param == "set1" then -- Set area position 1 + areas.set_pos[name] = "pos1only" + return true, "Select position 1 by punching a node." + elseif param == "set2" then -- Set area position 2 + areas.set_pos[name] = "pos2" + return true, "Select position 2 by punching a node." + elseif param == "get" then -- Display current area positions + local pos1str, pos2str = "Position 1: ", "Position 2: " + if areas.pos1[name] then + pos1str = pos1str..minetest.pos_to_string(areas.pos1[name]) + else + pos1str = pos1str.."" + end + if areas.pos2[name] then + pos2str = pos2str..minetest.pos_to_string(areas.pos2[name]) + else + pos2str = pos2str.."" + end + return true, pos1str.."\n"..pos2str + else + return false, "Unknown subcommand: "..param + end + end, +}) + +function areas:getPos(playerName) + local pos1, pos2 = areas.pos1[playerName], areas.pos2[playerName] + if not (pos1 and pos2) then + return nil + end + -- Copy positions so that the area table doesn't contain multiple + -- references to the same position. + pos1, pos2 = vector.new(pos1), vector.new(pos2) + return areas:sortPos(pos1, pos2) +end + +function areas:setPos1(playerName, pos) + areas.pos1[playerName] = pos + areas.markPos1(playerName) +end + +function areas:setPos2(playerName, pos) + areas.pos2[playerName] = pos + areas.markPos2(playerName) +end + + +minetest.register_on_punchnode(function(pos, node, puncher) + local name = puncher:get_player_name() + -- Currently setting position + if name ~= "" and areas.set_pos[name] then + if areas.set_pos[name] == "pos1" then + areas.pos1[name] = pos + areas.markPos1(name) + areas.set_pos[name] = "pos2" + minetest.chat_send_player(name, + "Position 1 set to " + ..minetest.pos_to_string(pos)) + elseif areas.set_pos[name] == "pos1only" then + areas.pos1[name] = pos + areas.markPos1(name) + areas.set_pos[name] = nil + minetest.chat_send_player(name, + "Position 1 set to " + ..minetest.pos_to_string(pos)) + elseif areas.set_pos[name] == "pos2" then + areas.pos2[name] = pos + areas.markPos2(name) + areas.set_pos[name] = nil + minetest.chat_send_player(name, + "Position 2 set to " + ..minetest.pos_to_string(pos)) + end + end +end) + +-- Modifies positions `pos1` and `pos2` so that each component of `pos1` +-- is less than or equal to its corresponding component of `pos2`, +-- returning the two positions. +function areas:sortPos(pos1, pos2) + if pos1.x > pos2.x then + pos2.x, pos1.x = pos1.x, pos2.x + end + if pos1.y > pos2.y then + pos2.y, pos1.y = pos1.y, pos2.y + end + if pos1.z > pos2.z then + pos2.z, pos1.z = pos1.z, pos2.z + end + return pos1, pos2 +end + +-- Marks area position 1 +areas.markPos1 = function(name) + local pos = areas.pos1[name] + if areas.marker1[name] ~= nil then -- Marker already exists + areas.marker1[name]:remove() -- Remove marker + areas.marker1[name] = nil + end + if pos ~= nil then -- Add marker + areas.marker1[name] = minetest.add_entity(pos, "areas:pos1") + areas.marker1[name]:get_luaentity().active = true + end +end + +-- Marks area position 2 +areas.markPos2 = function(name) + local pos = areas.pos2[name] + if areas.marker2[name] ~= nil then -- Marker already exists + areas.marker2[name]:remove() -- Remove marker + areas.marker2[name] = nil + end + if pos ~= nil then -- Add marker + areas.marker2[name] = minetest.add_entity(pos, "areas:pos2") + areas.marker2[name]:get_luaentity().active = true + end +end + +minetest.register_entity("areas:pos1", { + initial_properties = { + visual = "cube", + visual_size = {x=1.1, y=1.1}, + textures = {"areas_pos1.png", "areas_pos1.png", + "areas_pos1.png", "areas_pos1.png", + "areas_pos1.png", "areas_pos1.png"}, + collisionbox = {-0.55, -0.55, -0.55, 0.55, 0.55, 0.55}, + }, + on_step = function(self, dtime) + if self.active == nil then + self.object:remove() + end + end, + on_punch = function(self, hitter) + self.object:remove() + local name = hitter:get_player_name() + areas.marker1[name] = nil + end, +}) + +minetest.register_entity("areas:pos2", { + initial_properties = { + visual = "cube", + visual_size = {x=1.1, y=1.1}, + textures = {"areas_pos2.png", "areas_pos2.png", + "areas_pos2.png", "areas_pos2.png", + "areas_pos2.png", "areas_pos2.png"}, + collisionbox = {-0.55, -0.55, -0.55, 0.55, 0.55, 0.55}, + }, + on_step = function(self, dtime) + if self.active == nil then + self.object:remove() + end + end, + on_punch = function(self, hitter) + self.object:remove() + local name = hitter:get_player_name() + areas.marker2[name] = nil + end, +}) + diff --git a/mods/areas/settings.lua b/mods/areas/settings.lua new file mode 100644 index 0000000..140a655 --- /dev/null +++ b/mods/areas/settings.lua @@ -0,0 +1,43 @@ +local world_path = minetest.get_worldpath() + +areas.config = {} + +local function setting(tp, name, default) + local full_name = "areas."..name + local value + if tp == "boolean" then + value = minetest.setting_getbool(full_name) + elseif tp == "string" then + value = minetest.setting_get(full_name) + elseif tp == "position" then + value = minetest.setting_get_pos(full_name) + elseif tp == "number" then + value = tonumber(minetest.setting_get(full_name)) + else + error("Invalid setting type!") + end + if value == nil then + value = default + end + areas.config[name] = value +end + +-------------- +-- Settings -- +-------------- + +setting("string", "filename", world_path.."/areas.dat") + +-- Allow players with a privilege create their own areas +-- within the maximum size and number. +setting("boolean", "self_protection", false) +setting("string", "self_protection_privilege", "interact") +setting("position", "self_protection_max_size", {x=64, y=128, z=64}) +setting("number", "self_protection_max_areas", 4) +-- For players with the areas_high_limit privilege. +setting("position", "self_protection_max_size_high", {x=512, y=512, z=512}) +setting("number", "self_protection_max_areas_high", 32) + +-- legacy_table (owner_defs) compatibility. Untested and has known issues. +setting("boolean", "legacy_table", false) + diff --git a/mods/areas/textures/areas_pos1.png b/mods/areas/textures/areas_pos1.png new file mode 100644 index 0000000..4c304aa Binary files /dev/null and b/mods/areas/textures/areas_pos1.png differ diff --git a/mods/areas/textures/areas_pos2.png b/mods/areas/textures/areas_pos2.png new file mode 100644 index 0000000..1502f16 Binary files /dev/null and b/mods/areas/textures/areas_pos2.png differ diff --git a/mods/beds/README.txt b/mods/beds/README.txt new file mode 100644 index 0000000..380239c --- /dev/null +++ b/mods/beds/README.txt @@ -0,0 +1,26 @@ +Minetest mod "Beds" +======================= +version: 1.1 + + +License of source code: WTFPL +----------------------------- +author: BlockMen (2013) +original author: PilzAdam + +This program is free software. It comes without any warranty, to +the extent permitted by applicable law. You can redistribute it +and/or modify it under the terms of the Do What The Fuck You Want +To Public License, Version 2, as published by Sam Hocevar. See +http://sam.zoy.org/wtfpl/COPYING for more details. + + +--USING the mod-- +------------------ + +This mods implements Beds like known from Minecraft. You can use them to sleep at night to skip the time or to prevent attacks by evil mobs. + + +To sleep you have to "rightclick" on your bed. You can only sleep at night and get noticed when it is too early. + +After dying the player will respawn at the last bed he has slept. \ No newline at end of file diff --git a/mods/beds/depends.txt b/mods/beds/depends.txt new file mode 100644 index 0000000..2edb716 --- /dev/null +++ b/mods/beds/depends.txt @@ -0,0 +1,3 @@ +default +sethome +wool diff --git a/mods/beds/init.lua b/mods/beds/init.lua new file mode 100644 index 0000000..96b0e56 --- /dev/null +++ b/mods/beds/init.lua @@ -0,0 +1,267 @@ +local player_in_bed = 0 +local guy +local hand +local old_yaw = 0 + +local function get_dir(pos) + local btop = "beds:bed_top" + if minetest.env:get_node({x=pos.x+1,y=pos.y,z=pos.z}).name == btop then + return 7.9 + elseif minetest.env:get_node({x=pos.x-1,y=pos.y,z=pos.z}).name == btop then + return 4.75 + elseif minetest.env:get_node({x=pos.x,y=pos.y,z=pos.z+1}).name == btop then + return 3.15 + elseif minetest.env:get_node({x=pos.x,y=pos.y,z=pos.z-1}).name == btop then + return 6.28 + end +end + +function plock(start, max, tick, player, yaw) + if start+tick < max then + player:set_look_pitch(-1.2) + player:set_look_yaw(yaw) + minetest.after(tick, plock, start+tick, max, tick, player, yaw) + else + player:set_look_pitch(0) + if old_yaw ~= 0 then minetest.after(0.1+tick, function() player:set_look_yaw(old_yaw) end) end + end +end + +function exit(pos) + local npos = minetest.env:find_node_near(pos, 1, "beds:bed_bottom") + if npos ~= nil then pos = npos end + if minetest.env:get_node({x=pos.x+1,y=pos.y,z=pos.z}).name == "air" then + return {x=pos.x+1,y=pos.y,z=pos.z} + elseif minetest.env:get_node({x=pos.x-1,y=pos.y,z=pos.z}).name == "air" then + return {x=pos.x-1,y=pos.y,z=pos.z} + elseif minetest.env:get_node({x=pos.x,y=pos.y,z=pos.z+1}).name == "air" then + return {x=pos.x,y=pos.y,z=pos.z+1} + elseif minetest.env:get_node({x=pos.x,y=pos.y,z=pos.z-1}).name == "air" then + return {x=pos.x,y=pos.y,z=pos.z-1} + else + return {x=pos.x,y=pos.y,z=pos.z} + end +end + +minetest.register_node("beds:bed_bottom", { + description = "Bed", + inventory_image = "beds_bed.png", + wield_image = "beds_bed.png", + wield_scale = {x=0.8,y=2.5,z=1.3}, + drawtype = "nodebox", + tiles = {"beds_bed_top_bottom.png^[transformR90", "default_wood.png", "beds_bed_side_bottom_r.png", "beds_bed_side_bottom_r.png^[transformfx", "beds_bed_leer.png", "beds_bed_side_bottom.png"}, + paramtype = "light", + paramtype2 = "facedir", + stack_max = 1, + groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3}, + sounds = default.node_sound_wood_defaults(), + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0.06, 0.5}, + }, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5}, + + }, + + after_place_node = function(pos, placer, itemstack) + local node = minetest.env:get_node(pos) + local param2 = node.param2 + local npos = {x=pos.x, y=pos.y, z=pos.z} + if param2 == 0 then + npos.z = npos.z+1 + elseif param2 == 1 then + npos.x = npos.x+1 + elseif param2 == 2 then + npos.z = npos.z-1 + elseif param2 == 3 then + npos.x = npos.x-1 + end + if minetest.registered_nodes[minetest.env:get_node(npos).name].buildable_to == true and minetest.env:get_node({x=npos.x, y=npos.y-1, z=npos.z}).name ~= "air" then + minetest.env:set_node(npos, {name="beds:bed_top", param2 = param2}) + else + minetest.env:dig_node(pos) + return true + end + end, + + on_destruct = function(pos) + pos = minetest.env:find_node_near(pos, 1, "beds:bed_top") + if pos ~= nil then minetest.env:remove_node(pos) end + end, + + on_rightclick = function(pos, node, clicker, itemstack) + if not clicker:is_player() then + return + end + if minetest.env:get_timeofday() > 0.2 and minetest.env:get_timeofday() < 0.805 then + minetest.chat_send_player(clicker:get_player_name(),"You can only sleep at night") + return + else + --clicker:set_physics_override(0,0,0) + --old_yaw = clicker:get_look_yaw() + guy = clicker + --clicker:set_look_yaw(get_dir(pos)) + --minetest.chat_send_all("Good night") + --plock(0,2,0.1,clicker, get_dir(pos)) + + + -- rnd change: sethome by sleeping in bed + local player = clicker + local pos = player:getpos() + homepos[player:get_player_name()] = pos -- PROBLEM HERE: doesnt know what homepos is!! homepos is define in sethome mod, solution: make sure sethome mod is run first...by putting it in depends.txt + minetest.chat_send_player(player:get_player_name(), "home set. use /home to return here.") + end + + if not clicker:get_player_control().sneak then + local meta = minetest.env:get_meta(pos) + local param2 = node.param2 + if param2 == 0 then + pos.z = pos.z+1 + elseif param2 == 1 then + pos.x = pos.x+1 + elseif param2 == 2 then + pos.z = pos.z-1 + elseif param2 == 3 then + pos.x = pos.x-1 + end + if clicker:get_player_name() == meta:get_string("player") then + if param2 == 0 then + pos.x = pos.x-1 + elseif param2 == 1 then + pos.z = pos.z+1 + elseif param2 == 2 then + pos.x = pos.x+1 + elseif param2 == 3 then + pos.z = pos.z-1 + end + pos.y = pos.y-0.5 + clicker:setpos(pos) + meta:set_string("player", "") + player_in_bed = player_in_bed-1 + elseif meta:get_string("player") == "" then + pos.y = pos.y-0.5 + clicker:setpos(pos) + meta:set_string("player", clicker:get_player_name()) + player_in_bed = player_in_bed+1 + end + end + end +}) + +minetest.register_node("beds:bed_top", { + drawtype = "nodebox", + tiles = {"beds_bed_top_top.png^[transformR90", "beds_bed_leer.png", "beds_bed_side_top_r.png", "beds_bed_side_top_r.png^[transformfx", "beds_bed_side_top.png", "beds_bed_leer.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3}, + sounds = default.node_sound_wood_defaults(), + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0.06, 0.5}, + }, + selection_box = { + type = "fixed", + fixed = {0, 0, 0, 0, 0, 0}, + }, +}) + +minetest.register_alias("beds:bed", "beds:bed_bottom") + +minetest.register_craft({ + output = "beds:bed", + recipe = { + {"group:wool", "group:wool", "group:wool", }, + {"group:wood", "group:wood", "group:wood", } + } +}) + +beds_player_spawns = {} +local file = io.open(minetest.get_worldpath().."/beds_player_spawns", "r") +if file then + beds_player_spawns = minetest.deserialize(file:read("*all")) + file:close() +end + +local timer = 0 +local wait = false +minetest.register_globalstep(function(dtime) + if timer<2 then + timer = timer+dtime + return + end + timer = 0 + + local players = #minetest.get_connected_players() + if players == player_in_bed and players ~= 0 then + if minetest.env:get_timeofday() < 0.2 or minetest.env:get_timeofday() > 0.805 then + if not wait then + minetest.after(2, function() + minetest.env:set_timeofday(0.23) + wait = false + guy:set_physics_override(1,1,1) + guy:setpos(exit(guy:getpos())) + + end) + wait = true + for _,player in ipairs(minetest.get_connected_players()) do + beds_player_spawns[player:get_player_name()] = player:getpos() + end + local file = io.open(minetest.get_worldpath().."/beds_player_spawns", "w") + if file then + file:write(minetest.serialize(beds_player_spawns)) + file:close() + end + end + end + end +end) + +minetest.register_on_respawnplayer(function(player) + local name = player:get_player_name() + if beds_player_spawns[name] then + player:setpos(beds_player_spawns[name]) + return true + end +end) + +minetest.register_abm({ + nodenames = {"beds:bed_bottom"}, + interval = 1, + chance = 1, + action = function(pos, node) + local meta = minetest.env:get_meta(pos) + if meta:get_string("player") ~= "" then + local param2 = node.param2 + if param2 == 0 then + pos.z = pos.z+1 + elseif param2 == 1 then + pos.x = pos.x+1 + elseif param2 == 2 then + pos.z = pos.z-1 + elseif param2 == 3 then + pos.x = pos.x-1 + end + local player = minetest.env:get_player_by_name(meta:get_string("player")) + if player == nil then + meta:set_string("player", "") + player_in_bed = player_in_bed-1 + return + end + local player_pos = player:getpos() + player_pos.x = math.floor(0.5+player_pos.x) + player_pos.y = math.floor(0.5+player_pos.y) + player_pos.z = math.floor(0.5+player_pos.z) + if pos.x ~= player_pos.x or pos.y ~= player_pos.y or pos.z ~= player_pos.z then + meta:set_string("player", "") + player_in_bed = player_in_bed-1 + return + end + end + end +}) + +if minetest.setting_get("log_mods") then + minetest.log("action", "beds loaded") +end diff --git a/mods/beds/textures/beds_bed.png b/mods/beds/textures/beds_bed.png new file mode 100644 index 0000000..e8d0e5c Binary files /dev/null and b/mods/beds/textures/beds_bed.png differ diff --git a/mods/beds/textures/beds_bed_leer.png b/mods/beds/textures/beds_bed_leer.png new file mode 100644 index 0000000..2dc0e3d Binary files /dev/null and b/mods/beds/textures/beds_bed_leer.png differ diff --git a/mods/beds/textures/beds_bed_side_bottom.png b/mods/beds/textures/beds_bed_side_bottom.png new file mode 100644 index 0000000..7b20f03 Binary files /dev/null and b/mods/beds/textures/beds_bed_side_bottom.png differ diff --git a/mods/beds/textures/beds_bed_side_bottom_r.png b/mods/beds/textures/beds_bed_side_bottom_r.png new file mode 100644 index 0000000..267dd45 Binary files /dev/null and b/mods/beds/textures/beds_bed_side_bottom_r.png differ diff --git a/mods/beds/textures/beds_bed_side_top.png b/mods/beds/textures/beds_bed_side_top.png new file mode 100644 index 0000000..a7b4009 Binary files /dev/null and b/mods/beds/textures/beds_bed_side_top.png differ diff --git a/mods/beds/textures/beds_bed_side_top_r.png b/mods/beds/textures/beds_bed_side_top_r.png new file mode 100644 index 0000000..a459f3c Binary files /dev/null and b/mods/beds/textures/beds_bed_side_top_r.png differ diff --git a/mods/beds/textures/beds_bed_top_bottom.png b/mods/beds/textures/beds_bed_top_bottom.png new file mode 100644 index 0000000..4d20dea Binary files /dev/null and b/mods/beds/textures/beds_bed_top_bottom.png differ diff --git a/mods/beds/textures/beds_bed_top_top.png b/mods/beds/textures/beds_bed_top_top.png new file mode 100644 index 0000000..fa8acc4 Binary files /dev/null and b/mods/beds/textures/beds_bed_top_top.png differ diff --git a/mods/city_block/LICENSE b/mods/city_block/LICENSE new file mode 100644 index 0000000..40c8ae6 --- /dev/null +++ b/mods/city_block/LICENSE @@ -0,0 +1,505 @@ +GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +(This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.) + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + {description} + Copyright (C) {year} {fullname} + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random + Hacker. + + {signature of Ty Coon}, 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + diff --git a/mods/city_block/depends.txt b/mods/city_block/depends.txt new file mode 100644 index 0000000..0e299ba --- /dev/null +++ b/mods/city_block/depends.txt @@ -0,0 +1,4 @@ +default +farming +bucket +sethome diff --git a/mods/city_block/init.lua b/mods/city_block/init.lua new file mode 100644 index 0000000..82406c6 --- /dev/null +++ b/mods/city_block/init.lua @@ -0,0 +1,149 @@ +-- Minetest mod "City block" +-- City block disables use of water/lava buckets and also sends aggressive players to jail + +--This library is free software; you can redistribute it and/or +--modify it under the terms of the GNU Lesser General Public +--License as published by the Free Software Foundation; either +--version 2.1 of the License, or (at your option) any later version. + +city_block={} +city_block.blocks={} +city_block.filename = minetest.get_worldpath() .. "/city_blocks.txt" +city_block.suspects={} + +function city_block:save() + local datastring = minetest.serialize(self.blocks) + if not datastring then + return + end + local file, err = io.open(self.filename, "w") + if err then + return + end + file:write(datastring) + file:close() +end + +function city_block:load() + local file, err = io.open(self.filename, "r") + if err then + self.blocks = {} + return + end + self.blocks = minetest.deserialize(file:read("*all")) + if type(self.blocks) ~= "table" then + self.blocks = {} + end + file:close() +end + +function city_block:in_city(pos) + for i, EachBlock in ipairs(self.blocks) do + if pos.x > (EachBlock.pos.x - 25) and pos.x < (EachBlock.pos.x + 25) and pos.z > (EachBlock.pos.z - 25) and pos.z < (EachBlock.pos.z + 25) and + pos.y > (EachBlock.pos.y - 10) then + return true + end + end + return false +end + +city_block:load() + +minetest.register_node("city_block:cityblock", { + description = "City block mark area 50x50 in size as part of city", + tiles = {"cityblock.png"}, + is_ground_content = false, + groups = {cracky=1,level=3}, + is_ground_content = false, + light_source = LIGHT_MAX, + walkable = false, + after_place_node = function(pos, placer) + if placer and placer:is_player() then + table.insert(city_block.blocks, {pos=vector.round(pos), owner=placer:get_player_name()} ) + city_block:save() + end + end, + on_destruct = function(pos) + for i, EachBlock in ipairs(city_block.blocks) do + if vector.equals(EachBlock.pos, pos) then + table.remove(city_block.blocks, i) + city_block:save() + end + end + end, +}) + +minetest.register_craft({ + output = 'city_block:cityblock', + recipe = { + {'default:pick_mese', 'farming:hoe_mese', 'default:sword_mese'}, + {'default:sandstone', 'default:goldblock', 'default:sandstone'}, + {'default:stonebrick', 'default:mese', 'default:stonebrick'}, + } +}) + + +local old_bucket_water_on_place=minetest.registered_craftitems["bucket:bucket_water"].on_place +minetest.registered_craftitems["bucket:bucket_water"].on_place=function(itemstack, placer, pointed_thing) + local pos = pointed_thing.above + if city_block:in_city(pos) then + minetest.chat_send_player(placer:get_player_name(), "Don't do that in town!") + return itemstack + else + return old_bucket_water_on_place(itemstack, placer, pointed_thing) + end +end +local old_bucket_lava_on_place=minetest.registered_craftitems["bucket:bucket_lava"].on_place +minetest.registered_craftitems["bucket:bucket_lava"].on_place=function(itemstack, placer, pointed_thing) + local pos = pointed_thing.above + if city_block:in_city(pos) then + minetest.chat_send_player(placer:get_player_name(), "Don't do that in town!") + return itemstack + else + return old_bucket_lava_on_place(itemstack, placer, pointed_thing) + end +end + +-- rnd comment: prison for naughty players +minetest.register_on_dieplayer( + function(player) + local spawnpoint = core.setting_get_pos("static_spawnpoint") + local pos=player:getpos() + -- maybe above with spawnpoint.x works???, otherwise it crashes + if city_block:in_city(pos) and math.abs(pos.x-spawnpoint.x)<20 and math.abs(pos.y-spawnpoint.y)<20 and math.abs(pos.z-spawnpoint.z)<20 then + for _,suspect in pairs(minetest.get_objects_inside_radius(pos, 3.8)) do + if suspect:is_player() and suspect:get_player_name()~=player:get_player_name() then + suspect_name=suspect:get_player_name() + if city_block.suspects[suspect_name] then + if city_block.suspects[suspect_name]>1 then -- more then 1 registered kill + suspect:setpos( {x=spawnpoint.x, y=spawnpoint.y-5, z=spawnpoint.z} ) + homepos[suspect:get_player_name()] = spawnpoint -- home pos reset :) + minetest.chat_send_all("Player "..suspect_name.." sent to jail as suspect for killing in town, you can get his old bones there :)") + minetest.log("action", "Player "..suspect_name.." warned for killing in town") + city_block.suspects[suspect_name]=1 + else + city_block.suspects[suspect_name]=city_block.suspects[suspect_name]+1 + end + else + city_block.suspects[suspect_name]=1 + end + return false + end + end + end + end +) +-- rnd prevent lava flow in city area + +minetest.register_abm({ + nodenames = {"default:lava_flowing"}, + neighbors = {""}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + if city_block:in_city(pos) then + minetest.set_node(pos, {name="default:stone"}) + minetest.sound_play("default_cool_lava", {pos = pos, gain = 0.25}) + end + end, +}) \ No newline at end of file diff --git a/mods/city_block/textures/cityblock.png b/mods/city_block/textures/cityblock.png new file mode 100644 index 0000000..056b603 Binary files /dev/null and b/mods/city_block/textures/cityblock.png differ diff --git a/mods/craft_guide/LICENSE b/mods/craft_guide/LICENSE new file mode 100644 index 0000000..ef9ddd5 --- /dev/null +++ b/mods/craft_guide/LICENSE @@ -0,0 +1,32 @@ +Copyright (c) 2013, Brett O'Donnell http://cornernote.github.io +All rights reserved. + _____ _____ _____ _____ _____ _____ +| |___| __ | | |___| __ | | |___|_ _|___ +| --| . | -| | | | -_| -| | | | . | | | | -_| +|_____|___|__|__|_|___|___|__|__|_|___|___| |_| |___| + + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, this + list of conditions and the following disclaimer in the documentation and/or + other materials provided with the distribution. + +* Neither the name of the organization nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/mods/craft_guide/README.md b/mods/craft_guide/README.md new file mode 100644 index 0000000..e0a5b8c --- /dev/null +++ b/mods/craft_guide/README.md @@ -0,0 +1,31 @@ +# Craft Guide for Minetest + +Shows crafts for all loaded mods. + +## Features + +- Provides craftable items that can be placed. +- Placed items open like a chest, but instead of containing items, it contains a list of craftable items . +- Items can be dragged into the `Output` slot, and the craft recipe will be displayed. + + +## Resources + +- **[Documentation](http://cornernote.github.io/minetest-craft_guide)** +- **[GitHub Project](https://github.com/cornernote/minetest-craft_guide)** +- **[Minetest Forum](http://minetest.net/forum/viewtopic.php?id=2334)** + +## Support + +- Does this README need improvement? Go ahead and [suggest a change](https://github.com/cornernote/minetest-craft_guide/edit/master/README.md). +- Found a bug, or need help using this project? Check the [open issues](https://github.com/cornernote/minetest-craft_guide/issues) or [create an issue](https://github.com/cornernote/minetest-craft_guide/issues/new). + + +## About + +This module is open source, so it's distributed freely. If you find it useful then I ask not for your wealth, but simply to spare your time to consider the world we share by watching [Earthlings](http://earthlings.com/), a multi-award winning film available to watch online for free. A must-see for anyone who wishes to make the world a better place. + + +## License + +[BSD-3-Clause](https://raw.github.com/cornernote/minetest-craft_guide/master/LICENSE), Copyright © 2013-2014 [Brett O'Donnell](http://cornernote.github.io/) diff --git a/mods/craft_guide/craft_guide/api_craft_guide.lua b/mods/craft_guide/craft_guide/api_craft_guide.lua new file mode 100644 index 0000000..59f6b49 --- /dev/null +++ b/mods/craft_guide/craft_guide/api_craft_guide.lua @@ -0,0 +1,390 @@ +--[[ + +Craft Guide for Minetest + +Copyright (c) 2012 cornernote, Brett O'Donnell +Source Code: https://github.com/cornernote/minetest-craft_guide +License: BSD-3-Clause https://raw.github.com/cornernote/minetest-craft_guide/master/LICENSE + +CRAFT GUIDE API + +]]-- + + + +-- expose object to other modules +craft_guide = {} + + +-- define api variables +craft_guide.crafts = {} + + +-- log +craft_guide.log = function(message) + --if not craft_guide.DEBUG then return end + minetest.log("action", "[CraftGuide] "..message) +end + + +-- register_craft +craft_guide.register_craft = function(options) + if options.output == nil then + return + end + local itemstack = ItemStack(options.output) + if itemstack:is_empty() then + return + end + --craft_guide.log("registered craft for - "..itemstack:get_name()) + if craft_guide.crafts[itemstack:get_name()]==nil then + craft_guide.crafts[itemstack:get_name()] = {} + end + table.insert(craft_guide.crafts[itemstack:get_name()],options) +end + + +-- get_craft_guide_formspec +craft_guide.get_craft_guide_formspec = function(meta, search, page, alternate) + if search == nil then + search = meta:get_string("search") + end + if page == nil then + page = craft_guide.get_current_page(meta) + end + if alternate == nil then + alternate = craft_guide.get_current_alternate(meta) + end + local inv = meta:get_inventory() + local size = inv:get_size("main") + local start = (page-1) * (5*14) + 1 + local pages = math.floor((size-1) / (5*14) + 1) + local alternates = 0 + local stack = inv:get_stack("output",1) + local crafts = craft_guide.crafts[stack:get_name()] + if crafts ~= nil then + alternates = #crafts + end + local formspec = "size[14,10;]" + .."list[current_name;main;0,0;14,5;"..tostring(start).."]" + + .."label[0,5;--== Learn to Craft ==--]" + .."label[0,5.4;Drag any item to the Output box to see the]" + .."label[0,5.8;craft. Save your favorite items in Bookmarks.]" + + .."field[6,5.4;2,1;craft_guide_search_box;;"..tostring(search).."]" + .."button[7.5,5.1;1.2,1;craft_guide_search_button;Search]" + + .."label[9,5.2;page "..tostring(page).." of "..tostring(pages).."]" + .."button[11,5;1.5,1;craft_guide_prev;<<]" + .."button[12.5,5;1.5,1;craft_guide_next;>>]" + + .."label[0,6.5;Output]" + .."list[current_name;output;0,7;1,1;]" + + .."label[2,6.5;Inventory Craft]" + .."list[current_name;build;2,7;3,3;]" + + .."label[6,6.5;Cook]" + .."list[current_name;cook;6,7;1,1;]" + .."label[6,8.5;Fuel]" + .."list[current_name;fuel;6,9;1,1;]" + + .."label[8,6.5;Bookmarks]" + .."list[current_name;bookmark;8,7;6,3;]" + + .."label[12,6.1;Bin ->]" + .."list[current_name;bin;13,6;1,1;]" + if alternates > 1 then + formspec = formspec + .."label[0,8.6;recipe "..tostring(alternate).." of "..tostring(alternates).."]" + .."button[0,9;2,1;alternate;Alternate]" + end + return formspec +end + + +-- on_construct +craft_guide.on_construct = function(pos) + local meta = minetest.env:get_meta(pos) + local inv = meta:get_inventory() + inv:set_size("output", 1) + inv:set_size("build", 3*3) + inv:set_size("cook", 1) + inv:set_size("fuel", 1) + inv:set_size("bookmark", 6*3) + inv:set_size("bin", 1) + craft_guide.create_inventory(inv) + meta:set_string("formspec",craft_guide.get_craft_guide_formspec(meta)) +end + + +-- on_receive_fields +craft_guide.on_receive_fields = function(pos, formname, fields, player) + local meta = minetest.env:get_meta(pos); + + local inv = meta:get_inventory() + local size = inv:get_size("main",1) + local stack = inv:get_stack("output",1) + local crafts = craft_guide.crafts[stack:get_name()] + local alternate = craft_guide.get_current_alternate(meta) + local alternates = 0 + if crafts ~= nil then + alternates = #crafts + end + + local page = craft_guide.get_current_page(meta) + local pages = math.floor((size-1) / (5*14) + 1) + + local search + + -- search + search = fields.craft_guide_search_box + meta:set_string("search", search) + if fields.craft_guide_search_button then + page = 1 + end + + -- change page + if fields.craft_guide_prev then + page = page - 1 + end + if fields.craft_guide_next then + page = page + 1 + end + if page < 1 then + page = 1 + end + if page > pages then + page = pages + end + + -- get an alternate recipe + if fields.alternate then + alternate = alternate+1 + craft_guide.update_recipe(meta, player, stack, alternate) + end + if alternate > alternates then + alternate = 1 + end + + -- update the formspec + craft_guide.create_inventory(inv, search) + meta:set_string("formspec",craft_guide.get_craft_guide_formspec(meta, search, page, alternate)) +end + + +-- get_current_page +craft_guide.get_current_page = function(meta) + local formspec = meta:get_string("formspec") + local page = string.match(formspec, "label%[[%d.]+,[%d.]+;page (%d+) of [%d.]+%]") + page = tonumber(page) or 1 + return page +end + + +-- get_current_alternate +craft_guide.get_current_alternate = function(meta) + local formspec = meta:get_string("formspec") + local alternate = string.match(formspec, "label%[[%d.]+,[%d.]+;recipe (%d+) of [%d.]+%]") + alternate = tonumber(alternate) or 1 + return alternate +end + + +-- update_recipe +craft_guide.update_recipe = function(meta, player, stack, alternate) + local inv = meta:get_inventory() + for i=0,inv:get_size("build"),1 do + inv:set_stack("build", i, nil) + end + inv:set_stack("cook", 1, nil) + inv:set_stack("fuel", 1, nil) + + if stack==nil then return end + inv:set_stack("output", 1, stack:get_name()) + + alternate = tonumber(alternate) or 1 + craft_guide.log(player:get_player_name().." requests recipe "..alternate.." for "..stack:get_name()) + local crafts = craft_guide.crafts[stack:get_name()] + + if crafts == nil then + minetest.chat_send_player(player:get_player_name(), "no recipe available for "..stack:get_name()) + meta:set_string("formspec",craft_guide.get_craft_guide_formspec(meta)) + return + end + if alternate < 1 or alternate > #crafts then + alternate = 1 + end + local craft = crafts[alternate] + + -- show me the unknown items + craft_guide.log(dump(craft)) + --minetest.chat_send_player(player:get_player_name(), "recipe for "..stack:get_name()..": "..dump(craft)) + + local itemstack = ItemStack(craft.output) + inv:set_stack("output", 1, itemstack) + + -- cook + if craft.type == "cooking" then + inv:set_stack("cook", 1, craft.recipe) + meta:set_string("formspec",craft_guide.get_craft_guide_formspec(meta)) + return + end + -- fuel + if craft.type == "fuel" then + inv:set_stack("fuel", 1, craft.recipe) + meta:set_string("formspec",craft_guide.get_craft_guide_formspec(meta)) + return + end + -- build (shaped or shapeless) + if craft.recipe[1] then + if (type(craft.recipe[1]) == "string") then + inv:set_stack("build", 1, craft.recipe[1]) + else + if craft.recipe[1][1] then + inv:set_stack("build", 1, craft.recipe[1][1]) + end + if craft.recipe[1][2] then + inv:set_stack("build", 2, craft.recipe[1][2]) + end + if craft.recipe[1][3] then + inv:set_stack("build", 3, craft.recipe[1][3]) + end + end + end + if craft.recipe[2] then + if (type(craft.recipe[2]) == "string") then + inv:set_stack("build", 2, craft.recipe[2]) + else + if craft.recipe[2][1] then + inv:set_stack("build", 4, craft.recipe[2][1]) + end + if craft.recipe[2][2] then + inv:set_stack("build", 5, craft.recipe[2][2]) + end + if craft.recipe[2][3] then + inv:set_stack("build", 6, craft.recipe[2][3]) + end + end + end + if craft.recipe[3] then + if (type(craft.recipe[3]) == "string") then + inv:set_stack("build", 3, craft.recipe[3]) + else + if craft.recipe[3][1] then + inv:set_stack("build", 7, craft.recipe[3][1]) + end + if craft.recipe[3][2] then + inv:set_stack("build", 8, craft.recipe[3][2]) + end + if craft.recipe[3][3] then + inv:set_stack("build", 9, craft.recipe[3][3]) + end + end + end + if craft.recipe[4] then + if (type(craft.recipe[4]) == "string") then + inv:set_stack("build", 4, craft.recipe[4]) + end + end + if craft.recipe[5] then + if (type(craft.recipe[5]) == "string") then + inv:set_stack("build", 5, craft.recipe[5]) + end + end + if craft.recipe[6] then + if (type(craft.recipe[6]) == "string") then + inv:set_stack("build", 6, craft.recipe[6]) + end + end + if craft.recipe[7] then + if (type(craft.recipe[7]) == "string") then + inv:set_stack("build", 7, craft.recipe[7]) + end + end + if craft.recipe[8] then + if (type(craft.recipe[8]) == "string") then + inv:set_stack("build", 8, craft.recipe[8]) + end + end + if craft.recipe[9] then + if (type(craft.recipe[9]) == "string") then + inv:set_stack("build", 9, craft.recipe[9]) + end + end + meta:set_string("formspec",craft_guide.get_craft_guide_formspec(meta)) +end + + +-- create_inventory +craft_guide.create_inventory = function(inv, search) + local craft_guide_list = {} + for name,def in pairs(minetest.registered_items) do + -- local craft_recipe = minetest.get_craft_recipe(name); + -- if craft_recipe.items ~= nil then + local craft = craft_guide.crafts[name]; + if craft ~= nil then + if (not def.groups.not_in_craft_guide or def.groups.not_in_craft_guide == 0) + --and (not def.groups.not_in_creative_inventory or def.groups.not_in_creative_inventory == 0) + and def.description and def.description ~= "" then + if search then + if string.find(def.name, search) or string.find(def.description, search) then + table.insert(craft_guide_list, name) + end + else + table.insert(craft_guide_list, name) + end + end + end + end + + table.sort(craft_guide_list) + for i=0,inv:get_size("main"),1 do + inv:set_stack("main", i, nil) + end + inv:set_size("main", #craft_guide_list) + for _,itemstring in ipairs(craft_guide_list) do + inv:add_item("main", ItemStack(itemstring)) + end +end + + +-- allow_metadata_inventory_move +craft_guide.allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + local meta = minetest.env:get_meta(pos) + local inv = meta:get_inventory() + if to_list == "bin" and from_list == "output" then + inv:set_stack(from_list,from_index,nil) + craft_guide.update_recipe(meta, player, inv:get_stack(from_list, from_index)) + end + if to_list == "bin" and from_list == "bookmark" then + inv:set_stack(from_list,from_index,nil) + end + if to_list == "bookmark" then + inv:set_stack(to_list, to_index, inv:get_stack(from_list, from_index):get_name()) + if from_list == "output" then + inv:set_stack(from_list,from_index,nil) + end + end + if to_list == "output" or from_list == "output" then + craft_guide.update_recipe(meta, player, inv:get_stack(from_list, from_index)) + end + if from_list == "bookmarks" and to_list == "bookmarks" then + return count + end + return 0 +end + + +-- allow_metadata_inventory_put +craft_guide.allow_metadata_inventory_put = function(pos, listname, index, stack, player) + return 0 +end + + +-- allow_metadata_inventory_take +craft_guide.allow_metadata_inventory_take = function(pos, listname, index, stack, player) + return 0 +end + diff --git a/mods/craft_guide/craft_guide/depends.txt b/mods/craft_guide/craft_guide/depends.txt new file mode 100644 index 0000000..e69de29 diff --git a/mods/craft_guide/craft_guide/init.lua b/mods/craft_guide/craft_guide/init.lua new file mode 100644 index 0000000..b51a172 --- /dev/null +++ b/mods/craft_guide/craft_guide/init.lua @@ -0,0 +1,28 @@ +--[[ + +Craft Guide for Minetest + +Copyright (c) 2012 cornernote, Brett O'Donnell +Source Code: https://github.com/cornernote/minetest-craft_guide +License: BSD-3-Clause https://raw.github.com/cornernote/minetest-craft_guide/master/LICENSE + +MAIN LOADER + +]]-- + +-- load api +dofile(minetest.get_modpath("craft_guide").."/api_craft_guide.lua") + +-- override minetest.register_craft +local minetest_register_craft = minetest.register_craft +minetest.register_craft = function (options) + minetest_register_craft(options) + craft_guide.register_craft(options) +end + +-- register entities +dofile(minetest.get_modpath("craft_guide").."/register_node.lua") +dofile(minetest.get_modpath("craft_guide").."/register_craft.lua") + +-- log that we started +minetest.log("action", "[MOD]"..minetest.get_current_modname().." -- loaded from "..minetest.get_modpath(minetest.get_current_modname())) diff --git a/mods/craft_guide/craft_guide/register_craft.lua b/mods/craft_guide/craft_guide/register_craft.lua new file mode 100644 index 0000000..19c29c7 --- /dev/null +++ b/mods/craft_guide/craft_guide/register_craft.lua @@ -0,0 +1,41 @@ +--[[ + +Craft Guide for Minetest + +Copyright (c) 2012 cornernote, Brett O'Donnell +Source Code: https://github.com/cornernote/minetest-craft_guide +License: BSD-3-Clause https://raw.github.com/cornernote/minetest-craft_guide/master/LICENSE + +REGISTER CRAFTS + +]]-- + + +-- craft sign +minetest.register_craft({ + output = 'craft_guide:sign_wall', + recipe = { + {'default:stick', 'default:stick'}, + {'default:stick', 'default:stick'}, + {'default:stick', ''}, + } +}) + + +-- craft pc +minetest.register_craft({ + output = 'craft_guide:lcd_pc', + recipe = { + {'craft_guide:sign_wall'}, + {'default:glass'}, + {'stairs:slab_stone'}, + } +}) +minetest.register_craft({ + output = 'craft_guide:lcd_pc', + recipe = { + {'craft_guide:sign_wall'}, + {'default:glass'}, + {'stairsplus:slab_stone'}, + } +}) diff --git a/mods/craft_guide/craft_guide/register_node.lua b/mods/craft_guide/craft_guide/register_node.lua new file mode 100644 index 0000000..49d7079 --- /dev/null +++ b/mods/craft_guide/craft_guide/register_node.lua @@ -0,0 +1,74 @@ +--[[ + +Craft Guide for Minetest + +Copyright (c) 2012 cornernote, Brett O'Donnell +Source Code: https://github.com/cornernote/minetest-craft_guide +License: BSD-3-Clause https://raw.github.com/cornernote/minetest-craft_guide/master/LICENSE + +REGISTER NODES + +]]-- + + +-- craft sign +minetest.register_node("craft_guide:sign_wall", { + description = "Craft Sign", + drawtype = "signlike", + tiles = {"craft_guide_sign.png"}, + inventory_image = "craft_guide_sign.png", + paramtype = 'light', + paramtype2 = "wallmounted", + sunlight_propagates = true, + walkable = false, + groups = {choppy=2,dig_immediate=2}, + --sounds = default.node_sound_defaults(), + selection_box = { + type = "wallmounted", + }, + on_construct = craft_guide.on_construct, + on_receive_fields = craft_guide.on_receive_fields, + allow_metadata_inventory_move = craft_guide.allow_metadata_inventory_move, + allow_metadata_inventory_put = craft_guide.allow_metadata_inventory_put, + allow_metadata_inventory_take = craft_guide.allow_metadata_inventory_take, +}) + +-- craft pc +minetest.register_node("craft_guide:lcd_pc", { + description = "Craft PC", + drawtype = "nodebox", + tiles = { + "craft_guide_pc_grey.png", + "craft_guide_pc_grey.png", + "craft_guide_pc_grey.png", + "craft_guide_pc_grey.png", + "craft_guide_pc_black.png", + "craft_guide_pc_screen.png", + }, + paramtype = 'light', + paramtype2 = "facedir", + sunlight_propagates = true, + walkable = false, + selection_box = {type="regular"}, + groups = {choppy=2,dig_immediate=2}, + -- thanks cactuz_pl for the nodebox code! =) + node_box = { + type = "fixed", + fixed = { + {-1.0000000e-1,-0.45259861,2.5136044e-2, 0.10000000,-2.5986075e-3,-2.4863956e-2}, + {-0.40006064,-0.25615262,-0.13023723, -0.37006064,0.26767738,-0.16023723}, + {0.37054221,-0.25615274,-0.13023723, 0.40054221,0.26767750,-0.16023723}, + {-0.40000000,-0.30600000,-0.13023723, 0.40000000,-0.25600000,-0.16023723}, + {-0.40000000,0.26433021,-0.12945597, 0.40000000,0.29433021,-0.15945597}, + {-0.35000000,-0.25514168,-2.9045502e-2, 0.35000000,0.24485832,-7.9045502e-2}, + {-0.40000000,-0.30617002,-8.0237234e-2, 0.40000000,0.29382998,-0.13023723}, + {-0.25000000,-0.50000000,0.25000000, 0.25000000,-0.45000000,-0.25000000} + }, + }, + --sounds = default.node_sound_defaults(), + on_construct = craft_guide.on_construct, + on_receive_fields = craft_guide.on_receive_fields, + allow_metadata_inventory_move = craft_guide.allow_metadata_inventory_move, + allow_metadata_inventory_put = craft_guide.allow_metadata_inventory_put, + allow_metadata_inventory_take = craft_guide.allow_metadata_inventory_take, +}) diff --git a/mods/craft_guide/craft_guide/textures/craft_guide_pc_black.png b/mods/craft_guide/craft_guide/textures/craft_guide_pc_black.png new file mode 100644 index 0000000..8aa9f93 Binary files /dev/null and b/mods/craft_guide/craft_guide/textures/craft_guide_pc_black.png differ diff --git a/mods/craft_guide/craft_guide/textures/craft_guide_pc_grey.png b/mods/craft_guide/craft_guide/textures/craft_guide_pc_grey.png new file mode 100644 index 0000000..b74ccf3 Binary files /dev/null and b/mods/craft_guide/craft_guide/textures/craft_guide_pc_grey.png differ diff --git a/mods/craft_guide/craft_guide/textures/craft_guide_pc_screen.png b/mods/craft_guide/craft_guide/textures/craft_guide_pc_screen.png new file mode 100644 index 0000000..cb7e0b6 Binary files /dev/null and b/mods/craft_guide/craft_guide/textures/craft_guide_pc_screen.png differ diff --git a/mods/craft_guide/craft_guide/textures/craft_guide_sign.png b/mods/craft_guide/craft_guide/textures/craft_guide_sign.png new file mode 100644 index 0000000..402df09 Binary files /dev/null and b/mods/craft_guide/craft_guide/textures/craft_guide_sign.png differ diff --git a/mods/craft_guide/modpack.txt b/mods/craft_guide/modpack.txt new file mode 100644 index 0000000..e69de29 diff --git a/mods/mesecons/LICENSE.txt b/mods/mesecons/LICENSE.txt new file mode 100644 index 0000000..0d2fd18 --- /dev/null +++ b/mods/mesecons/LICENSE.txt @@ -0,0 +1,532 @@ +The LGPLv3 applies to all code in this project. +The CC-BY-SA-3.0 license applies to textures and any other content in this project which is not source code. + +================================================================= + +GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. + +================================================================= + +Creative Commons Legal Code + +Attribution-ShareAlike 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + +License + +THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE +COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY +COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS +AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + +BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE +TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY +BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS +CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND +CONDITIONS. + +1. Definitions + + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may be + recast, transformed, or adapted including in any form recognizably + derived from the original, except that a work that constitutes a + Collection will not be considered an Adaptation for the purpose of + this License. For the avoidance of doubt, where the Work is a musical + work, performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be considered an + Adaptation for the purpose of this License. + b. "Collection" means a collection of literary or artistic works, such as + encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works listed + in Section 1(f) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, in + which the Work is included in its entirety in unmodified form along + with one or more other contributions, each constituting separate and + independent works in themselves, which together are assembled into a + collective whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined below) for the purposes of this + License. + c. "Creative Commons Compatible License" means a license that is listed + at http://creativecommons.org/compatiblelicenses that has been + approved by Creative Commons as being essentially equivalent to this + License, including, at a minimum, because that license: (i) contains + terms that have the same purpose, meaning and effect as the License + Elements of this License; and, (ii) explicitly permits the relicensing + of adaptations of works made available under that license under this + License or a Creative Commons jurisdiction license with the same + License Elements as this License. + d. "Distribute" means to make available to the public the original and + copies of the Work or Adaptation, as appropriate, through sale or + other transfer of ownership. + e. "License Elements" means the following high-level license attributes + as selected by Licensor and indicated in the title of this License: + Attribution, ShareAlike. + f. "Licensor" means the individual, individuals, entity or entities that + offer(s) the Work under the terms of this License. + g. "Original Author" means, in the case of a literary or artistic work, + the individual, individuals, entity or entities who created the Work + or if no individual or entity can be identified, the publisher; and in + addition (i) in the case of a performance the actors, singers, + musicians, dancers, and other persons who act, sing, deliver, declaim, + play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer + being the person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of broadcasts, the + organization that transmits the broadcast. + h. "Work" means the literary and/or artistic work offered under the terms + of this License including without limitation any production in the + literary, scientific and artistic domain, whatever may be the mode or + form of its expression including digital form, such as a book, + pamphlet and other writing; a lecture, address, sermon or other work + of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which are + assimilated works expressed by a process analogous to cinematography; + a work of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of applied + art; an illustration, map, plan, sketch or three-dimensional work + relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the + extent it is protected as a copyrightable work; or a work performed by + a variety or circus performer to the extent it is not otherwise + considered a literary or artistic work. + i. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License with + respect to the Work, or who has received express permission from the + Licensor to exercise rights under this License despite a previous + violation. + j. "Publicly Perform" means to perform public recitations of the Work and + to communicate to the public those public recitations, by any means or + process, including by wire or wireless means or public digital + performances; to make available to the public Works in such a way that + members of the public may access these Works from a place and at a + place individually chosen by them; to perform the Work to the public + by any means or process and the communication to the public of the + performances of the Work, including by public digital performance; to + broadcast and rebroadcast the Work by any means including signs, + sounds or images. + k. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage of a + protected performance or phonogram in digital form or other electronic + medium. + +2. Fair Dealing Rights. Nothing in this License is intended to reduce, +limit, or restrict any uses free from copyright or rights arising from +limitations or exceptions that are provided for in connection with the +copyright protection under copyright law or other applicable laws. + +3. License Grant. Subject to the terms and conditions of this License, +Licensor hereby grants You a worldwide, royalty-free, non-exclusive, +perpetual (for the duration of the applicable copyright) license to +exercise the rights in the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; + b. to create and Reproduce Adaptations provided that any such Adaptation, + including any translation in any medium, takes reasonable steps to + clearly label, demarcate or otherwise identify that changes were made + to the original Work. For example, a translation could be marked "The + original work was translated from English to Spanish," or a + modification could indicate "The original work has been modified."; + c. to Distribute and Publicly Perform the Work including as incorporated + in Collections; and, + d. to Distribute and Publicly Perform Adaptations. + e. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor + reserves the exclusive right to collect such royalties for any + exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor waives the + exclusive right to collect such royalties for any exercise by You + of the rights granted under this License; and, + iii. Voluntary License Schemes. The Licensor waives the right to + collect royalties, whether individually or, in the event that the + Licensor is a member of a collecting society that administers + voluntary licensing schemes, via that society, from any exercise + by You of the rights granted under this License. + +The above rights may be exercised in all media and formats whether now +known or hereafter devised. The above rights include the right to make +such modifications as are technically necessary to exercise the rights in +other media and formats. Subject to Section 8(f), all rights not expressly +granted by Licensor are hereby reserved. + +4. Restrictions. The license granted in Section 3 above is expressly made +subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms + of this License. You must include a copy of, or the Uniform Resource + Identifier (URI) for, this License with every copy of the Work You + Distribute or Publicly Perform. You may not offer or impose any terms + on the Work that restrict the terms of this License or the ability of + the recipient of the Work to exercise the rights granted to that + recipient under the terms of the License. You may not sublicense the + Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of the + Work from You to exercise the rights granted to that recipient under + the terms of the License. This Section 4(a) applies to the Work as + incorporated in a Collection, but this does not require the Collection + apart from the Work itself to be made subject to the terms of this + License. If You create a Collection, upon notice from any Licensor You + must, to the extent practicable, remove from the Collection any credit + as required by Section 4(c), as requested. If You create an + Adaptation, upon notice from any Licensor You must, to the extent + practicable, remove from the Adaptation any credit as required by + Section 4(c), as requested. + b. You may Distribute or Publicly Perform an Adaptation only under the + terms of: (i) this License; (ii) a later version of this License with + the same License Elements as this License; (iii) a Creative Commons + jurisdiction license (either this or a later license version) that + contains the same License Elements as this License (e.g., + Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible + License. If you license the Adaptation under one of the licenses + mentioned in (iv), you must comply with the terms of that license. If + you license the Adaptation under the terms of any of the licenses + mentioned in (i), (ii) or (iii) (the "Applicable License"), you must + comply with the terms of the Applicable License generally and the + following provisions: (I) You must include a copy of, or the URI for, + the Applicable License with every copy of each Adaptation You + Distribute or Publicly Perform; (II) You may not offer or impose any + terms on the Adaptation that restrict the terms of the Applicable + License or the ability of the recipient of the Adaptation to exercise + the rights granted to that recipient under the terms of the Applicable + License; (III) You must keep intact all notices that refer to the + Applicable License and to the disclaimer of warranties with every copy + of the Work as included in the Adaptation You Distribute or Publicly + Perform; (IV) when You Distribute or Publicly Perform the Adaptation, + You may not impose any effective technological measures on the + Adaptation that restrict the ability of a recipient of the Adaptation + from You to exercise the rights granted to that recipient under the + terms of the Applicable License. This Section 4(b) applies to the + Adaptation as incorporated in a Collection, but this does not require + the Collection apart from the Adaptation itself to be made subject to + the terms of the Applicable License. + c. If You Distribute, or Publicly Perform the Work or any Adaptations or + Collections, You must, unless a request has been made pursuant to + Section 4(a), keep intact all copyright notices for the Work and + provide, reasonable to the medium or means You are utilizing: (i) the + name of the Original Author (or pseudonym, if applicable) if supplied, + and/or if the Original Author and/or Licensor designate another party + or parties (e.g., a sponsor institute, publishing entity, journal) for + attribution ("Attribution Parties") in Licensor's copyright notice, + terms of service or by other reasonable means, the name of such party + or parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not + refer to the copyright notice or licensing information for the Work; + and (iv) , consistent with Ssection 3(b), in the case of an + Adaptation, a credit identifying the use of the Work in the Adaptation + (e.g., "French translation of the Work by Original Author," or + "Screenplay based on original Work by Original Author"). The credit + required by this Section 4(c) may be implemented in any reasonable + manner; provided, however, that in the case of a Adaptation or + Collection, at a minimum such credit will appear, if a credit for all + contributing authors of the Adaptation or Collection appears, then as + part of these credits and in a manner at least as prominent as the + credits for the other contributing authors. For the avoidance of + doubt, You may only use the credit required by this Section for the + purpose of attribution in the manner set out above and, by exercising + Your rights under this License, You may not implicitly or explicitly + assert or imply any connection with, sponsorship or endorsement by the + Original Author, Licensor and/or Attribution Parties, as appropriate, + of You or Your use of the Work, without the separate, express prior + written permission of the Original Author, Licensor and/or Attribution + Parties. + d. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute or + Publicly Perform the Work either by itself or as part of any + Adaptations or Collections, You must not distort, mutilate, modify or + take other derogatory action in relation to the Work which would be + prejudicial to the Original Author's honor or reputation. Licensor + agrees that in those jurisdictions (e.g. Japan), in which any exercise + of the right granted in Section 3(b) of this License (the right to + make Adaptations) would be deemed to be a distortion, mutilation, + modification or other derogatory action prejudicial to the Original + Author's honor and reputation, the Licensor will waive or not assert, + as appropriate, this Section, to the fullest extent permitted by the + applicable national law, to enable You to reasonably exercise Your + right under Section 3(b) of this License (right to make Adaptations) + but not otherwise. + +5. Representations, Warranties and Disclaimer + +UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR +OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY +KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, +INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, +FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF +LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, +WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION +OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + +6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE +LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR +ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES +ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS +BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. Termination + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Adaptations or Collections + from You under this License, however, will not have their licenses + terminated provided such individuals or entities remain in full + compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will + survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here is + perpetual (for the duration of the applicable copyright in the Work). + Notwithstanding the above, Licensor reserves the right to release the + Work under different license terms or to stop distributing the Work at + any time; provided, however that any such election will not serve to + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + +8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, + the Licensor offers to the recipient a license to the Work on the same + terms and conditions as the license granted to You under this License. + b. Each time You Distribute or Publicly Perform an Adaptation, Licensor + offers to the recipient a license to the original Work on the same + terms and conditions as the license granted to You under this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further action + by the parties to this agreement, such provision shall be reformed to + the minimum extent necessary to make such provision valid and + enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in writing + and signed by the party to be charged with such waiver or consent. + e. This License constitutes the entire agreement between the parties with + respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and You. + f. The rights granted under, and the subject matter referenced, in this + License were drafted utilizing the terminology of the Berne Convention + for the Protection of Literary and Artistic Works (as amended on + September 28, 1979), the Rome Convention of 1961, the WIPO Copyright + Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 + and the Universal Copyright Convention (as revised on July 24, 1971). + These rights and subject matter take effect in the relevant + jurisdiction in which the License terms are sought to be enforced + according to the corresponding provisions of the implementation of + those treaty provisions in the applicable national law. If the + standard suite of rights granted under applicable copyright law + includes additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights under + applicable law. + + +Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior + written consent of Creative Commons. Any permitted use will be in + compliance with Creative Commons' then-current trademark usage + guidelines, as may be published on its website or otherwise made + available upon request from time to time. For the avoidance of doubt, + this trademark restriction does not form part of the License. + + Creative Commons may be contacted at http://creativecommons.org/. diff --git a/mods/mesecons/README.md b/mods/mesecons/README.md new file mode 100644 index 0000000..5de72c7 --- /dev/null +++ b/mods/mesecons/README.md @@ -0,0 +1,78 @@ + ######################################################################## + ## __ __ _____ _____ _____ _____ _____ _ _ _____ ## + ## | \ / | | ___| | ___| | ___| | ___| | _ | | \ | | | ___| ## + ## | \/ | | |___ | |___ | |___ | | | | | | | \| | | |___ ## + ## | |\__/| | | ___| |___ | | ___| | | | | | | | | |___ | ## + ## | | | | | |___ ___| | | |___ | |___ | |_| | | |\ | ___| | ## + ## |_| |_| |_____| |_____| |_____| |_____| |_____| |_| \_| |_____| ## + ## ## + ######################################################################## + +MESECONS by Jeija and contributors + +Mezzee-what? +------------ +[Mesecons](http://mesecons.net/)! They're yellow, they're conductive, and they'll add a whole new dimension to Minetest's gameplay. + +Mesecons is a mod for [Minetest](http://minetest.net/) that implements a ton of items related to digital circuitry, such as wires, buttons, lights, and even programmable controllers. Among other things, there are also pistons, solar panels, pressure plates, and note blocks. + +Mesecons has a similar goal to Redstone in Minecraft, but works in its own way, with different rules and mechanics. + +OK, I want in. +-------------- +Go get it! + +[DOWNLOADS PAGE](http://mesecons.net/downloads.php) + +Now go ahead and install it like any other Minetest mod. Don't know how? Check out [the wonderful page about it](http://wiki.minetest.com/wiki/Mods) over at the Minetest Wiki. For your convenience, here's a quick summary: + +1. If Mesecons is still in a ZIP file, extract the folder inside to somewhere on the computer. +2. Make sure that when you open the folder, you can directly find `README.md` in the listing. If you just see another folder, move that folder up one level and delete the old one. +3. Open up the Minetest mods folder - usually `/mods/`. If you see the `minetest` or folder inside of that, that is your mod folder instead. +4. Copy the Mesecons folder into the mods folder. + +Don't like some parts of Mesecons? Open up the Mesecons folder and delete the subfolder containing the mod you don't want. If you didn't want movestones, for example, all you have to do is delete the `mesecons_movestones` folder and they will no longer be available. + +There are no dependencies - it will work right after installing! + +How do I use this thing? +------------------------ +How about a [quick overview video](https://www.youtube.com/watch?v=6kmeQj6iW5k)? + +Or maybe a [comprehensive reference](http://mesecons.net/items.php) is your style? + +An overview for the very newest of new beginners? How does [this one](http://uberi.mesecons.net/projects/MeseconsBasics/index.html) look? + +Want to get more into building? Why not check out the [Mesecons Laboratory](http://uberi.mesecons.net/), a website dedicated to advanced Mesecons builders? + +Want to contribute to Mesecons itself? Check out the [source code](https://github.com/Jeija/minetest-mod-mesecons)! + +Who wrote it anyways? +--------------------- +These awesome people made Mesecons possible! + +| Contributor | Contribution | +| --------------- | -------------------------------- | +| Jat15 | Various tweaks. | +| Jeija | **Main developer! Everything.** | +| Jordach | Noteblock sounds. | +| khonkhortistan | Code, recipes, textures. | +| Kotolegokot | Nodeboxes for items. | +| minerd247 | Textures. | +| Nore/Novatux | Code. | +| RealBadAngel | Fixes, improvements. | +| sfan5 | Code, recipes, textures. | +| suzenako | Piston sounds. | +| Uberi/Temperest | Code, textures, documentation. | +| VanessaE | Code, recipes, textures, design. | +| Whiskers75 | Logic gates implementation. | + +There are also a whole bunch of other people helping with everything from code to testing and feedback. Mesecons would also not be possible without their help! + +Alright, how can I use it? +-------------------------- +All textures in this project are licensed under the CC-BY-SA 3.0 (Creative Commons Attribution-ShareAlike 3.0 Generic). That means you can distribute and remix them as much as you want to, under the condition that you give credit to the authors and the project, and that if you remix and release them, they must be under the same or similar license to this one. + +All code in this project is licensed under the LGPL version 3 or later. That means you have unlimited freedom to distribute and modify the work however you see fit, provided that if you decide to distribute it or any modified versions of it, you must also use the same license. The LGPL also grants the additional freedom to write extensions for the software and distribute them without the extensions being subject to the terms of the LGPL, although the software itself retains its license. + +No warranty is provided, express or implied, for any part of the project. diff --git a/mods/mesecons/mesecons/VERSION b/mods/mesecons/mesecons/VERSION new file mode 100644 index 0000000..75b9e03 --- /dev/null +++ b/mods/mesecons/mesecons/VERSION @@ -0,0 +1 @@ +0.41 DEV diff --git a/mods/mesecons/mesecons/actionqueue.lua b/mods/mesecons/mesecons/actionqueue.lua new file mode 100644 index 0000000..495ff4b --- /dev/null +++ b/mods/mesecons/mesecons/actionqueue.lua @@ -0,0 +1,115 @@ +mesecon.queue.actions={} -- contains all ActionQueue actions + +function mesecon.queue:add_function(name, func) + mesecon.queue.funcs[name] = func +end + +-- If add_action with twice the same overwritecheck and same position are called, the first one is overwritten +-- use overwritecheck nil to never overwrite, but just add the event to the queue +-- priority specifies the order actions are executed within one globalstep, highest first +-- should be between 0 and 1 +function mesecon.queue:add_action(pos, func, params, time, overwritecheck, priority) + -- Create Action Table: + time = time or 0 -- time <= 0 --> execute, time > 0 --> wait time until execution + priority = priority or 1 + local action = { pos=mesecon:tablecopy(pos), + func=func, + params=mesecon:tablecopy(params), + time=time, + owcheck=(overwritecheck and mesecon:tablecopy(overwritecheck)) or nil, + priority=priority} + + local toremove = nil + -- Otherwise, add the action to the queue + if overwritecheck then -- check if old action has to be overwritten / removed: + for i, ac in ipairs(mesecon.queue.actions) do + if(mesecon:cmpPos(pos, ac.pos) + and mesecon:cmpAny(overwritecheck, ac.owcheck)) then + toremove = i + break + end + end + end + + if (toremove ~= nil) then + table.remove(mesecon.queue.actions, toremove) + end + + table.insert(mesecon.queue.actions, action) +end + +-- execute the stored functions on a globalstep +-- if however, the pos of a function is not loaded (get_node_or_nil == nil), do NOT execute the function +-- this makes sure that resuming mesecons circuits when restarting minetest works fine +-- However, even that does not work in some cases, that's why we delay the time the globalsteps +-- start to be execute by 5 seconds +local get_highest_priority = function (actions) + local highestp = -1; + local highesti + for i, ac in ipairs(actions) do + if ac.priority > highestp then + highestp = ac.priority + highesti = i + end + end + + return highesti +end + +local m_time = 0 +minetest.register_globalstep(function (dtime) + m_time = m_time + dtime + if (m_time < MESECONS_RESUMETIME) then return end -- don't even try if server has not been running for XY seconds + local actions = mesecon:tablecopy(mesecon.queue.actions) + local actions_now={} + + mesecon.queue.actions = {} + + -- sort actions into two categories: + -- those toexecute now (actions_now) and those to execute later (mesecon.queue.actions) + for i, ac in ipairs(actions) do + if ac.time > 0 then + ac.time = ac.time - dtime -- executed later + table.insert(mesecon.queue.actions, ac) + else + table.insert(actions_now, ac) + end + end + + while(#actions_now > 0) do -- execute highest priorities first, until all are executed + local hp = get_highest_priority(actions_now) + mesecon.queue:execute(actions_now[hp]) + table.remove(actions_now, hp) + end +end) + +function mesecon.queue:execute(action) + mesecon.queue.funcs[action.func](action.pos, unpack(action.params)) +end + + +-- Store and read the ActionQueue to / from a file +-- so that upcoming actions are remembered when the game +-- is restarted + +local wpath = minetest.get_worldpath() +local function file2table(filename) + local f = io.open(filename, "r") + if f==nil then return {} end + local t = f:read("*all") + f:close() + if t=="" or t==nil then return {} end + return minetest.deserialize(t) +end + +local function table2file(filename, table) + local f = io.open(filename, "w") + f:write(minetest.serialize(table)) + f:close() +end + +mesecon.queue.actions = file2table(wpath.."/mesecon_actionqueue") + +minetest.register_on_shutdown(function() + mesecon.queue.actions = table2file(wpath.."/mesecon_actionqueue", mesecon.queue.actions) +end) diff --git a/mods/mesecons/mesecons/depends.txt b/mods/mesecons/mesecons/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/mods/mesecons/mesecons/depends.txt @@ -0,0 +1 @@ +default diff --git a/mods/mesecons/mesecons/init.lua b/mods/mesecons/mesecons/init.lua new file mode 100644 index 0000000..3132955 --- /dev/null +++ b/mods/mesecons/mesecons/init.lua @@ -0,0 +1,141 @@ +-- |\ /| ____ ____ ____ _____ ____ _____ +-- | \ / | | | | | | | |\ | | +-- | \/ | |___ ____ |___ | | | | \ | |____ +-- | | | | | | | | | \ | | +-- | | |___ ____| |___ |____ |____| | \| ____| +-- by Jeija, Uberi (Temperest), sfan5, VanessaE +-- +-- +-- +-- This mod adds mesecons[=minecraft redstone] and different receptors/effectors to minetest. +-- See the documentation on the forum for additional information, especially about crafting +-- +-- +-- For developer documentation see the Developers' section on mesecons.TK +-- +-- +-- +--Quick draft for the mesecons array in the node's definition +--mesecons = +--{ +-- receptor = +-- { +-- state = mesecon.state.on/off +-- rules = rules/get_rules +-- }, +-- effector = +-- { +-- action_on = function +-- action_off = function +-- action_change = function +-- rules = rules/get_rules +-- }, +-- conductor = +-- { +-- state = mesecon.state.on/off +-- offstate = opposite state (for state = on only) +-- onstate = opposite state (for state = off only) +-- rules = rules/get_rules +-- } +--} + +-- PUBLIC VARIABLES +mesecon={} -- contains all functions and all global variables +mesecon.queue={} -- contains the ActionQueue +mesecon.queue.funcs={} -- contains all ActionQueue functions + +-- Settings +dofile(minetest.get_modpath("mesecons").."/settings.lua") + +-- Presets (eg default rules) +dofile(minetest.get_modpath("mesecons").."/presets.lua"); + + +-- Utilities like comparing positions, +-- adding positions and rules, +-- mostly things that make the source look cleaner +dofile(minetest.get_modpath("mesecons").."/util.lua"); + +-- The ActionQueue +-- Saves all the actions that have to be execute in the future +dofile(minetest.get_modpath("mesecons").."/actionqueue.lua"); + +-- Internal stuff +-- This is the most important file +-- it handles signal transmission and basically everything else +-- It is also responsible for managing the nodedef things, +-- like calling action_on/off/change +dofile(minetest.get_modpath("mesecons").."/internal.lua"); + +-- Deprecated stuff +-- To be removed in future releases +-- Currently there is nothing here +dofile(minetest.get_modpath("mesecons").."/legacy.lua"); + +-- API +-- these are the only functions you need to remember + +mesecon.queue:add_function("receptor_on", function (pos, rules) + rules = rules or mesecon.rules.default + + -- if area (any of the rule targets) is not loaded, keep trying and call this again later + for _, rule in ipairs(mesecon:flattenrules(rules)) do + local np = mesecon:addPosRule(pos, rule) + -- if area is not loaded, keep trying + if minetest.get_node_or_nil(np) == nil then + mesecon.queue:add_action(pos, "receptor_on", {rules}, nil, rules) + return + end + end + + -- execute action + for _, rule in ipairs(mesecon:flattenrules(rules)) do + local np = mesecon:addPosRule(pos, rule) + local rulenames = mesecon:rules_link_rule_all(pos, rule) + for _, rulename in ipairs(rulenames) do + mesecon:turnon(np, rulename) + end + end +end) + +function mesecon:receptor_on(pos, rules) + mesecon.queue:add_action(pos, "receptor_on", {rules}, nil, rules) +end + +mesecon.queue:add_function("receptor_off", function (pos, rules) + rules = rules or mesecon.rules.default + + -- if area (any of the rule targets) is not loaded, keep trying and call this again later + for _, rule in ipairs(mesecon:flattenrules(rules)) do + local np = mesecon:addPosRule(pos, rule) + if minetest.get_node_or_nil(np) == nil then + mesecon.queue:add_action(pos, "receptor_off", {rules}, nil, rules) + return + end + end + + for _, rule in ipairs(mesecon:flattenrules(rules)) do + local np = mesecon:addPosRule(pos, rule) + local rulenames = mesecon:rules_link_rule_all(pos, rule) + for _, rulename in ipairs(rulenames) do + if not mesecon:connected_to_receptor(np, mesecon:invertRule(rule)) then + mesecon:turnoff(np, rulename) + else + mesecon:changesignal(np, minetest.get_node(np), rulename, mesecon.state.off, 2) + end + end + end +end) + +function mesecon:receptor_off(pos, rules) + mesecon.queue:add_action(pos, "receptor_off", {rules}, nil, rules) +end + + +print("[OK] Mesecons") + +--The actual wires +dofile(minetest.get_modpath("mesecons").."/wires.lua"); + +--Services like turnoff receptor on dignode and so on +dofile(minetest.get_modpath("mesecons").."/services.lua"); diff --git a/mods/mesecons/mesecons/internal.lua b/mods/mesecons/mesecons/internal.lua new file mode 100644 index 0000000..faa74e4 --- /dev/null +++ b/mods/mesecons/mesecons/internal.lua @@ -0,0 +1,708 @@ +-- Internal.lua - The core of mesecons +-- +-- For more practical developer resources see mesecons.tk +-- +-- Function overview +-- mesecon:get_effector(nodename) --> Returns the mesecons.effector -specifictation in the nodedef by the nodename +-- mesecon:get_receptor(nodename) --> Returns the mesecons.receptor -specifictation in the nodedef by the nodename +-- mesecon:get_conductor(nodename) --> Returns the mesecons.conductor-specifictation in the nodedef by the nodename +-- mesecon:get_any_inputrules (node) --> Returns the rules of a node if it is a conductor or an effector +-- mesecon:get_any_outputrules (node) --> Returns the rules of a node if it is a conductor or a receptor + +-- RECEPTORS +-- mesecon:is_receptor(nodename) --> Returns true if nodename is a receptor +-- mesecon:is_receptor_on(nodename) --> Returns true if nodename is an receptor with state = mesecon.state.on +-- mesecon:is_receptor_off(nodename) --> Returns true if nodename is an receptor with state = mesecon.state.off +-- mesecon:receptor_get_rules(node) --> Returns the rules of the receptor (mesecon.rules.default if none specified) + +-- EFFECTORS +-- mesecon:is_effector(nodename) --> Returns true if nodename is an effector +-- mesecon:is_effector_on(nodename) --> Returns true if nodename is an effector with nodedef.mesecons.effector.action_off +-- mesecon:is_effector_off(nodename) --> Returns true if nodename is an effector with nodedef.mesecons.effector.action_on +-- mesecon:effector_get_rules(node) --> Returns the input rules of the effector (mesecon.rules.default if none specified) + +-- SIGNALS +-- mesecon:activate(pos, node, recdepth) --> Activates the effector node at the specific pos (calls nodedef.mesecons.effector.action_on), higher recdepths are executed later +-- mesecon:deactivate(pos, node, recdepth) --> Deactivates the effector node at the specific pos (calls nodedef.mesecons.effector.action_off), " +-- mesecon:changesignal(pos, node, rulename, newstate) --> Changes the effector node at the specific pos (calls nodedef.mesecons.effector.action_change), " + +-- RULES +-- mesecon:add_rules(name, rules) | deprecated? --> Saves rules table by name +-- mesecon:get_rules(name, rules) | deprecated? --> Loads rules table with name + +-- CONDUCTORS +-- mesecon:is_conductor(nodename) --> Returns true if nodename is a conductor +-- mesecon:is_conductor_on(node) --> Returns true if node is a conductor with state = mesecon.state.on +-- mesecon:is_conductor_off(node) --> Returns true if node is a conductor with state = mesecon.state.off +-- mesecon:get_conductor_on(node_off) --> Returns the onstate nodename of the conductor +-- mesecon:get_conductor_off(node_on) --> Returns the offstate nodename of the conductor +-- mesecon:conductor_get_rules(node) --> Returns the input+output rules of a conductor (mesecon.rules.default if none specified) + +-- HIGH-LEVEL Internals +-- mesecon:is_power_on(pos) --> Returns true if pos emits power in any way +-- mesecon:is_power_off(pos) --> Returns true if pos does not emit power in any way +-- mesecon:turnon(pos, rulename) --> Returns true whatever there is at pos. Calls itself for connected nodes (if pos is a conductor) --> recursive, the rulename is the name of the input rule that caused calling turnon; Uses third parameter recdepth internally to determine how far away the current node is from the initial pos as it uses recursion +-- mesecon:turnoff(pos, rulename) --> Turns off whatever there is at pos. Calls itself for connected nodes (if pos is a conductor) --> recursive, the rulename is the name of the input rule that caused calling turnoff; Uses third parameter recdepth internally to determine how far away the current node is from the initial pos as it uses recursion +-- mesecon:connected_to_receptor(pos) --> Returns true if pos is connected to a receptor directly or via conductors; calls itself if pos is a conductor --> recursive +-- mesecon:rules_link(output, input, dug_outputrules) --> Returns true if outputposition + outputrules = inputposition and inputposition + inputrules = outputposition (if the two positions connect) +-- mesecon:rules_link_anydir(outp., inp., d_outpr.) --> Same as rules mesecon:rules_link but also returns true if output and input are swapped +-- mesecon:is_powered(pos) --> Returns true if pos is powered by a receptor or a conductor + +-- RULES ROTATION helpsers +-- mesecon:rotate_rules_right(rules) +-- mesecon:rotate_rules_left(rules) +-- mesecon:rotate_rules_up(rules) +-- mesecon:rotate_rules_down(rules) +-- These functions return rules that have been rotated in the specific direction + +-- General +function mesecon:get_effector(nodename) + if minetest.registered_nodes[nodename] + and minetest.registered_nodes[nodename].mesecons + and minetest.registered_nodes[nodename].mesecons.effector then + return minetest.registered_nodes[nodename].mesecons.effector + end +end + +function mesecon:get_receptor(nodename) + if minetest.registered_nodes[nodename] + and minetest.registered_nodes[nodename].mesecons + and minetest.registered_nodes[nodename].mesecons.receptor then + return minetest.registered_nodes[nodename].mesecons.receptor + end +end + +function mesecon:get_conductor(nodename) + if minetest.registered_nodes[nodename] + and minetest.registered_nodes[nodename].mesecons + and minetest.registered_nodes[nodename].mesecons.conductor then + return minetest.registered_nodes[nodename].mesecons.conductor + end +end + +function mesecon:get_any_outputrules (node) + if mesecon:is_conductor(node.name) then + return mesecon:conductor_get_rules(node) + elseif mesecon:is_receptor(node.name) then + return mesecon:receptor_get_rules(node) + end + return false +end + +function mesecon:get_any_inputrules (node) + if mesecon:is_conductor(node.name) then + return mesecon:conductor_get_rules(node) + elseif mesecon:is_effector(node.name) then + return mesecon:effector_get_rules(node) + end + return false +end + +-- Receptors +-- Nodes that can power mesecons +function mesecon:is_receptor_on(nodename) + local receptor = mesecon:get_receptor(nodename) + if receptor and receptor.state == mesecon.state.on then + return true + end + return false +end + +function mesecon:is_receptor_off(nodename) + local receptor = mesecon:get_receptor(nodename) + if receptor and receptor.state == mesecon.state.off then + return true + end + return false +end + +function mesecon:is_receptor(nodename) + local receptor = mesecon:get_receptor(nodename) + if receptor then + return true + end + return false +end + +function mesecon:receptor_get_rules(node) + local receptor = mesecon:get_receptor(node.name) + if receptor then + local rules = receptor.rules + if type(rules) == 'function' then + return rules(node) + elseif rules then + return rules + end + end + + return mesecon.rules.default +end + +-- Effectors +-- Nodes that can be powered by mesecons +function mesecon:is_effector_on(nodename) + local effector = mesecon:get_effector(nodename) + if effector and effector.action_off then + return true + end + return false +end + +function mesecon:is_effector_off(nodename) + local effector = mesecon:get_effector(nodename) + if effector and effector.action_on then + return true + end + return false +end + +function mesecon:is_effector(nodename) + local effector = mesecon:get_effector(nodename) + if effector then + return true + end + return false +end + +function mesecon:effector_get_rules(node) + local effector = mesecon:get_effector(node.name) + if effector then + local rules = effector.rules + if type(rules) == 'function' then + return rules(node) + elseif rules then + return rules + end + end + return mesecon.rules.default +end + +-- ####################### +-- # Signals (effectors) # +-- ####################### + +-- Activation: +mesecon.queue:add_function("activate", function (pos, rulename) + local node = minetest.get_node(pos) + local effector = mesecon:get_effector(node.name) + + if effector and effector.action_on then + effector.action_on(pos, node, rulename) + end +end) + +function mesecon:activate(pos, node, rulename, recdepth) + if rulename == nil then + for _,rule in ipairs(mesecon:effector_get_rules(node)) do + mesecon:activate(pos, node, rule, recdepth + 1) + end + return + end + mesecon.queue:add_action(pos, "activate", {rulename}, nil, rulename, 1 / recdepth) +end + + +-- Deactivation +mesecon.queue:add_function("deactivate", function (pos, rulename) + local node = minetest.get_node(pos) + local effector = mesecon:get_effector(node.name) + + if effector and effector.action_off then + effector.action_off(pos, node, rulename) + end +end) + +function mesecon:deactivate(pos, node, rulename, recdepth) + if rulename == nil then + for _,rule in ipairs(mesecon:effector_get_rules(node)) do + mesecon:deactivate(pos, node, rule, recdepth + 1) + end + return + end + mesecon.queue:add_action(pos, "deactivate", {rulename}, nil, rulename, 1 / recdepth) +end + + +-- Change +mesecon.queue:add_function("change", function (pos, rulename, changetype) + node = minetest.get_node(pos) + effector = mesecon:get_effector(node.name) + + if effector and effector.action_change then + effector.action_change(pos, node, rulename, changetype) + end +end) + +function mesecon:changesignal(pos, node, rulename, newstate, recdepth) + if rulename == nil then + for _,rule in ipairs(mesecon:effector_get_rules(node)) do + mesecon:changesignal(pos, node, rule, newstate, recdepth + 1) + end + return + end + + mesecon.queue:add_action(pos, "change", {rulename, newstate}, nil, rulename, 1 / recdepth) +end + +-- ######### +-- # Rules # "Database" for rulenames +-- ######### + +function mesecon:add_rules(name, rules) + mesecon.rules[name] = rules +end + +function mesecon:get_rules(name) + return mesecon.rules[name] +end + +-- Conductors + +function mesecon:is_conductor_on(node, rulename) + local conductor = mesecon:get_conductor(node.name) + if conductor then + if conductor.state then + return conductor.state == mesecon.state.on + end + if conductor.states then + if not rulename then + return mesecon:getstate(node.name, conductor.states) ~= 1 + end + local bit = mesecon:rule2bit(rulename, mesecon:conductor_get_rules(node)) + local binstate = mesecon:getbinstate(node.name, conductor.states) + return mesecon:get_bit(binstate, bit) + end + end + return false +end + +function mesecon:is_conductor_off(node, rulename) + local conductor = mesecon:get_conductor(node.name) + if conductor then + if conductor.state then + return conductor.state == mesecon.state.off + end + if conductor.states then + if not rulename then + return mesecon:getstate(node.name, conductor.states) == 1 + end + local bit = mesecon:rule2bit(rulename, mesecon:conductor_get_rules(node)) + local binstate = mesecon:getbinstate(node.name, conductor.states) + return not mesecon:get_bit(binstate, bit) + end + end + return false +end + +function mesecon:is_conductor(nodename) + local conductor = mesecon:get_conductor(nodename) + if conductor then + return true + end + return false +end + +function mesecon:get_conductor_on(node_off, rulename) + local conductor = mesecon:get_conductor(node_off.name) + if conductor then + if conductor.onstate then + return conductor.onstate + end + if conductor.states then + local bit = mesecon:rule2bit(rulename, mesecon:conductor_get_rules(node_off)) + local binstate = mesecon:getbinstate(node_off.name, conductor.states) + binstate = mesecon:set_bit(binstate, bit, "1") + return conductor.states[tonumber(binstate,2)+1] + end + end + return offstate +end + +function mesecon:get_conductor_off(node_on, rulename) + local conductor = mesecon:get_conductor(node_on.name) + if conductor then + if conductor.offstate then + return conductor.offstate + end + if conductor.states then + local bit = mesecon:rule2bit(rulename, mesecon:conductor_get_rules(node_on)) + local binstate = mesecon:getbinstate(node_on.name, conductor.states) + binstate = mesecon:set_bit(binstate, bit, "0") + return conductor.states[tonumber(binstate,2)+1] + end + end + return onstate +end + +function mesecon:conductor_get_rules(node) + local conductor = mesecon:get_conductor(node.name) + if conductor then + local rules = conductor.rules + if type(rules) == 'function' then + return rules(node) + elseif rules then + return rules + end + end + return mesecon.rules.default +end + +-- some more general high-level stuff + +function mesecon:is_power_on(pos, rulename) + local node = minetest.get_node(pos) + if mesecon:is_conductor_on(node, rulename) or mesecon:is_receptor_on(node.name) then + return true + end + return false +end + +function mesecon:is_power_off(pos, rulename) + local node = minetest.get_node(pos) + if mesecon:is_conductor_off(node, rulename) or mesecon:is_receptor_off(node.name) then + return true + end + return false +end + +function mesecon:turnon(pos, rulename, recdepth) + recdepth = recdepth or 2 + if (recdepth > STACK_SIZE) then return end + local node = minetest.get_node(pos) + + if(node.name == "ignore") then + -- try turning on later again + mesecon.queue:add_action( + pos, "turnon", {rulename, recdepth + 1}, nil, true) + end + + if mesecon:is_conductor_off(node, rulename) then + local rules = mesecon:conductor_get_rules(node) + + if not rulename then + for _, rule in ipairs(mesecon:flattenrules(rules)) do + if mesecon:connected_to_receptor(pos, rule) then + mesecon:turnon(pos, rule, recdepth + 1) + end + end + return + end + + minetest.swap_node(pos, {name = mesecon:get_conductor_on(node, rulename), param2 = node.param2}) + + for _, rule in ipairs(mesecon:rule2meta(rulename, rules)) do + local np = mesecon:addPosRule(pos, rule) + if(minetest.get_node(np).name == "ignore") then + -- try turning on later again + mesecon.queue:add_action( + np, "turnon", {rulename, recdepth + 1}, nil, true) + else + local rulenames = mesecon:rules_link_rule_all(pos, rule) + + for _, rulename in ipairs(rulenames) do + mesecon:turnon(np, rulename, recdepth + 1) + end + end + end + elseif mesecon:is_effector(node.name) then + mesecon:changesignal(pos, node, rulename, mesecon.state.on, recdepth) + if mesecon:is_effector_off(node.name) then + mesecon:activate(pos, node, rulename, recdepth) + end + end +end + +mesecon.queue:add_function("turnon", function (pos, rulename, recdepth) + mesecon:turnon(pos, rulename, recdepth) +end) + +function mesecon:turnoff(pos, rulename, recdepth) + recdepth = recdepth or 2 + if (recdepth > STACK_SIZE) then return end + local node = minetest.get_node(pos) + + if(node.name == "ignore") then + -- try turning on later again + mesecon.queue:add_action( + pos, "turnoff", {rulename, recdepth + 1}, nil, true) + end + + if mesecon:is_conductor_on(node, rulename) then + local rules = mesecon:conductor_get_rules(node) + minetest.swap_node(pos, {name = mesecon:get_conductor_off(node, rulename), param2 = node.param2}) + + for _, rule in ipairs(mesecon:rule2meta(rulename, rules)) do + local np = mesecon:addPosRule(pos, rule) + if(minetest.get_node(np).name == "ignore") then + -- try turning on later again + mesecon.queue:add_action( + np, "turnoff", {rulename, recdepth + 1}, nil, true) + else + local rulenames = mesecon:rules_link_rule_all(pos, rule) + + for _, rulename in ipairs(rulenames) do + mesecon:turnoff(np, rulename, recdepth + 1) + end + end + end + elseif mesecon:is_effector(node.name) then + mesecon:changesignal(pos, node, rulename, mesecon.state.off, recdepth) + if mesecon:is_effector_on(node.name) + and not mesecon:is_powered(pos) then + mesecon:deactivate(pos, node, rulename, recdepth + 1) + end + end +end + +mesecon.queue:add_function("turnoff", function (pos, rulename, recdepth) + mesecon:turnoff(pos, rulename, recdepth) +end) + + +function mesecon:connected_to_receptor(pos, rulename) + local node = minetest.get_node(pos) + + -- Check if conductors around are connected + local rules = mesecon:get_any_inputrules(node) + if not rules then return false end + + for _, rule in ipairs(mesecon:rule2meta(rulename, rules)) do + local rulenames = mesecon:rules_link_rule_all_inverted(pos, rule) + for _, rname in ipairs(rulenames) do + local np = mesecon:addPosRule(pos, rname) + if mesecon:find_receptor_on(np, {}, mesecon:invertRule(rname)) then + return true + end + end + end + + return false +end + +function mesecon:find_receptor_on(pos, checked, rulename, recdepth) + recdepth = recdepth or 2 + if (recdepth > STACK_SIZE) then return true end -- ignore request + local node = minetest.get_node(pos) + + if mesecon:is_receptor_on(node.name) then + -- add current position to checked + table.insert(checked, {x=pos.x, y=pos.y, z=pos.z}) + return true + end + + if mesecon:is_conductor(node.name) then + local rules = mesecon:conductor_get_rules(node) + local metaindex = mesecon:rule2metaindex(rulename, rules) + -- find out if node has already been checked (to prevent from endless loop) + for _, cp in ipairs(checked) do + if mesecon:cmpPos(cp, pos) and cp.metaindex == metaindex then + return false, checked + end + end + -- add current position to checked + table.insert(checked, {x=pos.x, y=pos.y, z=pos.z, metaindex = metaindex}) + for _, rule in ipairs(mesecon:rule2meta(rulename, rules)) do + local rulenames = mesecon:rules_link_rule_all_inverted(pos, rule) + for _, rname in ipairs(rulenames) do + local np = mesecon:addPosRule(pos, rname) + if mesecon:find_receptor_on(np, checked, mesecon:invertRule(rname), recdepth + 1) then + return true + end + end + end + else + -- find out if node has already been checked (to prevent from endless loop) + for _, cp in ipairs(checked) do + if mesecon:cmpPos(cp, pos) then + return false, checked + end + end + table.insert(checked, {x=pos.x, y=pos.y, z=pos.z}) + end + + return false +end + +function mesecon:rules_link(output, input, dug_outputrules) --output/input are positions (outputrules optional, used if node has been dug), second return value: the name of the affected input rule + local outputnode = minetest.get_node(output) + local inputnode = minetest.get_node(input) + local outputrules = dug_outputrules or mesecon:get_any_outputrules (outputnode) + local inputrules = mesecon:get_any_inputrules (inputnode) + if not outputrules or not inputrules then + return + end + + for _, outputrule in ipairs(mesecon:flattenrules(outputrules)) do + -- Check if output sends to input + if mesecon:cmpPos(mesecon:addPosRule(output, outputrule), input) then + for _, inputrule in ipairs(mesecon:flattenrules(inputrules)) do + -- Check if input accepts from output + if mesecon:cmpPos(mesecon:addPosRule(input, inputrule), output) then + if inputrule.sx == nil or outputrule.sx == nil or mesecon:cmpSpecial(inputrule, outputrule) then + return true, inputrule + end + end + end + end + end + return false +end + +function mesecon:rules_link_rule_all(output, rule) --output/input are positions (outputrules optional, used if node has been dug), second return value: affected input rules + local input = mesecon:addPosRule(output, rule) + local inputnode = minetest.get_node(input) + local inputrules = mesecon:get_any_inputrules (inputnode) + if not inputrules then + return {} + end + local rules = {} + + for _, inputrule in ipairs(mesecon:flattenrules(inputrules)) do + -- Check if input accepts from output + if mesecon:cmpPos(mesecon:addPosRule(input, inputrule), output) then + if inputrule.sx == nil or rule.sx == nil or mesecon:cmpSpecial(inputrule, rule) then + rules[#rules+1] = inputrule + end + end + end + return rules +end + +function mesecon:rules_link_rule_all_inverted(input, rule) + --local irule = mesecon:invertRule(rule) + local output = mesecon:addPosRule(input, rule) + local outputnode = minetest.get_node(output) + local outputrules = mesecon:get_any_outputrules (outputnode) + if not outputrules then + return {} + end + local rules = {} + + for _, outputrule in ipairs(mesecon:flattenrules(outputrules)) do + if mesecon:cmpPos(mesecon:addPosRule(output, outputrule), input) then + if outputrule.sx == nil or rule.sx == nil or mesecon:cmpSpecial(outputrule, rule) then + rules[#rules+1] = mesecon:invertRule(outputrule) + end + end + end + return rules +end + +function mesecon:rules_link_anydir(pos1, pos2) + return mesecon:rules_link(pos1, pos2) or mesecon:rules_link(pos2, pos1) +end + +function mesecon:is_powered(pos, rule) + local node = minetest.get_node(pos) + local rules = mesecon:get_any_inputrules(node) + if not rules then return false end + + if not rule then + for _, rule in ipairs(mesecon:flattenrules(rules)) do + local rulenames = mesecon:rules_link_rule_all_inverted(pos, rule) + for _, rname in ipairs(rulenames) do + local np = mesecon:addPosRule(pos, rname) + local nn = minetest.get_node(np) + if (mesecon:is_conductor_on (nn, mesecon:invertRule(rname)) or mesecon:is_receptor_on (nn.name)) then + return true + end + end + end + else + local rulenames = mesecon:rules_link_rule_all_inverted(pos, rule) + for _, rname in ipairs(rulenames) do + local np = mesecon:addPosRule(pos, rname) + local nn = minetest.get_node(np) + if (mesecon:is_conductor_on (nn, mesecon:invertRule(rname)) or mesecon:is_receptor_on (nn.name)) then + return true + end + end + end + + return false +end + +--Rules rotation Functions: +function mesecon:rotate_rules_right(rules) + local nr = {} + for i, rule in ipairs(rules) do + if rule.sx then + table.insert(nr, { + x = -rule.z, + y = rule.y, + z = rule.x, + sx = -rule.sz, + sy = rule.sy, + sz = rule.sx}) + else + table.insert(nr, { + x = -rule.z, + y = rule.y, + z = rule.x}) + end + end + return nr +end + +function mesecon:rotate_rules_left(rules) + local nr = {} + for i, rule in ipairs(rules) do + if rule.sx then + table.insert(nr, { + x = rule.z, + y = rule.y, + z = -rule.x, + sx = rule.sz, + sy = rule.sy, + sz = -rule.sx}) + else + table.insert(nr, { + x = rule.z, + y = rule.y, + z = -rule.x}) + end + end + return nr +end + +function mesecon:rotate_rules_down(rules) + local nr = {} + for i, rule in ipairs(rules) do + if rule.sx then + table.insert(nr, { + x = -rule.y, + y = rule.x, + z = rule.z, + sx = -rule.sy, + sy = rule.sx, + sz = rule.sz}) + else + table.insert(nr, { + x = -rule.y, + y = rule.x, + z = rule.z}) + end + end + return nr +end + +function mesecon:rotate_rules_up(rules) + local nr = {} + for i, rule in ipairs(rules) do + if rule.sx then + table.insert(nr, { + x = rule.y, + y = -rule.x, + z = rule.z, + sx = rule.sy, + sy = -rule.sx, + sz = rule.sz}) + else + table.insert(nr, { + x = rule.y, + y = -rule.x, + z = rule.z}) + end + end + return nr +end diff --git a/mods/mesecons/mesecons/legacy.lua b/mods/mesecons/mesecons/legacy.lua new file mode 100644 index 0000000..c4334cf --- /dev/null +++ b/mods/mesecons/mesecons/legacy.lua @@ -0,0 +1,32 @@ +minetest.swap_node = minetest.swap_node or function(pos, node) + local data = minetest.get_meta(pos):to_table() + minetest.add_node(pos, node) + minetest.get_meta(pos):from_table(data) +end + +local rules = {} +rules.a = {x = -1, y = 0, z = 0, name="A"} +rules.b = {x = 0, y = 0, z = 1, name="B"} +rules.c = {x = 1, y = 0, z = 0, name="C"} +rules.d = {x = 0, y = 0, z = -1, name="D"} + +function legacy_update_ports(pos) + local meta = minetest.get_meta(pos) + L = { + a = mesecon:is_power_on(mesecon:addPosRule(pos, rules.a), + mesecon:invertRule(rules.a)) and + mesecon:rules_link(mesecon:addPosRule(pos, rules.a), pos), + b = mesecon:is_power_on(mesecon:addPosRule(pos, rules.b), + mesecon:invertRule(rules.b)) and + mesecon:rules_link(mesecon:addPosRule(pos, rules.b), pos), + c = mesecon:is_power_on(mesecon:addPosRule(pos, rules.c), + mesecon:invertRule(rules.c)) and + mesecon:rules_link(mesecon:addPosRule(pos, rules.c), pos), + d = mesecon:is_power_on(mesecon:addPosRule(pos, rules.d), + mesecon:invertRule(rules.d)) and + mesecon:rules_link(mesecon:addPosRule(pos, rules.d), pos), + } + local n = (L.a and 1 or 0) + (L.b and 2 or 0) + (L.c and 4 or 0) + (L.d and 8 or 0) + 1 + meta:set_int("real_portstates", n) + return L +end diff --git a/mods/mesecons/mesecons/oldwires.lua b/mods/mesecons/mesecons/oldwires.lua new file mode 100644 index 0000000..9e54b1b --- /dev/null +++ b/mods/mesecons/mesecons/oldwires.lua @@ -0,0 +1,38 @@ +minetest.register_node("mesecons:mesecon_off", { + drawtype = "raillike", + tiles = {"jeija_mesecon_off.png", "jeija_mesecon_curved_off.png", "jeija_mesecon_t_junction_off.png", "jeija_mesecon_crossing_off.png"}, + inventory_image = "jeija_mesecon_off.png", + wield_image = "jeija_mesecon_off.png", + paramtype = "light", + is_ground_content = true, + walkable = false, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5}, + }, + groups = {dig_immediate=3, mesecon=1, mesecon_conductor_craftable=1}, + description="Mesecons", + mesecons = {conductor={ + state = mesecon.state.off, + onstate = "mesecons:mesecon_on" + }} +}) + +minetest.register_node("mesecons:mesecon_on", { + drawtype = "raillike", + tiles = {"jeija_mesecon_on.png", "jeija_mesecon_curved_on.png", "jeija_mesecon_t_junction_on.png", "jeija_mesecon_crossing_on.png"}, + paramtype = "light", + is_ground_content = true, + walkable = false, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5}, + }, + groups = {dig_immediate=3, not_in_creaive_inventory=1, mesecon=1}, + drop = "mesecons:mesecon_off 1", + light_source = LIGHT_MAX-11, + mesecons = {conductor={ + state = mesecon.state.on, + offstate = "mesecons:mesecon_off" + }} +}) diff --git a/mods/mesecons/mesecons/presets.lua b/mods/mesecons/mesecons/presets.lua new file mode 100644 index 0000000..6c8d3ea --- /dev/null +++ b/mods/mesecons/mesecons/presets.lua @@ -0,0 +1,45 @@ +mesecon.rules = {} +mesecon.state = {} + +mesecon.rules.default = +{{x=0, y=0, z=-1}, + {x=1, y=0, z=0}, + {x=-1, y=0, z=0}, + {x=0, y=0, z=1}, + {x=1, y=1, z=0}, + {x=1, y=-1, z=0}, + {x=-1, y=1, z=0}, + {x=-1, y=-1, z=0}, + {x=0, y=1, z=1}, + {x=0, y=-1, z=1}, + {x=0, y=1, z=-1}, + {x=0, y=-1, z=-1}} + +mesecon.rules.buttonlike = +{{x = 1, y = 0, z = 0}, + {x = 1, y = 1, z = 0}, + {x = 1, y =-1, z = 0}, + {x = 1, y =-1, z = 1}, + {x = 1, y =-1, z =-1}, + {x = 2, y = 0, z = 0}} + +mesecon.rules.flat = +{{x = 1, y = 0, z = 0}, + {x =-1, y = 0, z = 0}, + {x = 0, y = 0, z = 1}, + {x = 0, y = 0, z =-1}} + +mesecon.rules.buttonlike_get = function(node) + local rules = mesecon.rules.buttonlike + if node.param2 == 2 then + rules=mesecon:rotate_rules_left(rules) + elseif node.param2 == 3 then + rules=mesecon:rotate_rules_right(mesecon:rotate_rules_right(rules)) + elseif node.param2 == 0 then + rules=mesecon:rotate_rules_right(rules) + end + return rules +end + +mesecon.state.on = "on" +mesecon.state.off = "off" diff --git a/mods/mesecons/mesecons/services.lua b/mods/mesecons/mesecons/services.lua new file mode 100644 index 0000000..b0b45e0 --- /dev/null +++ b/mods/mesecons/mesecons/services.lua @@ -0,0 +1,76 @@ +-- Dig and place services + +mesecon.on_placenode = function (pos, node) + -- Receptors: Send on signal when active + if mesecon:is_receptor_on(node.name) then + mesecon:receptor_on(pos, mesecon:receptor_get_rules(node)) + end + + -- Conductors: Send turnon signal when powered or replace by respective offstate conductor + -- if placed conductor is an onstate one + if mesecon:is_conductor(node.name) then + if mesecon:is_powered(pos) then + -- also call receptor_on if itself is powered already, so that neighboring + -- conductors will be activated (when pushing an on-conductor with a piston) + mesecon:turnon (pos) + mesecon:receptor_on (pos, mesecon:conductor_get_rules(node)) + elseif mesecon:is_conductor_off(node.name) then + minetest.swap_node(pos, {name = mesecon:get_conductor_off(node)}) + end + end + + -- Effectors: Send changesignal and activate or deactivate + if mesecon:is_effector(node.name) then + if mesecon:is_powered(pos) then + mesecon:changesignal(pos, node, mesecon:effector_get_rules(node), "on", 1) + mesecon:activate(pos, node, nil, 1) + else + mesecon:changesignal(pos, node, mesecon:effector_get_rules(node), "off", 1) + mesecon:deactivate(pos, node, nil, 1) + end + end +end + +mesecon.on_dignode = function (pos, node) + if mesecon:is_conductor_on(node) then + mesecon:receptor_off(pos, mesecon:conductor_get_rules(node)) + elseif mesecon:is_receptor_on(node.name) then + mesecon:receptor_off(pos, mesecon:receptor_get_rules(node)) + end +end + +minetest.register_on_placenode(mesecon.on_placenode) +minetest.register_on_dignode(mesecon.on_dignode) + +-- Overheating service for fast circuits + +-- returns true if heat is too high +mesecon.do_overheat = function(pos) + local meta = minetest.get_meta(pos) + local heat = meta:get_int("heat") or 0 + + heat = heat + 1 + meta:set_int("heat", heat) + + if heat < OVERHEAT_MAX then + mesecon.queue:add_action(pos, "cooldown", {}, 1, nil, 0) + else + return true + end + + return false +end + + +mesecon.queue:add_function("cooldown", function (pos) + if minetest.get_item_group(minetest.get_node(pos).name, "overheat") == 0 then + return -- node has been moved, this one does not use overheating - ignore + end + + local meta = minetest.get_meta(pos) + local heat = meta:get_int("heat") + + if (heat > 0) then + meta:set_int("heat", heat - 1) + end +end) diff --git a/mods/mesecons/mesecons/settings.lua b/mods/mesecons/mesecons/settings.lua new file mode 100644 index 0000000..eb34f17 --- /dev/null +++ b/mods/mesecons/mesecons/settings.lua @@ -0,0 +1,14 @@ +-- SETTINGS +BLINKY_PLANT_INTERVAL = 3 +NEW_STYLE_WIRES = true -- true = new nodebox wires, false = old raillike wires +PRESSURE_PLATE_INTERVAL = 0.1 +OBJECT_DETECTOR_RADIUS = 6 +PISTON_MAXIMUM_PUSH = 15 +MOVESTONE_MAXIMUM_PUSH = 100 +MESECONS_RESUMETIME = 4 -- time to wait when starting the server before + -- processing the ActionQueue, don't set this too low +OVERHEAT_MAX = 20 -- maximum heat of any component that directly sends an output + -- signal when the input changes (e.g. luacontroller, gates) + -- Unit: actions per second, checks are every 1 second +STACK_SIZE = 3000 -- Recursive functions will abort when this is reached. Therefore, + -- this is also limits the maximum circuit size. diff --git a/mods/mesecons/mesecons/textures/jeija_fiber.png b/mods/mesecons/mesecons/textures/jeija_fiber.png new file mode 100644 index 0000000..e8c7b08 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_fiber.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_glue.png b/mods/mesecons/mesecons/textures/jeija_glue.png new file mode 100644 index 0000000..2f351d1 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_glue.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_crossing_off.png b/mods/mesecons/mesecons/textures/jeija_mesecon_crossing_off.png new file mode 100644 index 0000000..4e3ca03 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_crossing_off.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_crossing_on.png b/mods/mesecons/mesecons/textures/jeija_mesecon_crossing_on.png new file mode 100644 index 0000000..4518fa7 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_crossing_on.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_curved_off.png b/mods/mesecons/mesecons/textures/jeija_mesecon_curved_off.png new file mode 100644 index 0000000..b34335f Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_curved_off.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_curved_on.png b/mods/mesecons/mesecons/textures/jeija_mesecon_curved_on.png new file mode 100644 index 0000000..fa882e4 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_curved_on.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_inverter_off.png b/mods/mesecons/mesecons/textures/jeija_mesecon_inverter_off.png new file mode 100644 index 0000000..bd4de1b Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_inverter_off.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_inverter_on.png b/mods/mesecons/mesecons/textures/jeija_mesecon_inverter_on.png new file mode 100644 index 0000000..be41599 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_inverter_on.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_off.png b/mods/mesecons/mesecons/textures/jeija_mesecon_off.png new file mode 100644 index 0000000..a3930cb Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_off.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_on.png b/mods/mesecons/mesecons/textures/jeija_mesecon_on.png new file mode 100644 index 0000000..d7ebeec Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_on.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_plug.png b/mods/mesecons/mesecons/textures/jeija_mesecon_plug.png new file mode 100644 index 0000000..8a4d281 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_plug.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_socket_off.png b/mods/mesecons/mesecons/textures/jeija_mesecon_socket_off.png new file mode 100644 index 0000000..ad3f601 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_socket_off.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_socket_on.png b/mods/mesecons/mesecons/textures/jeija_mesecon_socket_on.png new file mode 100644 index 0000000..6a9c480 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_socket_on.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_switch_off.png b/mods/mesecons/mesecons/textures/jeija_mesecon_switch_off.png new file mode 100644 index 0000000..2a75ef3 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_switch_off.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_switch_on.png b/mods/mesecons/mesecons/textures/jeija_mesecon_switch_on.png new file mode 100644 index 0000000..9df3450 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_switch_on.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_switch_side.png b/mods/mesecons/mesecons/textures/jeija_mesecon_switch_side.png new file mode 100644 index 0000000..fb5db33 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_switch_side.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_t_junction_off.png b/mods/mesecons/mesecons/textures/jeija_mesecon_t_junction_off.png new file mode 100644 index 0000000..7131846 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_t_junction_off.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_mesecon_t_junction_on.png b/mods/mesecons/mesecons/textures/jeija_mesecon_t_junction_on.png new file mode 100644 index 0000000..a6609ee Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_mesecon_t_junction_on.png differ diff --git a/mods/mesecons/mesecons/textures/jeija_silicon.png b/mods/mesecons/mesecons/textures/jeija_silicon.png new file mode 100644 index 0000000..a7b0d52 Binary files /dev/null and b/mods/mesecons/mesecons/textures/jeija_silicon.png differ diff --git a/mods/mesecons/mesecons/textures/wires_bump_off.png b/mods/mesecons/mesecons/textures/wires_bump_off.png new file mode 100644 index 0000000..1e0bd74 Binary files /dev/null and b/mods/mesecons/mesecons/textures/wires_bump_off.png differ diff --git a/mods/mesecons/mesecons/textures/wires_bump_on.png b/mods/mesecons/mesecons/textures/wires_bump_on.png new file mode 100644 index 0000000..da9a661 Binary files /dev/null and b/mods/mesecons/mesecons/textures/wires_bump_on.png differ diff --git a/mods/mesecons/mesecons/textures/wires_full_off.png b/mods/mesecons/mesecons/textures/wires_full_off.png new file mode 100644 index 0000000..58164fa Binary files /dev/null and b/mods/mesecons/mesecons/textures/wires_full_off.png differ diff --git a/mods/mesecons/mesecons/textures/wires_full_on.png b/mods/mesecons/mesecons/textures/wires_full_on.png new file mode 100644 index 0000000..98a86c8 Binary files /dev/null and b/mods/mesecons/mesecons/textures/wires_full_on.png differ diff --git a/mods/mesecons/mesecons/textures/wires_inv.png b/mods/mesecons/mesecons/textures/wires_inv.png new file mode 100644 index 0000000..626f8d4 Binary files /dev/null and b/mods/mesecons/mesecons/textures/wires_inv.png differ diff --git a/mods/mesecons/mesecons/textures/wires_off.png b/mods/mesecons/mesecons/textures/wires_off.png new file mode 100644 index 0000000..757d339 Binary files /dev/null and b/mods/mesecons/mesecons/textures/wires_off.png differ diff --git a/mods/mesecons/mesecons/textures/wires_on.png b/mods/mesecons/mesecons/textures/wires_on.png new file mode 100644 index 0000000..57bb82d Binary files /dev/null and b/mods/mesecons/mesecons/textures/wires_on.png differ diff --git a/mods/mesecons/mesecons/textures/wires_vertical_off.png b/mods/mesecons/mesecons/textures/wires_vertical_off.png new file mode 100644 index 0000000..ba8d472 Binary files /dev/null and b/mods/mesecons/mesecons/textures/wires_vertical_off.png differ diff --git a/mods/mesecons/mesecons/textures/wires_vertical_on.png b/mods/mesecons/mesecons/textures/wires_vertical_on.png new file mode 100644 index 0000000..172fa65 Binary files /dev/null and b/mods/mesecons/mesecons/textures/wires_vertical_on.png differ diff --git a/mods/mesecons/mesecons/util.lua b/mods/mesecons/mesecons/util.lua new file mode 100644 index 0000000..271af99 --- /dev/null +++ b/mods/mesecons/mesecons/util.lua @@ -0,0 +1,196 @@ +function mesecon:move_node(pos, newpos) + local node = minetest.get_node(pos) + local meta = minetest.get_meta(pos):to_table() + minetest.remove_node(pos) + minetest.add_node(newpos, node) + minetest.get_meta(pos):from_table(meta) +end + +--[[ new functions: +mesecon:flattenrules(allrules) +mesecon:rule2bit(findrule, allrules) +mesecon:rule2meta(findrule, allrules) +dec2bin(n) +mesecon:getstate(nodename, states) +mesecon:getbinstate(nodename, states) +mesecon:get_bit(binary, bit) +mesecon:set_bit(binary, bit, value) +mesecon:invertRule(r) +--]] + +function mesecon:flattenrules(allrules) +--[[ + { + { + {xyz}, + {xyz}, + }, + { + {xyz}, + {xyz}, + }, + } +--]] + if allrules[1] and + allrules[1].x then + return allrules + end + + local shallowrules = {} + for _, metarule in ipairs( allrules) do + for _, rule in ipairs(metarule ) do + table.insert(shallowrules, rule) + end + end + return shallowrules +--[[ + { + {xyz}, + {xyz}, + {xyz}, + {xyz}, + } +--]] +end + +function mesecon:rule2bit(findrule, allrules) + --get the bit of the metarule the rule is in, or bit 1 + if (allrules[1] and + allrules[1].x) or + not findrule then + return 1 + end + for m,metarule in ipairs( allrules) do + for _, rule in ipairs(metarule ) do + if mesecon:cmpPos(findrule, rule) and mesecon:cmpSpecial(findrule, rule) then + return m + end + end + end +end + +function mesecon:rule2metaindex(findrule, allrules) + --get the metarule the rule is in, or allrules + + if allrules[1].x then + return nil + end + + if not(findrule) then + return mesecon:flattenrules(allrules) + end + + for m, metarule in ipairs( allrules) do + for _, rule in ipairs(metarule ) do + if mesecon:cmpPos(findrule, rule) and mesecon:cmpSpecial(findrule, rule) then + return m + end + end + end +end + +function mesecon:rule2meta(findrule, allrules) + local index = mesecon:rule2metaindex(findrule, allrules) + if index == nil then + if allrules[1].x then + return allrules + else + return {} + end + end + return allrules[index] +end + +local convert_base = false --rnd +if convert_base then + print( + "base2dec is tonumber(num,base1)\n".. + "commonlib needs dec2base(num,base2)\n".. + "and it needs base2base(num,base1,base2),\n".. + "which is dec2base(tonumber(num,base1),base2)" + ) +else + function dec2bin(n) + local x, y = math.floor(n / 2), n % 2 + if (n > 1) then + return dec2bin(x)..y + else + return ""..y + end + end +end + +function mesecon:getstate(nodename, states) + for state, name in ipairs(states) do + if name == nodename then + return state + end + end + error(nodename.." doesn't mention itself in "..dump(states)) +end + +function mesecon:getbinstate(nodename, states) + return dec2bin(mesecon:getstate(nodename, states)-1) +end + +function mesecon:get_bit(binary,bit) + bit = bit or 1 + local c = binary:len()-(bit-1) + return binary:sub(c,c) == "1" +end + +function mesecon:set_bit(binary,bit,value) + if value == "1" then + if not mesecon:get_bit(binary,bit) then + return dec2bin(tonumber(binary,2)+math.pow(2,bit-1)) + end + elseif value == "0" then + if mesecon:get_bit(binary,bit) then + return dec2bin(tonumber(binary,2)-math.pow(2,bit-1)) + end + end + return binary + +end + +function mesecon:invertRule(r) + return {x = -r.x, y = -r.y, z = -r.z, sx = r.sx, sy = r.sy, sz = r.sz} +end + +function mesecon:addPosRule(p, r) + return {x = p.x + r.x, y = p.y + r.y, z = p.z + r.z} +end + +function mesecon:cmpPos(p1, p2) + return (p1.x == p2.x and p1.y == p2.y and p1.z == p2.z) +end + +function mesecon:cmpSpecial(r1, r2) + return (r1.sx == r2.sx and r1.sy == r2.sy and r1.sz == r2.sz) +end + +function mesecon:tablecopy(table) -- deep table copy + if type(table) ~= "table" then return table end -- no need to copy + local newtable = {} + + for idx, item in pairs(table) do + if type(item) == "table" then + newtable[idx] = mesecon:tablecopy(item) + else + newtable[idx] = item + end + end + + return newtable +end + +function mesecon:cmpAny(t1, t2) + if type(t1) ~= type(t2) then return false end + if type(t1) ~= "table" and type(t2) ~= "table" then return t1 == t2 end + + for i, e in pairs(t1) do + if not mesecon:cmpAny(e, t2[i]) then return false end + end + + return true +end diff --git a/mods/mesecons/mesecons/wires.lua b/mods/mesecons/mesecons/wires.lua new file mode 100644 index 0000000..499c781 --- /dev/null +++ b/mods/mesecons/mesecons/wires.lua @@ -0,0 +1,280 @@ +-- naming scheme: wire:(xp)(zp)(xm)(zm)_on/off +-- The conditions in brackets define whether there is a mesecon at that place or not +-- 1 = there is one; 0 = there is none +-- y always means y+ + +box_center = {-1/16, -.5, -1/16, 1/16, -.5+1/16, 1/16} +box_bump1 = { -2/16, -8/16, -2/16, 2/16, -13/32, 2/16 } + +box_xp = {1/16, -.5, -1/16, 8/16, -.5+1/16, 1/16} +box_zp = {-1/16, -.5, 1/16, 1/16, -.5+1/16, 8/16} +box_xm = {-8/16, -.5, -1/16, -1/16, -.5+1/16, 1/16} +box_zm = {-1/16, -.5, -8/16, 1/16, -.5+1/16, -1/16} + +box_xpy = {.5-1/16, -.5+1/16, -1/16, .5, .4999+1/16, 1/16} +box_zpy = {-1/16, -.5+1/16, .5-1/16, 1/16, .4999+1/16, .5} +box_xmy = {-.5, -.5+1/16, -1/16, -.5+1/16, .4999+1/16, 1/16} +box_zmy = {-1/16, -.5+1/16, -.5, 1/16, .4999+1/16, -.5+1/16} + +-- Registering the wires + +for xp=0, 1 do +for zp=0, 1 do +for xm=0, 1 do +for zm=0, 1 do +for xpy=0, 1 do +for zpy=0, 1 do +for xmy=0, 1 do +for zmy=0, 1 do + if (xpy == 1 and xp == 0) or (zpy == 1 and zp == 0) + or (xmy == 1 and xm == 0) or (zmy == 1 and zm == 0) then break end + + local groups + local nodeid = tostring(xp )..tostring(zp )..tostring(xm )..tostring(zm ).. + tostring(xpy)..tostring(zpy)..tostring(xmy)..tostring(zmy) + + if nodeid == "00000000" then + groups = {dig_immediate = 3, mesecon_conductor_craftable=1} + wiredesc = "Mesecon" + else + groups = {dig_immediate = 3, not_in_creative_inventory = 1} + wiredesc = "Mesecons Wire (ID: "..nodeid..")" + end + + local nodebox = {} + local adjx = false + local adjz = false + if xp == 1 then table.insert(nodebox, box_xp) adjx = true end + if zp == 1 then table.insert(nodebox, box_zp) adjz = true end + if xm == 1 then table.insert(nodebox, box_xm) adjx = true end + if zm == 1 then table.insert(nodebox, box_zm) adjz = true end + if xpy == 1 then table.insert(nodebox, box_xpy) end + if zpy == 1 then table.insert(nodebox, box_zpy) end + if xmy == 1 then table.insert(nodebox, box_xmy) end + if zmy == 1 then table.insert(nodebox, box_zmy) end + + if adjx and adjz and (xp + zp + xm + zm > 2) then + table.insert(nodebox, box_bump1) + tiles_off = { + "wires_bump_off.png", + "wires_bump_off.png", + "wires_vertical_off.png", + "wires_vertical_off.png", + "wires_vertical_off.png", + "wires_vertical_off.png" + } + tiles_on = { + "wires_bump_on.png", + "wires_bump_on.png", + "wires_vertical_on.png", + "wires_vertical_on.png", + "wires_vertical_on.png", + "wires_vertical_on.png" + } + else + table.insert(nodebox, box_center) + tiles_off = { + "wires_off.png", + "wires_off.png", + "wires_vertical_off.png", + "wires_vertical_off.png", + "wires_vertical_off.png", + "wires_vertical_off.png" + } + tiles_on = { + "wires_on.png", + "wires_on.png", + "wires_vertical_on.png", + "wires_vertical_on.png", + "wires_vertical_on.png", + "wires_vertical_on.png" + } + end + + if nodeid == "00000000" then + nodebox = {-8/16, -.5, -1/16, 8/16, -.5+1/16, 1/16} + end + + minetest.register_node("mesecons:wire_"..nodeid.."_off", { + description = wiredesc, + drawtype = "nodebox", + tiles = tiles_off, +-- inventory_image = "wires_inv.png", +-- wield_image = "wires_inv.png", + inventory_image = "jeija_mesecon_off.png", + wield_image = "jeija_mesecon_off.png", + paramtype = "light", + paramtype2 = "facedir", + sunlight_propagates = true, + selection_box = { + type = "fixed", + fixed = {-.5, -.5, -.5, .5, -.5+4/16, .5} + }, + node_box = { + type = "fixed", + fixed = nodebox + }, + groups = groups, + walkable = false, + stack_max = 99, + drop = "mesecons:wire_00000000_off", + mesecons = {conductor={ + state = mesecon.state.off, + onstate = "mesecons:wire_"..nodeid.."_on" + }} + }) + + minetest.register_node("mesecons:wire_"..nodeid.."_on", { + description = "Wire ID:"..nodeid, + drawtype = "nodebox", + tiles = tiles_on, +-- inventory_image = "wires_inv.png", +-- wield_image = "wires_inv.png", + inventory_image = "jeija_mesecon_off.png", + wield_image = "jeija_mesecon_off.png", + paramtype = "light", + paramtype2 = "facedir", + sunlight_propagates = true, + selection_box = { + type = "fixed", + fixed = {-.5, -.5, -.5, .5, -.5+4/16, .5} + }, + node_box = { + type = "fixed", + fixed = nodebox + }, + groups = {dig_immediate = 3, mesecon = 2, not_in_creative_inventory = 1}, + walkable = false, + stack_max = 99, + drop = "mesecons:wire_00000000_off", + mesecons = {conductor={ + state = mesecon.state.on, + offstate = "mesecons:wire_"..nodeid.."_off" + }} + }) +end +end +end +end +end +end +end +end + +-- Updating the wires: +-- Place the right connection wire + +local update_on_place_dig = function (pos, node) + if minetest.registered_nodes[node.name] + and minetest.registered_nodes[node.name].mesecons then + mesecon:update_autoconnect(pos) + end +end + +minetest.register_on_placenode(update_on_place_dig) +minetest.register_on_dignode(update_on_place_dig) + +function mesecon:update_autoconnect(pos, secondcall, replace_old) + local xppos = {x=pos.x+1, y=pos.y, z=pos.z} + local zppos = {x=pos.x, y=pos.y, z=pos.z+1} + local xmpos = {x=pos.x-1, y=pos.y, z=pos.z} + local zmpos = {x=pos.x, y=pos.y, z=pos.z-1} + + local xpympos = {x=pos.x+1, y=pos.y-1, z=pos.z} + local zpympos = {x=pos.x, y=pos.y-1, z=pos.z+1} + local xmympos = {x=pos.x-1, y=pos.y-1, z=pos.z} + local zmympos = {x=pos.x, y=pos.y-1, z=pos.z-1} + + local xpypos = {x=pos.x+1, y=pos.y+1, z=pos.z} + local zpypos = {x=pos.x, y=pos.y+1, z=pos.z+1} + local xmypos = {x=pos.x-1, y=pos.y+1, z=pos.z} + local zmypos = {x=pos.x, y=pos.y+1, z=pos.z-1} + + if secondcall == nil then + mesecon:update_autoconnect(xppos, true) + mesecon:update_autoconnect(zppos, true) + mesecon:update_autoconnect(xmpos, true) + mesecon:update_autoconnect(zmpos, true) + + mesecon:update_autoconnect(xpypos, true) + mesecon:update_autoconnect(zpypos, true) + mesecon:update_autoconnect(xmypos, true) + mesecon:update_autoconnect(zmypos, true) + + mesecon:update_autoconnect(xpympos, true) + mesecon:update_autoconnect(zpympos, true) + mesecon:update_autoconnect(xmympos, true) + mesecon:update_autoconnect(zmympos, true) + end + + nodename = minetest.get_node(pos).name + if string.find(nodename, "mesecons:wire_") == nil and not replace_old then return nil end + + if mesecon:rules_link_anydir(pos, xppos) then xp = 1 else xp = 0 end + if mesecon:rules_link_anydir(pos, xmpos) then xm = 1 else xm = 0 end + if mesecon:rules_link_anydir(pos, zppos) then zp = 1 else zp = 0 end + if mesecon:rules_link_anydir(pos, zmpos) then zm = 1 else zm = 0 end + + if mesecon:rules_link_anydir(pos, xpympos) then xp = 1 end + if mesecon:rules_link_anydir(pos, xmympos) then xm = 1 end + if mesecon:rules_link_anydir(pos, zpympos) then zp = 1 end + if mesecon:rules_link_anydir(pos, zmympos) then zm = 1 end + + if mesecon:rules_link_anydir(pos, xpypos) then xpy = 1 else xpy = 0 end + if mesecon:rules_link_anydir(pos, zpypos) then zpy = 1 else zpy = 0 end + if mesecon:rules_link_anydir(pos, xmypos) then xmy = 1 else xmy = 0 end + if mesecon:rules_link_anydir(pos, zmypos) then zmy = 1 else zmy = 0 end + + if xpy == 1 then xp = 1 end + if zpy == 1 then zp = 1 end + if xmy == 1 then xm = 1 end + if zmy == 1 then zm = 1 end + + local nodeid = tostring(xp )..tostring(zp )..tostring(xm )..tostring(zm ).. + tostring(xpy)..tostring(zpy)..tostring(xmy)..tostring(zmy) + + + if string.find(nodename, "_off") ~= nil then + minetest.set_node(pos, {name = "mesecons:wire_"..nodeid.."_off"}) + else + minetest.set_node(pos, {name = "mesecons:wire_"..nodeid.."_on" }) + end +end + +if not minetest.registered_nodes["default:stone_with_mese"] then --before MESE update, use old recipes + minetest.register_craft({ + output = "mesecons:wire_00000000_off 18", + recipe = { + {"default:mese"}, + } + }) +else + + minetest.register_craft({ + type = "cooking", + output = "mesecons:wire_00000000_off 2", + recipe = "default:mese_crystal_fragment", + cooktime = 3, + }) + + minetest.register_craft({ + type = "cooking", + output = "mesecons:wire_00000000_off 18", + recipe = "default:mese_crystal", + cooktime = 15, + }) + + minetest.register_craft({ + type = "cooking", + output = "mesecons:wire_00000000_off 162", + recipe = "default:mese", + cooktime = 30, + }) + +end + +minetest.register_craft({ + type = "cooking", + output = "mesecons:wire_00000000_off 16", + recipe = "default:mese_crystal", +}) diff --git a/mods/mesecons/mesecons_alias/depends.txt b/mods/mesecons/mesecons_alias/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_alias/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_alias/init.lua b/mods/mesecons/mesecons_alias/init.lua new file mode 100644 index 0000000..395c368 --- /dev/null +++ b/mods/mesecons/mesecons_alias/init.lua @@ -0,0 +1,38 @@ +-- This file registers aliases for the /give /giveme commands. + +minetest.register_alias("mesecons:removestone", "mesecons_random:removestone") +minetest.register_alias("mesecons:power_plant", "mesecons_powerplant:power_plant") +minetest.register_alias("mesecons:powerplant", "mesecons_powerplant:power_plant") +minetest.register_alias("mesecons:meselamp", "mesecons_lamp:lamp_off") +minetest.register_alias("mesecons:mesecon", "mesecons:wire_00000000_off") +minetest.register_alias("mesecons:object_detector", "mesecons_detector:object_detector_off") +minetest.register_alias("mesecons:wireless_inverter", "mesecons_wireless:wireless_inverter_on") +minetest.register_alias("mesecons:wireless_receiver", "mesecons_wireless:wireless_receiver_off") +minetest.register_alias("mesecons:wireless_transmitter", "mesecons_wireless:wireless_transmitter_off") +minetest.register_alias("mesecons:switch", "mesecons_switch:mesecon_switch_off") +minetest.register_alias("mesecons:button", "mesecons_button:button_off") +minetest.register_alias("mesecons:piston", "mesecons_pistons:piston_normal_off") +minetest.register_alias("mesecons:blinky_plant", "mesecons_blinkyplant:blinky_plant_off") +minetest.register_alias("mesecons:mesecon_torch", "mesecons_torch:mesecon_torch_on") +minetest.register_alias("mesecons:torch", "mesecons_torch:mesecon_torch_on") +minetest.register_alias("mesecons:hydro_turbine", "mesecons_hydroturbine:hydro_turbine_off") +minetest.register_alias("mesecons:pressure_plate_stone", "mesecons_pressureplates:pressure_plate_stone_off") +minetest.register_alias("mesecons:pressure_plate_wood", "mesecons_pressureplates:pressure_plate_wood_off") +minetest.register_alias("mesecons:mesecon_socket", "mesecons_temperest:mesecon_socket_off") +minetest.register_alias("mesecons:mesecon_inverter", "mesecons_temperest:mesecon_inverter_on") +minetest.register_alias("mesecons:movestone", "mesecons_movestones:movestone") +minetest.register_alias("mesecons:sticky_movestone", "mesecons_movestones:sticky_movestone") +minetest.register_alias("mesecons:noteblock", "mesecons_noteblock:noteblock") +minetest.register_alias("mesecons:microcontroller", "mesecons_microcontroller:microcontroller0000") +minetest.register_alias("mesecons:delayer", "mesecons_delayer:delayer_off_1") +minetest.register_alias("mesecons:solarpanel", "mesecons_solarpanel:solar_panel_off") + + +--Backwards compatibility +minetest.register_alias("mesecons:mesecon_off", "mesecons:wire_00000000_off") +minetest.register_alias("mesecons_pistons:piston_sticky", "mesecons_pistons:piston_sticky_on") +minetest.register_alias("mesecons_pistons:piston_normal", "mesecons_pistons:piston_normal_on") +minetest.register_alias("mesecons_pistons:piston_up_normal", "mesecons_pistons:piston_up_normal_on") +minetest.register_alias("mesecons_pistons:piston_down_normal", "mesecons_pistons:piston_down_normal_on") +minetest.register_alias("mesecons_pistons:piston_up_sticky", "mesecons_pistons:piston_up_sticky_on") +minetest.register_alias("mesecons_pistons:piston_down_sticky", "mesecons_pistons:piston_down_sticky_on") diff --git a/mods/mesecons/mesecons_blinkyplant/depends.txt b/mods/mesecons/mesecons_blinkyplant/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_blinkyplant/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_blinkyplant/init.lua b/mods/mesecons/mesecons_blinkyplant/init.lua new file mode 100644 index 0000000..f0ab81f --- /dev/null +++ b/mods/mesecons/mesecons_blinkyplant/init.lua @@ -0,0 +1,98 @@ +-- The BLINKY_PLANT +minetest.register_node("mesecons_blinkyplant:blinky_plant", { + drawtype = "plantlike", + visual_scale = 1, + tiles = {"jeija_blinky_plant_off.png"}, + inventory_image = "jeija_blinky_plant_off.png", + walkable = false, + groups = {dig_immediate=3, not_in_creative_inventory=1}, + drop="mesecons_blinkyplant:blinky_plant_off 1", + description="Deactivated Blinky Plant", + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, -0.5+0.7, 0.3}, + }, + mesecons = {receptor = { + state = mesecon.state.off + }}, + on_rightclick = function(pos, node, clicker) + minetest.set_node(pos, {name="mesecons_blinkyplant:blinky_plant_off"}) + end +}) + +minetest.register_node("mesecons_blinkyplant:blinky_plant_off", { + drawtype = "plantlike", + visual_scale = 1, + tiles = {"jeija_blinky_plant_off.png"}, + inventory_image = "jeija_blinky_plant_off.png", + paramtype = "light", + walkable = false, + groups = {dig_immediate=3, mesecon=2}, + description="Blinky Plant", + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, -0.5+0.7, 0.3}, + }, + mesecons = {receptor = { + state = mesecon.state.off + }}, + on_rightclick = function(pos, node, clicker) + minetest.set_node(pos, {name="mesecons_blinkyplant:blinky_plant"}) + end +}) + +minetest.register_node("mesecons_blinkyplant:blinky_plant_on", { + drawtype = "plantlike", + visual_scale = 1, + tiles = {"jeija_blinky_plant_on.png"}, + inventory_image = "jeija_blinky_plant_off.png", + paramtype = "light", + walkable = false, + groups = {dig_immediate=3, not_in_creative_inventory=1, mesecon=2}, + drop="mesecons_blinkyplant:blinky_plant_off 1", + light_source = LIGHT_MAX-7, + description = "Blinky Plant", + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, -0.5+0.7, 0.3}, + }, + mesecons = {receptor = { + state = mesecon.state.on + }}, + on_rightclick = function(pos, node, clicker) + minetest.set_node(pos, {name = "mesecons_blinkyplant:blinky_plant"}) + mesecon:receptor_off(pos) + end +}) + +minetest.register_craft({ + output = "mesecons_blinkyplant:blinky_plant_off 1", + recipe = { + {"","group:mesecon_conductor_craftable",""}, + {"","group:mesecon_conductor_craftable",""}, + {"default:sapling","default:sapling","default:sapling"}, + } +}) + +minetest.register_abm({ + nodenames = { + "mesecons_blinkyplant:blinky_plant_off", + "mesecons_blinkyplant:blinky_plant_on" + }, + interval = BLINKY_PLANT_INTERVAL, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + if node.name == "mesecons_blinkyplant:blinky_plant_off" then + minetest.add_node(pos, {name="mesecons_blinkyplant:blinky_plant_on"}) + mesecon:receptor_on(pos) + else + minetest.add_node(pos, {name="mesecons_blinkyplant:blinky_plant_off"}) + mesecon:receptor_off(pos) + end + nodeupdate(pos) + end, +}) + diff --git a/mods/mesecons/mesecons_blinkyplant/textures/jeija_blinky_plant_off.png b/mods/mesecons/mesecons_blinkyplant/textures/jeija_blinky_plant_off.png new file mode 100644 index 0000000..4f507da Binary files /dev/null and b/mods/mesecons/mesecons_blinkyplant/textures/jeija_blinky_plant_off.png differ diff --git a/mods/mesecons/mesecons_blinkyplant/textures/jeija_blinky_plant_on.png b/mods/mesecons/mesecons_blinkyplant/textures/jeija_blinky_plant_on.png new file mode 100644 index 0000000..f77a134 Binary files /dev/null and b/mods/mesecons/mesecons_blinkyplant/textures/jeija_blinky_plant_on.png differ diff --git a/mods/mesecons/mesecons_button/depends.txt b/mods/mesecons/mesecons_button/depends.txt new file mode 100644 index 0000000..19c798c --- /dev/null +++ b/mods/mesecons/mesecons_button/depends.txt @@ -0,0 +1,2 @@ +mesecons +mesecons_receiver diff --git a/mods/mesecons/mesecons_button/init.lua b/mods/mesecons/mesecons_button/init.lua new file mode 100644 index 0000000..f4a9198 --- /dev/null +++ b/mods/mesecons/mesecons_button/init.lua @@ -0,0 +1,98 @@ +-- WALL BUTTON +-- A button that when pressed emits power for 1 second +-- and then turns off again + +mesecon.button_turnoff = function (pos) + local node = minetest.get_node(pos) + if node.name=="mesecons_button:button_on" then --has not been dug + minetest.swap_node(pos, {name = "mesecons_button:button_off", param2=node.param2}) + minetest.sound_play("mesecons_button_pop", {pos=pos}) + local rules = mesecon.rules.buttonlike_get(node) + mesecon:receptor_off(pos, rules) + end +end + +minetest.register_node("mesecons_button:button_off", { + drawtype = "nodebox", + tiles = { + "jeija_wall_button_sides.png", + "jeija_wall_button_sides.png", + "jeija_wall_button_sides.png", + "jeija_wall_button_sides.png", + "jeija_wall_button_sides.png", + "jeija_wall_button_off.png" + }, + paramtype = "light", + paramtype2 = "facedir", + legacy_wallmounted = true, + walkable = false, + sunlight_propagates = true, + selection_box = { + type = "fixed", + fixed = { -6/16, -6/16, 5/16, 6/16, 6/16, 8/16 } + }, + node_box = { + type = "fixed", + fixed = { + { -6/16, -6/16, 6/16, 6/16, 6/16, 8/16 }, -- the thin plate behind the button + { -4/16, -2/16, 4/16, 4/16, 2/16, 6/16 } -- the button itself + } + }, + groups = {dig_immediate=2, mesecon_needs_receiver = 1}, + description = "Button", + on_punch = function (pos, node) + minetest.swap_node(pos, {name = "mesecons_button:button_on", param2=node.param2}) + mesecon:receptor_on(pos, mesecon.rules.buttonlike_get(node)) + minetest.sound_play("mesecons_button_push", {pos=pos}) + minetest.after(1, mesecon.button_turnoff, pos) + end, + sounds = default.node_sound_stone_defaults(), + mesecons = {receptor = { + state = mesecon.state.off, + rules = mesecon.rules.buttonlike_get + }} +}) + +minetest.register_node("mesecons_button:button_on", { + drawtype = "nodebox", + tiles = { + "jeija_wall_button_sides.png", + "jeija_wall_button_sides.png", + "jeija_wall_button_sides.png", + "jeija_wall_button_sides.png", + "jeija_wall_button_sides.png", + "jeija_wall_button_on.png" + }, + paramtype = "light", + paramtype2 = "facedir", + legacy_wallmounted = true, + walkable = false, + light_source = LIGHT_MAX-7, + sunlight_propagates = true, + selection_box = { + type = "fixed", + fixed = { -6/16, -6/16, 5/16, 6/16, 6/16, 8/16 } + }, + node_box = { + type = "fixed", + fixed = { + { -6/16, -6/16, 6/16, 6/16, 6/16, 8/16 }, + { -4/16, -2/16, 11/32, 4/16, 2/16, 6/16 } + } + }, + groups = {dig_immediate=2, not_in_creative_inventory=1, mesecon_needs_receiver = 1}, + drop = 'mesecons_button:button_off', + description = "Button", + sounds = default.node_sound_stone_defaults(), + mesecons = {receptor = { + state = mesecon.state.on, + rules = mesecon.rules.buttonlike_get + }} +}) + +minetest.register_craft({ + output = "mesecons_button:button_off 2", + recipe = { + {"group:mesecon_conductor_craftable","default:stone"}, + } +}) diff --git a/mods/mesecons/mesecons_button/sounds/mesecons_button_pop.ogg b/mods/mesecons/mesecons_button/sounds/mesecons_button_pop.ogg new file mode 100644 index 0000000..9d56bb8 Binary files /dev/null and b/mods/mesecons/mesecons_button/sounds/mesecons_button_pop.ogg differ diff --git a/mods/mesecons/mesecons_button/sounds/mesecons_button_push.ogg b/mods/mesecons/mesecons_button/sounds/mesecons_button_push.ogg new file mode 100644 index 0000000..53d45c1 Binary files /dev/null and b/mods/mesecons/mesecons_button/sounds/mesecons_button_push.ogg differ diff --git a/mods/mesecons/mesecons_button/textures/jeija_wall_button_off.png b/mods/mesecons/mesecons_button/textures/jeija_wall_button_off.png new file mode 100644 index 0000000..0e3ff25 Binary files /dev/null and b/mods/mesecons/mesecons_button/textures/jeija_wall_button_off.png differ diff --git a/mods/mesecons/mesecons_button/textures/jeija_wall_button_on.png b/mods/mesecons/mesecons_button/textures/jeija_wall_button_on.png new file mode 100644 index 0000000..1d97464 Binary files /dev/null and b/mods/mesecons/mesecons_button/textures/jeija_wall_button_on.png differ diff --git a/mods/mesecons/mesecons_button/textures/jeija_wall_button_sides.png b/mods/mesecons/mesecons_button/textures/jeija_wall_button_sides.png new file mode 100644 index 0000000..9b79b57 Binary files /dev/null and b/mods/mesecons/mesecons_button/textures/jeija_wall_button_sides.png differ diff --git a/mods/mesecons/mesecons_commandblock/depends.txt b/mods/mesecons/mesecons_commandblock/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_commandblock/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_commandblock/init.lua b/mods/mesecons/mesecons_commandblock/init.lua new file mode 100644 index 0000000..8fd23f6 --- /dev/null +++ b/mods/mesecons/mesecons_commandblock/init.lua @@ -0,0 +1,195 @@ +minetest.register_chatcommand("say", { + params = "", + description = "Say as the server", + privs = {server=true}, + func = function(name, param) + minetest.chat_send_all(name .. ": " .. param) + end +}) + +minetest.register_chatcommand("tell", { + params = " ", + description = "Say to privately", + func = function(name, param) + local found, _, target, message = param:find("^([^%s]+)%s+(.*)$") + if found == nil then + minetest.chat_send_player(name, "Invalid usage: " .. param) + return + end + if not minetest.get_player_by_name(target) then + minetest.chat_send_player(name, "Invalid target: " .. target) + end + minetest.chat_send_player(target, name .. " whispers: " .. message, false) + end +}) + +minetest.register_chatcommand("hp", { + params = " ", + description = "Set health of to hitpoints", + privs = {ban=true}, + func = function(name, param) + local found, _, target, value = param:find("^([^%s]+)%s+(%d+)$") + if found == nil then + minetest.chat_send_player(name, "Invalid usage: " .. param) + return + end + local player = minetest.get_player_by_name(target) + if player then + player:set_hp(value) + else + minetest.chat_send_player(name, "Invalid target: " .. target) + end + end +}) + +local function initialize_data(meta) + local commands = meta:get_string("commands") + meta:set_string("formspec", + "invsize[9,5;]" .. + "textarea[0.5,0.5;8.5,4;commands;Commands;"..commands.."]" .. + "label[1,3.8;@nearest, @farthest, and @random are replaced by the respective player names]" .. + "button_exit[3.3,4.5;2,1;submit;Submit]") + local owner = meta:get_string("owner") + if owner == "" then + owner = "not owned" + else + owner = "owned by " .. owner + end + meta:set_string("infotext", "Command Block\n" .. + "(" .. owner .. ")\n" .. + "Commands: "..commands) +end + +local function construct(pos) + local meta = minetest.get_meta(pos) + + meta:set_string("commands", "tell @nearest Commandblock unconfigured") + + meta:set_string("owner", "") + + initialize_data(meta) +end + +local function after_place(pos, placer) + if placer then + local meta = minetest.get_meta(pos) + meta:set_string("owner", placer:get_player_name()) + initialize_data(meta) + end +end + +local function receive_fields(pos, formname, fields, sender) + if not fields.submit then + return + end + local meta = minetest.get_meta(pos) + local owner = meta:get_string("owner") + if owner ~= "" and sender:get_player_name() ~= owner then + return + end + meta:set_string("commands", fields.commands) + + initialize_data(meta) +end + +local function resolve_commands(commands, pos) + local nearest, farthest = nil, nil + local min_distance, max_distance = math.huge, -1 + local players = minetest.get_connected_players() + for index, player in pairs(players) do + local distance = vector.distance(pos, player:getpos()) + if distance < min_distance then + min_distance = distance + nearest = player:get_player_name() + end + if distance > max_distance then + max_distance = distance + farthest = player:get_player_name() + end + end + local random = players[math.random(#players)]:get_player_name() + commands = commands:gsub("@nearest", nearest) + commands = commands:gsub("@farthest", farthest) + commands = commands:gsub("@random", random) + return commands +end + +local function commandblock_action_on(pos, node) + if node.name ~= "mesecons_commandblock:commandblock_off" then + return + end + + minetest.swap_node(pos, {name = "mesecons_commandblock:commandblock_on"}) + + local meta = minetest.get_meta(pos) + local owner = meta:get_string("owner") + if owner == "" then + return + end + + local commands = resolve_commands(meta:get_string("commands"), pos) + for _, command in pairs(commands:split("\n")) do + local pos = command:find(" ") + local cmd, param = command, "" + if pos then + cmd = command:sub(1, pos - 1) + param = command:sub(pos + 1) + end + local cmddef = minetest.chatcommands[cmd] + if not cmddef then + minetest.chat_send_player(owner, "The command "..cmd.." does not exist") + return + end + local has_privs, missing_privs = minetest.check_player_privs(owner, cmddef.privs) + if not has_privs then + minetest.chat_send_player(owner, "You don't have permission " + .."to run "..cmd + .." (missing privileges: " + ..table.concat(missing_privs, ", ")..")") + return + end + cmddef.func(owner, param) + end +end + +local function commandblock_action_off(pos, node) + if node.name == "mesecons_commandblock:commandblock_on" then + minetest.swap_node(pos, {name = "mesecons_commandblock:commandblock_off"}) + end +end + +local function can_dig(pos, player) + local meta = minetest.get_meta(pos) + local owner = meta:get_string("owner") + return owner == "" or owner == player:get_player_name() +end + +minetest.register_node("mesecons_commandblock:commandblock_off", { + description = "Command Block", + tiles = {"jeija_commandblock_off.png"}, + inventory_image = minetest.inventorycube("jeija_commandblock_off.png"), + groups = {cracky=2, mesecon_effector_off=1}, + on_construct = construct, + after_place_node = after_place, + on_receive_fields = receive_fields, + can_dig = can_dig, + sounds = default.node_sound_stone_defaults(), + mesecons = {effector = { + action_on = commandblock_action_on + }} +}) + +minetest.register_node("mesecons_commandblock:commandblock_on", { + tiles = {"jeija_commandblock_on.png"}, + groups = {cracky=2, mesecon_effector_on=1, not_in_creative_inventory=1}, + light_source = 10, + drop = "mesecons_commandblock:commandblock_off", + on_construct = construct, + after_place_node = after_place, + on_receive_fields = receive_fields, + can_dig = can_dig, + sounds = default.node_sound_stone_defaults(), + mesecons = {effector = { + action_off = commandblock_action_off + }} +}) diff --git a/mods/mesecons/mesecons_commandblock/textures/jeija_close_window.png b/mods/mesecons/mesecons_commandblock/textures/jeija_close_window.png new file mode 100644 index 0000000..5c27c6c Binary files /dev/null and b/mods/mesecons/mesecons_commandblock/textures/jeija_close_window.png differ diff --git a/mods/mesecons/mesecons_commandblock/textures/jeija_commandblock_off.png b/mods/mesecons/mesecons_commandblock/textures/jeija_commandblock_off.png new file mode 100644 index 0000000..c05b616 Binary files /dev/null and b/mods/mesecons/mesecons_commandblock/textures/jeija_commandblock_off.png differ diff --git a/mods/mesecons/mesecons_commandblock/textures/jeija_commandblock_on.png b/mods/mesecons/mesecons_commandblock/textures/jeija_commandblock_on.png new file mode 100644 index 0000000..7fc35b6 Binary files /dev/null and b/mods/mesecons/mesecons_commandblock/textures/jeija_commandblock_on.png differ diff --git a/mods/mesecons/mesecons_compatibility/depends.txt b/mods/mesecons/mesecons_compatibility/depends.txt new file mode 100644 index 0000000..ed2fcd8 --- /dev/null +++ b/mods/mesecons/mesecons_compatibility/depends.txt @@ -0,0 +1,2 @@ +mesecons +doors diff --git a/mods/mesecons/mesecons_compatibility/init.lua b/mods/mesecons/mesecons_compatibility/init.lua new file mode 100644 index 0000000..5bdce27 --- /dev/null +++ b/mods/mesecons/mesecons_compatibility/init.lua @@ -0,0 +1,167 @@ +doors = {} + +-- Registers a door - REDEFINITION ONLY | DOORS MOD MUST HAVE BEEN LOADED BEFORE +-- name: The name of the door +-- def: a table with the folowing fields: +-- description +-- inventory_image +-- groups +-- tiles_bottom: the tiles of the bottom part of the door {front, side} +-- tiles_top: the tiles of the bottom part of the door {front, side} +-- If the following fields are not defined the default values are used +-- node_box_bottom +-- node_box_top +-- selection_box_bottom +-- selection_box_top +-- only_placer_can_open: if true only the player who placed the door can +-- open it + +function doors:register_door(name, def) + def.groups.not_in_creative_inventory = 1 + + local box = {{-0.5, -0.5, -0.5, 0.5, 0.5, -0.5+1.5/16}} + + if not def.node_box_bottom then + def.node_box_bottom = box + end + if not def.node_box_top then + def.node_box_top = box + end + if not def.selection_box_bottom then + def.selection_box_bottom= box + end + if not def.selection_box_top then + def.selection_box_top = box + end + + local tt = def.tiles_top + local tb = def.tiles_bottom + + local function after_dig_node(pos, name) + if minetest.get_node(pos).name == name then + minetest.remove_node(pos) + end + end + + local function on_rightclick(pos, dir, check_name, replace, replace_dir, params) + pos.y = pos.y+dir + if not minetest.get_node(pos).name == check_name then + return + end + local p2 = minetest.get_node(pos).param2 + p2 = params[p2+1] + + local meta = minetest.get_meta(pos):to_table() + minetest.set_node(pos, {name=replace_dir, param2=p2}) + minetest.get_meta(pos):from_table(meta) + + pos.y = pos.y-dir + meta = minetest.get_meta(pos):to_table() + minetest.set_node(pos, {name=replace, param2=p2}) + minetest.get_meta(pos):from_table(meta) + end + + local function on_mesecons_signal_open (pos, node) + on_rightclick(pos, 1, name.."_t_1", name.."_b_2", name.."_t_2", {1,2,3,0}) + end + + local function on_mesecons_signal_close (pos, node) + on_rightclick(pos, 1, name.."_t_2", name.."_b_1", name.."_t_1", {3,0,1,2}) + end + + local function check_player_priv(pos, player) + if not def.only_placer_can_open then + return true + end + local meta = minetest.get_meta(pos) + local pn = player:get_player_name() + return meta:get_string("doors_owner") == pn + end + + minetest.register_node(":"..name.."_b_1", { + tiles = {tb[2], tb[2], tb[2], tb[2], tb[1], tb[1].."^[transformfx"}, + paramtype = "light", + paramtype2 = "facedir", + drop = name, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = def.node_box_bottom + }, + selection_box = { + type = "fixed", + fixed = def.selection_box_bottom + }, + groups = def.groups, + + after_dig_node = function(pos, oldnode, oldmetadata, digger) + pos.y = pos.y+1 + after_dig_node(pos, name.."_t_1") + end, + + on_rightclick = function(pos, node, puncher) + if check_player_priv(pos, puncher) then + on_rightclick(pos, 1, name.."_t_1", name.."_b_2", name.."_t_2", {1,2,3,0}) + end + end, + + mesecons = {effector = { + action_on = on_mesecons_signal_open + }}, + + can_dig = check_player_priv, + }) + + minetest.register_node(":"..name.."_b_2", { + tiles = {tb[2], tb[2], tb[2], tb[2], tb[1].."^[transformfx", tb[1]}, + paramtype = "light", + paramtype2 = "facedir", + drop = name, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = def.node_box_bottom + }, + selection_box = { + type = "fixed", + fixed = def.selection_box_bottom + }, + groups = def.groups, + + after_dig_node = function(pos, oldnode, oldmetadata, digger) + pos.y = pos.y+1 + after_dig_node(pos, name.."_t_2") + end, + + on_rightclick = function(pos, node, puncher) + if check_player_priv(pos, puncher) then + on_rightclick(pos, 1, name.."_t_2", name.."_b_1", name.."_t_1", {3,0,1,2}) + end + end, + + mesecons = {effector = { + action_off = on_mesecons_signal_close + }}, + + can_dig = check_player_priv, + }) +end + +doors:register_door("doors:door_wood", { + description = "Wooden Door", + inventory_image = "door_wood.png", + groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1}, + tiles_bottom = {"door_wood_b.png", "door_brown.png"}, + tiles_top = {"door_wood_a.png", "door_brown.png"}, + sounds = default.node_sound_wood_defaults(), +}) + +doors:register_door("doors:door_steel", { + description = "Steel Door", + inventory_image = "door_steel.png", + groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2,door=1}, + tiles_bottom = {"door_steel_b.png", "door_grey.png"}, + tiles_top = {"door_steel_a.png", "door_grey.png"}, + only_placer_can_open = true, + sounds = default.node_sound_stone_defaults(), +}) diff --git a/mods/mesecons/mesecons_delayer/depends.txt b/mods/mesecons/mesecons_delayer/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_delayer/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_delayer/init.lua b/mods/mesecons/mesecons_delayer/init.lua new file mode 100644 index 0000000..239d378 --- /dev/null +++ b/mods/mesecons/mesecons_delayer/init.lua @@ -0,0 +1,179 @@ +-- Function that get the input/output rules of the delayer +local delayer_get_output_rules = function(node) + local rules = {{x = 0, y = 0, z = 1}} + for i = 0, node.param2 do + rules = mesecon:rotate_rules_left(rules) + end + return rules +end + +local delayer_get_input_rules = function(node) + local rules = {{x = 0, y = 0, z = -1}} + for i = 0, node.param2 do + rules = mesecon:rotate_rules_left(rules) + end + return rules +end + +-- Functions that are called after the delay time + +local delayer_activate = function(pos, node) + local def = minetest.registered_nodes[node.name] + local time = def.delayer_time + minetest.swap_node(pos, {name = def.delayer_onstate, param2=node.param2}) + mesecon.queue:add_action(pos, "receptor_on", {delayer_get_output_rules(node)}, time, nil) +end + +local delayer_deactivate = function(pos, node) + local def = minetest.registered_nodes[node.name] + local time = def.delayer_time + minetest.swap_node(pos, {name = def.delayer_offstate, param2=node.param2}) + mesecon.queue:add_action(pos, "receptor_off", {delayer_get_output_rules(node)}, time, nil) +end + +-- Register the 2 (states) x 4 (delay times) delayers + +for i = 1, 4 do +local groups = {} +if i == 1 then + groups = {bendy=2,snappy=1,dig_immediate=2} +else + groups = {bendy=2,snappy=1,dig_immediate=2, not_in_creative_inventory=1} +end + +local delaytime +if i == 1 then delaytime = 0.1 +elseif i == 2 then delaytime = 0.3 +elseif i == 3 then delaytime = 0.5 +elseif i == 4 then delaytime = 1.0 end + +boxes = {{ -6/16, -8/16, -6/16, 6/16, -7/16, 6/16 }, -- the main slab + + { -2/16, -7/16, -4/16, 2/16, -26/64, -3/16 }, -- the jeweled "on" indicator + { -3/16, -7/16, -3/16, 3/16, -26/64, -2/16 }, + { -4/16, -7/16, -2/16, 4/16, -26/64, 2/16 }, + { -3/16, -7/16, 2/16, 3/16, -26/64, 3/16 }, + { -2/16, -7/16, 3/16, 2/16, -26/64, 4/16 }, + + { -6/16, -7/16, -6/16, -4/16, -27/64, -4/16 }, -- the timer indicator + { -8/16, -8/16, -1/16, -6/16, -7/16, 1/16 }, -- the two wire stubs + { 6/16, -8/16, -1/16, 8/16, -7/16, 1/16 }} + +minetest.register_node("mesecons_delayer:delayer_off_"..tostring(i), { + description = "Delayer", + drawtype = "nodebox", + tiles = { + "mesecons_delayer_off_"..tostring(i)..".png", + "mesecons_delayer_bottom.png", + "mesecons_delayer_ends_off.png", + "mesecons_delayer_ends_off.png", + "mesecons_delayer_sides_off.png", + "mesecons_delayer_sides_off.png" + }, + inventory_image = "mesecons_delayer_off_1.png", + wield_image = "mesecons_delayer_off_1.png", + walkable = true, + selection_box = { + type = "fixed", + fixed = { -8/16, -8/16, -8/16, 8/16, -6/16, 8/16 }, + }, + node_box = { + type = "fixed", + fixed = boxes + }, + groups = groups, + paramtype = "light", + paramtype2 = "facedir", + sunlight_propagates = true, + is_ground_content = true, + drop = 'mesecons_delayer:delayer_off_1', + on_punch = function (pos, node) + if node.name=="mesecons_delayer:delayer_off_1" then + minetest.swap_node(pos, {name = "mesecons_delayer:delayer_off_2", param2=node.param2}) + elseif node.name=="mesecons_delayer:delayer_off_2" then + minetest.swap_node(pos, {name = "mesecons_delayer:delayer_off_3", param2=node.param2}) + elseif node.name=="mesecons_delayer:delayer_off_3" then + minetest.swap_node(pos, {name = "mesecons_delayer:delayer_off_4", param2=node.param2}) + elseif node.name=="mesecons_delayer:delayer_off_4" then + minetest.swap_node(pos, {name = "mesecons_delayer:delayer_off_1", param2=node.param2}) + end + end, + delayer_time = delaytime, + delayer_onstate = "mesecons_delayer:delayer_on_"..tostring(i), + sounds = default.node_sound_stone_defaults(), + mesecons = { + receptor = + { + state = mesecon.state.off, + rules = delayer_get_output_rules + }, + effector = + { + rules = delayer_get_input_rules, + action_on = delayer_activate + } + } +}) + + +minetest.register_node("mesecons_delayer:delayer_on_"..tostring(i), { + description = "You hacker you", + drawtype = "nodebox", + tiles = { + "mesecons_delayer_on_"..tostring(i)..".png", + "mesecons_delayer_bottom.png", + "mesecons_delayer_ends_on.png", + "mesecons_delayer_ends_on.png", + "mesecons_delayer_sides_on.png", + "mesecons_delayer_sides_on.png" + }, + walkable = true, + selection_box = { + type = "fixed", + fixed = { -8/16, -8/16, -8/16, 8/16, -6/16, 8/16 }, + }, + node_box = { + type = "fixed", + fixed = boxes + }, + groups = {bendy = 2, snappy = 1, dig_immediate = 2, not_in_creative_inventory = 1}, + paramtype = "light", + paramtype2 = "facedir", + sunlight_propagates = true, + is_ground_content = true, + drop = 'mesecons_delayer:delayer_off_1', + on_punch = function (pos, node) + if node.name=="mesecons_delayer:delayer_on_1" then + minetest.swap_node(pos, {name = "mesecons_delayer:delayer_on_2", param2=node.param2}) + elseif node.name=="mesecons_delayer:delayer_on_2" then + minetest.swap_node(pos, {name = "mesecons_delayer:delayer_on_3", param2=node.param2}) + elseif node.name=="mesecons_delayer:delayer_on_3" then + minetest.swap_node(pos, {name = "mesecons_delayer:delayer_on_4", param2=node.param2}) + elseif node.name=="mesecons_delayer:delayer_on_4" then + minetest.swap_node(pos, {name = "mesecons_delayer:delayer_on_1", param2=node.param2}) + end + end, + delayer_time = delaytime, + delayer_offstate = "mesecons_delayer:delayer_off_"..tostring(i), + mesecons = { + receptor = + { + state = mesecon.state.on, + rules = delayer_get_output_rules + }, + effector = + { + rules = delayer_get_input_rules, + action_off = delayer_deactivate + } + } +}) +end + +minetest.register_craft({ + output = "mesecons_delayer:delayer_off_1", + recipe = { + {"mesecons_torch:mesecon_torch_on", "group:mesecon_conductor_craftable", "mesecons_torch:mesecon_torch_on"}, + {"default:cobble","default:cobble", "default:cobble"}, + } +}) diff --git a/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_bottom.png b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_bottom.png new file mode 100644 index 0000000..2e49d31 Binary files /dev/null and b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_bottom.png differ diff --git a/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_ends_off.png b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_ends_off.png new file mode 100644 index 0000000..0242deb Binary files /dev/null and b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_ends_off.png differ diff --git a/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_ends_on.png b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_ends_on.png new file mode 100644 index 0000000..19ae0cb Binary files /dev/null and b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_ends_on.png differ diff --git a/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_off_1.png b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_off_1.png new file mode 100644 index 0000000..7372b37 Binary files /dev/null and b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_off_1.png differ diff --git a/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_off_2.png b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_off_2.png new file mode 100644 index 0000000..e34f0ac Binary files /dev/null and b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_off_2.png differ diff --git a/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_off_3.png b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_off_3.png new file mode 100644 index 0000000..091adbc Binary files /dev/null and b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_off_3.png differ diff --git a/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_off_4.png b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_off_4.png new file mode 100644 index 0000000..7ecc9b6 Binary files /dev/null and b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_off_4.png differ diff --git a/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_on_1.png b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_on_1.png new file mode 100644 index 0000000..61f52f2 Binary files /dev/null and b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_on_1.png differ diff --git a/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_on_2.png b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_on_2.png new file mode 100644 index 0000000..7bd363f Binary files /dev/null and b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_on_2.png differ diff --git a/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_on_3.png b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_on_3.png new file mode 100644 index 0000000..b93f725 Binary files /dev/null and b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_on_3.png differ diff --git a/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_on_4.png b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_on_4.png new file mode 100644 index 0000000..ca90a1e Binary files /dev/null and b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_on_4.png differ diff --git a/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_sides_off.png b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_sides_off.png new file mode 100644 index 0000000..79f3d59 Binary files /dev/null and b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_sides_off.png differ diff --git a/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_sides_on.png b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_sides_on.png new file mode 100644 index 0000000..1c8edaa Binary files /dev/null and b/mods/mesecons/mesecons_delayer/textures/mesecons_delayer_sides_on.png differ diff --git a/mods/mesecons/mesecons_detector/depends.txt b/mods/mesecons/mesecons_detector/depends.txt new file mode 100644 index 0000000..bc7b062 --- /dev/null +++ b/mods/mesecons/mesecons_detector/depends.txt @@ -0,0 +1,2 @@ +mesecons +mesecons_materials diff --git a/mods/mesecons/mesecons_detector/init.lua b/mods/mesecons/mesecons_detector/init.lua new file mode 100644 index 0000000..8d2f53c --- /dev/null +++ b/mods/mesecons/mesecons_detector/init.lua @@ -0,0 +1,266 @@ +local GET_COMMAND = "GET" + +-- Object detector +-- Detects players in a certain radius +-- The radius can be specified in mesecons/settings.lua + +local object_detector_make_formspec = function (pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", "size[9,2.5]" .. + "field[0.3, 0;9,2;scanname;Name of player to scan for (empty for any):;${scanname}]".. + "field[0.3,1.5;4,2;digiline_channel;Digiline Channel (optional):;${digiline_channel}]".. + "button_exit[7,0.75;2,3;;Save]") +end + +local object_detector_on_receive_fields = function(pos, formname, fields) + if not fields.scanname or not fields.digiline_channel then return end; + + local meta = minetest.get_meta(pos) + meta:set_string("scanname", fields.scanname) + meta:set_string("digiline_channel", fields.digiline_channel) + object_detector_make_formspec(pos) +end + +-- returns true if player was found, false if not +local object_detector_scan = function (pos) + local objs = minetest.get_objects_inside_radius(pos, OBJECT_DETECTOR_RADIUS) + for k, obj in pairs(objs) do + local isname = obj:get_player_name() -- "" is returned if it is not a player; "" ~= nil! + local scanname = minetest.get_meta(pos):get_string("scanname") + if (isname == scanname and isname ~= "") or (isname ~= "" and scanname == "") then -- player with scanname found or not scanname specified + return true + end + end + return false +end + +-- set player name when receiving a digiline signal on a specific channel +local object_detector_digiline = { + effector = { + action = function (pos, node, channel, msg) + local meta = minetest.get_meta(pos) + local active_channel = meta:get_string("digiline_channel") + if channel == active_channel then + meta:set_string("scanname", msg) + object_detector_make_formspec(pos) + end + end, + } +} + +minetest.register_node("mesecons_detector:object_detector_off", { + tiles = {"default_steel_block.png", "default_steel_block.png", "jeija_object_detector_off.png", "jeija_object_detector_off.png", "jeija_object_detector_off.png", "jeija_object_detector_off.png"}, + paramtype = "light", + walkable = true, + groups = {cracky=3}, + description="Player Detector", + mesecons = {receptor = { + state = mesecon.state.off + }}, + on_construct = object_detector_make_formspec, + on_receive_fields = object_detector_on_receive_fields, + sounds = default.node_sound_stone_defaults(), + digiline = object_detector_digiline +}) + +minetest.register_node("mesecons_detector:object_detector_on", { + tiles = {"default_steel_block.png", "default_steel_block.png", "jeija_object_detector_on.png", "jeija_object_detector_on.png", "jeija_object_detector_on.png", "jeija_object_detector_on.png"}, + paramtype = "light", + walkable = true, + groups = {cracky=3,not_in_creative_inventory=1}, + drop = 'mesecons_detector:object_detector_off', + mesecons = {receptor = { + state = mesecon.state.on + }}, + on_construct = object_detector_make_formspec, + on_receive_fields = object_detector_on_receive_fields, + sounds = default.node_sound_stone_defaults(), + digiline = object_detector_digiline +}) + +minetest.register_craft({ + output = 'mesecons_detector:object_detector_off', + recipe = { + {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, + {"default:steel_ingot", "mesecons_luacontroller:luacontroller0000", "default:steel_ingot"}, + {"default:steel_ingot", "group:mesecon_conductor_craftable", "default:steel_ingot"}, + } +}) + +minetest.register_abm( + {nodenames = {"mesecons_detector:object_detector_off"}, + interval = 1.0, + chance = 1, + action = function(pos) + if object_detector_scan(pos) then + minetest.swap_node(pos, {name = "mesecons_detector:object_detector_on"}) + mesecon:receptor_on(pos) + end + end, +}) + +minetest.register_abm( + {nodenames = {"mesecons_detector:object_detector_on"}, + interval = 1.0, + chance = 1, + action = function(pos) + if not object_detector_scan(pos) then + minetest.swap_node(pos, {name = "mesecons_detector:object_detector_off"}) + mesecon:receptor_off(pos) + end + end, +}) + +-- Node detector +-- Detects the node in front of it + +local node_detector_make_formspec = function (pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", "size[9,2.5]" .. + "field[0.3, 0;9,2;scanname;Name of node to scan for (empty for any):;${scanname}]".. + "field[0.3,1.5;4,2;digiline_channel;Digiline Channel (optional):;${digiline_channel}]".. + "button_exit[7,0.75;2,3;;Save]") +end + +local node_detector_on_receive_fields = function(pos, formname, fields) + if not fields.scanname or not fields.digiline_channel then return end; + + local meta = minetest.get_meta(pos) + meta:set_string("scanname", fields.scanname) + meta:set_string("digiline_channel", fields.digiline_channel) + node_detector_make_formspec(pos) +end + +-- returns true if player was found, false if not +local node_detector_scan = function (pos) + local node = minetest.get_node(pos) + local frontpos = vector.subtract(pos, minetest.facedir_to_dir(node.param2)) + local frontnode = minetest.get_node(frontpos) + local meta = minetest.get_meta(pos) + return (frontnode.name == meta:get_string("scanname")) or + (frontnode.name ~= "air" and frontnode.name ~= "ignore" and meta:get_string("scanname") == "") +end + +-- set player name when receiving a digiline signal on a specific channel +local node_detector_digiline = { + effector = { + action = function (pos, node, channel, msg) + local meta = minetest.get_meta(pos) + local active_channel = meta:get_string("digiline_channel") + if channel == active_channel then + if msg == GET_COMMAND then + local frontpos = vector.subtract(pos, minetest.facedir_to_dir(node.param2)) + local name = minetest.get_node(frontpos).name + digiline:receptor_send(pos, digiline.rules.default, channel, name) + else + meta:set_string("scanname", msg) + node_detector_make_formspec(pos) + end + end + end, + }, + receptor = {} +} + +minetest.register_node("mesecons_detector:node_detector_off", { + tiles = {"default_steel_block.png", "default_steel_block.png", "default_steel_block.png", "default_steel_block.png", "default_steel_block.png", "jeija_node_detector_off.png"}, + paramtype = "light", + paramtype2 = "facedir", + walkable = true, + groups = {cracky=3}, + description="Node Detector", + mesecons = {receptor = { + state = mesecon.state.off + }}, + on_construct = node_detector_make_formspec, + on_receive_fields = node_detector_on_receive_fields, + after_place_node = function (pos, placer) + local placer_pos = placer:getpos() + + --correct for the player's height + if placer:is_player() then placer_pos.y = placer_pos.y + 1.5 end + + --correct for 6d facedir + if placer_pos then + local dir = { + x = pos.x - placer_pos.x, + y = pos.y - placer_pos.y, + z = pos.z - placer_pos.z + } + local node = minetest.get_node(pos) + node.param2 = minetest.dir_to_facedir(dir, true) + minetest.set_node(pos, node) + minetest.log("action", "real (6d) facedir: " .. node.param2) + end + end, + sounds = default.node_sound_stone_defaults(), + digiline = node_detector_digiline +}) + +minetest.register_node("mesecons_detector:node_detector_on", { + tiles = {"default_steel_block.png", "default_steel_block.png", "default_steel_block.png", "default_steel_block.png", "default_steel_block.png", "jeija_node_detector_on.png"}, + paramtype = "light", + paramtype2 = "facedir", + walkable = true, + groups = {cracky=3,not_in_creative_inventory=1}, + drop = 'mesecons_detector:node_detector_off', + mesecons = {receptor = { + state = mesecon.state.on + }}, + on_construct = node_detector_make_formspec, + on_receive_fields = node_detector_on_receive_fields, + after_place_node = function (pos, placer) + local placer_pos = placer:getpos() + + --correct for the player's height + if placer:is_player() then placer_pos.y = placer_pos.y + 1.5 end + + --correct for 6d facedir + if placer_pos then + local dir = { + x = pos.x - placer_pos.x, + y = pos.y - placer_pos.y, + z = pos.z - placer_pos.z + } + local node = minetest.get_node(pos) + node.param2 = minetest.dir_to_facedir(dir, true) + minetest.set_node(pos, node) + minetest.log("action", "real (6d) facedir: " .. node.param2) + end + end, + sounds = default.node_sound_stone_defaults(), + digiline = node_detector_digiline +}) + +minetest.register_craft({ + output = 'mesecons_detector:node_detector_off', + recipe = { + {"default:steel_ingot", "group:mesecon_conductor_craftable", "default:steel_ingot"}, + {"default:steel_ingot", "mesecons_luacontroller:luacontroller0000", "default:steel_ingot"}, + {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, + } +}) + +minetest.register_abm( + {nodenames = {"mesecons_detector:node_detector_off"}, + interval = 1.0, + chance = 1, + action = function(pos, node) + if node_detector_scan(pos) then + minetest.swap_node(pos, {name = "mesecons_detector:node_detector_on", param2 = node.param2}) + mesecon:receptor_on(pos) + end + end, +}) + +minetest.register_abm( + {nodenames = {"mesecons_detector:node_detector_on"}, + interval = 1.0, + chance = 1, + action = function(pos, node) + if not node_detector_scan(pos) then + minetest.swap_node(pos, {name = "mesecons_detector:node_detector_off", param2 = node.param2}) + mesecon:receptor_off(pos) + end + end, +}) diff --git a/mods/mesecons/mesecons_detector/textures/jeija_node_detector_off.png b/mods/mesecons/mesecons_detector/textures/jeija_node_detector_off.png new file mode 100644 index 0000000..6d130ad Binary files /dev/null and b/mods/mesecons/mesecons_detector/textures/jeija_node_detector_off.png differ diff --git a/mods/mesecons/mesecons_detector/textures/jeija_node_detector_on.png b/mods/mesecons/mesecons_detector/textures/jeija_node_detector_on.png new file mode 100644 index 0000000..926a9d1 Binary files /dev/null and b/mods/mesecons/mesecons_detector/textures/jeija_node_detector_on.png differ diff --git a/mods/mesecons/mesecons_detector/textures/jeija_object_detector_off.png b/mods/mesecons/mesecons_detector/textures/jeija_object_detector_off.png new file mode 100644 index 0000000..825d78f Binary files /dev/null and b/mods/mesecons/mesecons_detector/textures/jeija_object_detector_off.png differ diff --git a/mods/mesecons/mesecons_detector/textures/jeija_object_detector_on.png b/mods/mesecons/mesecons_detector/textures/jeija_object_detector_on.png new file mode 100644 index 0000000..96f8ba3 Binary files /dev/null and b/mods/mesecons/mesecons_detector/textures/jeija_object_detector_on.png differ diff --git a/mods/mesecons/mesecons_extrawires/corner.lua b/mods/mesecons/mesecons_extrawires/corner.lua new file mode 100644 index 0000000..d7f7a02 --- /dev/null +++ b/mods/mesecons/mesecons_extrawires/corner.lua @@ -0,0 +1,83 @@ +local corner_nodebox = { + type = "fixed", + fixed = {{ -16/32-0.001, -17/32, -3/32, 0, -13/32, 3/32 }, + { -3/32, -17/32, -16/32+0.001, 3/32, -13/32, 3/32}} +} + +local corner_selectionbox = { + type = "fixed", + fixed = { -16/32-0.001, -18/32, -16/32, 5/32, -12/32, 5/32 }, +} + +local corner_get_rules = function (node) + local rules = + {{x = 1, y = 0, z = 0}, + {x = 0, y = 0, z = -1}} + + for i = 0, node.param2 do + rules = mesecon:rotate_rules_left(rules) + end + + return rules +end + +minetest.register_node("mesecons_extrawires:corner_on", { + drawtype = "nodebox", + tiles = { + "jeija_insulated_wire_curved_tb_on.png", + "jeija_insulated_wire_curved_tb_on.png^[transformR270", + "jeija_insulated_wire_sides_on.png", + "jeija_insulated_wire_ends_on.png", + "jeija_insulated_wire_sides_on.png", + "jeija_insulated_wire_ends_on.png" + }, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + selection_box = corner_selectionbox, + node_box = corner_nodebox, + groups = {dig_immediate = 3, not_in_creative_inventory = 1}, + drop = "mesecons_extrawires:corner_off", + mesecons = {conductor = + { + state = mesecon.state.on, + rules = corner_get_rules, + offstate = "mesecons_extrawires:corner_off" + }} +}) + +minetest.register_node("mesecons_extrawires:corner_off", { + drawtype = "nodebox", + description = "Mesecon Corner", + tiles = { + "jeija_insulated_wire_curved_tb_off.png", + "jeija_insulated_wire_curved_tb_off.png^[transformR270", + "jeija_insulated_wire_sides_off.png", + "jeija_insulated_wire_ends_off.png", + "jeija_insulated_wire_sides_off.png", + "jeija_insulated_wire_ends_off.png" + }, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + selection_box = corner_selectionbox, + node_box = corner_nodebox, + groups = {dig_immediate = 3}, + mesecons = {conductor = + { + state = mesecon.state.off, + rules = corner_get_rules, + onstate = "mesecons_extrawires:corner_on" + }} +}) + +minetest.register_craft({ + output = "mesecons_extrawires:corner_off 3", + recipe = { + {"", "", ""}, + {"mesecons_insulated:insulated_off", "mesecons_insulated:insulated_off", ""}, + {"", "mesecons_insulated:insulated_off", ""}, + } +}) diff --git a/mods/mesecons/mesecons_extrawires/crossover.lua b/mods/mesecons/mesecons_extrawires/crossover.lua new file mode 100644 index 0000000..93b9638 --- /dev/null +++ b/mods/mesecons/mesecons_extrawires/crossover.lua @@ -0,0 +1,176 @@ +function crossover_get_rules(node) + return { + {--first wire + {x=-1,y=0,z=0}, + {x=1,y=0,z=0}, + }, + {--second wire + {x=0,y=0,z=-1}, + {x=0,y=0,z=1}, + }, + } +end + +local crossover_states = { + "mesecons_extrawires:crossover_off", + "mesecons_extrawires:crossover_01", + "mesecons_extrawires:crossover_10", + "mesecons_extrawires:crossover_on", +} + +minetest.register_node("mesecons_extrawires:crossover_off", { + description = "Insulated Crossover", + drawtype = "nodebox", + tiles = { + "jeija_insulated_wire_crossing_tb_off.png", + "jeija_insulated_wire_crossing_tb_off.png", + "jeija_insulated_wire_ends_off.png" + }, + paramtype = "light", + walkable = false, + stack_max = 99, + selection_box = {type="fixed", fixed={-16/32-0.0001, -18/32, -16/32-0.001, 16/32+0.001, -5/32, 16/32+0.001}}, + node_box = { + type = "fixed", + fixed = { + { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }, + { -3/32, -17/32, -16/32-0.001, 3/32, -13/32, -6/32 }, + { -3/32, -13/32, -9/32, 3/32, -6/32, -6/32 }, + { -3/32, -9/32, -9/32, 3/32, -6/32, 9/32 }, + { -3/32, -13/32, 6/32, 3/32, -6/32, 9/32 }, + { -3/32, -17/32, 6/32, 3/32, -13/32, 16/32+0.001 }, + }, + }, + groups = {dig_immediate=3, mesecon=3, mesecon_conductor_craftable=1}, + mesecons = { + conductor = { + states = crossover_states, + rules = crossover_get_rules(), + } + }, +}) + +minetest.register_node("mesecons_extrawires:crossover_01", { + description = "You hacker you!", + drop = "mesecons_extrawires:crossover_off", + drawtype = "nodebox", + tiles = { + "jeija_insulated_wire_crossing_tb_01.png", + "jeija_insulated_wire_crossing_tb_01.png", + "jeija_insulated_wire_ends_01x.png", + "jeija_insulated_wire_ends_01x.png", + "jeija_insulated_wire_ends_01z.png", + "jeija_insulated_wire_ends_01z.png" + }, + paramtype = "light", + walkable = false, + stack_max = 99, + selection_box = {type="fixed", fixed={-16/32-0.0001, -18/32, -16/32-0.001, 16/32+0.001, -5/32, 16/32+0.001}}, + node_box = { + type = "fixed", + fixed = { + { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }, + { -3/32, -17/32, -16/32-0.001, 3/32, -13/32, -6/32 }, + { -3/32, -13/32, -9/32, 3/32, -6/32, -6/32 }, + { -3/32, -9/32, -9/32, 3/32, -6/32, 9/32 }, + { -3/32, -13/32, 6/32, 3/32, -6/32, 9/32 }, + { -3/32, -17/32, 6/32, 3/32, -13/32, 16/32+0.001 }, + }, + }, + groups = {dig_immediate=3, mesecon=3, not_in_creative_inventory=1}, + mesecons = { + conductor = { + states = crossover_states, + rules = crossover_get_rules(), + } + }, +}) + +minetest.register_node("mesecons_extrawires:crossover_10", { + description = "You hacker you!", + drop = "mesecons_extrawires:crossover_off", + drawtype = "nodebox", + tiles = { + "jeija_insulated_wire_crossing_tb_10.png", + "jeija_insulated_wire_crossing_tb_10.png", + "jeija_insulated_wire_ends_10x.png", + "jeija_insulated_wire_ends_10x.png", + "jeija_insulated_wire_ends_10z.png", + "jeija_insulated_wire_ends_10z.png" + }, + paramtype = "light", + walkable = false, + stack_max = 99, + selection_box = {type="fixed", fixed={-16/32-0.0001, -18/32, -16/32-0.001, 16/32+0.001, -5/32, 16/32+0.001}}, + node_box = { + type = "fixed", + fixed = { + { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }, + { -3/32, -17/32, -16/32-0.001, 3/32, -13/32, -6/32 }, + { -3/32, -13/32, -9/32, 3/32, -6/32, -6/32 }, + { -3/32, -9/32, -9/32, 3/32, -6/32, 9/32 }, + { -3/32, -13/32, 6/32, 3/32, -6/32, 9/32 }, + { -3/32, -17/32, 6/32, 3/32, -13/32, 16/32+0.001 }, + }, + }, + groups = {dig_immediate=3, mesecon=3, not_in_creative_inventory=1}, + mesecons = { + conductor = { + states = crossover_states, + rules = crossover_get_rules(), + } + }, +}) + +minetest.register_node("mesecons_extrawires:crossover_on", { + description = "You hacker you!", + drop = "mesecons_extrawires:crossover_off", + drawtype = "nodebox", + tiles = { + "jeija_insulated_wire_crossing_tb_on.png", + "jeija_insulated_wire_crossing_tb_on.png", + "jeija_insulated_wire_ends_on.png", + "jeija_insulated_wire_ends_on.png", + "jeija_insulated_wire_ends_on.png", + "jeija_insulated_wire_ends_on.png" + }, + paramtype = "light", + walkable = false, + stack_max = 99, + selection_box = {type="fixed", fixed={-16/32-0.0001, -18/32, -16/32-0.001, 16/32+0.001, -5/32, 16/32+0.001}}, + node_box = { + type = "fixed", + fixed = { + { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }, + { -3/32, -17/32, -16/32-0.001, 3/32, -13/32, -6/32 }, + { -3/32, -13/32, -9/32, 3/32, -6/32, -6/32 }, + { -3/32, -9/32, -9/32, 3/32, -6/32, 9/32 }, + { -3/32, -13/32, 6/32, 3/32, -6/32, 9/32 }, + { -3/32, -17/32, 6/32, 3/32, -13/32, 16/32+0.001 }, + }, + }, + groups = {dig_immediate=3, mesecon=3, not_in_creative_inventory=1}, + mesecons = { + conductor = { + states = crossover_states, + rules = crossover_get_rules(), + } + }, +}) + +minetest.register_craft({ + type = "shapeless", + output = "mesecons_extrawires:crossover_off", + recipe = { + "mesecons_insulated:insulated_off", + "mesecons_insulated:insulated_off", + }, +}) + +minetest.register_craft({ + type = "shapeless", + output = "mesecons_insulated:insulated_off 2", + recipe = { + "mesecons_extrawires:crossover_off", + }, +}) diff --git a/mods/mesecons/mesecons_extrawires/depends.txt b/mods/mesecons/mesecons_extrawires/depends.txt new file mode 100644 index 0000000..aca967d --- /dev/null +++ b/mods/mesecons/mesecons_extrawires/depends.txt @@ -0,0 +1,2 @@ +default +mesecons diff --git a/mods/mesecons/mesecons_extrawires/init.lua b/mods/mesecons/mesecons_extrawires/init.lua new file mode 100644 index 0000000..b22f2e5 --- /dev/null +++ b/mods/mesecons/mesecons_extrawires/init.lua @@ -0,0 +1,5 @@ +dofile(minetest.get_modpath("mesecons_extrawires").."/crossover.lua"); +dofile(minetest.get_modpath("mesecons_extrawires").."/tjunction.lua"); +dofile(minetest.get_modpath("mesecons_extrawires").."/corner.lua"); +dofile(minetest.get_modpath("mesecons_extrawires").."/vertical.lua"); +dofile(minetest.get_modpath("mesecons_extrawires").."/mesewire.lua"); diff --git a/mods/mesecons/mesecons_extrawires/mesewire.lua b/mods/mesecons/mesecons_extrawires/mesewire.lua new file mode 100644 index 0000000..cbb882e --- /dev/null +++ b/mods/mesecons/mesecons_extrawires/mesewire.lua @@ -0,0 +1,35 @@ +local mesewire_rules = +{ + {x = 1, y = 0, z = 0}, + {x =-1, y = 0, z = 0}, + {x = 0, y = 1, z = 0}, + {x = 0, y =-1, z = 0}, + {x = 0, y = 0, z = 1}, + {x = 0, y = 0, z =-1}, +} + +minetest.register_node(":default:mese", { + description = "Mese Block", + tiles = {minetest.registered_nodes["default:mese"].tiles[1]}, + is_ground_content = true, + groups = {cracky=1}, + sounds = default.node_sound_stone_defaults(), + mesecons = {conductor = { + state = mesecon.state.off, + onstate = "mesecons_extrawires:mese_powered", + rules = mesewire_rules + }} +}) + +minetest.register_node("mesecons_extrawires:mese_powered", { + tiles = {minetest.registered_nodes["default:mese"].tiles[1].."^[brighten"}, + is_ground_content = true, + groups = {cracky=1, not_in_creative_inventory = 1}, + sounds = default.node_sound_stone_defaults(), + mesecons = {conductor = { + state = mesecon.state.on, + offstate = "default:mese", + rules = mesewire_rules + }}, + drop = "default:mese" +}) diff --git a/mods/mesecons/mesecons_extrawires/tjunction.lua b/mods/mesecons/mesecons_extrawires/tjunction.lua new file mode 100644 index 0000000..c5f36a2 --- /dev/null +++ b/mods/mesecons/mesecons_extrawires/tjunction.lua @@ -0,0 +1,84 @@ +local tjunction_nodebox = { + type = "fixed", + fixed = {{ -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }, + { -3/32, -17/32, -16/32+0.001, 3/32, -13/32, -3/32},} +} + +local tjunction_selectionbox = { + type = "fixed", + fixed = { -16/32-0.001, -18/32, -16/32, 16/32+0.001, -12/32, 7/32 }, +} + +local tjunction_get_rules = function (node) + local rules = + {{x = 0, y = 0, z = 1}, + {x = 1, y = 0, z = 0}, + {x = 0, y = 0, z = -1}} + + for i = 0, node.param2 do + rules = mesecon:rotate_rules_left(rules) + end + + return rules +end + +minetest.register_node("mesecons_extrawires:tjunction_on", { + drawtype = "nodebox", + tiles = { + "jeija_insulated_wire_tjunction_tb_on.png", + "jeija_insulated_wire_tjunction_tb_on.png^[transformR180", + "jeija_insulated_wire_ends_on.png", + "jeija_insulated_wire_ends_on.png", + "jeija_insulated_wire_sides_on.png", + "jeija_insulated_wire_ends_on.png" + }, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + selection_box = tjunction_selectionbox, + node_box = tjunction_nodebox, + groups = {dig_immediate = 3, not_in_creative_inventory = 1}, + drop = "mesecons_extrawires:tjunction_off", + mesecons = {conductor = + { + state = mesecon.state.on, + rules = tjunction_get_rules, + offstate = "mesecons_extrawires:tjunction_off" + }} +}) + +minetest.register_node("mesecons_extrawires:tjunction_off", { + drawtype = "nodebox", + description = "T-junction", + tiles = { + "jeija_insulated_wire_tjunction_tb_off.png", + "jeija_insulated_wire_tjunction_tb_off.png^[transformR180", + "jeija_insulated_wire_ends_off.png", + "jeija_insulated_wire_ends_off.png", + "jeija_insulated_wire_sides_off.png", + "jeija_insulated_wire_ends_off.png" + }, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + selection_box = tjunction_selectionbox, + node_box = tjunction_nodebox, + groups = {dig_immediate = 3, mesecon_conductor_craftable=1}, + mesecons = {conductor = + { + state = mesecon.state.off, + rules = tjunction_get_rules, + onstate = "mesecons_extrawires:tjunction_on" + }} +}) + +minetest.register_craft({ + output = "mesecons_extrawires:tjunction_off 3", + recipe = { + {"", "", ""}, + {"mesecons_insulated:insulated_off", "mesecons_insulated:insulated_off", "mesecons_insulated:insulated_off"}, + {"", "mesecons_insulated:insulated_off", ""}, + } +}) diff --git a/mods/mesecons/mesecons_extrawires/vertical.lua b/mods/mesecons/mesecons_extrawires/vertical.lua new file mode 100644 index 0000000..16de55e --- /dev/null +++ b/mods/mesecons/mesecons_extrawires/vertical.lua @@ -0,0 +1,213 @@ +local vertical_box = { + type = "fixed", + fixed = {-1/16, -8/16, -1/16, 1/16, 8/16, 1/16} +} + +local top_box = { + type = "fixed", + fixed = {{-8/16, -8/16, -8/16, 8/16, -7/16, 8/16}} +} + +local bottom_box = { + type = "fixed", + fixed = { + {-8/16, -8/16, -8/16, 8/16, -7/16, 8/16}, + {-1/16, -7/16, -1/16, 1/16, 8/16, 1/16}, + } +} + +local vertical_rules = { + {x=0, y=1, z=0}, + {x=0, y=-1, z=0}, +} + +local top_rules = { + {x=1,y=0, z=0}, + {x=-1,y=0, z=0}, + {x=0,y=0, z=1}, + {x=0,y=0, z=-1}, + {x=0,y=-1, z=0}, +} + +local bottom_rules = { + {x=1, y=0, z=0}, + {x=-1, y=0, z=0}, + {x=0, y=0, z=1}, + {x=0, y=0, z=-1}, + {x=0, y=1, z=0}, +} + +local vertical_updatepos = function (pos) + local node = minetest.get_node(pos) + if minetest.registered_nodes[node.name] and minetest.registered_nodes[node.name].is_vertical_conductor then + local node_above = minetest.get_node(mesecon:addPosRule(pos, vertical_rules[1])) + local node_below = minetest.get_node(mesecon:addPosRule(pos, vertical_rules[2])) + local namestate = minetest.registered_nodes[node.name].vertical_conductor_state + + local above = minetest.registered_nodes[node_above.name] and minetest.registered_nodes[node_above.name].is_vertical_conductor + local below = minetest.registered_nodes[node_below.name] and minetest.registered_nodes[node_below.name].is_vertical_conductor + + if above and below then -- above and below: vertical mesecon + minetest.add_node(pos, {name = "mesecons_extrawires:vertical_" .. namestate}) + elseif above and not below then -- above only: bottom + minetest.add_node(pos, {name = "mesecons_extrawires:vertical_bottom_" .. namestate}) + elseif not above and below then -- below only: top + minetest.add_node(pos, {name = "mesecons_extrawires:vertical_top_" .. namestate}) + else -- no vertical wire above, no vertical wire below: use default wire + minetest.add_node(pos, {name = "mesecons_extrawires:vertical_" .. namestate}) + end + end +end + +local vertical_update = function (pos, node) + vertical_updatepos(pos) -- this one + vertical_updatepos(mesecon:addPosRule(pos, vertical_rules[1])) -- above + vertical_updatepos(mesecon:addPosRule(pos, vertical_rules[2])) -- below +end + +-- Vertical wire +minetest.register_node("mesecons_extrawires:vertical_on", { + description = "Vertical mesecon", + drawtype = "nodebox", + tiles = {"wires_vertical_on.png"}, + walkable = false, + paramtype = "light", + sunlight_propagates = true, + groups = {dig_immediate=3, not_in_creative_inventory=1}, + selection_box = vertical_box, + node_box = vertical_box, + is_vertical_conductor = true, + vertical_conductor_state = "on", + mesecons = {conductor = { + state = mesecon.state.on, + offstate = "mesecons_extrawires:vertical_off", + rules = vertical_rules, + }}, + drop = "mesecons_extrawires:vertical_off", + after_place_node = vertical_update, + after_dig_node = vertical_update, +}) + +minetest.register_node("mesecons_extrawires:vertical_off", { + description = "Vertical mesecon", + drawtype = "nodebox", + tiles = {"wires_vertical_off.png"}, + walkable = false, + paramtype = "light", + sunlight_propagates = true, + groups = {dig_immediate=3}, + selection_box = vertical_box, + node_box = vertical_box, + is_vertical_conductor = true, + vertical_conductor_state = "off", + mesecons = {conductor = { + state = mesecon.state.off, + onstate = "mesecons_extrawires:vertical_on", + rules = vertical_rules, + }}, + after_place_node = vertical_update, + after_dig_node = vertical_update, +}) + +-- Vertical wire top +minetest.register_node("mesecons_extrawires:vertical_top_on", { + description = "Vertical mesecon", + drawtype = "nodebox", + tiles = {"wires_full_on.png","wires_full_on.png","wires_vertical_on.png"}, + walkable = false, + paramtype = "light", + sunlight_propagates = true, + groups = {dig_immediate=3, not_in_creative_inventory=1}, + selection_box = top_box, + node_box = top_box, + is_vertical_conductor = true, + vertical_conductor_state = "on", + mesecons = {conductor = { + state = mesecon.state.on, + offstate = "mesecons_extrawires:vertical_top_off", + rules = top_rules, + }}, + drop = "mesecons_extrawires:vertical_off", + after_place_node = vertical_update, + after_dig_node = vertical_update, +}) + +minetest.register_node("mesecons_extrawires:vertical_top_off", { + description = "Vertical mesecon", + drawtype = "nodebox", + tiles = {"wires_full_off.png","wires_full_off.png","wires_vertical_off.png"}, + walkable = false, + paramtype = "light", + sunlight_propagates = true, + groups = {dig_immediate=3, not_in_creative_inventory=1}, + selection_box = top_box, + node_box = top_box, + is_vertical_conductor = true, + vertical_conductor_state = "off", + mesecons = {conductor = { + state = mesecon.state.off, + onstate = "mesecons_extrawires:vertical_top_on", + rules = top_rules, + }}, + drop = "mesecons_extrawires:vertical_off", + after_place_node = vertical_update, + after_dig_node = vertical_update, +}) + +-- Vertical wire bottom +minetest.register_node("mesecons_extrawires:vertical_bottom_on", { + description = "Vertical mesecon", + drawtype = "nodebox", + tiles = {"wires_full_on.png","wires_full_on.png","wires_vertical_on.png"}, + walkable = false, + paramtype = "light", + sunlight_propagates = true, + vertical_conductor_state = "on", + groups = {dig_immediate = 3, not_in_creative_inventory = 1}, + selection_box = bottom_box, + node_box = bottom_box, + mesecons = {conductor = { + state = mesecon.state.on, + offstate = "mesecons_extrawires:vertical_bottom_off", + rules = bottom_rules, + }}, + drop = "mesecons_extrawires:vertical_off", + after_place_node = vertical_update, + after_dig_node = vertical_update, +}) + +minetest.register_node("mesecons_extrawires:vertical_bottom_off", { + description = "Vertical mesecon", + drawtype = "nodebox", + tiles = {"wires_full_off.png","wires_full_off.png","wires_vertical_off.png"}, + walkable = false, + paramtype = "light", + sunlight_propagates = true, + groups = {dig_immediate = 3, not_in_creative_inventory = 1}, + selection_box = bottom_box, + node_box = bottom_box, + is_vertical_conductor = true, + vertical_conductor_state = "off", + mesecons = {conductor = { + state = mesecon.state.off, + onstate = "mesecons_extrawires:vertical_bottom_on", + rules = bottom_rules, + }}, + drop = "mesecons_extrawires:vertical_off", + after_place_node = vertical_update, + after_dig_node = vertical_update, +}) + +minetest.register_craft({ + output = "mesecons_extrawires:vertical_off 3", + recipe = { + {"mesecons:wire_00000000_off"}, + {"mesecons:wire_00000000_off"}, + {"mesecons:wire_00000000_off"} + } +}) + +minetest.register_craft({ + output = "mesecons:wire_00000000_off", + recipe = {{"mesecons_extrawires:vertical_off"}} +}) diff --git a/mods/mesecons/mesecons_gates/depends.txt b/mods/mesecons/mesecons_gates/depends.txt new file mode 100644 index 0000000..f3e0392 --- /dev/null +++ b/mods/mesecons/mesecons_gates/depends.txt @@ -0,0 +1,6 @@ +mesecons +mesecons_microcontroller +mesecons_delayer + +mesecons_torch +mesecons_materials diff --git a/mods/mesecons/mesecons_gates/init.lua b/mods/mesecons/mesecons_gates/init.lua new file mode 100644 index 0000000..a22edf6 --- /dev/null +++ b/mods/mesecons/mesecons_gates/init.lua @@ -0,0 +1,222 @@ +function gate_rotate_rules(node) + for rotations = 0, node.param2 - 1 do + rules = mesecon:rotate_rules_left(rules) + end + return rules +end + +function gate_get_output_rules(node) + rules = {{x=1, y=0, z=0}} + return gate_rotate_rules(node) +end + +function gate_get_input_rules_oneinput(node) + rules = {{x=-1, y=0, z=0}, {x=1, y=0, z=0}} + return gate_rotate_rules(node) +end + +function gate_get_input_rules_twoinputs(node) + rules = { + {x=0, y=0, z=1}, + {x=0, y=0, z=-1}, + {x=1, y=0, z=0}} + return gate_rotate_rules(node) +end + +function update_gate(pos, node, rulename, newstate) + yc_update_real_portstates(pos, node, rulename, newstate) + gate = get_gate(pos) + L = rotate_ports( + yc_get_real_portstates(pos), + minetest.get_node(pos).param2 + ) + if gate == "diode" then + set_gate(pos, L.a) + elseif gate == "not" then + set_gate(pos, not L.a) + elseif gate == "nand" then + set_gate(pos, not(L.b and L.d)) + elseif gate == "and" then + set_gate(pos, L.b and L.d) + elseif gate == "xor" then + set_gate(pos, (L.b and not L.d) or (not L.b and L.d)) + end +end + +function set_gate(pos, on) + gate = get_gate(pos) + local meta = minetest.get_meta(pos) + if on ~= gate_state(pos) then + if mesecon.do_overheat(pos) then + pop_gate(pos) + else + local node = minetest.get_node(pos) + if on then + minetest.swap_node(pos, {name = "mesecons_gates:"..gate.."_on", param2=node.param2}) + mesecon:receptor_on(pos, + gate_get_output_rules(node)) + else + minetest.swap_node(pos, {name = "mesecons_gates:"..gate.."_off", param2=node.param2}) + mesecon:receptor_off(pos, + gate_get_output_rules(node)) + end + end + end +end + +function get_gate(pos) + return minetest.registered_nodes[minetest.get_node(pos).name].mesecons_gate +end + +function gate_state(pos) + name = minetest.get_node(pos).name + return string.find(name, "_on") ~= nil +end + +function pop_gate(pos) + gate = get_gate(pos) + minetest.remove_node(pos) + minetest.after(0.2, function (pos) + mesecon:receptor_off(pos, mesecon.rules.flat) + end , pos) -- wait for pending parsings + minetest.add_item(pos, "mesecons_gates:"..gate.."_off") +end + +function rotate_ports(L, param2) + for rotations=0, param2-1 do + port = L.a + L.a = L.b + L.b = L.c + L.c = L.d + L.d = port + end + return L +end + +gates = { +{name = "diode", inputnumber = 1}, +{name = "not" , inputnumber = 1}, +{name = "nand" , inputnumber = 2}, +{name = "and" , inputnumber = 2}, +{name = "xor" , inputnumber = 2}} + +local onoff, drop, nodename, description, groups +for _, gate in ipairs(gates) do + if gate.inputnumber == 1 then + get_rules = gate_get_input_rules_oneinput + elseif gate.inputnumber == 2 then + get_rules = gate_get_input_rules_twoinputs + end + for on = 0, 1 do + nodename = "mesecons_gates:"..gate.name + if on == 1 then + onoff = "on" + drop = nodename.."_off" + nodename = nodename.."_"..onoff + description = "You hacker you!" + groups = {dig_immediate=2, not_in_creative_inventory=1, overheat = 1} + else + onoff = "off" + drop = nil + nodename = nodename.."_"..onoff + description = gate.name.." Gate" + groups = {dig_immediate=2, overheat = 1} + end + + tiles = "jeija_microcontroller_bottom.png^".. + "jeija_gate_"..onoff..".png^".. + "jeija_gate_"..gate.name..".png" + + node_box = { + type = "fixed", + fixed = { + {-8/16, -8/16, -8/16, 8/16, -7/16, 8/16 }, + }, + } + + local mesecon_state + if on == 1 then + mesecon_state = mesecon.state.on + else + mesecon_state = mesecon.state.off + end + + minetest.register_node(nodename, { + description = description, + paramtype = "light", + paramtype2 = "facedir", + drawtype = "nodebox", + tiles = {tiles}, + inventory_image = tiles, + selection_box = node_box, + node_box = node_box, + walkable = true, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + update_gate(pos) + end, + groups = groups, + drop = drop, + sounds = default.node_sound_stone_defaults(), + mesecons_gate = gate.name, + mesecons = + { + receptor = + { + state = mesecon_state, + rules = gate_get_output_rules + }, + effector = + { + rules = get_rules, + action_change = update_gate + } + } + }) + end +end + +minetest.register_craft({ + output = 'mesecons_gates:diode_off', + recipe = { + {'', '', ''}, + {'mesecons:mesecon', 'mesecons_torch:mesecon_torch_on', 'mesecons_torch:mesecon_torch_on'}, + {'', '', ''}, + }, +}) + +minetest.register_craft({ + output = 'mesecons_gates:not_off', + recipe = { + {'', '', ''}, + {'mesecons:mesecon', 'mesecons_torch:mesecon_torch_on', 'mesecons:mesecon'}, + {'', '', ''}, + }, +}) + +minetest.register_craft({ + output = 'mesecons_gates:and_off', + recipe = { + {'mesecons:mesecon', '', ''}, + {'', 'mesecons_materials:silicon', 'mesecons:mesecon'}, + {'mesecons:mesecon', '', ''}, + }, +}) + +minetest.register_craft({ + output = 'mesecons_gates:nand_off', + recipe = { + {'mesecons:mesecon', '', ''}, + {'', 'mesecons_materials:silicon', 'mesecons_torch:mesecon_torch_on'}, + {'mesecons:mesecon', '', ''}, + }, +}) + +minetest.register_craft({ + output = 'mesecons_gates:xor_off', + recipe = { + {'mesecons:mesecon', '', ''}, + {'', 'mesecons_materials:silicon', 'mesecons_materials:silicon'}, + {'mesecons:mesecon', '', ''}, + }, +}) diff --git a/mods/mesecons/mesecons_gates/textures/jeija_gate_and.png b/mods/mesecons/mesecons_gates/textures/jeija_gate_and.png new file mode 100644 index 0000000..0ddc043 Binary files /dev/null and b/mods/mesecons/mesecons_gates/textures/jeija_gate_and.png differ diff --git a/mods/mesecons/mesecons_gates/textures/jeija_gate_diode.png b/mods/mesecons/mesecons_gates/textures/jeija_gate_diode.png new file mode 100644 index 0000000..ffa403f Binary files /dev/null and b/mods/mesecons/mesecons_gates/textures/jeija_gate_diode.png differ diff --git a/mods/mesecons/mesecons_gates/textures/jeija_gate_nand.png b/mods/mesecons/mesecons_gates/textures/jeija_gate_nand.png new file mode 100644 index 0000000..0e4294e Binary files /dev/null and b/mods/mesecons/mesecons_gates/textures/jeija_gate_nand.png differ diff --git a/mods/mesecons/mesecons_gates/textures/jeija_gate_not.png b/mods/mesecons/mesecons_gates/textures/jeija_gate_not.png new file mode 100644 index 0000000..939fb76 Binary files /dev/null and b/mods/mesecons/mesecons_gates/textures/jeija_gate_not.png differ diff --git a/mods/mesecons/mesecons_gates/textures/jeija_gate_off.png b/mods/mesecons/mesecons_gates/textures/jeija_gate_off.png new file mode 100644 index 0000000..44017b0 Binary files /dev/null and b/mods/mesecons/mesecons_gates/textures/jeija_gate_off.png differ diff --git a/mods/mesecons/mesecons_gates/textures/jeija_gate_on.png b/mods/mesecons/mesecons_gates/textures/jeija_gate_on.png new file mode 100644 index 0000000..47028a8 Binary files /dev/null and b/mods/mesecons/mesecons_gates/textures/jeija_gate_on.png differ diff --git a/mods/mesecons/mesecons_gates/textures/jeija_gate_xor.png b/mods/mesecons/mesecons_gates/textures/jeija_gate_xor.png new file mode 100644 index 0000000..afbd6ab Binary files /dev/null and b/mods/mesecons/mesecons_gates/textures/jeija_gate_xor.png differ diff --git a/mods/mesecons/mesecons_hydroturbine/depends.txt b/mods/mesecons/mesecons_hydroturbine/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_hydroturbine/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_hydroturbine/init.lua b/mods/mesecons/mesecons_hydroturbine/init.lua new file mode 100644 index 0000000..ef5ccae --- /dev/null +++ b/mods/mesecons/mesecons_hydroturbine/init.lua @@ -0,0 +1,96 @@ +-- HYDRO_TURBINE +-- Water turbine: +-- Active if flowing >water< above it +-- (does not work with other liquids) + +minetest.register_node("mesecons_hydroturbine:hydro_turbine_off", { + drawtype = "nodebox", + tiles = {"jeija_hydro_turbine_off.png"}, + groups = {dig_immediate=2}, + description="Water Turbine", + paramtype = "light", + selection_box = { + type = "fixed", + fixed = {{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + {-0.15, 0.5, -0.15, 0.15, 1.45, 0.15}, + {-0.45, 1.15, -0.1, 0.45, 1.45, 0.1}, + {-0.1, 1.15, -0.45, 0.1, 1.45, 0.45}}, + }, + node_box = { + type = "fixed", + fixed = {{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + {-0.15, 0.5, -0.15, 0.15, 1.45, 0.15}, + {-0.45, 1.15, -0.1, 0.45, 1.45, 0.1}, + {-0.1, 1.15, -0.45, 0.1, 1.45, 0.45}}, + }, + sounds = default.node_sound_stone_defaults(), + mesecons = {receptor = { + state = mesecon.state.off + }} +}) + +minetest.register_node("mesecons_hydroturbine:hydro_turbine_on", { + drawtype = "nodebox", + tiles = {"jeija_hydro_turbine_on.png"}, + drop = "mesecons_hydroturbine:hydro_turbine_off 1", + groups = {dig_immediate=2,not_in_creative_inventory=1}, + description="Water Turbine", + paramtype = "light", + selection_box = { + type = "fixed", + fixed = {{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + {-0.15, 0.5, -0.15, 0.15, 1.45, 0.15}, + {-0.5, 1.15, -0.1, 0.5, 1.45, 0.1}, + {-0.1, 1.15, -0.5, 0.1, 1.45, 0.5}}, + }, + node_box = { + type = "fixed", + fixed = {{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + {-0.15, 0.5, -0.15, 0.15, 1.45, 0.15}, + {-0.5, 1.15, -0.1, 0.5, 1.45, 0.1}, + {-0.1, 1.15, -0.5, 0.1, 1.45, 0.5}}, + }, + sounds = default.node_sound_stone_defaults(), + mesecons = {receptor = { + state = mesecon.state.on + }} +}) + + +minetest.register_abm({ +nodenames = {"mesecons_hydroturbine:hydro_turbine_off"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local waterpos={x=pos.x, y=pos.y+1, z=pos.z} + if minetest.get_node(waterpos).name=="default:water_flowing" then + minetest.add_node(pos, {name="mesecons_hydroturbine:hydro_turbine_on"}) + nodeupdate(pos) + mesecon:receptor_on(pos) + end + end, +}) + +minetest.register_abm({ +nodenames = {"mesecons_hydroturbine:hydro_turbine_on"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local waterpos={x=pos.x, y=pos.y+1, z=pos.z} + if minetest.get_node(waterpos).name~="default:water_flowing" then + minetest.add_node(pos, {name="mesecons_hydroturbine:hydro_turbine_off"}) + nodeupdate(pos) + mesecon:receptor_off(pos) + end + end, +}) + +minetest.register_craft({ + output = "mesecons_hydroturbine:hydro_turbine_off 2", + recipe = { + {"","default:stick", ""}, + {"default:stick", "default:steel_ingot", "default:stick"}, + {"","default:stick", ""}, + } +}) + diff --git a/mods/mesecons/mesecons_hydroturbine/textures/jeija_hydro_turbine_off.png b/mods/mesecons/mesecons_hydroturbine/textures/jeija_hydro_turbine_off.png new file mode 100644 index 0000000..5ca1a12 Binary files /dev/null and b/mods/mesecons/mesecons_hydroturbine/textures/jeija_hydro_turbine_off.png differ diff --git a/mods/mesecons/mesecons_hydroturbine/textures/jeija_hydro_turbine_on.png b/mods/mesecons/mesecons_hydroturbine/textures/jeija_hydro_turbine_on.png new file mode 100644 index 0000000..28eb0c9 Binary files /dev/null and b/mods/mesecons/mesecons_hydroturbine/textures/jeija_hydro_turbine_on.png differ diff --git a/mods/mesecons/mesecons_insulated/depends.txt b/mods/mesecons/mesecons_insulated/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_insulated/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_insulated/init.lua b/mods/mesecons/mesecons_insulated/init.lua new file mode 100644 index 0000000..9fdf494 --- /dev/null +++ b/mods/mesecons/mesecons_insulated/init.lua @@ -0,0 +1,84 @@ +function insulated_wire_get_rules(node) + local rules = {{x = 1, y = 0, z = 0}, + {x =-1, y = 0, z = 0}} + if node.param2 == 1 or node.param2 == 3 then + return mesecon:rotate_rules_right(rules) + end + return rules +end + +minetest.register_node("mesecons_insulated:insulated_on", { + drawtype = "nodebox", + description = "Insulated Mesecon", + tiles = { + "jeija_insulated_wire_sides_on.png", + "jeija_insulated_wire_sides_on.png", + "jeija_insulated_wire_ends_on.png", + "jeija_insulated_wire_ends_on.png", + "jeija_insulated_wire_sides_on.png", + "jeija_insulated_wire_sides_on.png" + }, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + selection_box = { + type = "fixed", + fixed = { -16/32-0.001, -18/32, -7/32, 16/32+0.001, -12/32, 7/32 } + }, + node_box = { + type = "fixed", + fixed = { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 } + }, + groups = {dig_immediate = 3, not_in_creative_inventory = 1}, + drop = "mesecons_insulated:insulated_off", + mesecons = {conductor = { + state = mesecon.state.on, + offstate = "mesecons_insulated:insulated_off", + rules = insulated_wire_get_rules + }} +}) + +minetest.register_node("mesecons_insulated:insulated_off", { + drawtype = "nodebox", + description = "insulated mesecons", + tiles = { + "jeija_insulated_wire_sides_off.png", + "jeija_insulated_wire_sides_off.png", + "jeija_insulated_wire_ends_off.png", + "jeija_insulated_wire_ends_off.png", + "jeija_insulated_wire_sides_off.png", + "jeija_insulated_wire_sides_off.png" + }, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + selection_box = { + type = "fixed", + fixed = { -16/32-0.001, -18/32, -7/32, 16/32+0.001, -12/32, 7/32 } + }, + node_box = { + type = "fixed", + fixed = { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 } + }, + groups = {dig_immediate = 3}, + mesecons = {conductor = { + state = mesecon.state.off, + onstate = "mesecons_insulated:insulated_on", + rules = insulated_wire_get_rules + }} +}) + +minetest.register_craft({ + output = "mesecons_insulated:insulated_off 3", + recipe = { + {"mesecons_materials:fiber", "mesecons_materials:fiber", "mesecons_materials:fiber"}, + {"mesecons:wire_00000000_off", "mesecons:wire_00000000_off", "mesecons:wire_00000000_off"}, + {"mesecons_materials:fiber", "mesecons_materials:fiber", "mesecons_materials:fiber"}, + } +}) + +mesecon:add_rules("insulated", { +{x = 1, y = 0, z = 0}, +{x =-1, y = 0, z = 0}}) diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_crossing_tb_01.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_crossing_tb_01.png new file mode 100644 index 0000000..d872b2b Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_crossing_tb_01.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_crossing_tb_10.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_crossing_tb_10.png new file mode 100644 index 0000000..ae06dea Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_crossing_tb_10.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_crossing_tb_off.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_crossing_tb_off.png new file mode 100644 index 0000000..41b5ff4 Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_crossing_tb_off.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_crossing_tb_on.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_crossing_tb_on.png new file mode 100644 index 0000000..154288b Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_crossing_tb_on.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_curved_tb_off.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_curved_tb_off.png new file mode 100644 index 0000000..85ca90b Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_curved_tb_off.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_curved_tb_on.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_curved_tb_on.png new file mode 100644 index 0000000..772d9a6 Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_curved_tb_on.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_01x.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_01x.png new file mode 100644 index 0000000..b742152 Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_01x.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_01z.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_01z.png new file mode 100644 index 0000000..497a467 Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_01z.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_10x.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_10x.png new file mode 100644 index 0000000..d407cff Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_10x.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_10z.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_10z.png new file mode 100644 index 0000000..830d390 Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_10z.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_off.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_off.png new file mode 100644 index 0000000..89a8385 Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_off.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_on.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_on.png new file mode 100644 index 0000000..75cf435 Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_on.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_sides_off.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_sides_off.png new file mode 100644 index 0000000..db33f14 Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_sides_off.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_sides_on.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_sides_on.png new file mode 100644 index 0000000..f76e9a8 Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_sides_on.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_tjunction_tb_off.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_tjunction_tb_off.png new file mode 100644 index 0000000..a897b29 Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_tjunction_tb_off.png differ diff --git a/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_tjunction_tb_on.png b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_tjunction_tb_on.png new file mode 100644 index 0000000..8fc312b Binary files /dev/null and b/mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_tjunction_tb_on.png differ diff --git a/mods/mesecons/mesecons_lamp/depends.txt b/mods/mesecons/mesecons_lamp/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_lamp/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_lamp/init.lua b/mods/mesecons/mesecons_lamp/init.lua new file mode 100644 index 0000000..6cdae2d --- /dev/null +++ b/mods/mesecons/mesecons_lamp/init.lua @@ -0,0 +1,61 @@ +-- MESELAMPS +-- A lamp is "is an electrical device used to create artificial light" (wikipedia) +-- guess what? + +mesecon_lamp_box = { + type = "wallmounted", + wall_top = {-0.3125,0.375,-0.3125,0.3125,0.5,0.3125}, + wall_bottom = {-0.3125,-0.5,-0.3125,0.3125,-0.375,0.3125}, + wall_side = {-0.375,-0.3125,-0.3125,-0.5,0.3125,0.3125}, +} + +minetest.register_node("mesecons_lamp:lamp_on", { + drawtype = "nodebox", + tiles = {"jeija_meselamp_on.png"}, + paramtype = "light", + paramtype2 = "wallmounted", + legacy_wallmounted = true, + sunlight_propagates = true, + walkable = true, + light_source = LIGHT_MAX, + node_box = mesecon_lamp_box, + selection_box = mesecon_lamp_box, + groups = {dig_immediate=3,not_in_creative_inventory=1, mesecon_effector_on = 1}, + drop="mesecons_lamp:lamp_off 1", + sounds = default.node_sound_glass_defaults(), + mesecons = {effector = { + action_off = function (pos, node) + minetest.swap_node(pos, {name = "mesecons_lamp:lamp_off", param2 = node.param2}) + end + }} +}) + +minetest.register_node("mesecons_lamp:lamp_off", { + drawtype = "nodebox", + tiles = {"jeija_meselamp_off.png"}, + inventory_image = "jeija_meselamp.png", + wield_image = "jeija_meselamp.png", + paramtype = "light", + paramtype2 = "wallmounted", + sunlight_propagates = true, + walkable = true, + node_box = mesecon_lamp_box, + selection_box = mesecon_lamp_box, + groups = {dig_immediate=3, mesecon_receptor_off = 1, mesecon_effector_off = 1}, + description="Meselamp", + sounds = default.node_sound_glass_defaults(), + mesecons = {effector = { + action_on = function (pos, node) + minetest.swap_node(pos, {name = "mesecons_lamp:lamp_on", param2 = node.param2}) + end + }} +}) + +minetest.register_craft({ + output = "mesecons_lamp:lamp_off 1", + recipe = { + {"", "default:glass", ""}, + {"group:mesecon_conductor_craftable", "default:steel_ingot", "group:mesecon_conductor_craftable"}, + {"", "default:glass", ""}, + } +}) diff --git a/mods/mesecons/mesecons_lamp/textures/jeija_meselamp.png b/mods/mesecons/mesecons_lamp/textures/jeija_meselamp.png new file mode 100644 index 0000000..5456ee9 Binary files /dev/null and b/mods/mesecons/mesecons_lamp/textures/jeija_meselamp.png differ diff --git a/mods/mesecons/mesecons_lamp/textures/jeija_meselamp_off.png b/mods/mesecons/mesecons_lamp/textures/jeija_meselamp_off.png new file mode 100644 index 0000000..67bd7fd Binary files /dev/null and b/mods/mesecons/mesecons_lamp/textures/jeija_meselamp_off.png differ diff --git a/mods/mesecons/mesecons_lamp/textures/jeija_meselamp_on.png b/mods/mesecons/mesecons_lamp/textures/jeija_meselamp_on.png new file mode 100644 index 0000000..2316e00 Binary files /dev/null and b/mods/mesecons/mesecons_lamp/textures/jeija_meselamp_on.png differ diff --git a/mods/mesecons/mesecons_lightstone/depends.txt b/mods/mesecons/mesecons_lightstone/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_lightstone/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_lightstone/init.lua b/mods/mesecons/mesecons_lightstone/init.lua new file mode 100644 index 0000000..7bb550d --- /dev/null +++ b/mods/mesecons/mesecons_lightstone/init.lua @@ -0,0 +1,60 @@ +local lightstone_rules = { + {x=0, y=0, z=-1}, + {x=1, y=0, z=0}, + {x=-1, y=0, z=0}, + {x=0, y=0, z=1}, + {x=1, y=1, z=0}, + {x=1, y=-1, z=0}, + {x=-1, y=1, z=0}, + {x=-1, y=-1, z=0}, + {x=0, y=1, z=1}, + {x=0, y=-1, z=1}, + {x=0, y=1, z=-1}, + {x=0, y=-1, z=-1}, + {x=0, y=-1, z=0}, +} + +function mesecon:lightstone_add(name, base_item, texture_off, texture_on) + minetest.register_node("mesecons_lightstone:lightstone_" .. name .. "_off", { + tiles = {texture_off}, + groups = {cracky=2, mesecon_effector_off = 1, mesecon = 2}, + description=name.." Lightstone", + sounds = default.node_sound_stone_defaults(), + mesecons = {effector = { + rules = lightstone_rules, + action_on = function (pos, node) + minetest.swap_node(pos, {name = "mesecons_lightstone:lightstone_" .. name .. "_on", param2 = node.param2}) + end, + }} + }) + minetest.register_node("mesecons_lightstone:lightstone_" .. name .. "_on", { + tiles = {texture_on}, + groups = {cracky=2,not_in_creative_inventory=1, mesecon = 2}, + drop = "mesecons_lightstone:lightstone_" .. name .. "_off", + light_source = LIGHT_MAX-2, + sounds = default.node_sound_stone_defaults(), + mesecons = {effector = { + rules = lightstone_rules, + action_off = function (pos, node) + minetest.swap_node(pos, {name = "mesecons_lightstone:lightstone_" .. name .. "_off", param2 = node.param2}) + end, + }} + }) + + minetest.register_craft({ + output = "mesecons_lightstone:lightstone_" .. name .. "_off", + recipe = { + {"",base_item,""}, + {base_item,"default:torch",base_item}, + {"","group:mesecon_conductor_craftable",""} + } + }) +end + + +mesecon:lightstone_add("red", "default:clay_brick", "jeija_lightstone_red_off.png", "jeija_lightstone_red_on.png") +mesecon:lightstone_add("green", "default:cactus", "jeija_lightstone_green_off.png", "jeija_lightstone_green_on.png") +mesecon:lightstone_add("blue", "mesecons_materials:fiber", "jeija_lightstone_blue_off.png", "jeija_lightstone_blue_on.png") +mesecon:lightstone_add("gray", "default:cobble", "jeija_lightstone_gray_off.png", "jeija_lightstone_gray_on.png") +mesecon:lightstone_add("darkgray", "default:gravel", "jeija_lightstone_darkgray_off.png", "jeija_lightstone_darkgray_on.png") +mesecon:lightstone_add("yellow", "default:mese_crystal_fragment", "jeija_lightstone_yellow_off.png", "jeija_lightstone_yellow_on.png") diff --git a/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_blue_off.png b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_blue_off.png new file mode 100644 index 0000000..09acc22 Binary files /dev/null and b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_blue_off.png differ diff --git a/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_blue_on.png b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_blue_on.png new file mode 100644 index 0000000..93c8638 Binary files /dev/null and b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_blue_on.png differ diff --git a/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_darkgray_off.png b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_darkgray_off.png new file mode 100644 index 0000000..7e5aae7 Binary files /dev/null and b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_darkgray_off.png differ diff --git a/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_darkgray_on.png b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_darkgray_on.png new file mode 100644 index 0000000..e6d4d00 Binary files /dev/null and b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_darkgray_on.png differ diff --git a/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_gray_off.png b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_gray_off.png new file mode 100644 index 0000000..f168fc2 Binary files /dev/null and b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_gray_off.png differ diff --git a/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_gray_on.png b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_gray_on.png new file mode 100644 index 0000000..24c5470 Binary files /dev/null and b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_gray_on.png differ diff --git a/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_green_off.png b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_green_off.png new file mode 100644 index 0000000..2f214fa Binary files /dev/null and b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_green_off.png differ diff --git a/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_green_on.png b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_green_on.png new file mode 100644 index 0000000..225bf4e Binary files /dev/null and b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_green_on.png differ diff --git a/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_red_off.png b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_red_off.png new file mode 100644 index 0000000..3c828b2 Binary files /dev/null and b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_red_off.png differ diff --git a/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_red_on.png b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_red_on.png new file mode 100644 index 0000000..512b0fe Binary files /dev/null and b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_red_on.png differ diff --git a/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_yellow_off.png b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_yellow_off.png new file mode 100644 index 0000000..2e7fed0 Binary files /dev/null and b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_yellow_off.png differ diff --git a/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_yellow_on.png b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_yellow_on.png new file mode 100644 index 0000000..8943aca Binary files /dev/null and b/mods/mesecons/mesecons_lightstone/textures/jeija_lightstone_yellow_on.png differ diff --git a/mods/mesecons/mesecons_luacontroller/depends.txt b/mods/mesecons/mesecons_luacontroller/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_luacontroller/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_luacontroller/init.lua b/mods/mesecons/mesecons_luacontroller/init.lua new file mode 100644 index 0000000..f4869b5 --- /dev/null +++ b/mods/mesecons/mesecons_luacontroller/init.lua @@ -0,0 +1,560 @@ +-- Reference +-- ports = get_real_portstates(pos): gets if inputs are powered from outside +-- newport = merge_portstates(state1, state2): just does result = state1 or state2 for every port +-- action_setports(pos, rule, state): activates/deactivates the mesecons according to the portstates (helper for action) +-- action(pos, ports): Applies new portstates to a luacontroller at pos +-- lc_update(pos): updates the controller at pos by executing the code +-- reset_meta (pos, code, errmsg): performs a software-reset, installs new code and prints error messages +-- reset (pos): performs a hardware reset, turns off all ports +-- +-- The Sandbox +-- The whole code of the controller runs in a sandbox, +-- a very restricted environment. +-- However, as this does not prevent you from using e.g. loops, +-- we need to check for these prohibited commands first. +-- Actually the only way to damage the server is to +-- use too much memory from the sandbox. +-- You can add more functions to the environment +-- (see where local env is defined) +-- Something nice to play is is appending minetest.env to it. + +local BASENAME = "mesecons_luacontroller:luacontroller" + +local rules = {} +rules.a = {x = -1, y = 0, z = 0, name="A"} +rules.b = {x = 0, y = 0, z = 1, name="B"} +rules.c = {x = 1, y = 0, z = 0, name="C"} +rules.d = {x = 0, y = 0, z = -1, name="D"} + +------------------ +-- Action stuff -- +------------------ +-- These helpers are required to set the portstates of the luacontroller + +function lc_update_real_portstates(pos, rulename, newstate) + local meta = minetest.get_meta(pos) + if rulename == nil then + meta:set_int("real_portstates", 1) + return + end + local n = meta:get_int("real_portstates") - 1 + if n < 0 then + legacy_update_ports(pos) + n = meta:get_int("real_portstates") - 1 + end + local L = {} + for i = 1, 4 do + L[i] = n%2 + n = math.floor(n/2) + end + if rulename.x == nil then + for _, rname in ipairs(rulename) do + local port = ({4, 1, nil, 3, 2})[rname.x+2*rname.z+3] + L[port] = (newstate == "on") and 1 or 0 + end + else + local port = ({4, 1, nil, 3, 2})[rulename.x+2*rulename.z+3] + L[port] = (newstate == "on") and 1 or 0 + end + meta:set_int("real_portstates", 1 + L[1] + 2*L[2] + 4*L[3] + 8*L[4]) +end + +local get_real_portstates = function(pos) -- determine if ports are powered (by itself or from outside) + local meta = minetest.get_meta(pos) + local L = {} + local n = meta:get_int("real_portstates") - 1 + if n < 0 then + return legacy_update_ports(pos) + end + for _, index in ipairs({"a", "b", "c", "d"}) do + L[index] = ((n%2) == 1) + n = math.floor(n/2) + end + return L +end + +local merge_portstates = function (ports, vports) + local npo = {a=false, b=false, c=false, d=false} + npo.a = vports.a or ports.a + npo.b = vports.b or ports.b + npo.c = vports.c or ports.c + npo.d = vports.d or ports.d + return npo +end + +local generate_name = function (ports) + local overwrite = overwrite or {} + local d = ports.d and 1 or 0 + local c = ports.c and 1 or 0 + local b = ports.b and 1 or 0 + local a = ports.a and 1 or 0 + return BASENAME..d..c..b..a +end + +local setport = function (pos, rule, state) + if state then + mesecon:receptor_on(pos, {rule}) + else + mesecon:receptor_off(pos, {rule}) + end +end + +local action = function (pos, ports) + local node = minetest.get_node(pos) + local name = node.name + local vports = minetest.registered_nodes[name].virtual_portstates + local newname = generate_name(ports) + + if name ~= newname and vports then + local rules_on = {} + local rules_off = {} + + minetest.swap_node(pos, {name = newname, param2 = node.param2}) + + if ports.a ~= vports.a then setport(pos, rules.a, ports.a) end + if ports.b ~= vports.b then setport(pos, rules.b, ports.b) end + if ports.c ~= vports.c then setport(pos, rules.c, ports.c) end + if ports.d ~= vports.d then setport(pos, rules.d, ports.d) end + end +end + +-------------------- +-- Overheat stuff -- +-------------------- + +local overheat_off = function(pos) + mesecon:receptor_off(pos, mesecon.rules.flat) +end + +------------------- +-- Parsing stuff -- +------------------- + +local code_prohibited = function(code) + -- Clean code + local prohibited = {"while", "for", "repeat", "until", "function", "goto"} + for _, p in ipairs(prohibited) do + if string.find(code, p) then + return "Prohibited command: "..p + end + end +end + +local safe_print = function(param) + print(dump(param)) +end + +deep_copy = function(original, visited) --deep copy that removes functions + visited = visited or {} + if visited[original] ~= nil then --already visited this node + return visited[original] + end + if type(original) == 'table' then --nested table + local copy = {} + visited[original] = copy + for key, value in next, original, nil do + copy[deep_copy(key, visited)] = deep_copy(value, visited) + end + setmetatable(copy, deep_copy(getmetatable(original), visited)) + return copy + elseif type(original) == 'function' then --ignore functions + return nil + else --by-value type + return original + end +end + +local safe_serialize = function(value) + return minetest.serialize(deep_copy(value)) +end + +mesecon.queue:add_function("lc_interrupt", function (pos, iid, luac_id) + -- There is no luacontroller anymore / it has been reprogrammed / replaced + if (minetest.get_meta(pos):get_int("luac_id") ~= luac_id) then return end + lc_update(pos, {type="interrupt", iid = iid}) +end) + +local getinterrupt = function(pos) + local interrupt = function (time, iid) -- iid = interrupt id + if type(time) ~= "number" then return end + luac_id = minetest.get_meta(pos):get_int("luac_id") + mesecon.queue:add_action(pos, "lc_interrupt", {iid, luac_id}, time, iid, 1) + end + return interrupt +end + +local getdigiline_send = function(pos) + if not digiline then return end + -- Send messages on next serverstep + return function(channel, msg) + minetest.after(0, function() + digiline:receptor_send(pos, digiline.rules.default, channel, msg) + end) + end +end + +local create_environment = function(pos, mem, event) + -- Gather variables for the environment + local vports = minetest.registered_nodes[minetest.get_node(pos).name].virtual_portstates + vports = {a = vports.a, b = vports.b, c = vports.c, d = vports.d} + local rports = get_real_portstates(pos) + + return { + print = safe_print, + pin = merge_portstates(vports, rports), + port = vports, + interrupt = getinterrupt(pos), + digiline_send = getdigiline_send(pos), + mem = mem, + tostring = tostring, + tonumber = tonumber, + heat = minetest.get_meta(pos):get_int("heat"), + heat_max = OVERHEAT_MAX, + string = { + byte = string.byte, + char = string.char, + find = string.find, + format = string.format, + gmatch = string.gmatch, + gsub = string.gsub, + len = string.len, + lower = string.lower, + upper = string.upper, + match = string.match, + rep = string.rep, + reverse = string.reverse, + sub = string.sub, + }, + math = { + abs = math.abs, + acos = math.acos, + asin = math.asin, + atan = math.atan, + atan2 = math.atan2, + ceil = math.ceil, + cos = math.cos, + cosh = math.cosh, + deg = math.deg, + exp = math.exp, + floor = math.floor, + fmod = math.fmod, + frexp = math.frexp, + huge = math.huge, + ldexp = math.ldexp, + log = math.log, + log10 = math.log10, + max = math.max, + min = math.min, + modf = math.modf, + pi = math.pi, + pow = math.pow, + rad = math.rad, + random = math.random, + sin = math.sin, + sinh = math.sinh, + sqrt = math.sqrt, + tan = math.tan, + tanh = math.tanh, + }, + table = { + insert = table.insert, + maxn = table.maxn, + remove = table.remove, + sort = table.sort + }, + event = event, + } +end + +local create_sandbox = function (code, env) + -- Create Sandbox + if code:byte(1) == 27 then + return _, "You Hacker You! Don't use binary code!" + end + f, msg = loadstring(code) + if not f then return _, msg end + setfenv(f, env) + return f +end + +local lc_overheat = function (pos, meta) + if mesecon.do_overheat(pos) then -- if too hot + local node = minetest.get_node(pos) + minetest.swap_node(pos, {name = BASENAME.."_burnt", param2 = node.param2}) + minetest.after(0.2, overheat_off, pos) -- wait for pending operations + return true + end +end + +local load_memory = function(meta) + return minetest.deserialize(meta:get_string("lc_memory")) or {} +end + +local save_memory = function(meta, mem) + meta:set_string("lc_memory", safe_serialize(mem)) +end + +local ports_invalid = function (var) + if type(var) == "table" then + return false + end + return "The ports you set are invalid" +end + +---------------------- +-- Parsing function -- +---------------------- + +lc_update = function (pos, event) + local meta = minetest.get_meta(pos) + if lc_overheat(pos) then return end + + -- load code & mem from memory + local mem = load_memory(meta) + local code = meta:get_string("code") + + -- make sure code is ok and create environment + local prohibited = code_prohibited(code) + if prohibited then return prohibited end + local env = create_environment(pos, mem, event) + + -- create the sandbox and execute code + local chunk, msg = create_sandbox (code, env) + if not chunk then return msg end + local success, msg = pcall(f) + if not success then return msg end + if ports_invalid(env.port) then return ports_invalid(env.port) end + + save_memory(meta, mem) + + -- Actually set the ports + action(pos, env.port) +end + +local reset_meta = function(pos, code, errmsg) + local meta = minetest.get_meta(pos) + meta:set_string("code", code) + code = minetest.formspec_escape(code or "") + errmsg = minetest.formspec_escape(errmsg or "") + meta:set_string("formspec", "size[10,8]".. + "background[-0.2,-0.25;10.4,8.75;jeija_luac_background.png]".. + "textarea[0.2,0.6;10.2,5;code;;"..code.."]".. + "image_button[3.75,6;2.5,1;jeija_luac_runbutton.png;program;]".. + "image_button_exit[9.72,-0.25;0.425,0.4;jeija_close_window.png;exit;]".. + "label[0.1,5;"..errmsg.."]") + meta:set_int("heat", 0) + meta:set_int("luac_id", math.random(1, 1000000)) +end + +local reset = function (pos) + action(pos, {a=false, b=false, c=false, d=false}) +end + +-- ______ +-- | +-- | +-- | __ ___ _ __ _ _ +-- | | | | | |\ | | |_| | | | | |_ |_| +-- |___| |______ |__| | \| | | \ |__| |_ |_ |_ |\ +-- | +-- | +-- + +----------------------- +-- Node Registration -- +----------------------- + +local output_rules={} +local input_rules={} + +local nodebox = { + type = "fixed", + fixed = { + { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 }, -- bottom slab + { -5/16, -7/16, -5/16, 5/16, -6/16, 5/16 }, -- circuit board + { -3/16, -6/16, -3/16, 3/16, -5/16, 3/16 }, -- IC + } + } + +local selectionbox = { + type = "fixed", + fixed = { -8/16, -8/16, -8/16, 8/16, -5/16, 8/16 }, + } + +local digiline = { + receptor = {}, + effector = { + action = function (pos, node, channel, msg) + lc_update (pos, {type = "digiline", channel = channel, msg = msg}) + end + } +} + +for a = 0, 1 do -- 0 = off; 1 = on +for b = 0, 1 do +for c = 0, 1 do +for d = 0, 1 do + +local cid = tostring(d)..tostring(c)..tostring(b)..tostring(a) +local nodename = BASENAME..cid +local top = "jeija_luacontroller_top.png" +if a == 1 then + top = top.."^jeija_luacontroller_LED_A.png" +end +if b == 1 then + top = top.."^jeija_luacontroller_LED_B.png" +end +if c == 1 then + top = top.."^jeija_luacontroller_LED_C.png" +end +if d == 1 then + top = top.."^jeija_luacontroller_LED_D.png" +end + +if a + b + c + d ~= 0 then + groups = {dig_immediate=2, not_in_creative_inventory=1, overheat = 1} +else + groups = {dig_immediate=2, overheat = 1} +end + +output_rules[cid] = {} +input_rules[cid] = {} +if (a == 1) then table.insert(output_rules[cid], rules.a) end +if (b == 1) then table.insert(output_rules[cid], rules.b) end +if (c == 1) then table.insert(output_rules[cid], rules.c) end +if (d == 1) then table.insert(output_rules[cid], rules.d) end + +if (a == 0) then table.insert(input_rules[cid], rules.a) end +if (b == 0) then table.insert(input_rules[cid], rules.b) end +if (c == 0) then table.insert(input_rules[cid], rules.c) end +if (d == 0) then table.insert(input_rules[cid], rules.d) end + +local mesecons = { + effector = + { + rules = input_rules[cid], + action_change = function (pos, _, rulename, newstate) + lc_update_real_portstates(pos, rulename, newstate) + lc_update(pos, {type=newstate, pin=rulename}) + end, + }, + receptor = + { + state = mesecon.state.on, + rules = output_rules[cid] + } +} + +minetest.register_node(nodename, { + description = "Luacontroller", + drawtype = "nodebox", + tiles = { + top, + "jeija_microcontroller_bottom.png", + "jeija_microcontroller_sides.png", + "jeija_microcontroller_sides.png", + "jeija_microcontroller_sides.png", + "jeija_microcontroller_sides.png" + }, + + inventory_image = top, + paramtype = "light", + groups = groups, + drop = BASENAME.."0000", + sunlight_propagates = true, + selection_box = selectionbox, + node_box = nodebox, + on_construct = reset_meta, + on_receive_fields = function(pos, formname, fields) + if not fields.program then + return + end + reset(pos) + reset_meta(pos, fields.code) + local err = lc_update(pos, {type="program"}) + if err then + print(err) + reset_meta(pos, fields.code, err) + end + end, + on_timer = handle_timer, + sounds = default.node_sound_stone_defaults(), + mesecons = mesecons, + digiline = digiline, + virtual_portstates = { a = a == 1, -- virtual portstates are + b = b == 1, -- the ports the the + c = c == 1, -- controller powers itself + d = d == 1},-- so those that light up + after_dig_node = function (pos, node) + mesecon:receptor_off(pos, output_rules) + end, + is_luacontroller = true, +}) +end +end +end +end + +------------------------------ +-- overheated luacontroller -- +------------------------------ + +local mesecons_burnt = { + effector = + { + rules = mesecon.rules.flat, + action_change = function (pos, _, rulename, newstate) + -- only update portstates when changes are triggered + lc_update_real_portstates(pos, rulename, newstate) + end + } +} + +minetest.register_node(BASENAME .. "_burnt", { + drawtype = "nodebox", + tiles = { + "jeija_luacontroller_burnt_top.png", + "jeija_microcontroller_bottom.png", + "jeija_microcontroller_sides.png", + "jeija_microcontroller_sides.png", + "jeija_microcontroller_sides.png", + "jeija_microcontroller_sides.png" + }, + inventory_image = "jeija_luacontroller_burnt_top.png", + paramtype = "light", + groups = {dig_immediate=2, not_in_creative_inventory=1}, + drop = BASENAME.."0000", + sunlight_propagates = true, + selection_box = selectionbox, + node_box = nodebox, + on_construct = reset_meta, + on_receive_fields = function(pos, formname, fields) + if fields.quit then + return + end + reset(pos) + reset_meta(pos, fields.code) + local err = lc_update(pos, {type="program"}) + if err then + print(err) + reset_meta(pos, fields.code, err) + end + end, + sounds = default.node_sound_stone_defaults(), + virtual_portstates = {a = false, b = false, c = false, d = false}, + mesecons = mesecons_burnt, +}) + +------------------------ +-- Craft Registration -- +------------------------ + +minetest.register_craft({ + output = BASENAME.."0000 2", + recipe = { + {'mesecons_materials:silicon', 'mesecons_materials:silicon', 'group:mesecon_conductor_craftable'}, + {'mesecons_materials:silicon', 'mesecons_materials:silicon', 'group:mesecon_conductor_craftable'}, + {'group:mesecon_conductor_craftable', 'group:mesecon_conductor_craftable', ''}, + } +}) + diff --git a/mods/mesecons/mesecons_luacontroller/textures/jeija_luac_background.png b/mods/mesecons/mesecons_luacontroller/textures/jeija_luac_background.png new file mode 100644 index 0000000..40e316c Binary files /dev/null and b/mods/mesecons/mesecons_luacontroller/textures/jeija_luac_background.png differ diff --git a/mods/mesecons/mesecons_luacontroller/textures/jeija_luac_runbutton.png b/mods/mesecons/mesecons_luacontroller/textures/jeija_luac_runbutton.png new file mode 100644 index 0000000..157507f Binary files /dev/null and b/mods/mesecons/mesecons_luacontroller/textures/jeija_luac_runbutton.png differ diff --git a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_A.png b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_A.png new file mode 100644 index 0000000..a187e8e Binary files /dev/null and b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_A.png differ diff --git a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_B.png b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_B.png new file mode 100644 index 0000000..738ba96 Binary files /dev/null and b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_B.png differ diff --git a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_C.png b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_C.png new file mode 100644 index 0000000..abe0fe6 Binary files /dev/null and b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_C.png differ diff --git a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_D.png b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_D.png new file mode 100644 index 0000000..cc10170 Binary files /dev/null and b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_D.png differ diff --git a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_burnt_top.png b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_burnt_top.png new file mode 100644 index 0000000..d1a17af Binary files /dev/null and b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_burnt_top.png differ diff --git a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_top.png b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_top.png new file mode 100644 index 0000000..3128230 Binary files /dev/null and b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_top.png differ diff --git a/mods/mesecons/mesecons_materials/depends.txt b/mods/mesecons/mesecons_materials/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_materials/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_materials/init.lua b/mods/mesecons/mesecons_materials/init.lua new file mode 100644 index 0000000..f95373c --- /dev/null +++ b/mods/mesecons/mesecons_materials/init.lua @@ -0,0 +1,41 @@ +--GLUE +minetest.register_craftitem("mesecons_materials:glue", { + image = "jeija_glue.png", + on_place_on_ground = minetest.craftitem_place_item, + description="Glue", +}) + +minetest.register_craftitem("mesecons_materials:fiber", { + image = "jeija_fiber.png", + on_place_on_ground = minetest.craftitem_place_item, + description="Fiber", +}) + +minetest.register_craft({ + output = "mesecons_materials:glue 2", + type = "cooking", + recipe = "default:sapling", + cooktime = 2 +}) + +minetest.register_craft({ + output = "mesecons_materials:fiber 6", + type = "cooking", + recipe = "mesecons_materials:glue", + cooktime = 4 +}) + +-- Silicon +minetest.register_craftitem("mesecons_materials:silicon", { + image = "jeija_silicon.png", + on_place_on_ground = minetest.craftitem_place_item, + description="Silicon", +}) + +minetest.register_craft({ + output = "mesecons_materials:silicon 4", + recipe = { + {"default:sand", "default:sand"}, + {"default:sand", "default:steel_ingot"}, + } +}) diff --git a/mods/mesecons/mesecons_microcontroller/MeseconMicro.odt b/mods/mesecons/mesecons_microcontroller/MeseconMicro.odt new file mode 100644 index 0000000..be82d1b Binary files /dev/null and b/mods/mesecons/mesecons_microcontroller/MeseconMicro.odt differ diff --git a/mods/mesecons/mesecons_microcontroller/MeseconMicro.pdf b/mods/mesecons/mesecons_microcontroller/MeseconMicro.pdf new file mode 100644 index 0000000..7ab7484 Binary files /dev/null and b/mods/mesecons/mesecons_microcontroller/MeseconMicro.pdf differ diff --git a/mods/mesecons/mesecons_microcontroller/depends.txt b/mods/mesecons/mesecons_microcontroller/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_microcontroller/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_microcontroller/init.lua b/mods/mesecons/mesecons_microcontroller/init.lua new file mode 100644 index 0000000..8c9f3b8 --- /dev/null +++ b/mods/mesecons/mesecons_microcontroller/init.lua @@ -0,0 +1,696 @@ +EEPROM_SIZE = 255 + +for a = 0, 1 do +for b = 0, 1 do +for c = 0, 1 do +for d = 0, 1 do +local nodename = "mesecons_microcontroller:microcontroller"..tostring(d)..tostring(c)..tostring(b)..tostring(a) +local top = "jeija_microcontroller_top.png" +if tostring(a) == "1" then + top = top.."^jeija_microcontroller_LED_A.png" +end +if tostring(b) == "1" then + top = top.."^jeija_microcontroller_LED_B.png" +end +if tostring(c) == "1" then + top = top.."^jeija_microcontroller_LED_C.png" +end +if tostring(d) == "1" then + top = top.."^jeija_microcontroller_LED_D.png" +end +if tostring(d)..tostring(c)..tostring(b)..tostring(a) ~= "0000" then + groups = {dig_immediate=2, not_in_creative_inventory=1, mesecon = 3, overheat = 1} +else + groups = {dig_immediate=2, mesecon = 3, overheat = 1} +end +local rules={} +if (a == 1) then table.insert(rules, {x = -1, y = 0, z = 0}) end +if (b == 1) then table.insert(rules, {x = 0, y = 0, z = 1}) end +if (c == 1) then table.insert(rules, {x = 1, y = 0, z = 0}) end +if (d == 1) then table.insert(rules, {x = 0, y = 0, z = -1}) end + +local input_rules={} +if (a == 0) then table.insert(input_rules, {x = -1, y = 0, z = 0, name = "A"}) end +if (b == 0) then table.insert(input_rules, {x = 0, y = 0, z = 1, name = "B"}) end +if (c == 0) then table.insert(input_rules, {x = 1, y = 0, z = 0, name = "C"}) end +if (d == 0) then table.insert(input_rules, {x = 0, y = 0, z = -1, name = "D"}) end +mesecon:add_rules(nodename, rules) + +local mesecons = {effector = +{ + rules = input_rules, + action_change = function (pos, node, rulename, newstate) + yc_update_real_portstates(pos, node, rulename, newstate) + update_yc(pos) + end +}} +if nodename ~= "mesecons_microcontroller:microcontroller0000" then + mesecons.receptor = { + state = mesecon.state.on, + rules = rules + } +end + +minetest.register_node(nodename, { + description = "Microcontroller", + drawtype = "nodebox", + tiles = { + top, + "jeija_microcontroller_bottom.png", + "jeija_microcontroller_sides.png", + "jeija_microcontroller_sides.png", + "jeija_microcontroller_sides.png", + "jeija_microcontroller_sides.png" + }, + + sunlight_propagates = true, + paramtype = "light", + walkable = true, + groups = groups, + drop = "mesecons_microcontroller:microcontroller0000 1", + selection_box = { + type = "fixed", + fixed = { -8/16, -8/16, -8/16, 8/16, -5/16, 8/16 }, + }, + node_box = { + type = "fixed", + fixed = { + { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 }, -- bottom slab + { -5/16, -7/16, -5/16, 5/16, -6/16, 5/16 }, -- circuit board + { -3/16, -6/16, -3/16, 3/16, -5/16, 3/16 }, -- IC + } + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("code", "") + meta:set_string("formspec", "size[9,2.5]".. + "field[0.256,-0.2;9,2;code;Code:;]".. + "button[0 ,0.2;1.5,3;band;AND]".. + "button[1.5,0.2;1.5,3;bxor;XOR]".. + "button[3 ,0.2;1.5,3;bnot;NOT]".. + "button[4.5,0.2;1.5,3;bnand;NAND]".. + "button[6 ,0.2;1.5,3;btflop;T-Flop]".. + "button[7.5,0.2;1.5,3;brsflop;RS-Flop]".. + "button_exit[3.5,1;2,3;program;Program]") + meta:set_string("infotext", "Unprogrammed Microcontroller") + local r = "" + for i=1, EEPROM_SIZE+1 do r=r.."0" end --Generate a string with EEPROM_SIZE*"0" + meta:set_string("eeprom", r) + end, + on_receive_fields = function(pos, formanme, fields, sender) + local meta = minetest.get_meta(pos) + if fields.band then + fields.code = "sbi(C, A&B) :A and B are inputs, C is output" + elseif fields.bxor then + fields.code = "sbi(C, A~B) :A and B are inputs, C is output" + elseif fields.bnot then + fields.code = "sbi(B, !A) :A is input, B is output" + elseif fields.bnand then + fields.code = "sbi(C, !A|!B) :A and B are inputs, C is output" + elseif fields.btflop then + fields.code = "if(A)sbi(1,1);if(!A)sbi(B,!B)sbi(1,0); if(C)off(B,1); :A is input, B is output (Q), C is reset, toggles with falling edge" + elseif fields.brsflop then + fields.code = "if(A)on(C);if(B)off(C); :A is S (Set), B is R (Reset), C is output (R dominates)" + end + if fields.code == nil then return end + + meta:set_string("code", fields.code) + meta:set_string("formspec", "size[9,2.5]".. + "field[0.256,-0.2;9,2;code;Code:;"..minetest.formspec_escape(fields.code).."]".. + "button[0 ,0.2;1.5,3;band;AND]".. + "button[1.5,0.2;1.5,3;bxor;XOR]".. + "button[3 ,0.2;1.5,3;bnot;NOT]".. + "button[4.5,0.2;1.5,3;bnand;NAND]".. + "button[6 ,0.2;1.5,3;btflop;T-Flop]".. + "button[7.5,0.2;1.5,3;brsflop;RS-Flop]".. + "button_exit[3.5,1;2,3;program;Program]") + meta:set_string("infotext", "Programmed Microcontroller") + yc_reset (pos) + update_yc(pos) + end, + sounds = default.node_sound_stone_defaults(), + mesecons = mesecons, + after_dig_node = function (pos, node) + rules = mesecon:get_rules(node.name) + mesecon:receptor_off(pos, rules) + end, +}) +end +end +end +end + +minetest.register_craft({ + output = 'craft "mesecons_microcontroller:microcontroller0000" 2', + recipe = { + {'mesecons_materials:silicon', 'mesecons_materials:silicon', 'group:mesecon_conductor_craftable'}, + {'mesecons_materials:silicon', 'mesecons_materials:silicon', 'group:mesecon_conductor_craftable'}, + {'group:mesecon_conductor_craftable', 'group:mesecon_conductor_craftable', ''}, + } +}) + +function yc_reset(pos) + yc_action(pos, {a=false, b=false, c=false, d=false}) + local meta = minetest.get_meta(pos) + meta:set_int("afterid", 0) + local r = "" + for i=1, EEPROM_SIZE+1 do r=r.."0" end --Generate a string with EEPROM_SIZE*"0" + meta:set_string("eeprom", r) +end + +function update_yc(pos) + local meta = minetest.get_meta(pos) + + if (mesecon.do_overheat(pos)) then + minetest.remove_node(pos) + minetest.after(0.2, function (pos) + mesecon:receptor_off(pos, mesecon.rules.flat) + end , pos) -- wait for pending parsings + minetest.add_item(pos, "mesecons_microcontroller:microcontroller0000") + end + + local code = meta:get_string("code") + code = yc_code_remove_commentary(code) + code = string.gsub(code, " ", "") --Remove all spaces + code = string.gsub(code, " ", "") --Remove all tabs + if yc_parsecode(code, pos) == nil then + meta:set_string("infotext", "Code not valid!\n"..code) + else + meta:set_string("infotext", "Working Microcontroller\n"..code) + end +end + + +--Code Parsing +function yc_code_remove_commentary(code) + is_string = false + for i = 1, #code do + if code:sub(i, i) == '"' then + is_string = not is_string --toggle is_string + elseif code:sub(i, i) == ":" and not is_string then + return code:sub(1, i-1) + end + end + return code +end + +function yc_parsecode(code, pos) + local meta = minetest.get_meta(pos) + local endi = 1 + local Lreal = yc_get_real_portstates(pos) + local Lvirtual = yc_get_virtual_portstates(pos) + if Lvirtual == nil then return nil end + local c + local eeprom = meta:get_string("eeprom") + while true do + command, endi = parse_get_command(code, endi) + if command == nil then return nil end + if command == true then break end --end of code + if command == "if" then + r, endi = yc_command_if(code, endi, yc_merge_portstates(Lreal, Lvirtual), eeprom) + if r == nil then return nil end + if r == true then -- nothing + elseif r == false then + endi_new = yc_skip_to_else (code, endi) + if endi_new == nil then --else > not found + endi = yc_skip_to_endif(code, endi) + else + endi = endi_new + end + if endi == nil then return nil end + end + else + params, endi = parse_get_params(code, endi) + if params == nil then return nil end + end + if command == "on" then + L = yc_command_on (params, Lvirtual) + elseif command == "off" then + L = yc_command_off(params, Lvirtual) + elseif command == "print" then + local su = yc_command_print(params, eeprom, yc_merge_portstates(Lreal, Lvirtual)) + if su ~= true then return nil end + elseif command == "after" then + local su = yc_command_after(params, pos) + if su == nil then return nil end + elseif command == "sbi" then + new_eeprom, Lvirtual = yc_command_sbi (params, eeprom, yc_merge_portstates(Lreal, Lvirtual), Lvirtual) + if new_eeprom == nil then return nil + else eeprom = new_eeprom end + elseif command == "if" then --nothing + else + return nil + end + if Lvirtual == nil then return nil end + if eeprom == nil then return nil else + minetest.get_meta(pos):set_string("eeprom", eeprom) end + end + yc_action(pos, Lvirtual) + return true +end + +function parse_get_command(code, starti) + i = starti + s = nil + while s ~= "" do + s = string.sub(code, i, i) + if s == "(" then + return string.sub(code, starti, i-1), i + 1 -- i: ( i+1 after ( + end + if s == ";" and starti == i then + starti = starti + 1 + i = starti + elseif s == ">" then + starti = yc_skip_to_endif(code, starti) + if starti == nil then return nil end + i = starti + else + i = i + 1 + end + end + + if starti == i-1 then + return true, true + end + return nil, nil +end + +function parse_get_params(code, starti) + i = starti + s = nil + local params = {} + local is_string = false + while s ~= "" do + s = string.sub(code, i, i) + if code:sub(i, i) == '"' then + is_string = (is_string==false) --toggle is_string + end + if s == ")" and is_string == false then + table.insert(params, string.sub(code, starti, i-1)) -- i: ) i+1 after ) + return params, i + 1 + end + if s == "," and is_string == false then + table.insert(params, string.sub(code, starti, i-1)) -- i: ) i+1 after ) + starti = i + 1 + end + i = i + 1 + end + return nil, nil +end + +function yc_parse_get_eeprom_param(cond, starti) + i = starti + s = nil + local addr + while s ~= "" do + s = string.sub(cond, i, i) + if string.find("0123456789", s) == nil or s == "" then + addr = string.sub(cond, starti, i-1) -- i: last number i+1 after last number + return addr, i + end + if s == "," then return nil, nil end + i = i + 1 + end + return nil, nil +end + +function yc_skip_to_endif(code, starti) + local i = starti + local s = false + local open_ifs = 1 + while s ~= nil and s~= "" do + s = code:sub(i, i) + if s == "i" and code:sub(i+1, i+1) == "f" then --if in µCScript + open_ifs = open_ifs + 1 + end + if s == ";" then + open_ifs = open_ifs - 1 + end + if open_ifs == 0 then + return i + 1 + end + i = i + 1 + end + return nil +end + +function yc_skip_to_else(code, starti) + local i = starti + local s = false + local open_ifs = 1 + while s ~= nil and s~= "" do + s = code:sub(i, i) + if s == "i" and code:sub(i+1, i+1) == "f" then --if in µCScript + open_ifs = open_ifs + 1 + end + if s == ";" then + open_ifs = open_ifs - 1 + end + if open_ifs == 1 and s == ">" then + return i + 1 + end + i = i + 1 + end + return nil +end + +--Commands +function yc_command_on(params, L) + local rules = {} + for i, port in ipairs(params) do + L = yc_set_portstate (port, true, L) + end + return L +end + +function yc_command_off(params, L) + local rules = {} + for i, port in ipairs(params) do + L = yc_set_portstate (port, false, L) + end + return L +end + +function yc_command_print(params, eeprom, L) + local s = "" + for i, param in ipairs(params) do + if param:sub(1,1) == '"' and param:sub(#param, #param) == '"' then + s = s..param:sub(2, #param-1) + else + r = yc_command_parsecondition(param, L, eeprom) + if r == "1" or r == "0" then + s = s..r + else return nil end + end + end + print(s) --don't remove + return true +end + +function yc_command_sbi(params, eeprom, L, Lv) + if params[1]==nil or params[2]==nil or params[3] ~=nil then return nil end + local status = yc_command_parsecondition(params[2], L, eeprom) + + if status == nil then return nil, nil end + + if string.find("ABCD", params[1])~=nil and #params[1]==1 then --is a port + if status == "1" then + Lv = yc_set_portstate (params[1], true, Lv) + else + Lv = yc_set_portstate (params[1], false, Lv) + end + return eeprom, Lv; + end + + --is an eeprom address + new_eeprom = ""; + for i=1, #eeprom do + if tonumber(params[1])==i then + new_eeprom = new_eeprom..status + else + new_eeprom = new_eeprom..eeprom:sub(i, i) + end + end + return new_eeprom, Lv +end + +-- after (delay) +function yc_command_after(params, pos) + if params[1] == nil or params[2] == nil or params[3] ~= nil then return nil end + + --get time (maximum time is 200) + local time = tonumber(params[1]) + if time == nil or time > 200 then + return nil + end + + --get code in quotes "code" + if string.sub(params[2], 1, 1) ~= '"' or string.sub(params[2], #params[2], #params[2]) ~= '"' then return nil end + local code = string.sub(params[2], 2, #params[2] - 1) + + local afterid = math.random(10000) + local meta = minetest.get_meta(pos) + meta:set_int("afterid", afterid) + minetest.after(time, yc_command_after_execute, {pos = pos, code = code, afterid = afterid}) + return true +end + +function yc_command_after_execute(params) + local meta = minetest.get_meta(params.pos) + if meta:get_int("afterid") == params.afterid then --make sure the node has not been changed + if yc_parsecode(params.code, params.pos) == nil then + meta:set_string("infotext", "Code in after() not valid!") + else + if code ~= nil then + meta:set_string("infotext", "Working Microcontroller\n"..code) + else + meta:set_string("infotext", "Working Microcontroller") + end + end + end +end + +--If +function yc_command_if(code, starti, L, eeprom) + local cond, endi = yc_command_if_getcondition(code, starti) + if cond == nil then return nil end + + cond = yc_command_parsecondition(cond, L, eeprom) + + if cond == "0" then result = false + elseif cond == "1" then result = true + else result = nil end + if result == nil then end + return result, endi --endi from local cond, endi = yc_command_if_getcondition(code, starti) +end + +--Condition parsing +function yc_command_if_getcondition(code, starti) + i = starti + s = nil + local brackets = 1 --1 Bracket to close + while s ~= "" do + s = string.sub(code, i, i) + + if s == ")" then + brackets = brackets - 1 + end + + if s == "(" then + brackets = brackets + 1 + end + + if brackets == 0 then + return string.sub(code, starti, i-1), i + 1 -- i: ( i+1 after ( + end + + i = i + 1 + end + return nil, nil +end + +function yc_command_parsecondition(cond, L, eeprom) + cond = string.gsub(cond, "A", tonumber(L.a and 1 or 0)) + cond = string.gsub(cond, "B", tonumber(L.b and 1 or 0)) + cond = string.gsub(cond, "C", tonumber(L.c and 1 or 0)) + cond = string.gsub(cond, "D", tonumber(L.d and 1 or 0)) + + + local i = 1 + local l = string.len(cond) + while i<=l do + local s = cond:sub(i,i) + if s == "#" then + addr, endi = yc_parse_get_eeprom_param(cond, i+1) + buf = yc_eeprom_read(tonumber(addr), eeprom) + if buf == nil then return nil end + local call = cond:sub(i, endi-1) + cond = string.gsub(cond, call, buf) + i = 0 + l = string.len(cond) + end + i = i + 1 + end + + cond = string.gsub(cond, "!0", "1") + cond = string.gsub(cond, "!1", "0") + + local i = 2 + local l = string.len(cond) + while i<=l do + local s = cond:sub(i,i) + local b = tonumber(cond:sub(i-1, i-1)) + local a = tonumber(cond:sub(i+1, i+1)) + if cond:sub(i+1, i+1) == nil then break end + if s == "=" then + if a==nil then return nil end + if b==nil then return nil end + if a == b then buf = "1" end + if a ~= b then buf = "0" end + cond = string.gsub(cond, b..s..a, buf) + i = 1 + l = string.len(cond) + end + i = i + 1 + end + + local i = 2 + local l = string.len(cond) + while i<=l do + local s = cond:sub(i,i) + local b = tonumber(cond:sub(i-1, i-1)) + local a = tonumber(cond:sub(i+1, i+1)) + if cond:sub(i+1, i+1) == nil then break end + if s == "&" then + if a==nil then return nil end + local buf = ((a==1) and (b==1)) + if buf == true then buf = "1" end + if buf == false then buf = "0" end + cond = string.gsub(cond, b..s..a, buf) + i = 1 + l = string.len(cond) + end + if s == "|" then + if a==nil then return nil end + local buf = ((a == 1) or (b == 1)) + if buf == true then buf = "1" end + if buf == false then buf = "0" end + cond = string.gsub(cond, b..s..a, buf) + i = 1 + l = string.len(cond) + end + if s == "~" then + if a==nil then return nil end + local buf = (((a == 1) or (b == 1)) and not((a==1) and (b==1))) + if buf == true then buf = "1" end + if buf == false then buf = "0" end + cond = string.gsub(cond, b..s..a, buf) + i = 1 + l = string.len(cond) + end + i = i + 1 + end + + return cond +end + +--Virtual-Hardware functions +function yc_eeprom_read(number, eeprom) + if number == nil then return nil, nil end + value = eeprom:sub(number, number) + if value == nil then return nil, nil end + return value, endi +end + +--Real I/O functions +function yc_action(pos, L) --L-->Lvirtual + local Lv = yc_get_virtual_portstates(pos) + local name = "mesecons_microcontroller:microcontroller" + ..tonumber(L.d and 1 or 0) + ..tonumber(L.c and 1 or 0) + ..tonumber(L.b and 1 or 0) + ..tonumber(L.a and 1 or 0) + local node = minetest.get_node(pos) + minetest.swap_node(pos, {name = name, param2 = node.param2}) + + yc_action_setports(pos, L, Lv) +end + +function yc_action_setports(pos, L, Lv) + local name = "mesecons_microcontroller:microcontroller" + local rules + if Lv.a ~= L.a then + rules = mesecon:get_rules(name.."0001") + if L.a == true then mesecon:receptor_on(pos, rules) + else mesecon:receptor_off(pos, rules) end + end + if Lv.b ~= L.b then + rules = mesecon:get_rules(name.."0010") + if L.b == true then mesecon:receptor_on(pos, rules) + else mesecon:receptor_off(pos, rules) end + end + if Lv.c ~= L.c then + rules = mesecon:get_rules(name.."0100") + if L.c == true then mesecon:receptor_on(pos, rules) + else mesecon:receptor_off(pos, rules) end + end + if Lv.d ~= L.d then + rules = mesecon:get_rules(name.."1000") + if L.d == true then mesecon:receptor_on(pos, rules) + else mesecon:receptor_off(pos, rules) end + end +end + +function yc_set_portstate(port, state, L) + if port == "A" then L.a = state + elseif port == "B" then L.b = state + elseif port == "C" then L.c = state + elseif port == "D" then L.d = state + else return nil end + return L +end + +function yc_update_real_portstates(pos, node, rulename, newstate) + local meta = minetest.get_meta(pos) + if rulename == nil then + meta:set_int("real_portstates", 1) + return + end + local n = meta:get_int("real_portstates") - 1 + if n < 0 then + legacy_update_ports(pos) + n = meta:get_int("real_portstates") - 1 + end + local L = {} + for i = 1, 4 do + L[i] = n%2 + n = math.floor(n/2) + end + if rulename.x == nil then + for _, rname in ipairs(rulename) do + local port = ({4, 1, nil, 3, 2})[rname.x+2*rname.z+3] + L[port] = (newstate == "on") and 1 or 0 + end + else + local port = ({4, 1, nil, 3, 2})[rulename.x+2*rulename.z+3] + L[port] = (newstate == "on") and 1 or 0 + end + meta:set_int("real_portstates", 1 + L[1] + 2*L[2] + 4*L[3] + 8*L[4]) +end + +function yc_get_real_portstates(pos) -- determine if ports are powered (by itself or from outside) + local meta = minetest.get_meta(pos) + local L = {} + local n = meta:get_int("real_portstates") - 1 + if n < 0 then + return legacy_update_ports(pos) + end + for _, index in ipairs({"a", "b", "c", "d"}) do + L[index] = ((n%2) == 1) + n = math.floor(n/2) + end + return L +end + +function yc_get_virtual_portstates(pos) -- portstates according to the name + name = minetest.get_node(pos).name + b, a = string.find(name, ":microcontroller") + if a == nil then return nil end + a = a + 1 + + Lvirtual = {a=false, b=false, c=false, d=false} + if name:sub(a , a ) == "1" then Lvirtual.d = true end + if name:sub(a+1, a+1) == "1" then Lvirtual.c = true end + if name:sub(a+2, a+2) == "1" then Lvirtual.b = true end + if name:sub(a+3, a+3) == "1" then Lvirtual.a = true end + return Lvirtual +end + +function yc_merge_portstates(Lreal, Lvirtual) + local L = {a=false, b=false, c=false, d=false} + if Lvirtual.a or Lreal.a then L.a = true end + if Lvirtual.b or Lreal.b then L.b = true end + if Lvirtual.c or Lreal.c then L.c = true end + if Lvirtual.d or Lreal.d then L.d = true end + return L +end diff --git a/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_LED_A.png b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_LED_A.png new file mode 100644 index 0000000..64526cf Binary files /dev/null and b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_LED_A.png differ diff --git a/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_LED_B.png b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_LED_B.png new file mode 100644 index 0000000..1f7b451 Binary files /dev/null and b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_LED_B.png differ diff --git a/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_LED_C.png b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_LED_C.png new file mode 100644 index 0000000..399cc2c Binary files /dev/null and b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_LED_C.png differ diff --git a/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_LED_D.png b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_LED_D.png new file mode 100644 index 0000000..506389c Binary files /dev/null and b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_LED_D.png differ diff --git a/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_bottom.png b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_bottom.png new file mode 100644 index 0000000..3a9161e Binary files /dev/null and b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_bottom.png differ diff --git a/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_sides.png b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_sides.png new file mode 100644 index 0000000..b367644 Binary files /dev/null and b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_sides.png differ diff --git a/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_top.png b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_top.png new file mode 100644 index 0000000..438c934 Binary files /dev/null and b/mods/mesecons/mesecons_microcontroller/textures/jeija_microcontroller_top.png differ diff --git a/mods/mesecons/mesecons_movestones/depends.txt b/mods/mesecons/mesecons_movestones/depends.txt new file mode 100644 index 0000000..a596cf8 --- /dev/null +++ b/mods/mesecons/mesecons_movestones/depends.txt @@ -0,0 +1,3 @@ +mesecons +mesecons_materials +mesecons_mvps diff --git a/mods/mesecons/mesecons_movestones/init.lua b/mods/mesecons/mesecons_movestones/init.lua new file mode 100644 index 0000000..e31f2d2 --- /dev/null +++ b/mods/mesecons/mesecons_movestones/init.lua @@ -0,0 +1,216 @@ +-- MOVESTONE +-- Non-sticky: +-- Moves along mesecon lines +-- Pushes all blocks in front of it +-- +-- Sticky one +-- Moves along mesecon lines +-- Pushes all block in front of it +-- Pull all blocks in its back + +function mesecon:get_movestone_direction(pos) + getactivated = 0 + local lpos + local getactivated = 0 + local rules = { + {x=0, y=1, z=-1}, + {x=0, y=0, z=-1}, + {x=0, y=-1, z=-1}, + {x=0, y=1, z=1}, + {x=0, y=-1, z=1}, + {x=0, y=0, z=1}, + {x=1, y=0, z=0}, + {x=1, y=1, z=0}, + {x=1, y=-1, z=0}, + {x=-1, y=1, z=0}, + {x=-1, y=-1, z=0}, + {x=-1, y=0, z=0}} + + lpos = {x=pos.x+1, y=pos.y, z=pos.z} + for n = 1, 3 do + if mesecon:is_power_on(lpos, rules[n].x, rules[n].y, rules[n].z) then + return {x=0, y=0, z=-1} + end + end + + lpos = {x = pos.x-1, y = pos.y, z = pos.z} + for n=4, 6 do + if mesecon:is_power_on(lpos, rules[n].x, rules[n].y, rules[n].z) then + return {x=0, y=0, z=1} + end + end + + lpos = {x = pos.x, y = pos.y, z = pos.z+1} + for n=7, 9 do + if mesecon:is_power_on(lpos, rules[n].x, rules[n].y, rules[n].z) then + return {x=-1, y=0, z=0} + end + end + + lpos = {x = pos.x, y = pos.y, z = pos.z-1} + for n=10, 12 do + if mesecon:is_power_on(lpos, rules[n].x, rules[n].y, rules[n].z) then + return {x=1, y=0, z=0} + end + end +end + +minetest.register_node("mesecons_movestones:movestone", { + tiles = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_arrows.png", "jeija_movestone_arrows.png"}, + paramtype2 = "facedir", + legacy_facedir_simple = true, + groups = {cracky=3}, + description="Movestone", + sounds = default.node_sound_stone_defaults(), + mesecons = {effector = { + action_on = function (pos, node) + local direction=mesecon:get_movestone_direction(pos) + if not direction then return end + minetest.remove_node(pos) + mesecon:update_autoconnect(pos) + minetest.add_entity(pos, "mesecons_movestones:movestone_entity") + end + }} +}) + +minetest.register_entity("mesecons_movestones:movestone_entity", { + physical = false, + visual = "sprite", + textures = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_arrows.png", "jeija_movestone_arrows.png"}, + collisionbox = {-0.5,-0.5,-0.5, 0.5, 0.5, 0.5}, + visual = "cube", + lastdir = {x=0, y=0, z=0}, + + on_punch = function(self, hitter) + self.object:remove() + hitter:get_inventory():add_item("main", "mesecons_movestones:movestone") + end, + + on_step = function(self, dtime) + local pos = self.object:getpos() + pos.x, pos.y, pos.z = math.floor(pos.x+0.5), math.floor(pos.y+0.5), math.floor(pos.z+0.5) + local direction = mesecon:get_movestone_direction(pos) + + if not direction then -- no mesecon power + --push only solid nodes + local name = minetest.get_node(pos).name + if name ~= "air" and name ~= "ignore" + and ((not minetest.registered_nodes[name]) + or minetest.registered_nodes[name].liquidtype == "none") then + mesecon:mvps_push(pos, self.lastdir, MOVESTONE_MAXIMUM_PUSH) + end + minetest.add_node(pos, {name="mesecons_movestones:movestone"}) + self.object:remove() + return + end + + local success, stack, oldstack = + mesecon:mvps_push(pos, direction, MOVESTONE_MAXIMUM_PUSH) + if not success then -- Too large stack/stopper in the way + minetest.add_node(pos, {name="mesecons_movestones:movestone"}) + self.object:remove() + return + else + mesecon:mvps_process_stack (stack) + mesecon:mvps_move_objects (pos, direction, oldstack) + self.lastdir = direction + end + + self.object:setvelocity({x=direction.x*2, y=direction.y*2, z=direction.z*2}) + end, +}) + +minetest.register_craft({ + output = "mesecons_movestones:movestone 2", + recipe = { + {"default:stone", "default:stone", "default:stone"}, + {"group:mesecon_conductor_craftable", "group:mesecon_conductor_craftable", "group:mesecon_conductor_craftable"}, + {"default:stone", "default:stone", "default:stone"}, + } +}) + + + +-- STICKY_MOVESTONE + +minetest.register_node("mesecons_movestones:sticky_movestone", { + tiles = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_sticky_movestone.png", "jeija_sticky_movestone.png"}, + inventory_image = minetest.inventorycube("jeija_sticky_movestone.png", "jeija_movestone_side.png", "jeija_movestone_side.png"), + paramtype2 = "facedir", + legacy_facedir_simple = true, + groups = {cracky=3}, + description="Sticky Movestone", + sounds = default.node_sound_stone_defaults(), + mesecons = {effector = { + action_on = function (pos, node) + local direction=mesecon:get_movestone_direction(pos) + if not direction then return end + minetest.remove_node(pos) + mesecon:update_autoconnect(pos) + minetest.add_entity(pos, "mesecons_movestones:sticky_movestone_entity") + end + }} +}) + +minetest.register_craft({ + output = "mesecons_movestones:sticky_movestone 2", + recipe = { + {"mesecons_materials:glue", "mesecons_movestones:movestone", "mesecons_materials:glue"}, + } +}) + +minetest.register_entity("mesecons_movestones:sticky_movestone_entity", { + physical = false, + visual = "sprite", + textures = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_sticky_movestone.png", "jeija_sticky_movestone.png"}, + collisionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + visual = "cube", + lastdir = {x=0, y=0, z=0}, + + on_punch = function(self, hitter) + self.object:remove() + hitter:get_inventory():add_item("main", 'mesecons_movestones:sticky_movestone') + end, + + on_step = function(self, dtime) + local pos = self.object:getpos() + pos.x, pos.y, pos.z = math.floor(pos.x+0.5), math.floor(pos.y+0.5), math.floor(pos.z+0.5) + local direction = mesecon:get_movestone_direction(pos) + + if not direction then -- no mesecon power + --push only solid nodes + local name = minetest.get_node(pos).name + if name ~= "air" and name ~= "ignore" + and ((not minetest.registered_nodes[name]) + or minetest.registered_nodes[name].liquidtype == "none") then + mesecon:mvps_push(pos, self.lastdir, MOVESTONE_MAXIMUM_PUSH) + --STICKY + mesecon:mvps_pull_all(pos, self.lastdir) + end + minetest.add_node(pos, {name="mesecons_movestones:sticky_movestone"}) + self.object:remove() + return + end + + local success, stack, oldstack = + mesecon:mvps_push(pos, direction, MOVESTONE_MAXIMUM_PUSH) + if not success then -- Too large stack/stopper in the way + minetest.add_node(pos, {name="mesecons_movestones:sticky_movestone"}) + self.object:remove() + return + else + mesecon:mvps_process_stack (stack) + mesecon:mvps_move_objects (pos, direction, oldstack) + self.lastdir = direction + end + + self.object:setvelocity({x=direction.x*2, y=direction.y*2, z=direction.z*2}) + + --STICKY + mesecon:mvps_pull_all(pos, direction) + end, +}) + + +mesecon:register_mvps_unmov("mesecons_movestones:movestone_entity") +mesecon:register_mvps_unmov("mesecons_movestones:sticky_movestone_entity") diff --git a/mods/mesecons/mesecons_movestones/textures/jeija_movestone_arrows.png b/mods/mesecons/mesecons_movestones/textures/jeija_movestone_arrows.png new file mode 100644 index 0000000..358c357 Binary files /dev/null and b/mods/mesecons/mesecons_movestones/textures/jeija_movestone_arrows.png differ diff --git a/mods/mesecons/mesecons_movestones/textures/jeija_movestone_side.png b/mods/mesecons/mesecons_movestones/textures/jeija_movestone_side.png new file mode 100644 index 0000000..de753ef Binary files /dev/null and b/mods/mesecons/mesecons_movestones/textures/jeija_movestone_side.png differ diff --git a/mods/mesecons/mesecons_movestones/textures/jeija_sticky_movestone.png b/mods/mesecons/mesecons_movestones/textures/jeija_sticky_movestone.png new file mode 100644 index 0000000..8953cf1 Binary files /dev/null and b/mods/mesecons/mesecons_movestones/textures/jeija_sticky_movestone.png differ diff --git a/mods/mesecons/mesecons_mvps/depends.txt b/mods/mesecons/mesecons_mvps/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_mvps/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_mvps/init.lua b/mods/mesecons/mesecons_mvps/init.lua new file mode 100644 index 0000000..0079f1a --- /dev/null +++ b/mods/mesecons/mesecons_mvps/init.lua @@ -0,0 +1,238 @@ +--register stoppers for movestones/pistons + +mesecon.mvps_stoppers = {} +mesecon.mvps_unmov = {} +mesecon.on_mvps_move = {} + +function mesecon:is_mvps_stopper(node, pushdir, stack, stackid) + local get_stopper = mesecon.mvps_stoppers[node.name] + if type (get_stopper) == "function" then + get_stopper = get_stopper(node, pushdir, stack, stackid) + end + return get_stopper +end + +function mesecon:register_mvps_stopper(nodename, get_stopper) + if get_stopper == nil then + get_stopper = true + end + mesecon.mvps_stoppers[nodename] = get_stopper +end + +-- Objects that cannot be moved (e.g. movestones) +function mesecon:register_mvps_unmov(objectname) + mesecon.mvps_unmov[objectname] = true; +end + +function mesecon:is_mvps_unmov(objectname) + return mesecon.mvps_unmov[objectname] +end + +-- Functions to be called on mvps movement +function mesecon:register_on_mvps_move(callback) + mesecon.on_mvps_move[#mesecon.on_mvps_move+1] = callback +end + +local function on_mvps_move(moved_nodes) + for _, callback in ipairs(mesecon.on_mvps_move) do + callback(moved_nodes) + end +end + +function mesecon:mvps_process_stack(stack) + -- update mesecons for placed nodes ( has to be done after all nodes have been added ) + for _, n in ipairs(stack) do + nodeupdate(n.pos) + mesecon.on_placenode(n.pos, minetest.get_node(n.pos)) + mesecon:update_autoconnect(n.pos) + end +end + +function mesecon:mvps_get_stack(pos, dir, maximum) + -- determine the number of nodes to be pushed + local np = {x = pos.x, y = pos.y, z = pos.z} + local nodes = {} + while true do + local nn = minetest.get_node_or_nil(np) + if not nn or #nodes > maximum then + -- don't push at all, something is in the way (unloaded map or too many nodes) + return nil + end + + if nn.name == "air" + or (minetest.registered_nodes[nn.name] + and minetest.registered_nodes[nn.name].liquidtype ~= "none") then --is liquid + break + end + + table.insert (nodes, {node = nn, pos = np}) + + np = mesecon:addPosRule(np, dir) + end + return nodes +end + +function mesecon:mvps_push(pos, dir, maximum) -- pos: pos of mvps; dir: direction of push; maximum: maximum nodes to be pushed + local nodes = mesecon:mvps_get_stack(pos, dir, maximum) + + if not nodes then return end + -- determine if one of the nodes blocks the push + for id, n in ipairs(nodes) do + if mesecon:is_mvps_stopper(n.node, dir, nodes, id) then + return + end + end + + -- remove all nodes + for _, n in ipairs(nodes) do + n.meta = minetest.get_meta(n.pos):to_table() + minetest.remove_node(n.pos) + end + + -- update mesecons for removed nodes ( has to be done after all nodes have been removed ) + for _, n in ipairs(nodes) do + mesecon.on_dignode(n.pos, n.node) + mesecon:update_autoconnect(n.pos) + end + + -- add nodes + for _, n in ipairs(nodes) do + np = mesecon:addPosRule(n.pos, dir) + minetest.add_node(np, n.node) + minetest.get_meta(np):from_table(n.meta) + end + + local moved_nodes = {} + local oldstack = mesecon:tablecopy(nodes) + for i in ipairs(nodes) do + moved_nodes[i] = {} + moved_nodes[i].oldpos = nodes[i].pos + nodes[i].pos = mesecon:addPosRule(nodes[i].pos, dir) + moved_nodes[i].pos = nodes[i].pos + moved_nodes[i].node = nodes[i].node + moved_nodes[i].meta = nodes[i].meta + end + + on_mvps_move(moved_nodes) + + return true, nodes, oldstack +end + +mesecon:register_on_mvps_move(function(moved_nodes) + for _, n in ipairs(moved_nodes) do + mesecon.on_placenode(n.pos, n.node) + mesecon:update_autoconnect(n.pos) + end +end) + +function mesecon:mvps_pull_single(pos, dir) -- pos: pos of mvps; direction: direction of pull (matches push direction for sticky pistons) + np = mesecon:addPosRule(pos, dir) + nn = minetest.get_node(np) + + if ((not minetest.registered_nodes[nn.name]) --unregistered node + or minetest.registered_nodes[nn.name].liquidtype == "none") --non-liquid node + and not mesecon:is_mvps_stopper(nn, {x = -dir.x, y = -dir.y, z = -dir.z}, {{pos = np, node = nn}}, 1) then --non-stopper node + local meta = minetest.get_meta(np):to_table() + minetest.remove_node(np) + minetest.add_node(pos, nn) + minetest.get_meta(pos):from_table(meta) + + nodeupdate(np) + nodeupdate(pos) + mesecon.on_dignode(np, nn) + mesecon:update_autoconnect(np) + on_mvps_move({{pos = pos, oldpos = np, node = nn, meta = meta}}) + end + return {{pos = np, node = {param2 = 0, name = "air"}}, {pos = pos, node = nn}} +end + +function mesecon:mvps_pull_all(pos, direction) -- pos: pos of mvps; direction: direction of pull + local lpos = {x=pos.x-direction.x, y=pos.y-direction.y, z=pos.z-direction.z} -- 1 away + local lnode = minetest.get_node(lpos) + local lpos2 = {x=pos.x-direction.x*2, y=pos.y-direction.y*2, z=pos.z-direction.z*2} -- 2 away + local lnode2 = minetest.get_node(lpos2) + + --avoid pulling solid nodes + if lnode.name ~= "ignore" + and lnode.name ~= "air" + and ((not minetest.registered_nodes[lnode.name]) + or minetest.registered_nodes[lnode.name].liquidtype == "none") then + return + end + + --avoid pulling empty or liquid nodes + if lnode2.name == "ignore" + or lnode2.name == "air" + or (minetest.registered_nodes[lnode2.name] + and minetest.registered_nodes[lnode2.name].liquidtype ~= "none") then + return + end + + local moved_nodes = {} + local oldpos = {x=lpos2.x + direction.x, y=lpos2.y + direction.y, z=lpos2.z + direction.z} + repeat + lnode2 = minetest.get_node(lpos2) + local meta = minetest.get_meta(lnode2):to_table() + minetest.add_node(oldpos, lnode2) + minetest.get_meta(oldpos):from_table(meta) + moved_nodes[#moved_nodes+1] = {pos = oldpos, oldpos = lpos2, node = lnode2, meta = meta} + nodeupdate(oldpos) + oldpos = {x=lpos2.x, y=lpos2.y, z=lpos2.z} + lpos2.x = lpos2.x-direction.x + lpos2.y = lpos2.y-direction.y + lpos2.z = lpos2.z-direction.z + lnode = minetest.get_node(lpos2) + until lnode.name == "air" + or lnode.name == "ignore" + or (minetest.registered_nodes[lnode.name] + and minetest.registered_nodes[lnode.name].liquidtype ~= "none") + minetest.remove_node(oldpos) + mesecon.on_dignode(oldpos, lnode2) + mesecon:update_autoconnect(oldpos) + on_mvps_move(moved_nodes) +end + +function mesecon:mvps_move_objects(pos, dir, nodestack) + local objects_to_move = {} + + -- Move object at tip of stack + local pushpos = mesecon:addPosRule(pos, -- get pos at tip of stack + {x = dir.x * #nodestack, + y = dir.y * #nodestack, + z = dir.z * #nodestack}) + + + local objects = minetest.get_objects_inside_radius(pushpos, 1) + for _, obj in ipairs(objects) do + table.insert(objects_to_move, obj) + end + + -- Move objects lying/standing on the stack (before it was pushed - oldstack) + if tonumber(minetest.setting_get("movement_gravity")) > 0 and dir.y == 0 then + -- If gravity positive and dir horizontal, push players standing on the stack + for _, n in ipairs(nodestack) do + local p_above = mesecon:addPosRule(n.pos, {x=0, y=1, z=0}) + local objects = minetest.get_objects_inside_radius(p_above, 1) + for _, obj in ipairs(objects) do + table.insert(objects_to_move, obj) + end + end + end + + for _, obj in ipairs(objects_to_move) do + local entity = obj:get_luaentity() + if not entity or not mesecon:is_mvps_unmov(entity.name) then + local np = mesecon:addPosRule(obj:getpos(), dir) + + --move only if destination is not solid + local nn = minetest.get_node(np) + if not ((not minetest.registered_nodes[nn.name]) + or minetest.registered_nodes[nn.name].walkable) then + obj:setpos(np) + end + end + end +end + +mesecon:register_mvps_stopper("default:chest_locked") +mesecon:register_mvps_stopper("default:furnace") diff --git a/mods/mesecons/mesecons_noteblock/depends.txt b/mods/mesecons/mesecons_noteblock/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_noteblock/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_noteblock/init.lua b/mods/mesecons/mesecons_noteblock/init.lua new file mode 100644 index 0000000..3971076 --- /dev/null +++ b/mods/mesecons/mesecons_noteblock/init.lua @@ -0,0 +1,79 @@ +minetest.register_node("mesecons_noteblock:noteblock", { + description = "Noteblock", + tiles = {"mesecons_noteblock.png"}, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + drawtype = "allfaces_optional", + visual_scale = 1.3, + paramtype="light", + after_place_node = function(pos) + minetest.add_node(pos, {name="mesecons_noteblock:noteblock", param2=0}) + end, + on_punch = function (pos, node) -- change sound when punched + local param2 = node.param2+1 + if param2==12 then param2=0 end + minetest.add_node(pos, {name = node.name, param2 = param2}) + mesecon.noteblock_play(pos, param2) + end, + sounds = default.node_sound_wood_defaults(), + mesecons = {effector = { -- play sound when activated + action_on = function (pos, node) + mesecon.noteblock_play(pos, node.param2) + end + }} +}) + +minetest.register_craft({ + output = "mesecons_noteblock:noteblock 1", + recipe = { + {"group:wood", "group:wood", "group:wood"}, + {"group:mesecon_conductor_craftable", "default:steel_ingot", "group:mesecon_conductor_craftable"}, + {"group:wood", "group:wood", "group:wood"}, + } +}) + +mesecon.noteblock_play = function (pos, param2) + local soundname + if param2==8 then + soundname="mesecons_noteblock_a" + elseif param2==9 then + soundname="mesecons_noteblock_asharp" + elseif param2==10 then + soundname="mesecons_noteblock_b" + elseif param2==11 then + soundname="mesecons_noteblock_c" + elseif param2==0 then + soundname="mesecons_noteblock_csharp" + elseif param2==1 then + soundname="mesecons_noteblock_d" + elseif param2==2 then + soundname="mesecons_noteblock_dsharp" + elseif param2==3 then + soundname="mesecons_noteblock_e" + elseif param2==4 then + soundname="mesecons_noteblock_f" + elseif param2==5 then + soundname="mesecons_noteblock_fsharp" + elseif param2==6 then + soundname="mesecons_noteblock_g" + elseif param2==7 then + soundname="mesecons_noteblock_gsharp" + end + local block_below_name = minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name + if block_below_name == "default:glass" then + soundname="mesecons_noteblock_hihat" + end + if block_below_name == "default:stone" then + soundname="mesecons_noteblock_kick" + end + if block_below_name == "default:chest" then + soundname="mesecons_noteblock_snare" + end + if block_below_name == "default:tree" then + soundname="mesecons_noteblock_crash" + end + if block_below_name == "default:wood" then + soundname="mesecons_noteblock_litecrash" + end + minetest.sound_play(soundname, + {pos = pos, gain = 1.0, max_hear_distance = 32,}) +end diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_a.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_a.ogg new file mode 100644 index 0000000..5668a8a Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_a.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_asharp.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_asharp.ogg new file mode 100644 index 0000000..4cd2dcc Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_asharp.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_b.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_b.ogg new file mode 100644 index 0000000..621a6b5 Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_b.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_c.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_c.ogg new file mode 100644 index 0000000..e235978 Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_c.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_crash.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_crash.ogg new file mode 100644 index 0000000..d33027a Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_crash.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_csharp.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_csharp.ogg new file mode 100644 index 0000000..50ba835 Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_csharp.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_d.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_d.ogg new file mode 100644 index 0000000..f1227ba Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_d.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_dsharp.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_dsharp.ogg new file mode 100644 index 0000000..817728e Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_dsharp.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_e.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_e.ogg new file mode 100644 index 0000000..c91d1a6 Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_e.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_f.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_f.ogg new file mode 100644 index 0000000..3f1eaea Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_f.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_fsharp.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_fsharp.ogg new file mode 100644 index 0000000..9f13797 Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_fsharp.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_g.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_g.ogg new file mode 100644 index 0000000..d2a90dd Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_g.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_gsharp.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_gsharp.ogg new file mode 100644 index 0000000..6177b8c Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_gsharp.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_hihat.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_hihat.ogg new file mode 100644 index 0000000..d05a870 Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_hihat.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_kick.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_kick.ogg new file mode 100644 index 0000000..108e89e Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_kick.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_litecrash.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_litecrash.ogg new file mode 100644 index 0000000..21aecfa Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_litecrash.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_snare.ogg b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_snare.ogg new file mode 100644 index 0000000..25d7b78 Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/sounds/mesecons_noteblock_snare.ogg differ diff --git a/mods/mesecons/mesecons_noteblock/textures/mesecons_noteblock.png b/mods/mesecons/mesecons_noteblock/textures/mesecons_noteblock.png new file mode 100644 index 0000000..d13e61b Binary files /dev/null and b/mods/mesecons/mesecons_noteblock/textures/mesecons_noteblock.png differ diff --git a/mods/mesecons/mesecons_pistons/depends.txt b/mods/mesecons/mesecons_pistons/depends.txt new file mode 100644 index 0000000..01f085b --- /dev/null +++ b/mods/mesecons/mesecons_pistons/depends.txt @@ -0,0 +1,2 @@ +mesecons +mesecons_mvps diff --git a/mods/mesecons/mesecons_pistons/init.lua b/mods/mesecons/mesecons_pistons/init.lua new file mode 100644 index 0000000..7780fc9 --- /dev/null +++ b/mods/mesecons/mesecons_pistons/init.lua @@ -0,0 +1,758 @@ +-- Get mesecon rules of pistons +piston_rules = +{{x=0, y=0, z=1}, --everything apart from z- (pusher side) + {x=1, y=0, z=0}, + {x=-1, y=0, z=0}, + {x=1, y=1, z=0}, + {x=1, y=-1, z=0}, + {x=-1, y=1, z=0}, + {x=-1, y=-1, z=0}, + {x=0, y=1, z=1}, + {x=0, y=-1, z=1}} + +local piston_up_rules = +{{x=0, y=0, z=-1}, --everything apart from y+ (pusher side) + {x=1, y=0, z=0}, + {x=-1, y=0, z=0}, + {x=0, y=0, z=1}, + {x=1, y=-1, z=0}, + {x=-1, y=-1, z=0}, + {x=0, y=-1, z=1}, + {x=0, y=-1, z=-1}} + +local piston_down_rules = +{{x=0, y=0, z=-1}, --everything apart from y- (pusher side) + {x=1, y=0, z=0}, + {x=-1, y=0, z=0}, + {x=0, y=0, z=1}, + {x=1, y=1, z=0}, + {x=-1, y=1, z=0}, + {x=0, y=1, z=1}, + {x=0, y=1, z=-1}} + +local piston_get_rules = function (node) + local rules = piston_rules + for i = 1, node.param2 do + rules = mesecon:rotate_rules_left(rules) + end + return rules +end + +piston_facedir_direction = function (node) + local rules = {{x = 0, y = 0, z = -1}} + for i = 1, node.param2 do + rules = mesecon:rotate_rules_left(rules) + end + return rules[1] +end + +piston_get_direction = function(dir, node) + if type(dir) == "function" then + return dir(node) + else + return dir + end +end + +local piston_remove_pusher = function(pos, node) + pistonspec = minetest.registered_nodes[node.name].mesecons_piston + if pushername == pistonspec.pusher then --make sure there actually is a pusher (for compatibility reasons mainly) + return + end + + dir = piston_get_direction(pistonspec.dir, node) + local pusherpos = mesecon:addPosRule(pos, dir) + local pushername = minetest.get_node(pusherpos).name + + minetest.remove_node(pusherpos) + minetest.sound_play("piston_retract", { + pos = pos, + max_hear_distance = 20, + gain = 0.3, + }) + nodeupdate(pusherpos) +end + +local piston_on = function(pos, node) + local pistonspec = minetest.registered_nodes[node.name].mesecons_piston + + local dir = piston_get_direction(pistonspec.dir, node) + local np = mesecon:addPosRule(pos, dir) + local success, stack, oldstack = mesecon:mvps_push(np, dir, PISTON_MAXIMUM_PUSH) + if success then + minetest.add_node(pos, {param2 = node.param2, name = pistonspec.onname}) + minetest.add_node(np, {param2 = node.param2, name = pistonspec.pusher}) + minetest.sound_play("piston_extend", { + pos = pos, + max_hear_distance = 20, + gain = 0.3, + }) + mesecon:mvps_process_stack (stack) + mesecon:mvps_move_objects (np, dir, oldstack) + end +end + +local piston_off = function(pos, node) + local pistonspec = minetest.registered_nodes[node.name].mesecons_piston + minetest.add_node(pos, {param2 = node.param2, name = pistonspec.offname}) + piston_remove_pusher(pos, node) + + if pistonspec.sticky then + dir = piston_get_direction(pistonspec.dir, node) + pullpos = mesecon:addPosRule(pos, dir) + stack = mesecon:mvps_pull_single(pullpos, dir) + mesecon:mvps_process_stack(pos, dir, stack) + end +end + +local piston_orientate = function(pos, placer) + -- not placed by player + if not placer then return end + + -- placer pitch in degrees + local pitch = placer:get_look_pitch() * (180 / math.pi) + + local node = minetest.get_node(pos) + local pistonspec = minetest.registered_nodes[node.name].mesecons_piston + if pitch > 55 then --looking upwards + minetest.add_node(pos, {name=pistonspec.piston_down}) + elseif pitch < -55 then --looking downwards + minetest.add_node(pos, {name=pistonspec.piston_up}) + end +end + + +-- Horizontal pistons + +local pt = 3/16 -- pusher thickness + +local piston_pusher_box = { + type = "fixed", + fixed = { + {-2/16, -2/16, -.5 + pt, 2/16, 2/16, .5 + pt}, + {-.5 , -.5 , -.5 , .5 , .5 , -.5 + pt}, + } +} + +local piston_on_box = { + type = "fixed", + fixed = { + {-.5, -.5, -.5 + pt, .5, .5, .5} + } +} + + +-- Normal (non-sticky) ones: + +local pistonspec_normal = { + offname = "mesecons_pistons:piston_normal_off", + onname = "mesecons_pistons:piston_normal_on", + dir = piston_facedir_direction, + pusher = "mesecons_pistons:piston_pusher_normal", + piston_down = "mesecons_pistons:piston_down_normal_off", + piston_up = "mesecons_pistons:piston_up_normal_off", +} + +-- offstate +minetest.register_node("mesecons_pistons:piston_normal_off", { + description = "Piston", + tiles = { + "mesecons_piston_top.png", + "mesecons_piston_bottom.png", + "mesecons_piston_left.png", + "mesecons_piston_right.png", + "mesecons_piston_back.png", + "mesecons_piston_pusher_front.png" + }, + groups = {cracky = 3}, + paramtype2 = "facedir", + after_place_node = piston_orientate, + mesecons_piston = pistonspec_normal, + sounds = default.node_sound_wood_defaults(), + mesecons = {effector={ + action_on = piston_on, + rules = piston_get_rules + }} +}) + +-- onstate +minetest.register_node("mesecons_pistons:piston_normal_on", { + drawtype = "nodebox", + tiles = { + "mesecons_piston_top.png", + "mesecons_piston_bottom.png", + "mesecons_piston_left.png", + "mesecons_piston_right.png", + "mesecons_piston_back.png", + "mesecons_piston_on_front.png" + }, + inventory_image = "mesecons_piston_top.png", + wield_image = "mesecons_piston_top.png", + groups = {cracky = 3, not_in_creative_inventory = 1}, + paramtype = "light", + paramtype2 = "facedir", + drop = "mesecons_pistons:piston_normal_off", + after_dig_node = piston_remove_pusher, + node_box = piston_on_box, + selection_box = piston_on_box, + mesecons_piston = pistonspec_normal, + sounds = default.node_sound_wood_defaults(), + mesecons = {effector={ + action_off = piston_off, + rules = piston_get_rules + }} +}) + +-- pusher +minetest.register_node("mesecons_pistons:piston_pusher_normal", { + drawtype = "nodebox", + tiles = { + "mesecons_piston_pusher_top.png", + "mesecons_piston_pusher_bottom.png", + "mesecons_piston_pusher_left.png", + "mesecons_piston_pusher_right.png", + "mesecons_piston_pusher_back.png", + "mesecons_piston_pusher_front.png" + }, + paramtype = "light", + paramtype2 = "facedir", + diggable = false, + corresponding_piston = "mesecons_pistons:piston_normal_on", + selection_box = piston_pusher_box, + node_box = piston_pusher_box, +}) + +-- Sticky ones + +local pistonspec_sticky = { + offname = "mesecons_pistons:piston_sticky_off", + onname = "mesecons_pistons:piston_sticky_on", + dir = piston_facedir_direction, + pusher = "mesecons_pistons:piston_pusher_sticky", + sticky = true, + piston_down = "mesecons_pistons:piston_down_sticky_off", + piston_up = "mesecons_pistons:piston_up_sticky_off", +} + +-- offstate +minetest.register_node("mesecons_pistons:piston_sticky_off", { + description = "Sticky Piston", + tiles = { + "mesecons_piston_top.png", + "mesecons_piston_bottom.png", + "mesecons_piston_left.png", + "mesecons_piston_right.png", + "mesecons_piston_back.png", + "mesecons_piston_pusher_front_sticky.png" + }, + groups = {cracky = 3}, + paramtype2 = "facedir", + after_place_node = piston_orientate, + mesecons_piston = pistonspec_sticky, + sounds = default.node_sound_wood_defaults(), + mesecons = {effector={ + action_on = piston_on, + rules = piston_get_rules + }} +}) + +-- onstate +minetest.register_node("mesecons_pistons:piston_sticky_on", { + drawtype = "nodebox", + tiles = { + "mesecons_piston_top.png", + "mesecons_piston_bottom.png", + "mesecons_piston_left.png", + "mesecons_piston_right.png", + "mesecons_piston_back.png", + "mesecons_piston_on_front.png" + }, + inventory_image = "mesecons_piston_top.png", + wield_image = "mesecons_piston_top.png", + groups = {cracky = 3, not_in_creative_inventory = 1}, + paramtype = "light", + paramtype2 = "facedir", + drop = "mesecons_pistons:piston_normal_off", + after_dig_node = piston_remove_pusher, + node_box = piston_on_box, + selection_box = piston_on_box, + mesecons_piston = pistonspec_sticky, + sounds = default.node_sound_wood_defaults(), + mesecons = {effector={ + action_off = piston_off, + rules = piston_get_rules + }} +}) + +-- pusher +minetest.register_node("mesecons_pistons:piston_pusher_sticky", { + drawtype = "nodebox", + tiles = { + "mesecons_piston_pusher_top.png", + "mesecons_piston_pusher_bottom.png", + "mesecons_piston_pusher_left.png", + "mesecons_piston_pusher_right.png", + "mesecons_piston_pusher_back.png", + "mesecons_piston_pusher_front_sticky.png" + }, + paramtype = "light", + paramtype2 = "facedir", + diggable = false, + corresponding_piston = "mesecons_pistons:piston_sticky_on", + selection_box = piston_pusher_box, + node_box = piston_pusher_box, +}) + +-- +-- +-- UP +-- +-- + +local piston_up_pusher_box = { + type = "fixed", + fixed = { + {-2/16, -.5 - pt, -2/16, 2/16, .5 - pt, 2/16}, + {-.5 , .5 - pt, -.5 , .5 , .5 , .5}, + } +} + +local piston_up_on_box = { + type = "fixed", + fixed = { + {-.5, -.5, -.5 , .5, .5-pt, .5} + } +} + +-- Normal + +local pistonspec_normal_up = { + offname = "mesecons_pistons:piston_up_normal_off", + onname = "mesecons_pistons:piston_up_normal_on", + dir = {x = 0, y = 1, z = 0}, + pusher = "mesecons_pistons:piston_up_pusher_normal" +} + +-- offstate +minetest.register_node("mesecons_pistons:piston_up_normal_off", { + tiles = { + "mesecons_piston_pusher_front.png", + "mesecons_piston_back.png", + "mesecons_piston_left.png^[transformR270", + "mesecons_piston_right.png^[transformR90", + "mesecons_piston_bottom.png", + "mesecons_piston_top.png^[transformR180", + }, + inventory_image = "mesecons_piston_top.png", + wield_image = "mesecons_piston_top.png", + groups = {cracky = 3, not_in_creative_inventory = 1}, + paramtype2 = "facedir", + drop = "mesecons_pistons:piston_normal_off", + mesecons_piston = pistonspec_normal_up, + mesecons = {effector={ + action_on = piston_on, + rules = piston_up_rules, + }} +}) + +-- onstate +minetest.register_node("mesecons_pistons:piston_up_normal_on", { + drawtype = "nodebox", + tiles = { + "mesecons_piston_on_front.png", + "mesecons_piston_back.png", + "mesecons_piston_left.png^[transformR270", + "mesecons_piston_right.png^[transformR90", + "mesecons_piston_bottom.png", + "mesecons_piston_top.png^[transformR180", + }, + inventory_image = "mesecons_piston_top.png", + wield_image = "mesecons_piston_top.png", + groups = {cracky = 3, not_in_creative_inventory = 1}, + paramtype = "light", + paramtype2 = "facedir", + drop = "mesecons_pistons:piston_normal_off", + after_dig_node = piston_remove_pusher, + node_box = piston_up_on_box, + selection_box = piston_up_on_box, + mesecons_piston = pistonspec_normal_up, + sounds = default.node_sound_wood_defaults(), + mesecons = {effector={ + action_off = piston_off, + rules = piston_up_rules, + }} +}) + +-- pusher +minetest.register_node("mesecons_pistons:piston_up_pusher_normal", { + drawtype = "nodebox", + tiles = { + "mesecons_piston_pusher_front.png", + "mesecons_piston_pusher_back.png", + "mesecons_piston_pusher_left.png^[transformR270", + "mesecons_piston_pusher_right.png^[transformR90", + "mesecons_piston_pusher_bottom.png", + "mesecons_piston_pusher_top.png^[transformR180", + }, + paramtype = "light", + paramtype2 = "facedir", + diggable = false, + corresponding_piston = "mesecons_pistons:piston_up_normal_on", + selection_box = piston_up_pusher_box, + node_box = piston_up_pusher_box, +}) + + + +-- Sticky + + +local pistonspec_sticky_up = { + offname = "mesecons_pistons:piston_up_sticky_off", + onname = "mesecons_pistons:piston_up_sticky_on", + dir = {x = 0, y = 1, z = 0}, + pusher = "mesecons_pistons:piston_up_pusher_sticky", + sticky = true +} + +-- offstate +minetest.register_node("mesecons_pistons:piston_up_sticky_off", { + tiles = { + "mesecons_piston_pusher_front_sticky.png", + "mesecons_piston_back.png", + "mesecons_piston_left.png^[transformR270", + "mesecons_piston_right.png^[transformR90", + "mesecons_piston_bottom.png", + "mesecons_piston_top.png^[transformR180", + "mesecons_piston_tb.png" + }, + inventory_image = "mesecons_piston_top.png", + wield_image = "mesecons_piston_top.png", + groups = {cracky = 3, not_in_creative_inventory = 1}, + paramtype2 = "facedir", + drop = "mesecons_pistons:piston_sticky_off", + mesecons_piston = pistonspec_sticky_up, + sounds = default.node_sound_wood_defaults(), + mesecons = {effector={ + action_on = piston_on, + rules = piston_up_rules, + }} +}) + +-- onstate +minetest.register_node("mesecons_pistons:piston_up_sticky_on", { + drawtype = "nodebox", + tiles = { + "mesecons_piston_on_front.png", + "mesecons_piston_back.png", + "mesecons_piston_left.png^[transformR270", + "mesecons_piston_right.png^[transformR90", + "mesecons_piston_bottom.png", + "mesecons_piston_top.png^[transformR180", + }, + inventory_image = "mesecons_piston_top.png", + wield_image = "mesecons_piston_top.png", + groups = {cracky = 3, not_in_creative_inventory = 1}, + paramtype = "light", + paramtype2 = "facedir", + drop = "mesecons_pistons:piston_normal_off", + after_dig_node = piston_remove_pusher, + node_box = piston_up_on_box, + selection_box = piston_up_on_box, + mesecons_piston = pistonspec_sticky_up, + sounds = default.node_sound_wood_defaults(), + mesecons = {effector={ + action_off = piston_off, + rules = piston_up_rules, + }} +}) + +-- pusher +minetest.register_node("mesecons_pistons:piston_up_pusher_sticky", { + drawtype = "nodebox", + tiles = { + "mesecons_piston_pusher_front_sticky.png", + "mesecons_piston_pusher_back.png", + "mesecons_piston_pusher_left.png^[transformR270", + "mesecons_piston_pusher_right.png^[transformR90", + "mesecons_piston_pusher_bottom.png", + "mesecons_piston_pusher_top.png^[transformR180", + }, + paramtype = "light", + paramtype2 = "facedir", + diggable = false, + corresponding_piston = "mesecons_pistons:piston_up_sticky_on", + selection_box = piston_up_pusher_box, + node_box = piston_up_pusher_box, +}) + +-- +-- +-- DOWN +-- +-- + +local piston_down_pusher_box = { + type = "fixed", + fixed = { + {-2/16, -.5 + pt, -2/16, 2/16, .5 + pt, 2/16}, + {-.5 , -.5 , -.5 , .5 , -.5 + pt, .5}, + } +} + +local piston_down_on_box = { + type = "fixed", + fixed = { + {-.5, -.5+pt, -.5 , .5, .5, .5} + } +} + + + +-- Normal + +local pistonspec_normal_down = { + offname = "mesecons_pistons:piston_down_normal_off", + onname = "mesecons_pistons:piston_down_normal_on", + dir = {x = 0, y = -1, z = 0}, + pusher = "mesecons_pistons:piston_down_pusher_normal", +} + +-- offstate +minetest.register_node("mesecons_pistons:piston_down_normal_off", { + tiles = { + "mesecons_piston_back.png", + "mesecons_piston_pusher_front.png", + "mesecons_piston_left.png^[transformR90", + "mesecons_piston_right.png^[transformR270", + "mesecons_piston_bottom.png^[transformR180", + "mesecons_piston_top.png", + }, + inventory_image = "mesecons_piston_top.png", + wield_image = "mesecons_piston_top.png", + groups = {cracky = 3, not_in_creative_inventory = 1}, + paramtype2 = "facedir", + drop = "mesecons_pistons:piston_normal_off", + mesecons_piston = pistonspec_normal_down, + sounds = default.node_sound_wood_defaults(), + mesecons = {effector={ + action_on = piston_on, + rules = piston_down_rules, + }} +}) + +-- onstate +minetest.register_node("mesecons_pistons:piston_down_normal_on", { + drawtype = "nodebox", + tiles = { + "mesecons_piston_back.png", + "mesecons_piston_on_front.png", + "mesecons_piston_left.png^[transformR90", + "mesecons_piston_right.png^[transformR270", + "mesecons_piston_bottom.png^[transformR180", + "mesecons_piston_top.png", + }, + inventory_image = "mesecons_piston_top.png", + wield_image = "mesecons_piston_top.png", + groups = {cracky = 3, not_in_creative_inventory = 1}, + paramtype = "light", + paramtype2 = "facedir", + drop = "mesecons_pistons:piston_normal_off", + after_dig_node = piston_remove_pusher, + node_box = piston_down_on_box, + selection_box = piston_down_on_box, + mesecons_piston = pistonspec_normal_down, + sounds = default.node_sound_wood_defaults(), + mesecons = {effector={ + action_off = piston_off, + rules = piston_down_rules, + }} +}) + +-- pusher +minetest.register_node("mesecons_pistons:piston_down_pusher_normal", { + drawtype = "nodebox", + tiles = { + "mesecons_piston_pusher_back.png", + "mesecons_piston_pusher_front.png", + "mesecons_piston_pusher_left.png^[transformR90", + "mesecons_piston_pusher_right.png^[transformR270", + "mesecons_piston_pusher_bottom.png^[transformR180", + "mesecons_piston_pusher_top.png", + }, + paramtype = "light", + paramtype2 = "facedir", + diggable = false, + corresponding_piston = "mesecons_pistons:piston_down_normal_on", + selection_box = piston_down_pusher_box, + node_box = piston_down_pusher_box, +}) + +-- Sticky + +local pistonspec_sticky_down = { + onname = "mesecons_pistons:piston_down_sticky_on", + offname = "mesecons_pistons:piston_down_sticky_off", + dir = {x = 0, y = -1, z = 0}, + pusher = "mesecons_pistons:piston_down_pusher_sticky", + sticky = true +} + +-- offstate +minetest.register_node("mesecons_pistons:piston_down_sticky_off", { + tiles = { + "mesecons_piston_back.png", + "mesecons_piston_pusher_front_sticky.png", + "mesecons_piston_left.png^[transformR90", + "mesecons_piston_right.png^[transformR270", + "mesecons_piston_bottom.png^[transformR180", + "mesecons_piston_top.png", + }, + inventory_image = "mesecons_piston_top.png", + wield_image = "mesecons_piston_top.png", + groups = {cracky = 3, not_in_creative_inventory = 1}, + paramtype2 = "facedir", + drop = "mesecons_pistons:piston_sticky_off", + mesecons_piston = pistonspec_sticky_down, + sounds = default.node_sound_wood_defaults(), + mesecons = {effector={ + action_on = piston_on, + rules = piston_down_rules, + }} +}) + +-- onstate +minetest.register_node("mesecons_pistons:piston_down_sticky_on", { + drawtype = "nodebox", + tiles = { + "mesecons_piston_back.png", + "mesecons_piston_on_front.png", + "mesecons_piston_left.png^[transformR90", + "mesecons_piston_right.png^[transformR270", + "mesecons_piston_bottom.png^[transformR180", + "mesecons_piston_top.png", + }, + inventory_image = "mesecons_piston_top.png", + wield_image = "mesecons_piston_top.png", + groups = {cracky = 3, not_in_creative_inventory = 1}, + paramtype = "light", + paramtype2 = "facedir", + drop = "mesecons_pistons:piston_sticky_off", + after_dig_node = piston_remove_pusher, + node_box = piston_down_on_box, + selection_box = piston_down_on_box, + mesecons_piston = pistonspec_sticky_down, + sounds = default.node_sound_wood_defaults(), + mesecons = {effector={ + action_off = piston_off, + rules = piston_down_rules, + }} +}) + +-- pusher +minetest.register_node("mesecons_pistons:piston_down_pusher_sticky", { + drawtype = "nodebox", + tiles = { + "mesecons_piston_pusher_back.png", + "mesecons_piston_pusher_front_sticky.png", + "mesecons_piston_pusher_left.png^[transformR90", + "mesecons_piston_pusher_right.png^[transformR270", + "mesecons_piston_pusher_bottom.png^[transformR180", + "mesecons_piston_pusher_top.png", + }, + paramtype = "light", + paramtype2 = "facedir", + diggable = false, + corresponding_piston = "mesecons_pistons:piston_down_sticky_on", + selection_box = piston_down_pusher_box, + node_box = piston_down_pusher_box, +}) + + +-- Register pushers as stoppers if they would be seperated from the piston +local piston_pusher_get_stopper = function (node, dir, stack, stackid) + if (stack[stackid + 1] + and stack[stackid + 1].node.name == minetest.registered_nodes[node.name].corresponding_piston + and stack[stackid + 1].node.param2 == node.param2) + or (stack[stackid - 1] + and stack[stackid - 1].node.name == minetest.registered_nodes[node.name].corresponding_piston + and stack[stackid - 1].node.param2 == node.param2) then + return false + end + return true +end + +local piston_pusher_up_down_get_stopper = function (node, dir, stack, stackid) + if (stack[stackid + 1] + and stack[stackid + 1].node.name == minetest.registered_nodes[node.name].corresponding_piston) + or (stack[stackid - 1] + and stack[stackid - 1].node.name == minetest.registered_nodes[node.name].corresponding_piston) then + return false + end + return true +end + +mesecon:register_mvps_stopper("mesecons_pistons:piston_pusher_normal", piston_pusher_get_stopper) +mesecon:register_mvps_stopper("mesecons_pistons:piston_pusher_sticky", piston_pusher_get_stopper) + +mesecon:register_mvps_stopper("mesecons_pistons:piston_up_pusher_normal", piston_pusher_up_down_get_stopper) +mesecon:register_mvps_stopper("mesecons_pistons:piston_up_pusher_sticky", piston_pusher_up_down_get_stopper) + +mesecon:register_mvps_stopper("mesecons_pistons:piston_down_pusher_normal", piston_pusher_up_down_get_stopper) +mesecon:register_mvps_stopper("mesecons_pistons:piston_down_pusher_sticky", piston_pusher_up_down_get_stopper) + + +-- Register pistons as stoppers if they would be seperated from the stopper +local piston_up_down_get_stopper = function (node, dir, stack, stackid) + if (stack[stackid + 1] + and stack[stackid + 1].node.name == minetest.registered_nodes[node.name].mesecons_piston.pusher) + or (stack[stackid - 1] + and stack[stackid - 1].node.name == minetest.registered_nodes[node.name].mesecons_piston.pusher) then + return false + end + return true +end + +local piston_get_stopper = function (node, dir, stack, stackid) + pistonspec = minetest.registered_nodes[node.name].mesecons_piston + dir = piston_get_direction(pistonspec.dir, node) + local pusherpos = mesecon:addPosRule(stack[stackid].pos, dir) + local pushernode = minetest.get_node(pusherpos) + + if minetest.registered_nodes[node.name].mesecons_piston.pusher == pushernode.name then + for _, s in ipairs(stack) do + if mesecon:cmpPos(s.pos, pusherpos) -- pusher is also to be pushed + and s.node.param2 == node.param2 then + return false + end + end + end + return true +end + +mesecon:register_mvps_stopper("mesecons_pistons:piston_normal_on", piston_get_stopper) +mesecon:register_mvps_stopper("mesecons_pistons:piston_sticky_on", piston_get_stopper) + +mesecon:register_mvps_stopper("mesecons_pistons:piston_up_normal_on", piston_up_down_get_stopper) +mesecon:register_mvps_stopper("mesecons_pistons:piston_up_sticky_on", piston_up_down_get_stopper) + +mesecon:register_mvps_stopper("mesecons_pistons:piston_down_normal_on", piston_up_down_get_stopper) +mesecon:register_mvps_stopper("mesecons_pistons:piston_down_sticky_on", piston_up_down_get_stopper) + +--craft recipes +minetest.register_craft({ + output = "mesecons_pistons:piston_normal_off 2", + recipe = { + {"group:wood", "group:wood", "group:wood"}, + {"default:cobble", "default:steel_ingot", "default:cobble"}, + {"default:cobble", "group:mesecon_conductor_craftable", "default:cobble"}, + } +}) + +minetest.register_craft({ + output = "mesecons_pistons:piston_sticky_off", + recipe = { + {"mesecons_materials:glue"}, + {"mesecons_pistons:piston_normal_off"}, + } +}) diff --git a/mods/mesecons/mesecons_pistons/sounds/piston_extend.ogg b/mods/mesecons/mesecons_pistons/sounds/piston_extend.ogg new file mode 100644 index 0000000..e234ad9 Binary files /dev/null and b/mods/mesecons/mesecons_pistons/sounds/piston_extend.ogg differ diff --git a/mods/mesecons/mesecons_pistons/sounds/piston_retract.ogg b/mods/mesecons/mesecons_pistons/sounds/piston_retract.ogg new file mode 100644 index 0000000..feb9f04 Binary files /dev/null and b/mods/mesecons/mesecons_pistons/sounds/piston_retract.ogg differ diff --git a/mods/mesecons/mesecons_pistons/textures/mesecons_piston_back.png b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_back.png new file mode 100644 index 0000000..6a57dce Binary files /dev/null and b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_back.png differ diff --git a/mods/mesecons/mesecons_pistons/textures/mesecons_piston_bottom.png b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_bottom.png new file mode 100644 index 0000000..5a3af9b Binary files /dev/null and b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_bottom.png differ diff --git a/mods/mesecons/mesecons_pistons/textures/mesecons_piston_left.png b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_left.png new file mode 100644 index 0000000..215dd73 Binary files /dev/null and b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_left.png differ diff --git a/mods/mesecons/mesecons_pistons/textures/mesecons_piston_on_front.png b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_on_front.png new file mode 100644 index 0000000..0ade67e Binary files /dev/null and b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_on_front.png differ diff --git a/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_back.png b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_back.png new file mode 100644 index 0000000..fe87943 Binary files /dev/null and b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_back.png differ diff --git a/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_bottom.png b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_bottom.png new file mode 100644 index 0000000..87c4e81 Binary files /dev/null and b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_bottom.png differ diff --git a/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_front.png b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_front.png new file mode 100644 index 0000000..8ec9dc6 Binary files /dev/null and b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_front.png differ diff --git a/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_front_sticky.png b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_front_sticky.png new file mode 100644 index 0000000..e38b4e6 Binary files /dev/null and b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_front_sticky.png differ diff --git a/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_left.png b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_left.png new file mode 100644 index 0000000..bc5495b Binary files /dev/null and b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_left.png differ diff --git a/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_right.png b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_right.png new file mode 100644 index 0000000..32ee32f Binary files /dev/null and b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_right.png differ diff --git a/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_top.png b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_top.png new file mode 100644 index 0000000..72f04e9 Binary files /dev/null and b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_pusher_top.png differ diff --git a/mods/mesecons/mesecons_pistons/textures/mesecons_piston_right.png b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_right.png new file mode 100644 index 0000000..176463c Binary files /dev/null and b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_right.png differ diff --git a/mods/mesecons/mesecons_pistons/textures/mesecons_piston_top.png b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_top.png new file mode 100644 index 0000000..5c8bace Binary files /dev/null and b/mods/mesecons/mesecons_pistons/textures/mesecons_piston_top.png differ diff --git a/mods/mesecons/mesecons_powerplant/depends.txt b/mods/mesecons/mesecons_powerplant/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_powerplant/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_powerplant/init.lua b/mods/mesecons/mesecons_powerplant/init.lua new file mode 100644 index 0000000..9429487 --- /dev/null +++ b/mods/mesecons/mesecons_powerplant/init.lua @@ -0,0 +1,31 @@ +-- The POWER_PLANT +-- Just emits power. always. + +minetest.register_node("mesecons_powerplant:power_plant", { + drawtype = "plantlike", + visual_scale = 1, + tiles = {"jeija_power_plant.png"}, + inventory_image = "jeija_power_plant.png", + paramtype = "light", + walkable = false, + groups = {dig_immediate=3, mesecon = 2}, + light_source = LIGHT_MAX-9, + description="Power Plant", + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, -0.5+0.7, 0.3}, + }, + sounds = default.node_sound_leaves_defaults(), + mesecons = {receptor = { + state = mesecon.state.on + }} +}) + +minetest.register_craft({ + output = "mesecons_powerplant:power_plant 1", + recipe = { + {"group:mesecon_conductor_craftable"}, + {"group:mesecon_conductor_craftable"}, + {"default:sapling"}, + } +}) diff --git a/mods/mesecons/mesecons_powerplant/textures/jeija_power_plant.png b/mods/mesecons/mesecons_powerplant/textures/jeija_power_plant.png new file mode 100644 index 0000000..edc8891 Binary files /dev/null and b/mods/mesecons/mesecons_powerplant/textures/jeija_power_plant.png differ diff --git a/mods/mesecons/mesecons_pressureplates/depends.txt b/mods/mesecons/mesecons_pressureplates/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_pressureplates/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_pressureplates/init.lua b/mods/mesecons/mesecons_pressureplates/init.lua new file mode 100644 index 0000000..ec8d789 --- /dev/null +++ b/mods/mesecons/mesecons_pressureplates/init.lua @@ -0,0 +1,127 @@ +local pp_box_off = { + type = "fixed", + fixed = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, +} + +local pp_box_on = { + type = "fixed", + fixed = { -7/16, -8/16, -7/16, 7/16, -7.5/16, 7/16 }, +} + +pp_on_timer = function (pos, elapsed) + local node = minetest.get_node(pos) + local ppspec = minetest.registered_nodes[node.name].pressureplate + + -- This is a workaround for a strange bug that occurs when the server is started + -- For some reason the first time on_timer is called, the pos is wrong + if not ppspec then return end + + local objs = minetest.get_objects_inside_radius(pos, 1) + local two_below = mesecon:addPosRule(pos, {x = 0, y = -2, z = 0}) + + if objs[1] == nil and node.name == ppspec.onstate then + minetest.add_node(pos, {name = ppspec.offstate}) + mesecon:receptor_off(pos) + -- force deactivation of mesecon two blocks below (hacky) + if not mesecon:connected_to_receptor(two_below) then + mesecon:turnoff(two_below) + end + else + for k, obj in pairs(objs) do + local objpos = obj:getpos() + if objpos.y > pos.y-1 and objpos.y < pos.y then + minetest.add_node(pos, {name=ppspec.onstate}) + mesecon:receptor_on(pos) + -- force activation of mesecon two blocks below (hacky) + mesecon:turnon(two_below) + end + end + end + return true +end + +-- Register a Pressure Plate +-- offstate: name of the pressure plate when inactive +-- onstate: name of the pressure plate when active +-- description: description displayed in the player's inventory +-- tiles_off: textures of the pressure plate when inactive +-- tiles_on: textures of the pressure plate when active +-- image: inventory and wield image of the pressure plate +-- recipe: crafting recipe of the pressure plate + +function mesecon:register_pressure_plate(offstate, onstate, description, textures_off, textures_on, image_w, image_i, recipe) + local ppspec = { + offstate = offstate, + onstate = onstate + } + + minetest.register_node(offstate, { + drawtype = "nodebox", + tiles = textures_off, + inventory_image = image_i, + wield_image = image_w, + paramtype = "light", + selection_box = pp_box_off, + node_box = pp_box_off, + groups = {snappy = 2, oddly_breakable_by_hand = 3}, + description = description, + pressureplate = ppspec, + on_timer = pp_on_timer, + mesecons = {receptor = { + state = mesecon.state.off + }}, + on_construct = function(pos) + minetest.get_node_timer(pos):start(PRESSURE_PLATE_INTERVAL) + end, + }) + + minetest.register_node(onstate, { + drawtype = "nodebox", + tiles = textures_on, + paramtype = "light", + selection_box = pp_box_on, + node_box = pp_box_on, + groups = {snappy = 2, oddly_breakable_by_hand = 3, not_in_creative_inventory = 1}, + drop = offstate, + pressureplate = ppspec, + on_timer = pp_on_timer, + sounds = default.node_sound_wood_defaults(), + mesecons = {receptor = { + state = mesecon.state.on + }}, + on_construct = function(pos) + minetest.get_node_timer(pos):start(PRESSURE_PLATE_INTERVAL) + end, + after_dig_node = function(pos) + local two_below = mesecon:addPosRule(pos, {x = 0, y = -2, z = 0}) + if not mesecon:connected_to_receptor(two_below) then + mesecon:turnoff(two_below) + end + end + }) + + minetest.register_craft({ + output = offstate, + recipe = recipe, + }) +end + +mesecon:register_pressure_plate( + "mesecons_pressureplates:pressure_plate_wood_off", + "mesecons_pressureplates:pressure_plate_wood_on", + "Wooden Pressure Plate", + {"jeija_pressure_plate_wood_off.png","jeija_pressure_plate_wood_off.png","jeija_pressure_plate_wood_off_edges.png"}, + {"jeija_pressure_plate_wood_on.png","jeija_pressure_plate_wood_on.png","jeija_pressure_plate_wood_on_edges.png"}, + "jeija_pressure_plate_wood_wield.png", + "jeija_pressure_plate_wood_inv.png", + {{"group:wood", "group:wood"}}) + +mesecon:register_pressure_plate( + "mesecons_pressureplates:pressure_plate_stone_off", + "mesecons_pressureplates:pressure_plate_stone_on", + "Stone Pressure Plate", + {"jeija_pressure_plate_stone_off.png","jeija_pressure_plate_stone_off.png","jeija_pressure_plate_stone_off_edges.png"}, + {"jeija_pressure_plate_stone_on.png","jeija_pressure_plate_stone_on.png","jeija_pressure_plate_stone_on_edges.png"}, + "jeija_pressure_plate_stone_wield.png", + "jeija_pressure_plate_stone_inv.png", + {{"default:cobble", "default:cobble"}}) diff --git a/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_inv.png b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_inv.png new file mode 100644 index 0000000..bfe5a1d Binary files /dev/null and b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_inv.png differ diff --git a/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_off.png b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_off.png new file mode 100644 index 0000000..46140da Binary files /dev/null and b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_off.png differ diff --git a/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_off_edges.png b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_off_edges.png new file mode 100644 index 0000000..2ad9acc Binary files /dev/null and b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_off_edges.png differ diff --git a/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_on.png b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_on.png new file mode 100644 index 0000000..dc64931 Binary files /dev/null and b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_on.png differ diff --git a/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_on_edges.png b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_on_edges.png new file mode 100644 index 0000000..51add95 Binary files /dev/null and b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_on_edges.png differ diff --git a/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_wield.png b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_wield.png new file mode 100644 index 0000000..c533567 Binary files /dev/null and b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_stone_wield.png differ diff --git a/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_inv.png b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_inv.png new file mode 100644 index 0000000..36dacd0 Binary files /dev/null and b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_inv.png differ diff --git a/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_off.png b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_off.png new file mode 100644 index 0000000..ca98757 Binary files /dev/null and b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_off.png differ diff --git a/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_off_edges.png b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_off_edges.png new file mode 100644 index 0000000..665ae97 Binary files /dev/null and b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_off_edges.png differ diff --git a/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_on.png b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_on.png new file mode 100644 index 0000000..e1a7d8e Binary files /dev/null and b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_on.png differ diff --git a/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_on_edges.png b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_on_edges.png new file mode 100644 index 0000000..358f2ea Binary files /dev/null and b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_on_edges.png differ diff --git a/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_wield.png b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_wield.png new file mode 100644 index 0000000..50b321d Binary files /dev/null and b/mods/mesecons/mesecons_pressureplates/textures/jeija_pressure_plate_wood_wield.png differ diff --git a/mods/mesecons/mesecons_random/depends.txt b/mods/mesecons/mesecons_random/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_random/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_random/init.lua b/mods/mesecons/mesecons_random/init.lua new file mode 100644 index 0000000..670bea4 --- /dev/null +++ b/mods/mesecons/mesecons_random/init.lua @@ -0,0 +1,85 @@ +-- REMOVESTONE + +minetest.register_node("mesecons_random:removestone", { + tiles = {"jeija_removestone.png"}, + inventory_image = minetest.inventorycube("jeija_removestone_inv.png"), + groups = {cracky=3}, + description="Removestone", + sounds = default.node_sound_stone_defaults(), + mesecons = {effector = { + action_on = function (pos, node) + minetest.remove_node(pos) + mesecon:update_autoconnect(pos) + end + }} +}) + +minetest.register_craft({ + output = 'mesecons_random:removestone 4', + recipe = { + {"", "default:cobble", ""}, + {"default:cobble", "group:mesecon_conductor_craftable", "default:cobble"}, + {"", "default:cobble", ""}, + } +}) + +-- GHOSTSTONE + +minetest.register_node("mesecons_random:ghoststone", { + description="ghoststone", + tiles = {"jeija_ghoststone.png"}, + is_ground_content = true, + inventory_image = minetest.inventorycube("jeija_ghoststone_inv.png"), + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), + mesecons = {conductor = { + state = mesecon.state.off, + rules = { --axes + {x = -1, y = 0, z = 0}, + {x = 1, y = 0, z = 0}, + {x = 0, y = -1, z = 0}, + {x = 0, y = 1, z = 0}, + {x = 0, y = 0, z = -1}, + {x = 0, y = 0, z = 1}, + }, + onstate = "mesecons_random:ghoststone_active" + }} +}) + +minetest.register_node("mesecons_random:ghoststone_active", { + drawtype = "airlike", + pointable = false, + walkable = false, + diggable = false, + sunlight_propagates = true, + paramtype = "light", + mesecons = {conductor = { + state = mesecon.state.on, + rules = { + {x = -1, y = 0, z = 0}, + {x = 1, y = 0, z = 0}, + {x = 0, y = -1, z = 0}, + {x = 0, y = 1, z = 0}, + {x = 0, y = 0, z = -1}, + {x = 0, y = 0, z = 1}, + }, + offstate = "mesecons_random:ghoststone" + }}, + on_construct = function(pos) + --remove shadow + pos2 = {x = pos.x, y = pos.y + 1, z = pos.z} + if ( minetest.get_node(pos2).name == "air" ) then + minetest.dig_node(pos2) + end + end +}) + + +minetest.register_craft({ + output = 'mesecons_random:ghoststone 4', + recipe = { + {"default:steel_ingot", "default:cobble", "default:steel_ingot"}, + {"default:cobble", "group:mesecon_conductor_craftable", "default:cobble"}, + {"default:steel_ingot", "default:cobble", "default:steel_ingot"}, + } +}) diff --git a/mods/mesecons/mesecons_random/textures/jeija_ghoststone.png b/mods/mesecons/mesecons_random/textures/jeija_ghoststone.png new file mode 100644 index 0000000..1917b7c Binary files /dev/null and b/mods/mesecons/mesecons_random/textures/jeija_ghoststone.png differ diff --git a/mods/mesecons/mesecons_random/textures/jeija_ghoststone_inv.png b/mods/mesecons/mesecons_random/textures/jeija_ghoststone_inv.png new file mode 100644 index 0000000..c715d7f Binary files /dev/null and b/mods/mesecons/mesecons_random/textures/jeija_ghoststone_inv.png differ diff --git a/mods/mesecons/mesecons_random/textures/jeija_removestone.png b/mods/mesecons/mesecons_random/textures/jeija_removestone.png new file mode 100644 index 0000000..1917b7c Binary files /dev/null and b/mods/mesecons/mesecons_random/textures/jeija_removestone.png differ diff --git a/mods/mesecons/mesecons_random/textures/jeija_removestone_inv.png b/mods/mesecons/mesecons_random/textures/jeija_removestone_inv.png new file mode 100644 index 0000000..c715d7f Binary files /dev/null and b/mods/mesecons/mesecons_random/textures/jeija_removestone_inv.png differ diff --git a/mods/mesecons/mesecons_receiver/depends.txt b/mods/mesecons/mesecons_receiver/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_receiver/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_receiver/init.lua b/mods/mesecons/mesecons_receiver/init.lua new file mode 100644 index 0000000..3b1108e --- /dev/null +++ b/mods/mesecons/mesecons_receiver/init.lua @@ -0,0 +1,165 @@ +rcvboxes = { + { -3/16, -3/16 , -8/16 , 3/16, 3/16, -13/32 }, -- the smaller bump + { -1/32, -1/32 , -3/2 , 1/32, 1/32, -1/2 }, -- the wire through the block + { -2/32, -.5-1/32, -.5 , 2/32, 0 , -.5002+3/32 }, -- the vertical wire bit + { -2/32, -17/32 , -7/16+0.002 , 2/32, -14/32, 16/32+0.001 } -- the horizontal wire +} + +local receiver_get_rules = function (node) + local rules = { {x = 1, y = 0, z = 0}, + {x = -2, y = 0, z = 0}} + if node.param2 == 2 then + rules = mesecon:rotate_rules_left(rules) + elseif node.param2 == 3 then + rules = mesecon:rotate_rules_right(mesecon:rotate_rules_right(rules)) + elseif node.param2 == 0 then + rules = mesecon:rotate_rules_right(rules) + end + return rules +end + +minetest.register_node("mesecons_receiver:receiver_on", { + drawtype = "nodebox", + tiles = { + "receiver_top_on.png", + "receiver_bottom_on.png", + "receiver_lr_on.png", + "receiver_lr_on.png", + "receiver_fb_on.png", + "receiver_fb_on.png", + }, + paramtype = "light", + paramtype2 = "facedir", + sunlight_propagates = true, + walkable = false, + selection_box = { + type = "fixed", + fixed = { -3/16, -8/16, -8/16, 3/16, 3/16, 8/16 } + }, + node_box = { + type = "fixed", + fixed = rcvboxes + }, + groups = {dig_immediate = 3, not_in_creative_inventory = 1}, + drop = "mesecons:wire_00000000_off", + mesecons = {conductor = { + state = mesecon.state.on, + rules = receiver_get_rules, + offstate = "mesecons_receiver:receiver_off" + }} +}) + +minetest.register_node("mesecons_receiver:receiver_off", { + drawtype = "nodebox", + description = "You hacker you", + tiles = { + "receiver_top_off.png", + "receiver_bottom_off.png", + "receiver_lr_off.png", + "receiver_lr_off.png", + "receiver_fb_off.png", + "receiver_fb_off.png", + }, + paramtype = "light", + paramtype2 = "facedir", + sunlight_propagates = true, + walkable = false, + selection_box = { + type = "fixed", + fixed = { -3/16, -8/16, -8/16, 3/16, 3/16, 8/16 } + }, + node_box = { + type = "fixed", + fixed = rcvboxes + }, + groups = {dig_immediate = 3, not_in_creative_inventory = 1}, + drop = "mesecons:wire_00000000_off", + mesecons = {conductor = { + state = mesecon.state.off, + rules = receiver_get_rules, + onstate = "mesecons_receiver:receiver_on" + }} +}) + +mesecon:add_rules("receiver_pos", {{x = 2, y = 0, z = 0}}) + +mesecon:add_rules("receiver_pos_all", { +{x = 2, y = 0, z = 0}, +{x =-2, y = 0, z = 0}, +{x = 0, y = 0, z = 2}, +{x = 0, y = 0, z =-2}}) + +function mesecon:receiver_get_pos_from_rcpt(pos, param2) + local rules = mesecon:get_rules("receiver_pos") + if param2 == nil then param2 = minetest.get_node(pos).param2 end + if param2 == 2 then + rules = mesecon:rotate_rules_left(rules) + elseif param2 == 3 then + rules = mesecon:rotate_rules_right(mesecon:rotate_rules_right(rules)) + elseif param2 == 0 then + rules = mesecon:rotate_rules_right(rules) + end + np = { + x = pos.x + rules[1].x, + y = pos.y + rules[1].y, + z = pos.z + rules[1].z} + return np +end + +function mesecon:receiver_place(rcpt_pos) + local node = minetest.get_node(rcpt_pos) + local pos = mesecon:receiver_get_pos_from_rcpt(rcpt_pos, node.param2) + local nn = minetest.get_node(pos) + + if string.find(nn.name, "mesecons:wire_") ~= nil then + minetest.dig_node(pos) + if mesecon:is_power_on(rcpt_pos) then + minetest.add_node(pos, {name = "mesecons_receiver:receiver_on", param2 = node.param2}) + mesecon:receptor_on(pos, receiver_get_rules(node)) + else + minetest.add_node(pos, {name = "mesecons_receiver:receiver_off", param2 = node.param2}) + end + mesecon:update_autoconnect(pos) + end +end + +function mesecon:receiver_remove(rcpt_pos, dugnode) + local pos = mesecon:receiver_get_pos_from_rcpt(rcpt_pos, dugnode.param2) + local nn = minetest.get_node(pos) + if string.find(nn.name, "mesecons_receiver:receiver_") ~=nil then + minetest.dig_node(pos) + local node = {name = "mesecons:wire_00000000_off"} + minetest.add_node(pos, node) + mesecon:update_autoconnect(pos) + mesecon.on_placenode(pos, node) + end +end + +minetest.register_on_placenode(function (pos, node) + if minetest.get_item_group(node.name, "mesecon_needs_receiver") == 1 then + mesecon:receiver_place(pos) + end +end) + +minetest.register_on_dignode(function(pos, node) + if minetest.get_item_group(node.name, "mesecon_needs_receiver") == 1 then + mesecon:receiver_remove(pos, node) + end +end) + +minetest.register_on_placenode(function (pos, node) + if string.find(node.name, "mesecons:wire_") ~=nil then + rules = mesecon:get_rules("receiver_pos_all") + local i = 1 + while rules[i] ~= nil do + np = { + x = pos.x + rules[i].x, + y = pos.y + rules[i].y, + z = pos.z + rules[i].z} + if minetest.get_item_group(minetest.get_node(np).name, "mesecon_needs_receiver") == 1 then + mesecon:receiver_place(np) + end + i = i + 1 + end + end +end) diff --git a/mods/mesecons/mesecons_receiver/textures/receiver_bottom_off.png b/mods/mesecons/mesecons_receiver/textures/receiver_bottom_off.png new file mode 100644 index 0000000..b95903e Binary files /dev/null and b/mods/mesecons/mesecons_receiver/textures/receiver_bottom_off.png differ diff --git a/mods/mesecons/mesecons_receiver/textures/receiver_bottom_on.png b/mods/mesecons/mesecons_receiver/textures/receiver_bottom_on.png new file mode 100644 index 0000000..d0b7006 Binary files /dev/null and b/mods/mesecons/mesecons_receiver/textures/receiver_bottom_on.png differ diff --git a/mods/mesecons/mesecons_receiver/textures/receiver_fb_off.png b/mods/mesecons/mesecons_receiver/textures/receiver_fb_off.png new file mode 100644 index 0000000..aed3008 Binary files /dev/null and b/mods/mesecons/mesecons_receiver/textures/receiver_fb_off.png differ diff --git a/mods/mesecons/mesecons_receiver/textures/receiver_fb_on.png b/mods/mesecons/mesecons_receiver/textures/receiver_fb_on.png new file mode 100644 index 0000000..0916736 Binary files /dev/null and b/mods/mesecons/mesecons_receiver/textures/receiver_fb_on.png differ diff --git a/mods/mesecons/mesecons_receiver/textures/receiver_lr_off.png b/mods/mesecons/mesecons_receiver/textures/receiver_lr_off.png new file mode 100644 index 0000000..1fb2b3a Binary files /dev/null and b/mods/mesecons/mesecons_receiver/textures/receiver_lr_off.png differ diff --git a/mods/mesecons/mesecons_receiver/textures/receiver_lr_on.png b/mods/mesecons/mesecons_receiver/textures/receiver_lr_on.png new file mode 100644 index 0000000..087c0b4 Binary files /dev/null and b/mods/mesecons/mesecons_receiver/textures/receiver_lr_on.png differ diff --git a/mods/mesecons/mesecons_receiver/textures/receiver_top_off.png b/mods/mesecons/mesecons_receiver/textures/receiver_top_off.png new file mode 100644 index 0000000..ae50106 Binary files /dev/null and b/mods/mesecons/mesecons_receiver/textures/receiver_top_off.png differ diff --git a/mods/mesecons/mesecons_receiver/textures/receiver_top_on.png b/mods/mesecons/mesecons_receiver/textures/receiver_top_on.png new file mode 100644 index 0000000..5b48cac Binary files /dev/null and b/mods/mesecons/mesecons_receiver/textures/receiver_top_on.png differ diff --git a/mods/mesecons/mesecons_solarpanel/depends.txt b/mods/mesecons/mesecons_solarpanel/depends.txt new file mode 100644 index 0000000..bc7b062 --- /dev/null +++ b/mods/mesecons/mesecons_solarpanel/depends.txt @@ -0,0 +1,2 @@ +mesecons +mesecons_materials diff --git a/mods/mesecons/mesecons_solarpanel/init.lua b/mods/mesecons/mesecons_solarpanel/init.lua new file mode 100644 index 0000000..c30fe12 --- /dev/null +++ b/mods/mesecons/mesecons_solarpanel/init.lua @@ -0,0 +1,95 @@ +-- Solar Panel +minetest.register_node("mesecons_solarpanel:solar_panel_on", { + drawtype = "nodebox", + tiles = { "jeija_solar_panel.png", }, + inventory_image = "jeija_solar_panel.png", + wield_image = "jeija_solar_panel.png", + paramtype = "light", + paramtype2 = "wallmounted", + walkable = false, + is_ground_content = true, + node_box = { + type = "wallmounted", + wall_bottom = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, + wall_top = { -7/16, 7/16, -7/16, 7/16, 8/16, 7/16 }, + wall_side = { -8/16, -7/16, -7/16, -7/16, 7/16, 7/16 }, + }, + selection_box = { + type = "wallmounted", + wall_bottom = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, + wall_top = { -7/16, 7/16, -7/16, 7/16, 8/16, 7/16 }, + wall_side = { -8/16, -7/16, -7/16, -7/16, 7/16, 7/16 }, + }, + drop = "mesecons_solarpanel:solar_panel_off", + groups = {dig_immediate=3, not_in_creative_inventory = 1}, + sounds = default.node_sound_glass_defaults(), + mesecons = {receptor = { + state = mesecon.state.on + }} +}) + +-- Solar Panel +minetest.register_node("mesecons_solarpanel:solar_panel_off", { + drawtype = "nodebox", + tiles = { "jeija_solar_panel.png", }, + inventory_image = "jeija_solar_panel.png", + wield_image = "jeija_solar_panel.png", + paramtype = "light", + paramtype2 = "wallmounted", + walkable = false, + is_ground_content = true, + node_box = { + type = "wallmounted", + wall_bottom = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, + wall_top = { -7/16, 7/16, -7/16, 7/16, 8/16, 7/16 }, + wall_side = { -8/16, -7/16, -7/16, -7/16, 7/16, 7/16 }, + }, + selection_box = { + type = "wallmounted", + wall_bottom = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, + wall_top = { -7/16, 7/16, -7/16, 7/16, 8/16, 7/16 }, + wall_side = { -8/16, -7/16, -7/16, -7/16, 7/16, 7/16 }, + }, + groups = {dig_immediate=3}, + description="Solar Panel", + sounds = default.node_sound_glass_defaults(), + mesecons = {receptor = { + state = mesecon.state.off + }} +}) + +minetest.register_craft({ + output = "mesecons_solarpanel:solar_panel_off 1", + recipe = { + {"mesecons_materials:silicon", "mesecons_materials:silicon"}, + {"mesecons_materials:silicon", "mesecons_materials:silicon"}, + } +}) + +minetest.register_abm( + {nodenames = {"mesecons_solarpanel:solar_panel_off"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local light = minetest.get_node_light(pos, nil) + + if light >= 12 then + minetest.set_node(pos, {name="mesecons_solarpanel:solar_panel_on", param2=node.param2}) + mesecon:receptor_on(pos) + end + end, +}) + +minetest.register_abm( + {nodenames = {"mesecons_solarpanel:solar_panel_on"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local light = minetest.get_node_light(pos, nil) + + if light < 12 then + minetest.set_node(pos, {name="mesecons_solarpanel:solar_panel_off", param2=node.param2}) + mesecon:receptor_off(pos) + end + end, +}) diff --git a/mods/mesecons/mesecons_solarpanel/textures/jeija_solar_panel.png b/mods/mesecons/mesecons_solarpanel/textures/jeija_solar_panel.png new file mode 100644 index 0000000..a7b0f75 Binary files /dev/null and b/mods/mesecons/mesecons_solarpanel/textures/jeija_solar_panel.png differ diff --git a/mods/mesecons/mesecons_switch/depends.txt b/mods/mesecons/mesecons_switch/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_switch/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_switch/init.lua b/mods/mesecons/mesecons_switch/init.lua new file mode 100644 index 0000000..1b7f478 --- /dev/null +++ b/mods/mesecons/mesecons_switch/init.lua @@ -0,0 +1,41 @@ +-- MESECON_SWITCH + +minetest.register_node("mesecons_switch:mesecon_switch_off", { + tiles = {"jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_off.png"}, + paramtype2="facedir", + groups = {dig_immediate=2}, + description="Switch", + sounds = default.node_sound_stone_defaults(), + mesecons = {receptor = { + state = mesecon.state.off + }}, + on_punch = function(pos, node) + minetest.swap_node(pos, {name = "mesecons_switch:mesecon_switch_on", param2 = node.param2}) + mesecon:receptor_on(pos) + minetest.sound_play("mesecons_switch", {pos=pos}) + end +}) + +minetest.register_node("mesecons_switch:mesecon_switch_on", { + tiles = {"jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_on.png"}, + paramtype2="facedir", + groups = {dig_immediate=2,not_in_creative_inventory=1}, + drop="mesecons_switch:mesecon_switch_off 1", + sounds = default.node_sound_stone_defaults(), + mesecons = {receptor = { + state = mesecon.state.on + }}, + on_punch = function(pos, node) + minetest.swap_node(pos, {name = "mesecons_switch:mesecon_switch_off", param2 = node.param2}) + mesecon:receptor_off(pos) + minetest.sound_play("mesecons_switch", {pos=pos}) + end +}) + +minetest.register_craft({ + output = "mesecons_switch:mesecon_switch_off 2", + recipe = { + {"default:steel_ingot", "default:cobble", "default:steel_ingot"}, + {"group:mesecon_conductor_craftable","", "group:mesecon_conductor_craftable"}, + } +}) diff --git a/mods/mesecons/mesecons_switch/sounds/mesecons_switch.ogg b/mods/mesecons/mesecons_switch/sounds/mesecons_switch.ogg new file mode 100644 index 0000000..53d45c1 Binary files /dev/null and b/mods/mesecons/mesecons_switch/sounds/mesecons_switch.ogg differ diff --git a/mods/mesecons/mesecons_torch/depends.txt b/mods/mesecons/mesecons_torch/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mods/mesecons/mesecons_torch/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mods/mesecons/mesecons_torch/init.lua b/mods/mesecons/mesecons_torch/init.lua new file mode 100644 index 0000000..97a2991 --- /dev/null +++ b/mods/mesecons/mesecons_torch/init.lua @@ -0,0 +1,118 @@ +--MESECON TORCHES + +local rotate_torch_rules = function (rules, param2) + if param2 == 5 then + return mesecon:rotate_rules_right(rules) + elseif param2 == 2 then + return mesecon:rotate_rules_right(mesecon:rotate_rules_right(rules)) --180 degrees + elseif param2 == 4 then + return mesecon:rotate_rules_left(rules) + elseif param2 == 1 then + return mesecon:rotate_rules_down(rules) + elseif param2 == 0 then + return mesecon:rotate_rules_up(rules) + else + return rules + end +end + +local torch_get_output_rules = function(node) + local rules = { + {x = 1, y = 0, z = 0}, + {x = 0, y = 0, z = 1}, + {x = 0, y = 0, z =-1}, + {x = 0, y = 1, z = 0}, + {x = 0, y =-1, z = 0}} + + return rotate_torch_rules(rules, node.param2) +end + +local torch_get_input_rules = function(node) + local rules = {{x = -2, y = 0, z = 0}, + {x = -1, y = 1, z = 0}} + + return rotate_torch_rules(rules, node.param2) +end + +minetest.register_craft({ + output = "mesecons_torch:mesecon_torch_on 4", + recipe = { + {"group:mesecon_conductor_craftable"}, + {"default:stick"},} +}) + +local torch_selectionbox = +{ + type = "wallmounted", + wall_top = {-0.1, 0.5-0.6, -0.1, 0.1, 0.5, 0.1}, + wall_bottom = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1}, + wall_side = {-0.5, -0.1, -0.1, -0.5+0.6, 0.1, 0.1}, +} + +minetest.register_node("mesecons_torch:mesecon_torch_off", { + drawtype = "torchlike", + tiles = {"jeija_torches_off.png", "jeija_torches_off_ceiling.png", "jeija_torches_off_side.png"}, + inventory_image = "jeija_torches_off.png", + paramtype = "light", + walkable = false, + paramtype2 = "wallmounted", + selection_box = torch_selectionbox, + groups = {dig_immediate = 3, not_in_creative_inventory = 1}, + drop = "mesecons_torch:mesecon_torch_on", + mesecons = {receptor = { + state = mesecon.state.off, + rules = torch_get_output_rules + }} +}) + +minetest.register_node("mesecons_torch:mesecon_torch_on", { + drawtype = "torchlike", + tiles = {"jeija_torches_on.png", "jeija_torches_on_ceiling.png", "jeija_torches_on_side.png"}, + inventory_image = "jeija_torches_on.png", + wield_image = "jeija_torches_on.png", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + paramtype2 = "wallmounted", + selection_box = torch_selectionbox, + groups = {dig_immediate=3}, + light_source = LIGHT_MAX-5, + description="Mesecon Torch", + mesecons = {receptor = { + state = mesecon.state.on, + rules = torch_get_output_rules + }}, +}) + +minetest.register_abm({ + nodenames = {"mesecons_torch:mesecon_torch_off","mesecons_torch:mesecon_torch_on"}, + interval = 1, + chance = 1, + action = function(pos, node) + local is_powered = false + for _, rule in ipairs(torch_get_input_rules(node)) do + local src = mesecon:addPosRule(pos, rule) + if mesecon:is_power_on(src) then + is_powered = true + end + end + + if is_powered then + if node.name == "mesecons_torch:mesecon_torch_on" then + minetest.swap_node(pos, {name = "mesecons_torch:mesecon_torch_off", param2 = node.param2}) + mesecon:receptor_off(pos, torch_get_output_rules(node)) + end + elseif node.name == "mesecons_torch:mesecon_torch_off" then + minetest.swap_node(pos, {name = "mesecons_torch:mesecon_torch_on", param2 = node.param2}) + mesecon:receptor_on(pos, torch_get_output_rules(node)) + end + end +}) + +-- Param2 Table (Block Attached To) +-- 5 = z-1 +-- 3 = x-1 +-- 4 = z+1 +-- 2 = x+1 +-- 0 = y+1 +-- 1 = y-1 diff --git a/mods/mesecons/mesecons_torch/textures/jeija_torches_off.png b/mods/mesecons/mesecons_torch/textures/jeija_torches_off.png new file mode 100644 index 0000000..537920c Binary files /dev/null and b/mods/mesecons/mesecons_torch/textures/jeija_torches_off.png differ diff --git a/mods/mesecons/mesecons_torch/textures/jeija_torches_off_ceiling.png b/mods/mesecons/mesecons_torch/textures/jeija_torches_off_ceiling.png new file mode 100644 index 0000000..3934e6e Binary files /dev/null and b/mods/mesecons/mesecons_torch/textures/jeija_torches_off_ceiling.png differ diff --git a/mods/mesecons/mesecons_torch/textures/jeija_torches_off_side.png b/mods/mesecons/mesecons_torch/textures/jeija_torches_off_side.png new file mode 100644 index 0000000..ecb2951 Binary files /dev/null and b/mods/mesecons/mesecons_torch/textures/jeija_torches_off_side.png differ diff --git a/mods/mesecons/mesecons_torch/textures/jeija_torches_on.png b/mods/mesecons/mesecons_torch/textures/jeija_torches_on.png new file mode 100644 index 0000000..a93dcc2 Binary files /dev/null and b/mods/mesecons/mesecons_torch/textures/jeija_torches_on.png differ diff --git a/mods/mesecons/mesecons_torch/textures/jeija_torches_on_ceiling.png b/mods/mesecons/mesecons_torch/textures/jeija_torches_on_ceiling.png new file mode 100644 index 0000000..24fe201 Binary files /dev/null and b/mods/mesecons/mesecons_torch/textures/jeija_torches_on_ceiling.png differ diff --git a/mods/mesecons/mesecons_torch/textures/jeija_torches_on_side.png b/mods/mesecons/mesecons_torch/textures/jeija_torches_on_side.png new file mode 100644 index 0000000..fe7dfd2 Binary files /dev/null and b/mods/mesecons/mesecons_torch/textures/jeija_torches_on_side.png differ diff --git a/mods/mesecons/mesecons_walllever/depends.txt b/mods/mesecons/mesecons_walllever/depends.txt new file mode 100644 index 0000000..19c798c --- /dev/null +++ b/mods/mesecons/mesecons_walllever/depends.txt @@ -0,0 +1,2 @@ +mesecons +mesecons_receiver diff --git a/mods/mesecons/mesecons_walllever/init.lua b/mods/mesecons/mesecons_walllever/init.lua new file mode 100644 index 0000000..a35d9f1 --- /dev/null +++ b/mods/mesecons/mesecons_walllever/init.lua @@ -0,0 +1,95 @@ +-- WALL LEVER +-- Basically a switch that can be attached to a wall +-- Powers the block 2 nodes behind (using a receiver) +minetest.register_node("mesecons_walllever:wall_lever_off", { + drawtype = "nodebox", + tiles = { + "jeija_wall_lever_tb.png", + "jeija_wall_lever_bottom.png", + "jeija_wall_lever_sides.png", + "jeija_wall_lever_sides.png", + "jeija_wall_lever_back.png", + "jeija_wall_lever_off.png", + }, + inventory_image = "jeija_wall_lever_off.png", + wield_image = "jeija_wall_lever_off.png", + paramtype = "light", + paramtype2 = "facedir", + sunlight_propagates = true, + walkable = false, + selection_box = { + type = "fixed", + fixed = { -8/16, -8/16, 3/16, 8/16, 8/16, 8/16 }, + }, + node_box = { + type = "fixed", + fixed = {{ -6/16, -6/16, 6/16, 6/16, 6/16, 8/16 }, -- the base "slab" + { -5/16, -3/16, 5/16, 5/16, 3/16, 6/16 }, -- the lighted ring area + { -4/16, -2/16, 4/16, 4/16, 2/16, 5/16 }, -- the raised bit that the lever "sits" on + { -2/16, -1/16, 3/16, 2/16, 1/16, 4/16 }, -- the lever "hinge" + { -1/16, -8/16, 4/16, 1/16, 0, 6/16 }} -- the lever itself. + }, + groups = {dig_immediate=2, mesecon_needs_receiver = 1}, + description="Lever", + on_punch = function (pos, node) + minetest.swap_node(pos, {name = "mesecons_walllever:wall_lever_on", param2 = node.param2}) + mesecon:receptor_on(pos, mesecon.rules.buttonlike_get(node)) + minetest.sound_play("mesecons_lever", {pos=pos}) + end, + sounds = default.node_sound_wood_defaults(), + mesecons = {receptor = { + rules = mesecon.rules.buttonlike_get, + state = mesecon.state.off + }} +}) +minetest.register_node("mesecons_walllever:wall_lever_on", { + drawtype = "nodebox", + tiles = { + "jeija_wall_lever_top.png", + "jeija_wall_lever_tb.png", + "jeija_wall_lever_sides.png", + "jeija_wall_lever_sides.png", + "jeija_wall_lever_back.png", + "jeija_wall_lever_on.png", + }, + inventory_image = "jeija_wall_lever_on.png", + paramtype = "light", + paramtype2 = "facedir", + sunlight_propagates = true, + walkable = false, + light_source = LIGHT_MAX-7, + selection_box = { + type = "fixed", + fixed = { -8/16, -8/16, 3/16, 8/16, 8/16, 8/16 }, + }, + node_box = { + type = "fixed", + fixed = {{ -6/16, -6/16, 6/16, 6/16, 6/16, 8/16 }, -- the base "slab" + { -5/16, -3/16, 5/16, 5/16, 3/16, 6/16 }, -- the lighted ring area + { -4/16, -2/16, 4/16, 4/16, 2/16, 5/16 }, -- the raised bit that the lever "sits" on + { -2/16, -1/16, 3/16, 2/16, 1/16, 4/16 }, -- the lever "hinge" + { -1/16, 0, 4/16, 1/16, 8/16, 6/16 }} -- the lever itself. + }, + groups = {dig_immediate = 2, not_in_creative_inventory = 1, mesecon_needs_receiver = 1}, + drop = "mesecons_walllever:wall_lever_off 1", + description="Lever", + on_punch = function (pos, node) + minetest.swap_node(pos, {name = "mesecons_walllever:wall_lever_off", param2 = node.param2}) + mesecon:receptor_off(pos, mesecon.rules.buttonlike_get(node)) + minetest.sound_play("mesecons_lever", {pos=pos}) + end, + sounds = default.node_sound_wood_defaults(), + mesecons = {receptor = { + rules = mesecon.rules.buttonlike_get, + state = mesecon.state.on + }} +}) + +minetest.register_craft({ + output = "mesecons_walllever:wall_lever_off 2", + recipe = { + {"group:mesecon_conductor_craftable"}, + {"default:stone"}, + {"default:stick"}, + } +}) diff --git a/mods/mesecons/mesecons_walllever/sounds/mesecons_lever.ogg b/mods/mesecons/mesecons_walllever/sounds/mesecons_lever.ogg new file mode 100644 index 0000000..53d45c1 Binary files /dev/null and b/mods/mesecons/mesecons_walllever/sounds/mesecons_lever.ogg differ diff --git a/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_back.png b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_back.png new file mode 100644 index 0000000..9047e70 Binary files /dev/null and b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_back.png differ diff --git a/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_bottom.png b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_bottom.png new file mode 100644 index 0000000..041da96 Binary files /dev/null and b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_bottom.png differ diff --git a/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_off.png b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_off.png new file mode 100644 index 0000000..474f8c1 Binary files /dev/null and b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_off.png differ diff --git a/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_on.png b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_on.png new file mode 100644 index 0000000..01cbc24 Binary files /dev/null and b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_on.png differ diff --git a/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_sides.png b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_sides.png new file mode 100644 index 0000000..5864f26 Binary files /dev/null and b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_sides.png differ diff --git a/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_tb.png b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_tb.png new file mode 100644 index 0000000..50348d3 Binary files /dev/null and b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_tb.png differ diff --git a/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_top.png b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_top.png new file mode 100644 index 0000000..31161ec Binary files /dev/null and b/mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_top.png differ diff --git a/mods/mesecons/modpack.txt b/mods/mesecons/modpack.txt new file mode 100644 index 0000000..33d91f5 --- /dev/null +++ b/mods/mesecons/modpack.txt @@ -0,0 +1 @@ +The presence of this file indicates that the current folder is a modpack. \ No newline at end of file diff --git a/mods/minetest-exchange-master/README b/mods/minetest-exchange-master/README new file mode 100644 index 0000000..dfc915d --- /dev/null +++ b/mods/minetest-exchange-master/README @@ -0,0 +1,8 @@ +Exchange mod for minetest +========================= + +Adds an "exchange table" for safe trades, and an "exchange shop" for automatic selling. + +Credits and licenses: +- Code by Zeg9, released under WTFPL +- Textures by rarkenin and Zeg9, released under CC0 diff --git a/mods/minetest-exchange-master/exchange/chest.lua b/mods/minetest-exchange-master/exchange/chest.lua new file mode 100644 index 0000000..1f5f7f6 --- /dev/null +++ b/mods/minetest-exchange-master/exchange/chest.lua @@ -0,0 +1,157 @@ +exchange.chest = {} +exchange.chest.formspec = { + main = "size[8,9]".. + "list[current_name;pl1;0,0;3,4;]".. + "list[current_name;pl2;5,0;3,4;]".. + "list[current_player;main;0,5;8,4;]", + pl1 = { + start = "button[3,1;1,1;pl1_start;Start]", + player = function(name) return "label[3,0;"..name.."]" end, + accept1 = "button[3,1;1,1;pl1_accept1;Confirm]".. + "button[3,2;1,1;pl1_cancel;Cancel]", + accept2 = "button[3,1;1,1;pl1_accept2;Exchange]".. + "button[3,2;1,1;pl1_cancel;Cancel]", + }, + pl2 = { + start = "button[4,1;1,1;pl2_start;Start]", + player = function(name) return "label[4,0;"..name.."]" end, + accept1 = "button[4,1;1,1;pl2_accept1;Confirm]".. + "button[4,2;1,1;pl2_cancel;Cancel]", + accept2 = "button[4,1;1,1;pl2_accept2;Exchange]".. + "button[4,2;1,1;pl2_cancel;Cancel]", + }, +} + +exchange.chest.check_privilege = function(listname,playername,meta) + if listname == "pl1" then + if playername ~= meta:get_string("pl1") then + return false + elseif meta:get_int("pl1step") ~= 1 then + return false + end + end + if listname == "pl2" then + if playername ~= meta:get_string("pl2") then + return false + elseif meta:get_int("pl2step") ~= 1 then + return false + end + end + return true +end + +exchange.chest.update_formspec = function(meta) + formspec = exchange.chest.formspec.main + pl_formspec = function (n) + if meta:get_int(n.."step")==0 then + formspec = formspec .. exchange.chest.formspec[n].start + else + formspec = formspec .. exchange.chest.formspec[n].player(meta:get_string(n)) + if meta:get_int(n.."step") == 1 then + formspec = formspec .. exchange.chest.formspec[n].accept1 + elseif meta:get_int(n.."step") == 2 then + formspec = formspec .. exchange.chest.formspec[n].accept2 + end + end + end + pl_formspec("pl1") pl_formspec("pl2") + meta:set_string("formspec",formspec) +end + +exchange.chest.give_inventory = function(inv,list,playername) + player = minetest.env:get_player_by_name(playername) + if player then + for k,v in ipairs(inv:get_list(list)) do + player:get_inventory():add_item("main",v) + inv:remove_item(list,v) + end + end +end + +exchange.chest.cancel = function(meta) + exchange.chest.give_inventory(meta:get_inventory(),"pl1",meta:get_string("pl1")) + exchange.chest.give_inventory(meta:get_inventory(),"pl2",meta:get_string("pl2")) + meta:set_string("pl1","") + meta:set_string("pl2","") + meta:set_int("pl1step",0) + meta:set_int("pl2step",0) +end + +exchange.chest.exchange = function(meta) + exchange.chest.give_inventory(meta:get_inventory(),"pl1",meta:get_string("pl2")) + exchange.chest.give_inventory(meta:get_inventory(),"pl2",meta:get_string("pl1")) + meta:set_string("pl1","") + meta:set_string("pl2","") + meta:set_int("pl1step",0) + meta:set_int("pl2step",0) +end + +minetest.register_node("exchange:chest", { + description = "Exchange chest", + tiles = {"exchange_chest_top.png", "default_chest_top.png", "exchange_chest_side.png"}, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + sounds = default.node_sound_wood_defaults(), + on_construct = function(pos) + local meta = minetest.env:get_meta(pos) + meta:set_string("infotext", "Exchange chest") + meta:set_string("pl1","") + meta:set_string("pl2","") + exchange.chest.update_formspec(meta) + local inv = meta:get_inventory() + inv:set_size("pl1", 3*4) + inv:set_size("pl2", 3*4) + end, + on_receive_fields = function(pos, formname, fields, sender) + local meta = minetest.env:get_meta(pos) + pl_receive_fields = function(n) + if fields[n.."_start"] and meta:get_string(n) == "" then + meta:set_string(n,sender:get_player_name()) + end + if meta:get_string(n) == "" then + meta:set_int(n.."step",0) + elseif meta:get_int(n.."step")==0 then + meta:set_int(n.."step",1) + end + if sender:get_player_name() == meta:get_string(n) then + if meta:get_int(n.."step")==1 and fields[n.."_accept1"] then + meta:set_int(n.."step",2) + end + if meta:get_int(n.."step")==2 and fields[n.."_accept2"] then + meta:set_int(n.."step",3) + if n == "pl1" and meta:get_int("pl2step") == 3 then exchange.chest.exchange(meta) end + if n == "pl2" and meta:get_int("pl1step") == 3 then exchange.chest.exchange(meta) end + end + if fields[n.."_cancel"] then exchange.chest.cancel(meta) end + end + end + pl_receive_fields("pl1") pl_receive_fields("pl2") + -- End + exchange.chest.update_formspec(meta) + end, + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + local meta = minetest.env:get_meta(pos) + if not exchange.chest.check_privilege(from_list,player:get_player_name(),meta) then return 0 end + if not exchange.chest.check_privilege(to_list,player:get_player_name(),meta) then return 0 end + return count + end, + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + local meta = minetest.env:get_meta(pos) + if not exchange.chest.check_privilege(listname,player:get_player_name(),meta) then return 0 end + return stack:get_count() + end, + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + local meta = minetest.env:get_meta(pos) + if not exchange.chest.check_privilege(listname,player:get_player_name(),meta) then return 0 end + return stack:get_count() + end, +}) + +minetest.register_craft({ + output = 'exchange:chest', + recipe = { + {"group:wood","default:steel_ingot","group:wood"}, + {"group:wood","default:steel_ingot","group:wood"}, + {"group:wood","group:wood","group:wood"}, + } +}) + diff --git a/mods/minetest-exchange-master/exchange/depends.txt b/mods/minetest-exchange-master/exchange/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/mods/minetest-exchange-master/exchange/depends.txt @@ -0,0 +1 @@ +default diff --git a/mods/minetest-exchange-master/exchange/init.lua b/mods/minetest-exchange-master/exchange/init.lua new file mode 100644 index 0000000..529e567 --- /dev/null +++ b/mods/minetest-exchange-master/exchange/init.lua @@ -0,0 +1,4 @@ +exchange = {} + +dofile(minetest.get_modpath("exchange").."/chest.lua") +dofile(minetest.get_modpath("exchange").."/shop.lua") diff --git a/mods/minetest-exchange-master/exchange/shop.lua b/mods/minetest-exchange-master/exchange/shop.lua new file mode 100644 index 0000000..97be0b1 --- /dev/null +++ b/mods/minetest-exchange-master/exchange/shop.lua @@ -0,0 +1,197 @@ +exchange.shop = {} +exchange.shop.current_shop = {} +exchange.shop.formspec = { + customer = function(pos) + local list_name = "nodemeta:"..pos.x..','..pos.y..','..pos.z + local formspec = "size[8,9.5]".. + "label[0,0;Customer gives (pay here !)]".. + "list[current_player;customer_gives;0,0.5;3,2;]".. + "label[0,2.5;Customer gets]".. + "list[current_player;customer_gets;0,3;3,2;]".. + "label[5,0;Owner wants]".. + "list["..list_name..";owner_wants;5,0.5;3,2;]".. + "label[5,2.5;Owner gives]".. + "list["..list_name..";owner_gives;5,3;3,2;]".. + "list[current_player;main;0,5.5;8,4;]".. + "button[3,2;2,1;exchange;Exchange]" + return formspec + end, + owner = function(pos) + local list_name = "nodemeta:"..pos.x..','..pos.y..','..pos.z + local formspec = "size[8,9.5]".. + "label[0,0;Customers gave:]".. + "list["..list_name..";customers_gave;0,0.5;3,2;]".. + "label[0,2.5;Your stock:]".. + "list["..list_name..";stock;0,3;3,2;]".. + "label[5,0;You want:]".. + "list["..list_name..";owner_wants;5,0.5;3,2;]".. + "label[5,2.5;In exchange, you give:]".. + "list["..list_name..";owner_gives;5,3;3,2;]".. + "label[0,5;Owner, Use(E)+Place(RMB) for customer interface]".. + "list[current_player;main;0,5.5;8,4;]" + return formspec + end, +} + +exchange.shop.check_privilege = function(listname,playername,meta) + --[[if listname == "pl1" then + if playername ~= meta:get_string("pl1") then + return false + elseif meta:get_int("pl1step") ~= 1 then + return false + end + end + if listname == "pl2" then + if playername ~= meta:get_string("pl2") then + return false + elseif meta:get_int("pl2step") ~= 1 then + return false + end + end]] + return true +end + + +exchange.shop.give_inventory = function(inv,list,playername) + player = minetest.env:get_player_by_name(playername) + if player then + for k,v in ipairs(inv:get_list(list)) do + player:get_inventory():add_item("main",v) + inv:remove_item(list,v) + end + end +end + +exchange.shop.cancel = function(meta) + --[[exchange.shop.give_inventory(meta:get_inventory(),"pl1",meta:get_string("pl1")) + exchange.shop.give_inventory(meta:get_inventory(),"pl2",meta:get_string("pl2")) + meta:set_string("pl1","") + meta:set_string("pl2","") + meta:set_int("pl1step",0) + meta:set_int("pl2step",0)]] +end + +exchange.shop.exchange = function(meta) + --[[exchange.shop.give_inventory(meta:get_inventory(),"pl1",meta:get_string("pl2")) + exchange.shop.give_inventory(meta:get_inventory(),"pl2",meta:get_string("pl1")) + meta:set_string("pl1","") + meta:set_string("pl2","") + meta:set_int("pl1step",0) + meta:set_int("pl2step",0)]] +end + +minetest.register_node("exchange:shop", { + description = "Exchange shop", + tiles = {"exchange_shop_top.png", "default_chest_top.png", "exchange_shop_side.png"}, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + sounds = default.node_sound_wood_defaults(), + after_place_node = function(pos, placer, itemstack) + local owner = placer:get_player_name() + local meta = minetest.env:get_meta(pos) + meta:set_string("infotext", "Exchange shop (owned by "..owner..")") + meta:set_string("owner",owner) + --[[meta:set_string("pl1","") + meta:set_string("pl2","")]] + local inv = meta:get_inventory() + inv:set_size("customers_gave", 3*2) + inv:set_size("stock", 3*2) + inv:set_size("owner_wants", 3*2) + inv:set_size("owner_gives", 3*2) + end, + on_rightclick = function(pos, node, clicker, itemstack) + clicker:get_inventory():set_size("customer_gives", 3*2) + clicker:get_inventory():set_size("customer_gets", 3*2) + exchange.shop.current_shop[clicker:get_player_name()] = pos + local meta = minetest.env:get_meta(pos) + if clicker:get_player_name() == meta:get_string("owner") and not clicker:get_player_control().aux1 then + minetest.show_formspec(clicker:get_player_name(),"exchange:shop_formspec",exchange.shop.formspec.owner(pos)) + else + minetest.show_formspec(clicker:get_player_name(),"exchange:shop_formspec",exchange.shop.formspec.customer(pos)) + end + end, + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + local meta = minetest.env:get_meta(pos) + if player:get_player_name() ~= meta:get_string("owner") then return 0 end + return count + end, + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + local meta = minetest.env:get_meta(pos) + if player:get_player_name() ~= meta:get_string("owner") then return 0 end + return stack:get_count() + end, + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + local meta = minetest.env:get_meta(pos) + if player:get_player_name() ~= meta:get_string("owner") then return 0 end + return stack:get_count() + end, + can_dig = function(pos, player) + local meta = minetest.env:get_meta(pos) + local inv = meta:get_inventory() + return inv:is_empty("stock") and inv:is_empty("customers_gave") and inv:is_empty("owner_wants") and inv:is_empty("owner_gives") + end +}) + +minetest.register_on_player_receive_fields(function(sender, formname, fields) + if formname == "exchange:shop_formspec" then + local name = sender:get_player_name() + local pos = exchange.shop.current_shop[name] + local meta = minetest.env:get_meta(pos) + if meta:get_string("owner") == name then + minetest.chat_send_player(name,"This is your own shop, you can't exchange to yourself !") + else + local minv = meta:get_inventory() + local pinv = sender:get_inventory() + local invlist_tostring = function(invlist) + local out = {} + for i, item in pairs(invlist) do + out[i] = item:to_string() + end + return out + end + local wants = minv:get_list("owner_wants") + local gives = minv:get_list("owner_gives") + if wants == nil or gives == nil then return end -- do not crash the server + -- Check if we can exchange + local can_exchange = true + local owners_fault = false + for i, item in pairs(wants) do + if not pinv:contains_item("customer_gives",item) then + can_exchange = false + end + end + for i, item in pairs(gives) do + if not minv:contains_item("stock",item) then + can_exchange = false + owners_fault = true + end + end + if can_exchange then + for i, item in pairs(wants) do + pinv:remove_item("customer_gives",item) + minv:add_item("customers_gave",item) + end + for i, item in pairs(gives) do + minv:remove_item("stock",item) + pinv:add_item("customer_gets",item) + end + minetest.chat_send_player(name,"Exchanged!") + else + if owners_fault then + minetest.chat_send_player(name,"Exchange can not be done, contact the shop owner.") + else + minetest.chat_send_player(name,"Exchange can not be done, check if you put all items !") + end + end + end + end +end) + +minetest.register_craft({ + output = 'exchange:shop', + recipe = { + {"group:wood","default:gold_ingot","group:wood"}, + {"group:wood","default:gold_ingot","group:wood"}, + {"group:wood","group:wood","group:wood"}, + } +}) + diff --git a/mods/minetest-exchange-master/exchange/textures/exchange_chest_side.png b/mods/minetest-exchange-master/exchange/textures/exchange_chest_side.png new file mode 100644 index 0000000..28ec225 Binary files /dev/null and b/mods/minetest-exchange-master/exchange/textures/exchange_chest_side.png differ diff --git a/mods/minetest-exchange-master/exchange/textures/exchange_chest_top.png b/mods/minetest-exchange-master/exchange/textures/exchange_chest_top.png new file mode 100644 index 0000000..c542842 Binary files /dev/null and b/mods/minetest-exchange-master/exchange/textures/exchange_chest_top.png differ diff --git a/mods/minetest-exchange-master/exchange/textures/exchange_shop_side.png b/mods/minetest-exchange-master/exchange/textures/exchange_shop_side.png new file mode 100644 index 0000000..28ec225 Binary files /dev/null and b/mods/minetest-exchange-master/exchange/textures/exchange_shop_side.png differ diff --git a/mods/minetest-exchange-master/exchange/textures/exchange_shop_top.png b/mods/minetest-exchange-master/exchange/textures/exchange_shop_top.png new file mode 100644 index 0000000..8589c4b Binary files /dev/null and b/mods/minetest-exchange-master/exchange/textures/exchange_shop_top.png differ diff --git a/mods/minetest-exchange-master/modpack.txt b/mods/minetest-exchange-master/modpack.txt new file mode 100644 index 0000000..e69de29 diff --git a/mods/minetest-protect-master/README.md b/mods/minetest-protect-master/README.md new file mode 100644 index 0000000..b0c8ae6 --- /dev/null +++ b/mods/minetest-protect-master/README.md @@ -0,0 +1,4 @@ +minetest-protect +================ + +Protector mod for minetest \ No newline at end of file diff --git a/mods/minetest-protect-master/modpack.txt b/mods/minetest-protect-master/modpack.txt new file mode 100644 index 0000000..e69de29 diff --git a/mods/minetest-protect-master/protector/depends.txt b/mods/minetest-protect-master/protector/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/mods/minetest-protect-master/protector/depends.txt @@ -0,0 +1 @@ +default diff --git a/mods/minetest-protect-master/protector/init.lua b/mods/minetest-protect-master/protector/init.lua new file mode 100644 index 0000000..9612100 --- /dev/null +++ b/mods/minetest-protect-master/protector/init.lua @@ -0,0 +1,344 @@ +-- Zeg9's protector mod +-- based on glomie's mod of the same name +-- Released under WTFPL + + +-- FIXME: use a mesh instead of the buggy wielditem, for protector:display +-- but that isn't possible yet since models won't take care of the texture's alpha channel... + + +minetest.register_privilege("delprotect","Delete other's protection by sneaking") + +protector = {} + +protector.node = "protector:protect" +protector.item = "protector:stick" + +protector.get_member_list = function(meta) + local s = meta:get_string("members") + local list = s:split(" ") + return list +end + +protector.set_member_list = function(meta, list) + meta:set_string("members", table.concat(list, " ")) +end + +protector.is_member = function (meta, name) + local list = protector.get_member_list(meta) + for _, n in ipairs(list) do + if n == name then + return true + end + end + return false +end + +protector.add_member = function(meta, name) + if protector.is_member(meta, name) then return end + local list = protector.get_member_list(meta) + table.insert(list,name) + protector.set_member_list(meta,list) +end + +protector.del_member = function(meta,name) + local list = protector.get_member_list(meta) + for i, n in ipairs(list) do + if n == name then + table.remove(list, i) + break + end + end + protector.set_member_list(meta,list) +end + +protector.generate_formspec = function (meta) + if meta:get_int("page") == nil then meta:set_int("page",0) end + local formspec = "size[8,8]" + .."label[0,0;-- Protector interface --]" + .."label[0,1;Punch the node to show the protected area.]" + .."label[0,2;Current members:]" + members = protector.get_member_list(meta) + + local npp = 15 -- names per page, for the moment is 4*4 (-1 for the + button) + local s = 0 + local i = 0 + for _, member in ipairs(members) do + if s < meta:get_int("page")*15 then s = s +1 else + if i < 15 then + formspec = formspec .. "button["..(i%4*2)..","..math.floor(i/4+3)..";1.5,.5;protector_member;"..member.."]" + formspec = formspec .. "button["..(i%4*2+1.25)..","..math.floor(i/4+3)..";.75,.5;protector_del_member_"..member..";X]" + end + i = i +1 + end + end + local add_i = i + if add_i > npp then add_i = npp end + formspec = formspec + .."field["..(add_i%4*2+1/3)..","..(math.floor(add_i/4+3)+1/3)..";1.433,.5;protector_add_member;;]" + .."button["..(add_i%4*2+1.25)..","..math.floor(add_i/4+3)..";.75,.5;protector_submit;+]" + + if s > 0 then + formspec = formspec .. "button[0,7;1,1;protector_page_prev;<<]" + end + if i > npp then + formspec = formspec .. "button[1,7;1,1;protector_page_next;>>]" + end + formspec = formspec .. "label[2,7;Page "..(meta:get_int("page")+1).."/"..math.floor((s+i-1)/15+1).."]" + formspec = formspec .. "button [0,7; 1,1; exit; exit]" -- rnd fix + + return formspec +end + +-- r: radius to check for protects +-- Infolevel: +-- * 0 for no info +-- * 1 for "This area is owned by !" if you can't dig +-- * 2 for "This area is owned by . +-- Members are: .", even if you can dig +protector.can_dig = function(r,pos,digger,onlyowner,infolevel) + if infolevel == nil then infolevel = 1 end + if not digger or not digger.get_player_name then return false end + -- Delprotect privileged users can override protections by holding sneak + if minetest.get_player_privs(digger:get_player_name()).delprotect and + digger:get_player_control().sneak then + return true end + -- Find the protector nodes + local positions = minetest.find_nodes_in_area( + {x=pos.x-r, y=pos.y-r, z=pos.z-r}, + {x=pos.x+r, y=pos.y+r, z=pos.z+r}, + protector.node) + for _, pos in ipairs(positions) do + local meta = minetest.env:get_meta(pos) + local owner = meta:get_string("owner") + if owner ~= digger:get_player_name() then + if onlyowner or not protector.is_member(meta, digger:get_player_name()) then + if infolevel == 1 then + minetest.chat_send_player(digger:get_player_name(), "This area is owned by "..owner.." !") + elseif infolevel == 2 then + minetest.chat_send_player(digger:get_player_name(),"This area is owned by "..meta:get_string("owner")..".") + if meta:get_string("members") ~= "" then + minetest.chat_send_player(digger:get_player_name(),"Members are: "..meta:get_string("members")..".") + end + end + return false + end + end + end + if infolevel == 2 then + if #positions < 1 then + minetest.chat_send_player(digger:get_player_name(),"This area is not protected.") + else + local meta = minetest.env:get_meta(positions[1]) + minetest.chat_send_player(digger:get_player_name(),"This area is owned by "..meta:get_string("owner")..".") + if meta:get_string("members") ~= "" then + minetest.chat_send_player(digger:get_player_name(),"Members are: "..meta:get_string("members")..".") + end + end + minetest.chat_send_player(digger:get_player_name(),"You can build here.") + end + return true +end + +local old_node_dig = minetest.node_dig +function minetest.node_dig(pos, node, digger) + local ok=true + if node.name ~= protector.node then + ok = protector.can_dig(5,pos,digger) -- rnd here it checks for dig radius? + else + ok = protector.can_dig(5,pos,digger,true) + end + if ok == true then + old_node_dig(pos, node, digger) + end +end + +local old_node_place = minetest.item_place +function minetest.item_place(itemstack, placer, pointed_thing) + if itemstack:get_definition().type == "node" then + local ok=true + if itemstack:get_name() ~= protector.node then + local pos = pointed_thing.above + ok = protector.can_dig(5,pos,placer) + else + local pos = pointed_thing.above + ok = protector.can_dig(10,pos,placer,true) + end + if ok == true then + return old_node_place(itemstack, placer, pointed_thing) + else + return + end + end + return old_node_place(itemstack, placer, pointed_thing) +end +local protect = {} +minetest.register_node(protector.node, { + description = "Protection", + tiles = {"protector_top.png","protector_top.png","protector_side.png"}, + sounds = default.node_sound_stone_defaults(), + groups = {dig_immediate=2}, + drawtype = "nodebox", + node_box = { + type="fixed", + fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }, + }, + selection_box = { type="regular" }, + paramtype = "light", + after_place_node = function(pos, placer) + local meta = minetest.env:get_meta(pos) + meta:set_string("owner", placer:get_player_name() or "") + meta:set_string("infotext", "Protection (owned by ".. + meta:get_string("owner")..")") + meta:set_string("members", "") + --meta:set_string("formspec",protector.generate_formspec(meta)) + end, + on_rightclick = function(pos, node, clicker, itemstack) + local meta = minetest.env:get_meta(pos) + if protector.can_dig(1,pos,clicker,true) then + minetest.show_formspec( + clicker:get_player_name(), + "protector_"..minetest.pos_to_string(pos), + protector.generate_formspec(meta) + ) + end + end, + on_punch = function(pos, node, puncher) + if not protector.can_dig(1,pos,puncher,true) then + return + end + local objs = minetest.env:get_objects_inside_radius(pos,.5) -- a radius of .5 since the entity serialization seems to be not that precise + local removed = false + for _, o in pairs(objs) do + if (not o:is_player()) and o:get_luaentity().name == "protector:display" then + o:remove() + removed = true + end + end + if not removed then -- nothing was removed: there wasn't the entity + minetest.env:add_entity(pos, "protector:display") + end + end, +}) +-- remove formspecs from older versions of the mod +minetest.register_abm({ + nodenames = {protector.node}, + interval = 5.0, + chance = 1, + action = function(pos,...) + local meta = minetest.env:get_meta(pos) + meta:set_string("formspec","") + end, +}) +minetest.register_on_player_receive_fields(function(player,formname,fields) + if string.sub(formname,0,string.len("protector_")) == "protector_" then + local pos_s = string.sub(formname,string.len("protector_")+1) + local pos = minetest.string_to_pos(pos_s) + local meta = minetest.env:get_meta(pos) + if meta:get_int("page") == nil then meta:set_int("page",0) end + if not protector.can_dig(1,pos,player,true) then + return + end + if fields.protector_add_member then + for _, i in ipairs(fields.protector_add_member:split(" ")) do + protector.add_member(meta,i) + end + end + for field, value in pairs(fields) do + if string.sub(field,0,string.len("protector_del_member_"))=="protector_del_member_" then + protector.del_member(meta, string.sub(field,string.len("protector_del_member_")+1)) + end + end + if fields.protector_page_prev then + meta:set_int("page",meta:get_int("page")-1) + end + if fields.protector_page_next then + meta:set_int("page",meta:get_int("page")+1) + end + + if fields.exit then -- rnd fix + return + end + + + minetest.show_formspec( + player:get_player_name(), formname, + protector.generate_formspec(meta) + ) + end +end) + +minetest.register_craftitem(protector.item, { + description = "Protection tool", + inventory_image = "protector_stick.png", + on_use = function(itemstack, user, pointed_thing) + if pointed_thing.type ~= "node" then + return + end + protector.can_dig(5,pointed_thing.under,user,false,2) + end, +}) + +minetest.register_craft({ + output = protector.node .. " 1", + recipe = { + {"default:stone","default:stone","default:stone"}, + {"default:stone","default:mese_block","default:stone"}, -- rnd change recipe :) + {"default:stone","default:stone","default:stone"}, + } +}) +minetest.register_craft({ + output = protector.item, + recipe = { + {protector.node}, + {'default:stick'}, + } +}) + +minetest.register_entity("protector:display", { + physical = false, + collisionbox = {0,0,0,0,0,0}, + visual = "wielditem", + visual_size = {x=1.0/1.5,y=1.0/1.5}, -- wielditem seems to be scaled to 1.5 times original node size + textures = {"protector:display_node"}, + on_step = function(self, dtime) + if minetest.get_node(self.object:getpos()).name ~= protector.node then + self.object:remove() + return + end + end, +}) + +-- Display-zone node. +-- Do NOT place the display as a node +-- it is made to be used as an entity (see above) +minetest.register_node("protector:display_node", { + tiles = {"protector_display.png"}, + use_texture_alpha = true, + walkable = false, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = { + -- sides + {-5.55, -5.55, -5.55, -5.45, 5.55, 5.55}, + {-5.55, -5.55, 5.45, 5.55, 5.55, 5.55}, + {5.45, -5.55, -5.55, 5.55, 5.55, 5.55}, + {-5.55, -5.55, -5.55, 5.55, 5.55, -5.45}, + -- top + {-5.55, 5.45, -5.55, 5.55, 5.55, 5.55}, + -- bottom + {-5.55, -5.55, -5.55, 5.55, -5.45, 5.55}, + -- middle (surround protector) + {-.55,-.55,-.55, .55,.55,.55}, + }, + }, + selection_box = { + type = "regular", + }, + paramtype = "light", + groups = {dig_immediate=3,not_in_creative_inventory=1}, + drop = "", +}) + + diff --git a/mods/minetest-protect-master/protector/textures/protector_display.png b/mods/minetest-protect-master/protector/textures/protector_display.png new file mode 100644 index 0000000..42ef1cb Binary files /dev/null and b/mods/minetest-protect-master/protector/textures/protector_display.png differ diff --git a/mods/minetest-protect-master/protector/textures/protector_side.png b/mods/minetest-protect-master/protector/textures/protector_side.png new file mode 100644 index 0000000..329e553 Binary files /dev/null and b/mods/minetest-protect-master/protector/textures/protector_side.png differ diff --git a/mods/minetest-protect-master/protector/textures/protector_stick.png b/mods/minetest-protect-master/protector/textures/protector_stick.png new file mode 100644 index 0000000..fef01b9 Binary files /dev/null and b/mods/minetest-protect-master/protector/textures/protector_stick.png differ diff --git a/mods/minetest-protect-master/protector/textures/protector_top.png b/mods/minetest-protect-master/protector/textures/protector_top.png new file mode 100644 index 0000000..0848a69 Binary files /dev/null and b/mods/minetest-protect-master/protector/textures/protector_top.png differ diff --git a/mods/mobs/README.txt b/mods/mobs/README.txt new file mode 100644 index 0000000..5c0ea2d --- /dev/null +++ b/mods/mobs/README.txt @@ -0,0 +1,31 @@ +-= MOBS-MOD for MINETEST =- by PilzAdam and KrupnovPavel and Zeg9 +Little has changed. Removed some bugs. +The game now many living creatures. +The sheep and the rat from MOBS-MOD +Deer by Pavel_S + +All my models and change code on valid license The MIT License + + + +The MIT License (MIT) + +Copyright (c) 2014 Krupnov Pavel + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/mods/mobs/api.lua b/mods/mobs/api.lua new file mode 100644 index 0000000..e03dabb --- /dev/null +++ b/mods/mobs/api.lua @@ -0,0 +1,954 @@ +mobs = {} +mobs.mod = "redo" +function mobs:register_mob(name, def) + minetest.register_entity(name, { + name = name, + hp_min = def.hp_min or 5, -- + hp_max = def.hp_max, + physical = true, + owner = def.owner, + monsterdetect = def.monsterdetect, + monsterrange = def.monsterrange, + collisionbox = def.collisionbox, + visual = def.visual, + visual_size = def.visual_size, + mesh = def.mesh, + textures = def.textures, + makes_footstep_sound = def.makes_footstep_sound, + view_range = def.view_range, + walk_velocity = def.walk_velocity, + run_velocity = def.run_velocity, + damage = def.damage, + light_damage = def.light_damage, + water_damage = def.water_damage, + lava_damage = def.lava_damage, + disable_fall_damage = def.disable_fall_damage, + drops = def.drops, + armor = def.armor, + drawtype = def.drawtype, + on_rightclick = def.on_rightclick, + type = def.type, + attack_type = def.attack_type, + arrow = def.arrow, + shoot_interval = def.shoot_interval, + sounds = def.sounds, + animation = def.animation, + follow = def.follow, + jump = def.jump or true, + exp_min = def.exp_min or 0, + exp_max = def.exp_max or 0, + walk_chance = def.walk_chance or 50, + attacks_monsters = def.attacks_monsters or false, + group_attack = def.group_attack or false, + step = def.step or 0, + fov = def.fov or 120, + passive = def.passive or false, + recovery_time = def.recovery_time or 0.5, + knock_back = def.knock_back or 3, + blood_offset = def.blood_offset or 0, + blood_amount = def.blood_amount or 5, -- 15 + blood_texture = def.blood_texture or "mobs_blood.png", + rewards = def.rewards or nil, + animaltype = def.animaltype, + + stimer = 0, + timer = 0, + env_damage_timer = 0, -- only if state = "attack" + attack = {player=nil, dist=nil}, + state = "stand", + v_start = false, + old_y = nil, + lifetimer = 600, + tamed = false, + last_state = nil, + pause_timer = 0, + + do_attack = function(self, player, dist) + if self.state ~= "attack" then +-- if self.sounds.war_cry then +-- if math.random(0,100) < 90 then +-- minetest.sound_play(self.sounds.war_cry,{ object = self.object }) +-- end +-- end + self.state = "attack" + self.attack.player = player + self.attack.dist = dist + end + end, + + set_velocity = function(self, v) + local yaw = self.object:getyaw() + if self.drawtype == "side" then + yaw = yaw+(math.pi/2) + end + local x = math.sin(yaw) * -v + local z = math.cos(yaw) * v + self.object:setvelocity({x=x, y=self.object:getvelocity().y, z=z}) + end, + + get_velocity = function(self) + local v = self.object:getvelocity() + return (v.x^2 + v.z^2)^(0.5) + end, + + in_fov = function(self,pos) + -- checks if POS is in self's FOV + local yaw = self.object:getyaw() + if self.drawtype == "side" then + yaw = yaw+(math.pi/2) + end + local vx = math.sin(yaw) + local vz = math.cos(yaw) + local ds = math.sqrt(vx^2 + vz^2) + local ps = math.sqrt(pos.x^2 + pos.z^2) + local d = { x = vx / ds, z = vz / ds } + local p = { x = pos.x / ps, z = pos.z / ps } + + local an = ( d.x * p.x ) + ( d.z * p.z ) + + local a = math.deg( math.acos( an ) ) + + if a > ( self.fov / 2 ) then + return false + else + return true + end + end, + + set_animation = function(self, type) + if not self.animation then + return + end + if not self.animation.current then + self.animation.current = "" + end + if type == "stand" and self.animation.current ~= "stand" then + if + self.animation.stand_start + and self.animation.stand_end + and self.animation.speed_normal + then + self.object:set_animation( + {x=self.animation.stand_start,y=self.animation.stand_end}, + self.animation.speed_normal, 0 + ) + self.animation.current = "stand" + end + elseif type == "walk" and self.animation.current ~= "walk" then + if + self.animation.walk_start + and self.animation.walk_end + and self.animation.speed_normal + then + self.object:set_animation( + {x=self.animation.walk_start,y=self.animation.walk_end}, + self.animation.speed_normal, 0 + ) + self.animation.current = "walk" + end + elseif type == "run" and self.animation.current ~= "run" then + if + self.animation.run_start + and self.animation.run_end + and self.animation.speed_run + then + self.object:set_animation( + {x=self.animation.run_start,y=self.animation.run_end}, + self.animation.speed_run, 0 + ) + self.animation.current = "run" + end + elseif type == "punch" and self.animation.current ~= "punch" then + if + self.animation.punch_start + and self.animation.punch_end + and self.animation.speed_normal + then + self.object:set_animation( + {x=self.animation.punch_start,y=self.animation.punch_end}, + self.animation.speed_normal, 0 + ) + self.animation.current = "punch" + end + end + end, + + on_step = function(self, dtime) + + if self.type == "monster" and minetest.setting_getbool("only_peaceful_mobs") then + self.object:remove() + end + + self.lifetimer = self.lifetimer - dtime + if self.lifetimer <= 0 and not self.tamed and self.type ~= "npc" and self.type ~= "warpet" then + local player_count = 0 + for _,obj in ipairs(minetest.get_objects_inside_radius(self.object:getpos(), 10)) do + if obj:is_player() then + player_count = player_count+1 + end + end + if player_count == 0 and self.state ~= "attack" then + minetest.log("action","lifetimer expired, removed mob "..self.name) + self.object:remove() + return + end + end + + -- drop egg + if self.animaltype == "clucky" then + if math.random(1, 1000) <= 1 + and minetest.get_node(self.object:getpos()).name == "air" + and self.state == "stand" then + minetest.set_node(self.object:getpos(), {name="mobs:egg"}) + end + end + + if self.object:getvelocity().y > 0.1 then + local yaw = self.object:getyaw() + if self.drawtype == "side" then + yaw = yaw+(math.pi/2) + end + local x = math.sin(yaw) * -2 + local z = math.cos(yaw) * 2 + self.object:setacceleration({x=x, y=-10, z=z}) + else + self.object:setacceleration({x=0, y=-10, z=0}) + end + + if self.disable_fall_damage and self.object:getvelocity().y == 0 then + if not self.old_y then + self.old_y = self.object:getpos().y + else + local d = self.old_y - self.object:getpos().y + if d > 5 then + local damage = d-5 + self.object:set_hp(self.object:get_hp()-damage) + if self.object:get_hp() == 0 then + self.object:remove() + end + end + self.old_y = self.object:getpos().y + end + end + + -- if pause state then this is where the loop ends + -- pause is only set after a monster is hit + if self.pause_timer > 0 then + self.pause_timer = self.pause_timer - dtime + if self.pause_timer <= 0 then + self.pause_timer = 0 + end + return + end + + self.timer = self.timer+dtime + if self.state ~= "attack" then + if self.timer < 1 then + return + end + self.timer = 0 + end + + if self.sounds and self.sounds.random and math.random(1, 100) <= 1 then + minetest.sound_play(self.sounds.random, {object = self.object}) + end + + local do_env_damage = function(self) + local pos = self.object:getpos() + local n = minetest.get_node(pos) + + if self.light_damage and self.light_damage ~= 0 + and pos.y>0 + and minetest.get_node_light(pos) + and minetest.get_node_light(pos) > 4 + and minetest.get_timeofday() > 0.2 + and minetest.get_timeofday() < 0.8 + then + self.object:set_hp(self.object:get_hp()-self.light_damage) + if self.object:get_hp() == 0 then + self.object:remove() + end + end + + if self.water_damage and self.water_damage ~= 0 and + minetest.get_item_group(n.name, "water") ~= 0 + then + self.object:set_hp(self.object:get_hp()-self.water_damage) + if self.object:get_hp() == 0 then + self.object:remove() + end + end + + if self.lava_damage and self.lava_damage ~= 0 and + minetest.get_item_group(n.name, "lava") ~= 0 + then + self.object:set_hp(self.object:get_hp()-self.lava_damage) + if self.object:get_hp() == 0 then + self.object:remove() + end + end + end + + self.env_damage_timer = self.env_damage_timer + dtime + if self.state == "attack" and self.env_damage_timer > 1 then + self.env_damage_timer = 0 + do_env_damage(self) + elseif self.state ~= "attack" then + do_env_damage(self) + end + + -- FIND SOMEONE TO ATTACK + if ( self.type == "monster" or self.type == "barbarian" ) and minetest.setting_getbool("enable_damage") and self.state ~= "attack" then + local s = self.object:getpos() + local inradius = minetest.get_objects_inside_radius(s,self.view_range) + local player = nil + local type = nil + for _,oir in ipairs(inradius) do + if oir:is_player() then + player = oir + type = "player" + else + local obj = oir:get_luaentity() + if obj then + player = obj.object + type = obj.type + end + end + + if type == "player" or type == "pet" or type == "warpet" then + local s = self.object:getpos() + local p = player:getpos() + local sp = s + p.y = p.y + 1 + sp.y = sp.y + 1 -- aim higher to make looking up hills more realistic + local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 + if dist < self.view_range and self.in_fov(self,p) then + if minetest.line_of_sight(sp,p,2) == true then + self.do_attack(self,player,dist) + break + end + end + end + end + end + + -- NPC FIND A MONSTER TO ATTACK + if self.type == "warpet" and self.attacks_monsters and self.state ~= "attack" and self.following == player then + local s = self.object:getpos() + local inradius = minetest.get_objects_inside_radius(s,self.monsterrange) + for _, oir in pairs(inradius) do + local obj = oir:get_luaentity() + if obj then + if obj.type == "monster" and self.object:getpos().y-3 <= obj.object:getpos().y and self.object:getpos().y+3 >= obj.object:getpos().y then + self.following = nil + self.monsterdetect = true + local p = obj.object:getpos() + local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 + if self.monsterdetect == true then + self.do_attack(self,obj.object,dist) + else + self.following = player + end + break + else + self.monsterdetect = false + end + else + self.monsterdetect = false + self.following = player + end + end + end + + if self.follow ~= "" and not self.following or self.type == "warpet" then + for _,player in pairs(minetest.get_connected_players()) do + local obj = player + local s = self.object:getpos() + local p = player:getpos() + local name = obj:get_player_name() + local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 + if self.view_range and dist < self.view_range then + if self.type == "warpet" then + for _,player in pairs(minetest.get_connected_players()) do + local obj = player + local s = self.object:getpos() + local p = player:getpos() + local name = obj:get_player_name() + local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 + if name == self.owner then + if self.monsterdetect == false and name == self.owner then + self.following = obj + else + self.following = nil + end + end + end + else + self.following = player + end + break + end + end + end + + if self.following and self.following:is_player() then + if self.following:get_wielded_item():get_name() ~= self.follow and self.type ~= "warpet" then + self.following = nil + else + local s = self.object:getpos() + local p = self.following:getpos() + local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 + if dist > self.view_range then + if self.monsterdetect == true then + self.following = nil + self.v_start = false + end + else + local vec = {x=p.x-s.x, y=p.y-s.y, z=p.z-s.z} + local yaw = math.atan(vec.z/vec.x)+math.pi/2 + if self.drawtype == "side" then + yaw = yaw+(math.pi/2) + end + if p.x > s.x then + yaw = yaw+math.pi + end + self.object:setyaw(yaw) + if dist > 2 then + if not self.v_start then + self.v_start = true + self.set_velocity(self, self.walk_velocity) + else + if self.jump and self.get_velocity(self) <= 1.5 and self.object:getvelocity().y == 0 then + local v = self.object:getvelocity() + v.y = 6 + self.object:setvelocity(v) + end + self.set_velocity(self, self.walk_velocity) + end + self:set_animation("walk") + else + self.v_start = false + self.set_velocity(self, 0) + self:set_animation("stand") + end + return + end + end + end + + local yaw = 0 -- rnd + + if self.state == "stand" then + -- randomly turn + if math.random(1, 4) == 1 then + -- if there is a player nearby look at them + local lp = nil + local s = self.object:getpos() + if self.type == "npc" then + local o = minetest.get_objects_inside_radius(self.object:getpos(), 3) + + local yaw = 0 + for _,o in ipairs(o) do + if o:is_player() then + lp = o:getpos() + break + end + end + end + if lp ~= nil then + local vec = {x=lp.x-s.x, y=lp.y-s.y, z=lp.z-s.z} + yaw = math.atan(vec.z/vec.x)+math.pi/2 + if self.drawtype == "side" then + yaw = yaw+(math.pi/2) + end + if lp.x > s.x then + yaw = yaw+math.pi + end + else + yaw = self.object:getyaw()+((math.random(0,360)-180)/180*math.pi) + end + self.object:setyaw(yaw) + end + self.set_velocity(self, 0) + self.set_animation(self, "stand") + if math.random(1, 100) <= self.walk_chance then + self.set_velocity(self, self.walk_velocity) + self.state = "walk" + self.set_animation(self, "walk") + end + elseif self.state == "walk" then + if math.random(1, 100) <= 30 then + self.object:setyaw(self.object:getyaw()+((math.random(0,360)-180)/180*math.pi)) + end + if self.jump and self.get_velocity(self) <= 0.5 and self.object:getvelocity().y == 0 then + local v = self.object:getvelocity() + v.y = 5 + self.object:setvelocity(v) + end + self:set_animation("walk") + self.set_velocity(self, self.walk_velocity) + if math.random(1, 100) <= 30 then + self.set_velocity(self, 0) + self.state = "stand" + self:set_animation("stand") + end + elseif self.state == "attack" and self.attack_type == "dogfight" then + if not self.attack.player or not self.attack.player:getpos() then + print("stop attacking") + self.state = "stand" + self:set_animation("stand") + return + end + local s = self.object:getpos() + local p = self.attack.player:getpos() + local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 + if dist > self.view_range or self.attack.player:get_hp() <= 0 then + self.state = "stand" + self.v_start = false + self.set_velocity(self, 0) + self.attack = {player=nil, dist=nil} + self:set_animation("stand") + return + else + self.attack.dist = dist + end + + local vec = {x=p.x-s.x, y=p.y-s.y, z=p.z-s.z} + local yaw = math.atan(vec.z/vec.x)+math.pi/2 + if self.drawtype == "side" then + yaw = yaw+(math.pi/2) + end + if p.x > s.x then + yaw = yaw+math.pi + end + self.object:setyaw(yaw) + if self.attack.dist > 2 then + if not self.v_start then + self.v_start = true + self.set_velocity(self, self.run_velocity) + else + if self.jump and self.get_velocity(self) <= 0.5 and self.object:getvelocity().y == 0 then + local v = self.object:getvelocity() + v.y = 5 + self.object:setvelocity(v) + end + self.set_velocity(self, self.run_velocity) + end + self:set_animation("run") + else + self.set_velocity(self, 0) + self:set_animation("punch") + self.v_start = false + if self.timer > 1 then + self.timer = 0 + local p2 = p + local s2 = s + p2.y = p2.y + 1.5 + s2.y = s2.y + 1.5 + if minetest.line_of_sight(p2,s2) == true then + if self.sounds and self.sounds.attack then + minetest.sound_play(self.sounds.attack, {object = self.object}) + end + self.attack.player:punch(self.object, 1.0, { + full_punch_interval=1.0, + damage_groups = {fleshy=self.damage} + }, vec) + if self.attack.player:get_hp() <= 0 then + self.state = "stand" + self:set_animation("stand") + end + end + end + end + elseif self.state == "attack" and self.attack_type == "shoot" then + if not self.attack.player or not self.attack.player:is_player() then + self.state = "stand" + self:set_animation("stand") + return + end + local s = self.object:getpos() + local p = self.attack.player:getpos() + p.y = p.y - .5 + s.y = s.y + .5 + local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 + if dist > self.view_range or self.attack.player:get_hp() <= 0 then + self.state = "stand" + self.v_start = false + self.set_velocity(self, 0) + if self.type ~= "npc" then + self.attack = {player=nil, dist=nil} + end + self:set_animation("stand") + return + else + self.attack.dist = dist + end + + local vec = {x=p.x-s.x, y=p.y-s.y, z=p.z-s.z} + local yaw = math.atan(vec.z/vec.x)+math.pi/2 + if self.drawtype == "side" then + yaw = yaw+(math.pi/2) + end + if p.x > s.x then + yaw = yaw+math.pi + end + self.object:setyaw(yaw) + self.set_velocity(self, 0) + + if self.timer > self.shoot_interval and math.random(1, 100) <= 60 then + self.timer = 0 + + self:set_animation("punch") + + if self.sounds and self.sounds.attack then + minetest.sound_play(self.sounds.attack, {object = self.object}) + end + + local p = self.object:getpos() + p.y = p.y + (self.collisionbox[2]+self.collisionbox[5])/2 + local obj = minetest.add_entity(p, self.arrow) + local amount = (vec.x^2+vec.y^2+vec.z^2)^0.5 + local v = obj:get_luaentity().velocity + vec.y = vec.y+1 + vec.x = vec.x*v/amount + vec.y = vec.y*v/amount + vec.z = vec.z*v/amount + obj:setvelocity(vec) + end + end + end, + + on_activate = function(self, staticdata, dtime_s) + -- reset HP + local pos = self.object:getpos() + local distance_rating = ( ( get_distance({x=0,y=0,z=0},pos) ) / 20000 ) + local newHP = self.hp_min + math.floor( self.hp_max * distance_rating ) + self.object:set_hp( newHP ) + + self.object:set_armor_groups({fleshy=self.armor}) + self.object:setacceleration({x=0, y=-10, z=0}) + self.state = "stand" + self.object:setvelocity({x=0, y=self.object:getvelocity().y, z=0}) + self.object:setyaw(math.random(1, 360)/180*math.pi) + if self.type == "monster" and minetest.setting_getbool("only_peaceful_mobs") then + self.object:remove() + end + if self.type ~= "npc" then + self.lifetimer = 600 - dtime_s + end + if staticdata then + local tmp = minetest.deserialize(staticdata) + if tmp and tmp.lifetimer then + self.lifetimer = tmp.lifetimer - dtime_s + end + if tmp and tmp.tamed then + self.tamed = tmp.tamed + end + --[[if tmp and tmp.textures then + self.object:set_properties(tmp.textures) + end]] + end + if self.lifetimer <= 0 and not self.tamed and self.type ~= "npc" and self.type ~= "warpet" and self.type ~= "animal" then + self.object:remove() + end + end, + + get_staticdata = function(self) + local tmp = { + lifetimer = self.lifetimer, + tamed = self.tamed, + textures = { textures = self.textures }, + } + return minetest.serialize(tmp) + end, + + on_punch = function(self, hitter, tflp, tool_capabilities, dir) + + process_weapon(hitter,tflp,tool_capabilities) + + local pos = self.object:getpos() + if self.object:get_hp() <= 0 then + if hitter and hitter:is_player() and hitter:get_inventory() then + for _,drop in ipairs(self.drops) do + if math.random(1, drop.chance) == 1 then + local d = ItemStack(drop.name.." "..math.random(drop.min, drop.max)) +-- default.drop_item(pos,d) + local pos2 = pos + pos2.y = pos2.y + 0.5 -- drop items half block higher + minetest.add_item(pos2,d) + end + end + +-- if self.sounds.death ~= nil then +-- minetest.sound_play(self.sounds.death,{ +-- object = self.object, +-- }) +-- end +-- if minetest.get_modpath("skills") and minetest.get_modpath("experience") then +-- -- DROP experience +-- local distance_rating = ( ( get_distance({x=0,y=0,z=0},pos) ) / ( skills.get_player_level(hitter:get_player_name()).level * 1000 ) ) +-- local emax = math.floor( self.exp_min + ( distance_rating * self.exp_max ) ) +-- local expGained = math.random(self.exp_min, emax) +-- skills.add_exp(hitter:get_player_name(),expGained) +-- local expStack = experience.exp_to_items(expGained) +-- for _,stack in ipairs(expStack) do +-- default.drop_item(pos,stack) +-- end +-- end + +-- -- see if there are any NPCs to shower you with rewards +-- if self.type ~= "npc" then +-- local inradius = minetest.get_objects_inside_radius(hitter:getpos(),10) +-- for _, oir in pairs(inradius) do +-- local obj = oir:get_luaentity() +-- if obj then +-- if obj.type == "npc" and obj.rewards ~= nil then +-- local yaw = nil +-- local lp = hitter:getpos() +-- local s = obj.object:getpos() +-- local vec = {x=lp.x-s.x, y=1, z=lp.z-s.z} +-- yaw = math.atan(vec.z/vec.x)+math.pi/2 +-- if self.drawtype == "side" then +-- yaw = yaw+(math.pi/2) +-- end +-- if lp.x > s.x then +-- yaw = yaw+math.pi +-- end +-- obj.object:setyaw(yaw) +-- local x = math.sin(yaw) * -2 +-- local z = math.cos(yaw) * 2 +-- acc = {x=x, y=-5, z=z} +-- for _, r in pairs(obj.rewards) do +-- if math.random(0,100) < r.chance then +-- default.drop_item(obj.object:getpos(),r.item, vec, acc) +-- end +-- end +-- end +-- end +-- end +-- end + + end + end + + --blood_particles + + if self.blood_amount > 0 and pos then + local p = pos + p.y = p.y + self.blood_offset + + minetest.add_particlespawner( + 5, --blood_amount, --amount + 0.25, --time + {x=p.x-0.2, y=p.y-0.2, z=p.z-0.2}, --minpos + {x=p.x+0.2, y=p.y+0.2, z=p.z+0.2}, --maxpos + {x=0, y=-2, z=0}, --minvel + {x=2, y=2, z=2}, --maxvel + {x=-4,y=-4,z=-4}, --minacc + {x=4,y=-4,z=4}, --maxacc + 0.1, --minexptime + 1, --maxexptime + 0.5, --minsize + 1, --maxsize + false, --collisiondetection + self.blood_texture --texture + ) + end + + -- knock back effect, adapted from blockmen's pyramids mod + -- https://github.com/BlockMen/pyramids + local kb = self.knock_back + local r = self.recovery_time + + if tflp < tool_capabilities.full_punch_interval then + kb = kb * ( tflp / tool_capabilities.full_punch_interval ) + r = r * ( tflp / tool_capabilities.full_punch_interval ) + end + + local ykb=2 + local v = self.object:getvelocity() + if v.y ~= 0 then + ykb = 0 + end + + self.object:setvelocity({x=dir.x*kb,y=ykb,z=dir.z*kb}) + self.pause_timer = r + + -- attack puncher and call other mobs for help + if self.passive == false then + if self.state ~= "attack" then + self.do_attack(self,hitter,1) + end + -- alert other NPCs to the attack + local inradius = minetest.get_objects_inside_radius(hitter:getpos(),5) + for _, oir in pairs(inradius) do + local obj = oir:get_luaentity() + if obj then + if obj.group_attack == true and obj.state ~= "attack" then + obj.do_attack(obj,hitter,1) + end + end + end + end + end, + + }) +end + +mobs.spawning_mobs = {} +function mobs:register_spawn(name, nodes, max_light, min_light, chance, active_object_count, max_height, min_dist, max_dist, spawn_func) + mobs.spawning_mobs[name] = true + minetest.register_abm({ + nodenames = nodes, + neighbors = {"air"}, + interval = 30, + chance = chance, + action = function(pos, node, _, active_object_count_wider) + if active_object_count_wider > active_object_count then + return + end + if not mobs.spawning_mobs[name] then + return + end + + pos.y = pos.y+1 + if not minetest.get_node_light(pos) then + return + end + if minetest.get_node_light(pos) > max_light then + return + end + if minetest.get_node_light(pos) < min_light then + return + end + if pos.y > max_height then + return + end + + if not minetest.registered_nodes[minetest.get_node(pos).name] then return end + if minetest.registered_nodes[minetest.get_node(pos).name].walkable then return end + + pos.y = pos.y+1 + + if not minetest.registered_nodes[minetest.get_node(pos).name] then return end + if minetest.registered_nodes[minetest.get_node(pos).name].walkable then return end + + if min_dist == nil then + min_dist = {x=-1,z=-1} + end + if max_dist == nil then + max_dist = {x=33000,z=33000} + end + + if math.abs(pos.x) < min_dist.x or math.abs(pos.z) < min_dist.z then + return + end + + if math.abs(pos.x) > max_dist.x or math.abs(pos.z) > max_dist.z then + return + end + + if spawn_func and not spawn_func(pos, node) then + return + end + + if minetest.setting_getbool("display_mob_spawn") then + minetest.chat_send_all("[mobs] Add "..name.." at "..minetest.pos_to_string(pos)) + end + local mob = minetest.add_entity(pos, name) + + -- setup the hp, armor, drops, etc... for this specific mob + local distance_rating = ( ( get_distance({x=0,y=0,z=0},pos) ) / 15000 ) + if mob then + mob = mob:get_luaentity() + local newHP = mob.hp_min + math.floor( mob.hp_max * distance_rating ) + mob.object:set_hp( newHP ) + -- rnd change: make monsters with tougher armor away from spawn or deeper:) + local spawnpoint = core.setting_get_pos("static_spawnpoint") + local mult = math.sqrt((pos.x-spawnpoint.x)^2+(pos.y-spawnpoint.y)^2+(pos.z-spawnpoint.z)^2) + if pos.y-spawnpoint.y>-50 then -- on surface distance from spawn + mult = 1/(mult/500+1.) -- at distance 0 armor is normal, at 500 it 50% (smaller the better) + else + mult = math.abs(pos.y-spawnpoint.y); -- deep enough only depth + mult = 1/(mult/500+1.) -- depth 500, double armor + end + local new_armor = mob.armor*mult; + mob.object:set_armor_groups({fleshy=new_armor}) + local drops = mob.drops; + + for i,_ in pairs(drops) do -- more probability of drops + mob.drops[i].chance=math.max(1,drops[i].chance*mult) + end + + + + end + end + }) +end + +function mobs:register_arrow(name, def) + minetest.register_entity(name, { + physical = false, + visual = def.visual, + visual_size = def.visual_size, + textures = def.textures, + velocity = def.velocity, + hit_player = def.hit_player, + hit_node = def.hit_node, + collisionbox = {0,0,0,0,0,0}, -- remove box around arrows + + on_step = function(self, dtime) + local pos = self.object:getpos() + if minetest.get_node(self.object:getpos()).name ~= "air" then + self.hit_node(self, pos, node) + self.object:remove() + return + end + -- pos.y = pos.y-1.0 + for _,player in pairs(minetest.get_objects_inside_radius(pos, 1)) do + if player:is_player() then + self.hit_player(self, player) + self.object:remove() + return + end + end + end + }) +end + +function get_distance(pos1,pos2) + if ( pos1 ~= nil and pos2 ~= nil ) then + return math.abs(math.floor(math.sqrt( (pos1.x - pos2.x)^2 + (pos1.z - pos2.z)^2 ))) + else + return 0 + end +end + +function process_weapon(player, time_from_last_punch, tool_capabilities) +local weapon = player:get_wielded_item() + if tool_capabilities ~= nil then + --local wear = ( tool_capabilities.full_punch_interval / 75 ) * 65535 + -- rnd change: wear when hitting monsters + local wear + if tool_capabilities.groupcaps.snappy~=nil then + wear = 65535/(tool_capabilities.groupcaps.snappy.uses) + else wear = 65535/50 + end + weapon:add_wear(wear) + player:set_wielded_item(weapon) + end + +-- if weapon:get_definition().sounds ~= nil then +-- local s = math.random(0,#weapon:get_definition().sounds) +-- minetest.sound_play(weapon:get_definition().sounds[s], { +-- object=player, +-- }) +-- else +-- minetest.sound_play("default_sword_wood", { +-- object = player, +-- }) +-- end +end + + diff --git a/mods/mobs/bee.lua b/mods/mobs/bee.lua new file mode 100644 index 0000000..5cd810b --- /dev/null +++ b/mods/mobs/bee.lua @@ -0,0 +1,103 @@ + +-- Bee + +mobs:register_mob("mobs:bee", { + type = "animal", + hp_min = 1, + hp_max = 2, + collisionbox = {-0.2, -0.01, -0.2, 0.2, 0.2, 0.2}, + visual = "mesh", + mesh = "mobs_bee.x", + textures = {"mobs_bee.png"}, + makes_footstep_sound = false, + monsterdetect = false, + walk_velocity = 1, + armor = 200, + drops = { + {name = "mobs:med_cooked", + chance = 1, + min = 1, + max = 2,}, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 1, + light_damage = 0, + + animation = { + speed_normal = 15, + stand_start = 0, + stand_end = 30, + walk_start = 35, + walk_end = 65, + }, + + on_rightclick = function(self, clicker) + if clicker:is_player() and clicker:get_inventory() then + clicker:get_inventory():add_item("main", "mobs:bee") + self.object:remove() + end + end, +jump = true, +step = 1, +passive = true, +}) +mobs:register_spawn("mobs:bee", {"group:flower", "default:dirt_with_grass","default:dirt"}, 20, -1, 7000, 1, 31000) + +minetest.register_craftitem("mobs:bee", { + description = "bee", + inventory_image = "mobs_bee_inv.png", + + on_place = function(itemstack, placer, pointed_thing) + if pointed_thing.above then + minetest.env:add_entity(pointed_thing.above, "mobs:bee") + itemstack:take_item() + end + return itemstack + end, +}) + +-- Honey + +minetest.register_craftitem("mobs:honey", { + description = "Honey", + inventory_image = "mobs_honey_inv.png", + on_use = minetest.item_eat(6), +}) + +minetest.register_craft({ + type = "cooking", + output = "mobs:med_cooked", + recipe = "mobs:bee", + cooktime = 5, +}) + +-- Beehive + +minetest.register_node("mobs:beehive", { + description = "Beehive", + drawtype = "plantlike", + visual_scale = 1.0, + tiles ={"mobs_beehive.png"}, + inventory_image = "mobs_beehive.png", + paramtype = "light", + sunlight_propagates = true, + walkable = true, + groups = {fleshy=3,dig_immediate=3}, + on_use = minetest.item_eat(4), + sounds = default.node_sound_defaults(), + after_place_node = function(pos, placer, itemstack) + if placer:is_player() then + minetest.set_node(pos, {name="mobs:beehive", param2=1}) + minetest.env:add_entity(pos, "mobs:bee") + end + end, + +}) + +minetest.register_craft({ + output = "mobs:beehive", + recipe = { + {"mobs:bee","mobs:bee","mobs:bee"}, + } +}) diff --git a/mods/mobs/chicken.lua b/mods/mobs/chicken.lua new file mode 100644 index 0000000..b677bf6 --- /dev/null +++ b/mods/mobs/chicken.lua @@ -0,0 +1,121 @@ + +--= Chicken (thanks to JK Murray for his chicken model) + +mobs:register_mob("mobs:chicken", { + type = "animal", + hp_min = 5, + hp_max = 10, + animaltype = "clucky", + collisionbox = {-0.3, -0.75, -0.3, 0.3, 0.1, 0.3}, + visual = "mesh", + mesh = "chicken.x", + -- textures look repetative but they fix the wrapping bug + textures = {"mobs_chicken.png", "mobs_chicken.png", "mobs_chicken.png", "mobs_chicken.png", + "mobs_chicken.png", "mobs_chicken.png", "mobs_chicken.png", "mobs_chicken.png", "mobs_chicken.png"}, + makes_footstep_sound = true, + monsterdetect = false, + walk_velocity = 1, + armor = 200, + drops = { + {name = "mobs:chicken_raw", chance = 1, min = 2, max = 2,}, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + jump = false, + animation = { + speed_normal = 15, + stand_start = 0, + stand_end = 1, -- 20 + walk_start = 20, + walk_end = 40, + }, + follow = "farming:wheat", + view_range = 5, + on_rightclick = function(self, clicker) + if clicker:is_player() and clicker:get_inventory() then + clicker:get_inventory():add_item("main", "mobs:chicken") + self.object:remove() + end + end, + jump = true, + step = 1, + blood_texture = "mobs_blood.png", + passive = true, +}) + +mobs:register_spawn("mobs:chicken", {"default:dirt_with_grass", "ethereal:bamboo_dirt"}, 20, 8, 9000, 1, 31000) + +-- Chicken (right-click chicken to place in inventory) + +minetest.register_craftitem("mobs:chicken", { + description = "Chicken", + inventory_image = "mobs_chicken_inv.png", + + on_place = function(itemstack, placer, pointed_thing) + if pointed_thing.above then + minetest.env:add_entity(pointed_thing.above, "mobs:chicken") + itemstack:take_item() + end + return itemstack + end, +}) + +-- Egg (can be fried in furnace) + +minetest.register_node("mobs:egg", + { + description = "Chicken Egg", + tiles = {"mobs_chicken_egg.png"}, + inventory_image = "mobs_chicken_egg.png", + visual_scale = 0.7, + drawtype = "plantlike", + wield_image = "mobs_chicken_egg.png", + paramtype = "light", + walkable = false, + is_ground_content = true, + sunlight_propagates = true, + selection_box = { + type = "fixed", + fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2} + }, + groups = {snappy=2, dig_immediate=3}, + after_place_node = function(pos, placer, itemstack) + if placer:is_player() then + minetest.set_node(pos, {name="mobs:egg", param2=1}) + end + end +}) + +minetest.register_craftitem("mobs:chicken_egg_fried", { +description = "Fried Egg", + inventory_image = "mobs_chicken_egg_fried.png", + on_use = minetest.item_eat(2), +}) + +minetest.register_craft({ + type = "cooking", + recipe = "mobs:egg", + output = "mobs:chicken_egg_fried", +}) + +-- Chicken (raw and cooked) + +minetest.register_craftitem("mobs:chicken_raw", { +description = "Raw Chicken", + inventory_image = "mobs_chicken_raw.png", + on_use = minetest.item_eat(2), +}) + +minetest.register_craftitem("mobs:chicken_cooked", { +description = "Cooked Chicken", + inventory_image = "mobs_chicken_cooked.png", + on_use = minetest.item_eat(6), +}) + +minetest.register_craft({ + type = "cooking", + recipe = "mobs:chicken_raw", + output = "mobs:chicken_cooked", +}) diff --git a/mods/mobs/cow.lua b/mods/mobs/cow.lua new file mode 100644 index 0000000..861e993 --- /dev/null +++ b/mods/mobs/cow.lua @@ -0,0 +1,132 @@ + +-- Cow by Krupnovpavel + +mobs:register_mob("mobs:cow", { + type = "animal", + hp_min = 5, + hp_max = 20, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, + textures = {"mobs_cow.png"}, + visual = "mesh", + mesh = "mobs_cow.x", + makes_footstep_sound = true, + view_range = 7, + monsterdetect = false, + walk_velocity = 1, + run_velocity = 2, + damage = 10, + armor = 200, + drops = { + {name = "mobs:meat_raw", + chance = 1, + min = 5, + max = 10,}, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + follow = "farming:wheat", + sounds = { + random = "mobs_cow", + }, + -- right-click cow with empty bucket to get milk, then feed 8 wheat to replenish milk + on_rightclick = function(self, clicker) + tool = clicker:get_wielded_item() + if tool:get_name() == "bucket:bucket_empty" then + if self.milked then + do return end + end + clicker:get_inventory():remove_item("main", "bucket:bucket_empty") + clicker:get_inventory():add_item("main", "mobs:bucket_milk") + self.milked = true + end + + if tool:get_name() == "farming:wheat" then + if self.milked then + if not minetest.setting_getbool("creative_mode") then + tool:take_item(1) + clicker:set_wielded_item(tool) + end + self.food = (self.food or 0) + 1 + if self.food >= 8 then + self.food = 0 + self.milked = false + self.tamed = true + minetest.sound_play("mobs_cow", {object = self.object,gain = 1.0,max_hear_distance = 32,loop = false,}) + end + end + return tool + end + + end, + + animation = { + speed_normal = 15, + speed_run = 15, + stand_start = 0, + stand_end = 30, + walk_start = 35, + walk_end = 65, + run_start = 105, + run_end = 135, + punch_start = 70, + punch_end = 100, + }, + jump = true, + step = 1, + blood_texture = "mobs_blood.png", + passive = true, +}) +mobs:register_spawn("mobs:cow", {"default:dirt_with_grass", "ethereal:green_dirt_top", "ethereal:prairie_dirt"}, 20, 0, 11000, 10, 31000) + +-- Bucket of Milk + +minetest.register_craftitem("mobs:bucket_milk", { + description = "Bucket of Milk", + inventory_image = "mobs_bucket_milk.png", + stack_max = 1, + on_use = minetest.item_eat(8, 'bucket:bucket_empty'), +}) + +-- Cheese Wedge + +minetest.register_craftitem("mobs:cheese", { + description = "Cheese", + inventory_image = "mobs_cheese.png", + on_use = minetest.item_eat(4), +}) + +minetest.register_craft({ + type = "cooking", + output = "mobs:cheese", + recipe = "mobs:bucket_milk", + cooktime = 5, + replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}} +}) + +-- Cheese Block + +minetest.register_node("mobs:cheeseblock", { + description = "Cheese Block", + tiles = {"mobs_cheeseblock.png"}, + is_ground_content = false, + groups = {crumbly=3}, + sounds = default.node_sound_dirt_defaults() +}) + +minetest.register_craft({ + output = "mobs:cheeseblock", + recipe = { + {'mobs:cheese', 'mobs:cheese', 'mobs:cheese'}, + {'mobs:cheese', 'mobs:cheese', 'mobs:cheese'}, + {'mobs:cheese', 'mobs:cheese', 'mobs:cheese'}, + } +}) + +minetest.register_craft({ + output = "mobs:cheese 9", + recipe = { + {'mobs:cheeseblock'}, + } +}) diff --git a/mods/mobs/depends.txt b/mods/mobs/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/mods/mobs/depends.txt @@ -0,0 +1 @@ +default diff --git a/mods/mobs/dirtmonster.lua b/mods/mobs/dirtmonster.lua new file mode 100644 index 0000000..a5d76c4 --- /dev/null +++ b/mods/mobs/dirtmonster.lua @@ -0,0 +1,46 @@ +-- Dirt Monster + +mobs:register_mob("mobs:dirt_monster", { + type = "monster", + hp_min = 30, + hp_max = 30, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, + visual = "mesh", + mesh = "mobs_stone_monster.x", + textures = {"mobs_dirt_monster.png"}, + visual_size = {x=3, y=2.6}, + makes_footstep_sound = true, + view_range = 15, + walk_velocity = 1, + run_velocity = 3, + damage = 15, + drops = { + {name = "default:dirt", + chance = 1, + min = 3, + max = 5,}, + }, + armor = 100, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 2, + on_rightclick = nil, + attack_type = "dogfight", + animation = { + speed_normal = 15, + speed_run = 15, + stand_start = 0, + stand_end = 14, + walk_start = 15, + walk_end = 38, + run_start = 40, + run_end = 63, + punch_start = 40, + punch_end = 63, + }, + jump = true, + step = 0.5, + blood_texture = "default_dirt.png", +}) +mobs:register_spawn("mobs:dirt_monster", {"default:dirt_with_grass", "ethereal:gray_dirt_top"}, 3, -1, 7000, 1, 31000) diff --git a/mods/mobs/dungeonmaster.lua b/mods/mobs/dungeonmaster.lua new file mode 100644 index 0000000..693ba02 --- /dev/null +++ b/mods/mobs/dungeonmaster.lua @@ -0,0 +1,133 @@ + +-- Dungeon Master (This one spits out fireballs at you) + +mobs:register_mob("mobs:dungeon_master", { + type = "monster", + hp_min = 100, + hp_max = 100, + collisionbox = {-0.7, -0.01, -0.7, 0.7, 2.6, 0.7}, + visual = "mesh", + mesh = "mobs_dungeon_master.x", + textures = {"mobs_dungeon_master.png"}, + visual_size = {x=8, y=8}, + makes_footstep_sound = true, + view_range = 15, + walk_velocity = 1, + run_velocity = 3, + damage = 15, + drops = { + {name = "default:tree", + chance = 1, + min = 1, + max = 2,}, + + {name = "default:sapling", + chance = 20, + min = 1, + max = 2,}, + + {name = "default:mese_crystal_fragment", + chance = 1, + min = 1, + max = 3,}, + {name = "default:diamond", + chance = 4, + min = 1, + max = 4,}, + {name = "default:mese_crystal", + chance = 2, + min = 1, + max = 4,}, + {name = "default:diamond_block", + chance = 5, + min = 1, + max = 1,}, + }, + armor = 20, + drawtype = "front", + water_damage = 0, + lava_damage = 0, + light_damage = 0, + on_rightclick = nil, + attack_type = "shoot", + arrow = "mobs:fireball", + shoot_interval = 2.0, + sounds = { + attack = "mobs_fireball", + }, + animation = { + stand_start = 0, + stand_end = 19, + walk_start = 20, + walk_end = 35, + punch_start = 36, + punch_end = 48, + speed_normal = 15, + speed_run = 15, + }, + jump = true, + step = 0.5, + blood_texture = "mobs_blood.png", +}) +mobs:register_spawn("mobs:dungeon_master", {"default:stone"}, 20, -1, 2000, 2, -100) -- rnd: last number max height for spawn.. + +-- Fireball (weapon) + +mobs:register_arrow("mobs:fireball", { + visual = "sprite", + visual_size = {x=1, y=1}, + textures = {"mobs_fireball.png"}, + velocity = 10, + + -- direct hit, no fire... just plenty of pain + hit_player = function(self, player) + local s = self.object:getpos() + local p = player:getpos() + local vec = {x=s.x-p.x, y=s.y-p.y, z=s.z-p.z} + player:punch(self.object, 1.0, { + full_punch_interval=1.0, + damage_groups = {fleshy=10}, + }, vec) + end, + + -- node hit, bursts into flame (cannot blast through obsidian) + hit_node = function(self, pos, node) + + for dx=-1,1 do + for dy=-1,1 do + for dz=-1,1 do + local p = {x=pos.x+dx, y=pos.y+dy, z=pos.z+dz} + local n = minetest.env:get_node(p).name + if n ~= "default:obsidian" and n ~= "ethereal:obsidian_brick" then + if minetest.registered_nodes[n].groups.flammable then --or math.random(1, 100) <= 30 then + minetest.env:set_node(p, {name="fire:basic_flame"}) -- fire damage! + else + --minetest.env:set_node(p, {name="air"}) -- disable destruction + end + end + end + end + end + + --rnd : attack does splash damage + + local objects = minetest.get_objects_inside_radius(pos, 8) -- radius + for _,obj in ipairs(objects) do + if (obj:is_player()) then + local obj_pos = obj:getpos() + local dist = vector.distance(obj_pos, pos) + local damage = 8 + if dist > 0 then -- and obj:get_hp()>1 then -- no damage if hp<=1 + --obj:set_physics_override({speed = 0.5}); --slows player + obj:punch(obj, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy=damage}, + }) + + end + end + end + + + end +}) diff --git a/mods/mobs/init.lua b/mods/mobs/init.lua new file mode 100644 index 0000000..3821be8 --- /dev/null +++ b/mods/mobs/init.lua @@ -0,0 +1,60 @@ +-- Mob Api (18th Sep 2014) + +dofile(minetest.get_modpath("mobs").."/api.lua") + +-- Animals inc. Krupnovpavel's warthog/bee and JKmurray's chicken + +dofile(minetest.get_modpath("mobs").."/chicken.lua") +dofile(minetest.get_modpath("mobs").."/cow.lua") +dofile(minetest.get_modpath("mobs").."/rat.lua") +dofile(minetest.get_modpath("mobs").."/sheep.lua") +dofile(minetest.get_modpath("mobs").."/warthog.lua") +dofile(minetest.get_modpath("mobs").."/bee.lua") +dofile(minetest.get_modpath("mobs").."/wardog.lua") +dofile(minetest.get_modpath("mobs").."/wolf.lua") +dofile(minetest.get_modpath("mobs").."/warspider.lua") +dofile(minetest.get_modpath("mobs").."/littlespider.lua") +-- Monsters + +dofile(minetest.get_modpath("mobs").."/dirtmonster.lua") +dofile(minetest.get_modpath("mobs").."/dungeonmaster.lua") +dofile(minetest.get_modpath("mobs").."/oerkki.lua") +dofile(minetest.get_modpath("mobs").."/sandmonster.lua") +dofile(minetest.get_modpath("mobs").."/stonemonster.lua") +dofile(minetest.get_modpath("mobs").."/treemonster.lua") +dofile(minetest.get_modpath("mobs").."/yeti.lua") + +-- Zmobs by Zeg9 + +dofile(minetest.get_modpath("mobs").."/lava_flan.lua") +dofile(minetest.get_modpath("mobs").."/mese_monster.lua") + +-- Spider from Lord of the Test - https://forum.minetest.net/viewtopic.php?pid=127538 + +dofile(minetest.get_modpath("mobs").."/spider.lua") + +-- Meat & Cooked Meat + +minetest.register_craftitem("mobs:meat_raw", { + description = "Raw Meat", + inventory_image = "mobs_meat_raw.png", + on_use = minetest.item_eat(3), +}) + +minetest.register_craftitem("mobs:meat", { + description = "Meat", + inventory_image = "mobs_meat.png", + on_use = minetest.item_eat(8), +}) + +minetest.register_craft({ + type = "cooking", + output = "mobs:meat", + recipe = "mobs:meat_raw", + cooktime = 5, +}) + + +if minetest.setting_get("log_mods") then + minetest.log("action", "mobs loaded") +end diff --git a/mods/mobs/lava_flan.lua b/mods/mobs/lava_flan.lua new file mode 100644 index 0000000..572bf6a --- /dev/null +++ b/mods/mobs/lava_flan.lua @@ -0,0 +1,56 @@ + +--= Lava Flan by Zeg9 + +minetest.register_craftitem("mobs:lava_orb", { + description = "Lava orb", + inventory_image = "zmobs_lava_orb.png", + on_place = function(itemstack, placer, pointed_thing) + end, +}) + +minetest.register_alias("zmobs:lava_orb", "mobs:lava_orb") + +mobs:register_mob("mobs:lava_flan", { + type = "monster", + hp_min = 50, + hp_max = 50, + collisionbox = {-0.5, -0.5, -0.5, 0.5, 1.5, 0.5}, + visual = "mesh", + mesh = "zmobs_lava_flan.x", + textures = {"zmobs_lava_flan.png"}, + visual_size = {x=1, y=1}, + makes_footstep_sound = true, + view_range = 10, + walk_velocity = 0.5, + run_velocity = 2, + damage = 15, + drops = { + {name = "mobs:lava_orb", + chance = 15, + min = 1, + max = 1,}, + }, + light_resistant = true, + armor = 80, + drawtype = "front", + water_damage = 5, + lava_damage = 0, + light_damage = 0, + attack_type = "dogfight", + animation = { + speed_normal = 15, + speed_run = 15, + stand_start = 0, + stand_end = 8, + walk_start = 10, + walk_end = 18, + run_start = 20, + run_end = 28, + punch_start = 20, + punch_end = 28, + }, + jump = true, + step = 0.5, + blood_texture = "fire_basic_flame.png", +}) +mobs:register_spawn("mobs:lava_flan", {"default:lava_source"}, 15, -1, 1000, 3, 0) diff --git a/mods/mobs/littlespider.lua b/mods/mobs/littlespider.lua new file mode 100644 index 0000000..01f40b3 --- /dev/null +++ b/mods/mobs/littlespider.lua @@ -0,0 +1,100 @@ + +-- Glowtest Spider + +mobs:register_mob("mobs:littlespider", { + type = "warpet", + attacks_monsters = true, + hp_min = 20, + hp_max = 40, + owner = "", + collisionbox = {-0.4, -0.01, -0.4, 0.4, 0.4, 0.4}, + textures = {"mobs_warspider.png"}, + visual_size = {x=3,y=3}, + visual = "mesh", + mesh = "mobs_warspider.x", + makes_footstep_sound = true, + view_range = 1000, + monsterrange = 30, + monsterdetect = false, + walk_velocity = 4, + run_velocity = 4, + armor = 200, + damage = 3, + drops = { + {name = "farming:string", + chance = 1, + min = 1, + max = 5,}, + {name = "ethereal:crystal_spike", + chance = 15, + min = 1, + max = 2,}, + }, + light_resistant = false, + drawtype = "front", + water_damage = 5, + lava_damage = 5, + light_damage = 0, + on_rightclick = nil, + attack_type = "dogfight", + + + on_rightclick = function(self, clicker) + tool = clicker:get_wielded_item() + if tool:get_name() == "default:sign_wall" then + self.owner = clicker:get_player_name() + else + minetest.add_entity(self.object:getpos(), "mobs:littlespider") + self.object:remove() + end + end, + + animation = { + speed_normal = 20, + speed_run = 30, + stand_start = 1, + stand_end = 1, + walk_start = 20, + walk_end = 40, + run_start = 20, + run_end = 40, + punch_start = 50, + punch_end = 90, + }, + jump = true, + sounds = {}, + step = 1, +}) + +-- Cobweb + +minetest.register_node("mobs:cobweb", { + description = "Cobweb", + drawtype = "plantlike", + visual_scale = 1.1, + tiles = {"mobs_cobweb.png"}, + inventory_image = "mobs_cobweb.png", + paramtype = "light", + sunlight_propagates = true, + liquid_viscosity = 11, + liquidtype = "source", + liquid_alternative_flowing = "mobs:cobweb", + liquid_alternative_source = "mobs:cobweb", + liquid_renewable = false, + liquid_range = 0, + walkable = false, + groups = {snappy=1,liquid=3}, + drop = "farming:cotton", + sounds = default.node_sound_leaves_defaults(), +}) + +minetest.register_craft({ + output = "mobs:cobweb", + recipe = { + {"farming:string", "farming:string", "farming:string"}, + {"farming:string", "farming:string", "farming:string"}, + {"farming:string", "farming:string", "farming:string"}, + } +}) + + diff --git a/mods/mobs/mese_monster.lua b/mods/mobs/mese_monster.lua new file mode 100644 index 0000000..f653e73 --- /dev/null +++ b/mods/mobs/mese_monster.lua @@ -0,0 +1,86 @@ + +--= Mese Monster by Zeg9 + +-- 9 mese crystal fragments = 1 mese crystal +minetest.register_craft({ + output = "default:mese_crystal", + recipe = { + {"default:mese_crystal_fragment", "default:mese_crystal_fragment", "default:mese_crystal_fragment"}, + {"default:mese_crystal_fragment", "default:mese_crystal_fragment", "default:mese_crystal_fragment"}, + {"default:mese_crystal_fragment", "default:mese_crystal_fragment", "default:mese_crystal_fragment"}, + } +}) + +-- Mese Monster +mobs:register_mob("mobs:mese_monster", { + type = "monster", + hp_min = 100, + hp_max = 100, + collisionbox = {-0.5, -1.5, -0.5, 0.5, 0.5, 0.5}, + visual = "mesh", + mesh = "zmobs_mese_monster.x", + textures = {"zmobs_mese_monster.png"}, + visual_size = {x=1, y=1}, + makes_footstep_sound = true, + view_range = 10, + walk_velocity = 0.5, + run_velocity = 6, + damage = 10, + drops = { + {name = "default:mese_crystal", + chance = 1, + min = 1, + max = 6,}, + {name = "default:mese_crystal_fragment", + chance = 1, + min = 1, + max = 18,}, + }, + light_resistant = true, + armor = 70, + drawtype = "front", + water_damage = 0, + lava_damage = 0, + light_damage = 0, + attack_type = "shoot", + arrow = "mobs:mese_arrow", + shoot_interval = .5, + animation = { + speed_normal = 15, + speed_run = 15, + stand_start = 0, + stand_end = 14, + walk_start = 15, + walk_end = 38, + run_start = 40, + run_end = 63, + punch_start = 15, -- 40 + punch_end = 38, -- 63 + }, + jump = true, + step = 0.5, + blood_texture = "default_mese_crystal_fragment.png", +}) +mobs:register_spawn("mobs:mese_monster", {"default:stone"}, 6, -1, 2000, 1, -100) + +-- Mese Monster Crystal Shards (weapon) + +mobs:register_arrow("mobs:mese_arrow", { + visual = "sprite", + visual_size = {x=.5, y=.5}, + textures = {"default_mese_crystal_fragment.png"}, + velocity = 5, + + hit_player = function(self, player) + local s = self.object:getpos() + local p = player:getpos() + + player:punch(self.object, 1.0, { + full_punch_interval=1.0, + damage_groups = {fleshy=1}, + }, {x=s.x-p.x, y=s.y-p.y, z=s.z-p.z}) + end, + + hit_node = function(self, pos, node) + end +}) diff --git a/mods/mobs/models/chicken.x b/mods/mobs/models/chicken.x new file mode 100644 index 0000000..165853b --- /dev/null +++ b/mods/mobs/models/chicken.x @@ -0,0 +1,3080 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <9E415A43-7BA6-4a73-8743-B73D47E88476> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Cube { + FrameTransformMatrix { + -0.002650, 2.304885, 0.000000, 0.000000, + -1.520651,-0.001748, 0.000000, 0.000000, + 0.000000, 0.000000, 1.758614, 0.000000, + 0.354515,-0.719130,-3.788555, 1.000000;; + } + Mesh { // Cube mesh + 24; + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 0.999999; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + 0.999999;-1.000001; 1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000; 0.999999; 1.000000;, + 0.999999;-1.000001; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 0.999999;-1.000001; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 0.999999; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube normals + 6; + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube normals + MeshTextureCoords { // Cube UV coordinates + 24; + 0.187458; 0.469285;, + 0.187516; 0.718185;, + 0.093794; 0.718074;, + 0.093577; 0.469471;, + 0.187161; 0.469748;, + 0.187019; 0.717794;, + 0.093433; 0.717243;, + 0.093810; 0.469592;, + 0.187200; 0.467961;, + 0.187371; 0.281833;, + 0.093981; 0.281523;, + 0.093522; 0.467806;, + 0.000800; 0.468800;, + 0.000800; 0.718400;, + 0.094400; 0.718400;, + 0.094400; 0.472000;, + 0.096800; 0.720000;, + 0.092800; 0.472000;, + 0.186400; 0.472000;, + 0.184800; 0.721600;, + 0.281845; 0.718277;, + 0.375655; 0.718520;, + 0.375922; 0.468568;, + 0.281578; 0.467791;; + } // End of Cube UV coordinates + } // End of Cube mesh + } // End of Cube + Frame Cube_001 { + FrameTransformMatrix { + -0.002126, 1.849057, 0.000000, 0.000000, + -0.303403,-0.000349, 0.000000, 0.000000, + 0.000000, 0.000000, 1.119535, 0.000000, + -1.442512,-0.721196,-3.382473, 1.000000;; + } + Mesh { // Cube_001 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_001 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_001 normals + MeshTextureCoords { // Cube_001 UV coordinates + 24; + 0.485160; 0.577655;, + 0.499899; 0.577812;, + 0.499780; 0.449481;, + 0.484961; 0.449400;, + 0.281362; 0.717243;, + 0.374656; 0.717311;, + 0.374949; 0.469412;, + 0.281362; 0.469412;, + 0.484600; 0.577388;, + 0.499984; 0.578585;, + 0.499989; 0.449607;, + 0.484856; 0.449526;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + 0.469169; 0.591810;, + 0.483617; 0.592573;, + 0.484272; 0.407377;, + 0.469260; 0.406957;, + 0.468865; 0.593264;, + 0.484227; 0.592921;, + 0.484322; 0.406143;, + 0.468808; 0.406088;; + } // End of Cube_001 UV coordinates + } // End of Cube_001 mesh + } // End of Cube_001 + Frame Cube_002 { + FrameTransformMatrix { + -0.002126, 1.849057, 0.000000, 0.000000, + -0.303403,-0.000349, 0.000000, 0.000000, + 0.000000, 0.000000, 1.119535, 0.000000, + 2.179102,-0.717032,-3.382473, 1.000000;; + } + Mesh { // Cube_002 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_002 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_002 normals + MeshTextureCoords { // Cube_002 UV coordinates + 24; + 0.500148; 0.449045;, + 0.500148; 0.578125;, + 0.484676; 0.577911;, + 0.484656; 0.449178;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.500033; 0.577792;, + 0.500033; 0.449334;, + 0.484663; 0.449334;, + 0.484556; 0.577385;, + 0.094033; 0.468841;, + 0.000081; 0.469386;, + 0.000574; 0.717044;, + 0.094516; 0.717044;, + 0.484740; 0.406723;, + 0.484658; 0.592301;, + 0.469486; 0.591518;, + 0.469334; 0.407152;, + 0.484410; 0.406336;, + 0.484289; 0.592994;, + 0.468918; 0.593342;, + 0.468958; 0.406362;; + } // End of Cube_002 UV coordinates + } // End of Cube_002 mesh + } // End of Cube_002 + Frame Cube_003 { + FrameTransformMatrix { + -0.000956, 0.831443, 0.000000, 0.000000, + -0.926812,-0.001065, 0.000000, 0.000000, + 0.000000, 0.000000, 1.022895, 0.000000, + 0.351826, 1.619185,-1.628760, 1.000000;; + } + Mesh { // Cube_003 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_003 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_003 normals + MeshTextureCoords { // Cube_003 UV coordinates + 24; + 0.154404; 0.218376;, + 0.218735; 0.218625;, + 0.218713; 0.093714;, + 0.154376; 0.093663;, + 0.152629; 0.093922;, + 0.109379; 0.093834;, + 0.109412; 0.265530;, + 0.152965; 0.264233;, + 0.046899; 0.093794;, + 0.109429; 0.093766;, + 0.109563; 0.265560;, + 0.046909; 0.265601;, + 0.046918; 0.093830;, + -0.000083; 0.093979;, + 0.000136; 0.216677;, + 0.046632; 0.264942;, + 0.151039; 0.211523;, + 0.217283; 0.215363;, + 0.218563; 0.094720;, + 0.151039; 0.094720;, + 0.046938; 0.093408;, + 0.109453; 0.093376;, + 0.109485; 0.000000;, + 0.046980;-0.000074;; + } // End of Cube_003 UV coordinates + } // End of Cube_003 mesh + } // End of Cube_003 + Frame Cube_004 { + FrameTransformMatrix { + -0.000543, 0.472154, 0.000000, 0.000000, + -0.647698,-0.000745, 0.000000, 0.000000, + 0.000000, 0.000000, 0.278316, 0.000000, + 0.350341, 2.911684,-1.628760, 1.000000;; + } + Mesh { // Cube_004 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_004 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_004 normals + MeshTextureCoords { // Cube_004 UV coordinates + 24; + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + 0.314239; 0.121923;, + 0.352962; 0.121923;, + 0.352322; 0.061440;, + 0.314239; 0.061440;, + 0.219852; 0.122804;, + 0.371773; 0.121524;, + 0.372444; 0.063539;, + 0.221147; 0.063570;, + 0.219519; 0.120643;, + 0.251843; 0.121923;, + 0.251843; 0.061440;, + 0.220159; 0.061440;, + 0.250938; 0.123492;, + 0.313419; 0.123189;, + 0.313343; 0.062044;, + 0.250674; 0.062914;, + 0.250879; 0.118083;, + 0.312002; 0.125763;, + 0.312002; 0.000000;, + 0.250879; 0.001280;; + } // End of Cube_004 UV coordinates + } // End of Cube_004 mesh + } // End of Cube_004 + Frame Cube_005 { + FrameTransformMatrix { + -0.000233, 0.177148,-0.083175, 0.000000, + -0.182964,-0.000199, 0.000089, 0.000000, + -0.000018, 0.331883, 0.706854, 0.000000, + -0.444974,-0.897076,-6.140595, 1.000000;; + } + Mesh { // Cube_005 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_005 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_005 normals + MeshTextureCoords { // Cube_005 UV coordinates + 24; + 0.562545; 0.249274;, + 0.578051; 0.249274;, + 0.578251; 0.093826;, + 0.562680; 0.093846;, + 0.562741; 0.248997;, + 0.578417; 0.249333;, + 0.578081; 0.093809;, + 0.562925; 0.093657;, + 0.562593; 0.249811;, + 0.578251; 0.249543;, + 0.578289; 0.093385;, + 0.562776; 0.093309;, + 0.563034; 0.249832;, + 0.578271; 0.249907;, + 0.578337; 0.093826;, + 0.562680; 0.093481;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;; + } // End of Cube_005 UV coordinates + } // End of Cube_005 mesh + } // End of Cube_005 + Frame Cube_006 { + FrameTransformMatrix { + -0.001204, 0.913408,-0.428865, 0.000000, + -0.367400,-0.000400, 0.000179, 0.000000, + -0.000001, 0.019120, 0.040723, 0.000000, + -0.448732,-0.894848,-7.016967, 1.000000;; + } + Mesh { // Cube_006 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_006 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_006 normals + MeshTextureCoords { // Cube_006 UV coordinates + 24; + 0.433591; 0.105473;, + 0.472659; 0.101567;, + 0.482425; 0.031250;, + 0.429685; 0.023437;, + 0.458646; 0.079413;, + 0.484107; 0.077316;, + 0.482389; 0.004482;, + 0.459629; 0.002360;, + 0.433591; 0.117192;, + 0.468753; 0.128911;, + 0.480471; 0.023437;, + 0.429685; 0.019531;, + 0.423826; 0.109380;, + 0.494143; 0.121098;, + 0.494143; 0.031250;, + 0.429685; 0.015625;, + 0.500093; 0.000042;, + 0.547074; 0.000013;, + 0.546814; 0.093790;, + 0.499973; 0.093907;, + 0.499950; 0.093802;, + 0.546898; 0.093571;, + 0.547061; 0.000207;, + 0.499950; 0.000267;; + } // End of Cube_006 UV coordinates + } // End of Cube_006 mesh + } // End of Cube_006 + Frame Cube_007 { + FrameTransformMatrix { + -0.001207, 0.908440, 0.439292, 0.000000, + -0.367400,-0.000398,-0.000186, 0.000000, + 0.000001,-0.019585, 0.040501, 0.000000, + 0.982119, 0.101678,-6.751587, 1.000000;; + } + Mesh { // Cube_007 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_007 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_007 normals + MeshTextureCoords { // Cube_007 UV coordinates + 24; + 0.428123; 0.115630;, + 0.468753; 0.121880;, + 0.481253; 0.015625;, + 0.421873; 0.018750;, + 0.428123; 0.103130;, + 0.470316; 0.125005;, + 0.478128; 0.012500;, + 0.423435; 0.009375;, + 0.437497; 0.081255;, + 0.460941; 0.078130;, + 0.475003; 0.018750;, + 0.431248; 0.018750;, + 0.445310; 0.071880;, + 0.485940; 0.071880;, + 0.478128; 0.028125;, + 0.437497; 0.021875;, + 0.500130; 0.000650;, + 0.546959; 0.000394;, + 0.547322; 0.093483;, + 0.500171; 0.093483;, + 0.500136; 0.093746;, + 0.547061; 0.093723;, + 0.547233;-0.000009;, + 0.500190;-0.000074;; + } // End of Cube_007 UV coordinates + } // End of Cube_007 mesh + } // End of Cube_007 + Frame Cube_008 { + FrameTransformMatrix { + -0.000234, 0.176184, 0.085197, 0.000000, + -0.182964,-0.000198,-0.000093, 0.000000, + 0.000012,-0.339952, 0.703009, 0.000000, + 0.985878,-0.553180,-6.165302, 1.000000;; + } + Mesh { // Cube_008 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_008 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_008 normals + MeshTextureCoords { // Cube_008 UV coordinates + 24; + 0.562674; 0.249014;, + 0.577997; 0.249551;, + 0.578031; 0.093826;, + 0.562743; 0.093879;, + 0.562724; 0.249635;, + 0.578307; 0.249382;, + 0.577962; 0.093849;, + 0.562964; 0.094000;, + 0.562750; 0.248913;, + 0.578375; 0.249266;, + 0.578138; 0.093987;, + 0.562649; 0.093825;, + 0.563014; 0.248270;, + 0.578194; 0.248189;, + 0.577523; 0.093815;, + 0.563011; 0.093717;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.560998; 0.086000;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.559998; 0.090000;; + } // End of Cube_008 UV coordinates + } // End of Cube_008 mesh + } // End of Cube_008 +} // End of Root + +AnimationSet Global { + Animation { + {Cube} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 2;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 3;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 4;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 5;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 6;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 7;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 8;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 9;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 10;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 11;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 12;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 13;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 14;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 15;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 16;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 17;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 18;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 19;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 20;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 21;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 22;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 23;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 24;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 25;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 26;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 27;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 28;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 29;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 30;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 31;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 32;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 33;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 34;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 35;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 36;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 37;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 38;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 39;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 40;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 41;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 42;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 43;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 44;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 45;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 46;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 47;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 48;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 49;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 50;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 51;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 52;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 53;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 54;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 55;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 56;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 57;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 58;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 59;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 60;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 61;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 62;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 63;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 64;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 65;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 66;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 67;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 68;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 69;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 70;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 71;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 72;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 73;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 74;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 75;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 76;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 77;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 78;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 79;4;-0.706700, 0.000000, 0.000000, 0.707513;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 2.304886, 1.520652, 1.758614;;, + 1;3; 2.304886, 1.520652, 1.758614;;, + 2;3; 2.304886, 1.520652, 1.758614;;, + 3;3; 2.304886, 1.520652, 1.758614;;, + 4;3; 2.304886, 1.520652, 1.758614;;, + 5;3; 2.304886, 1.520652, 1.758614;;, + 6;3; 2.304886, 1.520652, 1.758614;;, + 7;3; 2.304886, 1.520652, 1.758614;;, + 8;3; 2.304886, 1.520652, 1.758614;;, + 9;3; 2.304886, 1.520652, 1.758614;;, + 10;3; 2.304886, 1.520652, 1.758614;;, + 11;3; 2.304886, 1.520652, 1.758614;;, + 12;3; 2.304886, 1.520652, 1.758614;;, + 13;3; 2.304886, 1.520652, 1.758614;;, + 14;3; 2.304886, 1.520652, 1.758614;;, + 15;3; 2.304886, 1.520652, 1.758614;;, + 16;3; 2.304886, 1.520652, 1.758614;;, + 17;3; 2.304886, 1.520652, 1.758614;;, + 18;3; 2.304886, 1.520652, 1.758614;;, + 19;3; 2.304886, 1.520652, 1.758614;;, + 20;3; 2.304886, 1.520652, 1.758614;;, + 21;3; 2.304886, 1.520652, 1.758614;;, + 22;3; 2.304886, 1.520652, 1.758614;;, + 23;3; 2.304886, 1.520652, 1.758614;;, + 24;3; 2.304886, 1.520652, 1.758614;;, + 25;3; 2.304886, 1.520652, 1.758614;;, + 26;3; 2.304886, 1.520652, 1.758614;;, + 27;3; 2.304886, 1.520652, 1.758614;;, + 28;3; 2.304886, 1.520652, 1.758614;;, + 29;3; 2.304886, 1.520652, 1.758614;;, + 30;3; 2.304886, 1.520652, 1.758614;;, + 31;3; 2.304886, 1.520652, 1.758614;;, + 32;3; 2.304886, 1.520652, 1.758614;;, + 33;3; 2.304886, 1.520652, 1.758614;;, + 34;3; 2.304886, 1.520652, 1.758614;;, + 35;3; 2.304886, 1.520652, 1.758614;;, + 36;3; 2.304886, 1.520652, 1.758614;;, + 37;3; 2.304886, 1.520652, 1.758614;;, + 38;3; 2.304886, 1.520652, 1.758614;;, + 39;3; 2.304886, 1.520652, 1.758614;;, + 40;3; 2.304886, 1.520652, 1.758614;;, + 41;3; 2.304886, 1.520652, 1.758614;;, + 42;3; 2.304886, 1.520652, 1.758614;;, + 43;3; 2.304886, 1.520652, 1.758614;;, + 44;3; 2.304886, 1.520652, 1.758614;;, + 45;3; 2.304886, 1.520652, 1.758614;;, + 46;3; 2.304886, 1.520652, 1.758614;;, + 47;3; 2.304886, 1.520652, 1.758614;;, + 48;3; 2.304886, 1.520652, 1.758614;;, + 49;3; 2.304886, 1.520652, 1.758614;;, + 50;3; 2.304886, 1.520652, 1.758614;;, + 51;3; 2.304886, 1.520652, 1.758614;;, + 52;3; 2.304886, 1.520652, 1.758614;;, + 53;3; 2.304886, 1.520652, 1.758614;;, + 54;3; 2.304886, 1.520652, 1.758614;;, + 55;3; 2.304886, 1.520652, 1.758614;;, + 56;3; 2.304886, 1.520652, 1.758614;;, + 57;3; 2.304886, 1.520652, 1.758614;;, + 58;3; 2.304886, 1.520652, 1.758614;;, + 59;3; 2.304886, 1.520652, 1.758614;;, + 60;3; 2.304886, 1.520652, 1.758614;;, + 61;3; 2.304886, 1.520652, 1.758614;;, + 62;3; 2.304886, 1.520652, 1.758614;;, + 63;3; 2.304886, 1.520652, 1.758614;;, + 64;3; 2.304886, 1.520652, 1.758614;;, + 65;3; 2.304886, 1.520652, 1.758614;;, + 66;3; 2.304886, 1.520652, 1.758614;;, + 67;3; 2.304886, 1.520652, 1.758614;;, + 68;3; 2.304886, 1.520652, 1.758614;;, + 69;3; 2.304886, 1.520652, 1.758614;;, + 70;3; 2.304886, 1.520652, 1.758614;;, + 71;3; 2.304886, 1.520652, 1.758614;;, + 72;3; 2.304886, 1.520652, 1.758614;;, + 73;3; 2.304886, 1.520652, 1.758614;;, + 74;3; 2.304886, 1.520652, 1.758614;;, + 75;3; 2.304886, 1.520652, 1.758614;;, + 76;3; 2.304886, 1.520652, 1.758614;;, + 77;3; 2.304886, 1.520652, 1.758614;;, + 78;3; 2.304886, 1.520652, 1.758614;;, + 79;3; 2.304886, 1.520652, 1.758614;;; + } + AnimationKey { // Position + 2; + 80; + 0;3; 0.354515,-0.719130,-3.788555;;, + 1;3; 0.354515,-0.719130,-3.788555;;, + 2;3; 0.354515,-0.719130,-3.788555;;, + 3;3; 0.354515,-0.719130,-3.788555;;, + 4;3; 0.354515,-0.719130,-3.788555;;, + 5;3; 0.354515,-0.719130,-3.788555;;, + 6;3; 0.354515,-0.719130,-3.788555;;, + 7;3; 0.354515,-0.719130,-3.788555;;, + 8;3; 0.354515,-0.719130,-3.788555;;, + 9;3; 0.354515,-0.719130,-3.788555;;, + 10;3; 0.354515,-0.719130,-3.788555;;, + 11;3; 0.354515,-0.719130,-3.788555;;, + 12;3; 0.354515,-0.719130,-3.788555;;, + 13;3; 0.354515,-0.719130,-3.788555;;, + 14;3; 0.354515,-0.719130,-3.788555;;, + 15;3; 0.354515,-0.719130,-3.788555;;, + 16;3; 0.354515,-0.719130,-3.788555;;, + 17;3; 0.354515,-0.719130,-3.788555;;, + 18;3; 0.354515,-0.719130,-3.788555;;, + 19;3; 0.354515,-0.719130,-3.788555;;, + 20;3; 0.354515,-0.719130,-3.788555;;, + 21;3; 0.354515,-0.719130,-3.788555;;, + 22;3; 0.354515,-0.719130,-3.788555;;, + 23;3; 0.354515,-0.719130,-3.788555;;, + 24;3; 0.354515,-0.719130,-3.788555;;, + 25;3; 0.354515,-0.719130,-3.788555;;, + 26;3; 0.354515,-0.719130,-3.788555;;, + 27;3; 0.354515,-0.719130,-3.788555;;, + 28;3; 0.354515,-0.719130,-3.788555;;, + 29;3; 0.354515,-0.719130,-3.788555;;, + 30;3; 0.354515,-0.719130,-3.788555;;, + 31;3; 0.354515,-0.719130,-3.788555;;, + 32;3; 0.354515,-0.719130,-3.788555;;, + 33;3; 0.354515,-0.719130,-3.788555;;, + 34;3; 0.354515,-0.719130,-3.788555;;, + 35;3; 0.354515,-0.719130,-3.788555;;, + 36;3; 0.354515,-0.719130,-3.788555;;, + 37;3; 0.354515,-0.719130,-3.788555;;, + 38;3; 0.354515,-0.719130,-3.788555;;, + 39;3; 0.354515,-0.719130,-3.788555;;, + 40;3; 0.354515,-0.719130,-3.788555;;, + 41;3; 0.354515,-0.719130,-3.788555;;, + 42;3; 0.354515,-0.719130,-3.788555;;, + 43;3; 0.354515,-0.719130,-3.788555;;, + 44;3; 0.354515,-0.719130,-3.788555;;, + 45;3; 0.354515,-0.719130,-3.788555;;, + 46;3; 0.354515,-0.719130,-3.788555;;, + 47;3; 0.354515,-0.719130,-3.788555;;, + 48;3; 0.354515,-0.719130,-3.788555;;, + 49;3; 0.354515,-0.719130,-3.788555;;, + 50;3; 0.354515,-0.719130,-3.788555;;, + 51;3; 0.354515,-0.719130,-3.788555;;, + 52;3; 0.354515,-0.719130,-3.788555;;, + 53;3; 0.354515,-0.719130,-3.788555;;, + 54;3; 0.354515,-0.719130,-3.788555;;, + 55;3; 0.354515,-0.719130,-3.788555;;, + 56;3; 0.354515,-0.719130,-3.788555;;, + 57;3; 0.354515,-0.719130,-3.788555;;, + 58;3; 0.354515,-0.719130,-3.788555;;, + 59;3; 0.354515,-0.719130,-3.788555;;, + 60;3; 0.354515,-0.719130,-3.788555;;, + 61;3; 0.354515,-0.719130,-3.788555;;, + 62;3; 0.354515,-0.719130,-3.788555;;, + 63;3; 0.354515,-0.719130,-3.788555;;, + 64;3; 0.354515,-0.719130,-3.788555;;, + 65;3; 0.354515,-0.719130,-3.788555;;, + 66;3; 0.354515,-0.719130,-3.788555;;, + 67;3; 0.354515,-0.719130,-3.788555;;, + 68;3; 0.354515,-0.719130,-3.788555;;, + 69;3; 0.354515,-0.719130,-3.788555;;, + 70;3; 0.354515,-0.719130,-3.788555;;, + 71;3; 0.354515,-0.719130,-3.788555;;, + 72;3; 0.354515,-0.719130,-3.788555;;, + 73;3; 0.354515,-0.719130,-3.788555;;, + 74;3; 0.354515,-0.719130,-3.788555;;, + 75;3; 0.354515,-0.719130,-3.788555;;, + 76;3; 0.354515,-0.719130,-3.788555;;, + 77;3; 0.354515,-0.719130,-3.788555;;, + 78;3; 0.354515,-0.719130,-3.788555;;, + 79;3; 0.354515,-0.719130,-3.788555;;; + } + } + Animation { + {Cube_001} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 2;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 3;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 4;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 5;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 6;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 7;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 8;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 9;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 10;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 11;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 12;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 13;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 14;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 15;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 16;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 17;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 18;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 19;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 20;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 21;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 22;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 23;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 24;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 25;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 26;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 27;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 28;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 29;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 30;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 31;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 32;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 33;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 34;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 35;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 36;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 37;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 38;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 39;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 40;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 41;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 42;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 43;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 44;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 45;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 46;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 47;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 48;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 49;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 50;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 51;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 52;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 53;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 54;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 55;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 56;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 57;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 58;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 59;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 60;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 61;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 62;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 63;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 64;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 65;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 66;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 67;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 68;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 69;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 70;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 71;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 72;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 73;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 74;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 75;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 76;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 77;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 78;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 79;4;-0.706700, 0.000000, 0.000000, 0.707513;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 1.849058, 0.303403, 1.119535;;, + 1;3; 1.849058, 0.303403, 1.119535;;, + 2;3; 1.849058, 0.303403, 1.119535;;, + 3;3; 1.849058, 0.303403, 1.119535;;, + 4;3; 1.849058, 0.303403, 1.119535;;, + 5;3; 1.849058, 0.303403, 1.119535;;, + 6;3; 1.849058, 0.303403, 1.119535;;, + 7;3; 1.849058, 0.303403, 1.119535;;, + 8;3; 1.849058, 0.303403, 1.119535;;, + 9;3; 1.849058, 0.303403, 1.119535;;, + 10;3; 1.849058, 0.303403, 1.119535;;, + 11;3; 1.849058, 0.303403, 1.119535;;, + 12;3; 1.849058, 0.303403, 1.119535;;, + 13;3; 1.849058, 0.303403, 1.119535;;, + 14;3; 1.849058, 0.303403, 1.119535;;, + 15;3; 1.849058, 0.303403, 1.119535;;, + 16;3; 1.849058, 0.303403, 1.119535;;, + 17;3; 1.849058, 0.303403, 1.119535;;, + 18;3; 1.849058, 0.303403, 1.119535;;, + 19;3; 1.849058, 0.303403, 1.119535;;, + 20;3; 1.849058, 0.303403, 1.119535;;, + 21;3; 1.849058, 0.303403, 1.119535;;, + 22;3; 1.849058, 0.303403, 1.119535;;, + 23;3; 1.849058, 0.303403, 1.119535;;, + 24;3; 1.849058, 0.303403, 1.119535;;, + 25;3; 1.849058, 0.303403, 1.119535;;, + 26;3; 1.849058, 0.303403, 1.119535;;, + 27;3; 1.849058, 0.303403, 1.119535;;, + 28;3; 1.849058, 0.303403, 1.119535;;, + 29;3; 1.849058, 0.303403, 1.119535;;, + 30;3; 1.849058, 0.303403, 1.119535;;, + 31;3; 1.849058, 0.303403, 1.119535;;, + 32;3; 1.849058, 0.303403, 1.119535;;, + 33;3; 1.849058, 0.303403, 1.119535;;, + 34;3; 1.849058, 0.303403, 1.119535;;, + 35;3; 1.849058, 0.303403, 1.119535;;, + 36;3; 1.849058, 0.303403, 1.119535;;, + 37;3; 1.849058, 0.303403, 1.119535;;, + 38;3; 1.849058, 0.303403, 1.119535;;, + 39;3; 1.849058, 0.303403, 1.119535;;, + 40;3; 1.849058, 0.303403, 1.119535;;, + 41;3; 1.849058, 0.303403, 1.119535;;, + 42;3; 1.849058, 0.303403, 1.119535;;, + 43;3; 1.849058, 0.303403, 1.119535;;, + 44;3; 1.849058, 0.303403, 1.119535;;, + 45;3; 1.849058, 0.303403, 1.119535;;, + 46;3; 1.849058, 0.303403, 1.119535;;, + 47;3; 1.849058, 0.303403, 1.119535;;, + 48;3; 1.849058, 0.303403, 1.119535;;, + 49;3; 1.849058, 0.303403, 1.119535;;, + 50;3; 1.849058, 0.303403, 1.119535;;, + 51;3; 1.849058, 0.303403, 1.119535;;, + 52;3; 1.849058, 0.303403, 1.119535;;, + 53;3; 1.849058, 0.303403, 1.119535;;, + 54;3; 1.849058, 0.303403, 1.119535;;, + 55;3; 1.849058, 0.303403, 1.119535;;, + 56;3; 1.849058, 0.303403, 1.119535;;, + 57;3; 1.849058, 0.303403, 1.119535;;, + 58;3; 1.849058, 0.303403, 1.119535;;, + 59;3; 1.849058, 0.303403, 1.119535;;, + 60;3; 1.849058, 0.303403, 1.119535;;, + 61;3; 1.849058, 0.303403, 1.119535;;, + 62;3; 1.849058, 0.303403, 1.119535;;, + 63;3; 1.849058, 0.303403, 1.119535;;, + 64;3; 1.849058, 0.303403, 1.119535;;, + 65;3; 1.849058, 0.303403, 1.119535;;, + 66;3; 1.849058, 0.303403, 1.119535;;, + 67;3; 1.849058, 0.303403, 1.119535;;, + 68;3; 1.849058, 0.303403, 1.119535;;, + 69;3; 1.849058, 0.303403, 1.119535;;, + 70;3; 1.849058, 0.303403, 1.119535;;, + 71;3; 1.849058, 0.303403, 1.119535;;, + 72;3; 1.849058, 0.303403, 1.119535;;, + 73;3; 1.849058, 0.303403, 1.119535;;, + 74;3; 1.849058, 0.303403, 1.119535;;, + 75;3; 1.849058, 0.303403, 1.119535;;, + 76;3; 1.849058, 0.303403, 1.119535;;, + 77;3; 1.849058, 0.303403, 1.119535;;, + 78;3; 1.849058, 0.303403, 1.119535;;, + 79;3; 1.849058, 0.303403, 1.119535;;; + } + AnimationKey { // Position + 2; + 80; + 0;3;-1.442512,-0.721196,-3.382473;;, + 1;3;-1.442512,-0.721196,-3.382473;;, + 2;3;-1.442512,-0.721196,-3.382473;;, + 3;3;-1.442512,-0.721196,-3.382473;;, + 4;3;-1.442512,-0.721196,-3.382473;;, + 5;3;-1.442512,-0.721196,-3.382473;;, + 6;3;-1.442512,-0.721196,-3.382473;;, + 7;3;-1.442512,-0.721196,-3.382473;;, + 8;3;-1.442512,-0.721196,-3.382473;;, + 9;3;-1.442512,-0.721196,-3.382473;;, + 10;3;-1.442512,-0.721196,-3.382473;;, + 11;3;-1.442512,-0.721196,-3.382473;;, + 12;3;-1.442512,-0.721196,-3.382473;;, + 13;3;-1.442512,-0.721196,-3.382473;;, + 14;3;-1.442512,-0.721196,-3.382473;;, + 15;3;-1.442512,-0.721196,-3.382473;;, + 16;3;-1.442512,-0.721196,-3.382473;;, + 17;3;-1.442512,-0.721196,-3.382473;;, + 18;3;-1.442512,-0.721196,-3.382473;;, + 19;3;-1.442512,-0.721196,-3.382473;;, + 20;3;-1.442512,-0.721196,-3.382473;;, + 21;3;-1.442512,-0.721196,-3.382473;;, + 22;3;-1.442512,-0.721196,-3.382473;;, + 23;3;-1.442512,-0.721196,-3.382473;;, + 24;3;-1.442512,-0.721196,-3.382473;;, + 25;3;-1.442512,-0.721196,-3.382473;;, + 26;3;-1.442512,-0.721196,-3.382473;;, + 27;3;-1.442512,-0.721196,-3.382473;;, + 28;3;-1.442512,-0.721196,-3.382473;;, + 29;3;-1.442512,-0.721196,-3.382473;;, + 30;3;-1.442512,-0.721196,-3.382473;;, + 31;3;-1.442512,-0.721196,-3.382473;;, + 32;3;-1.442512,-0.721196,-3.382473;;, + 33;3;-1.442512,-0.721196,-3.382473;;, + 34;3;-1.442512,-0.721196,-3.382473;;, + 35;3;-1.442512,-0.721196,-3.382473;;, + 36;3;-1.442512,-0.721196,-3.382473;;, + 37;3;-1.442512,-0.721196,-3.382473;;, + 38;3;-1.442512,-0.721196,-3.382473;;, + 39;3;-1.442512,-0.721196,-3.382473;;, + 40;3;-1.442512,-0.721196,-3.382473;;, + 41;3;-1.442512,-0.721196,-3.382473;;, + 42;3;-1.442512,-0.721196,-3.382473;;, + 43;3;-1.442512,-0.721196,-3.382473;;, + 44;3;-1.442512,-0.721196,-3.382473;;, + 45;3;-1.442512,-0.721196,-3.382473;;, + 46;3;-1.442512,-0.721196,-3.382473;;, + 47;3;-1.442512,-0.721196,-3.382473;;, + 48;3;-1.442512,-0.721196,-3.382473;;, + 49;3;-1.442512,-0.721196,-3.382473;;, + 50;3;-1.442512,-0.721196,-3.382473;;, + 51;3;-1.442512,-0.721196,-3.382473;;, + 52;3;-1.442512,-0.721196,-3.382473;;, + 53;3;-1.442512,-0.721196,-3.382473;;, + 54;3;-1.442512,-0.721196,-3.382473;;, + 55;3;-1.442512,-0.721196,-3.382473;;, + 56;3;-1.442512,-0.721196,-3.382473;;, + 57;3;-1.442512,-0.721196,-3.382473;;, + 58;3;-1.442512,-0.721196,-3.382473;;, + 59;3;-1.442512,-0.721196,-3.382473;;, + 60;3;-1.442512,-0.721196,-3.382473;;, + 61;3;-1.442512,-0.721196,-3.382473;;, + 62;3;-1.442512,-0.721196,-3.382473;;, + 63;3;-1.442512,-0.721196,-3.382473;;, + 64;3;-1.442512,-0.721196,-3.382473;;, + 65;3;-1.442512,-0.721196,-3.382473;;, + 66;3;-1.442512,-0.721196,-3.382473;;, + 67;3;-1.442512,-0.721196,-3.382473;;, + 68;3;-1.442512,-0.721196,-3.382473;;, + 69;3;-1.442512,-0.721196,-3.382473;;, + 70;3;-1.442512,-0.721196,-3.382473;;, + 71;3;-1.442512,-0.721196,-3.382473;;, + 72;3;-1.442512,-0.721196,-3.382473;;, + 73;3;-1.442512,-0.721196,-3.382473;;, + 74;3;-1.442512,-0.721196,-3.382473;;, + 75;3;-1.442512,-0.721196,-3.382473;;, + 76;3;-1.442512,-0.721196,-3.382473;;, + 77;3;-1.442512,-0.721196,-3.382473;;, + 78;3;-1.442512,-0.721196,-3.382473;;, + 79;3;-1.442512,-0.721196,-3.382473;;; + } + } + Animation { + {Cube_002} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 2;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 3;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 4;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 5;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 6;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 7;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 8;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 9;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 10;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 11;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 12;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 13;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 14;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 15;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 16;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 17;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 18;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 19;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 20;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 21;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 22;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 23;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 24;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 25;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 26;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 27;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 28;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 29;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 30;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 31;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 32;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 33;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 34;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 35;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 36;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 37;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 38;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 39;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 40;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 41;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 42;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 43;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 44;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 45;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 46;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 47;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 48;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 49;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 50;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 51;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 52;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 53;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 54;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 55;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 56;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 57;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 58;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 59;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 60;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 61;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 62;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 63;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 64;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 65;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 66;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 67;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 68;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 69;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 70;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 71;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 72;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 73;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 74;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 75;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 76;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 77;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 78;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 79;4;-0.706700, 0.000000, 0.000000, 0.707513;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 1.849058, 0.303403, 1.119535;;, + 1;3; 1.849058, 0.303403, 1.119535;;, + 2;3; 1.849058, 0.303403, 1.119535;;, + 3;3; 1.849058, 0.303403, 1.119535;;, + 4;3; 1.849058, 0.303403, 1.119535;;, + 5;3; 1.849058, 0.303403, 1.119535;;, + 6;3; 1.849058, 0.303403, 1.119535;;, + 7;3; 1.849058, 0.303403, 1.119535;;, + 8;3; 1.849058, 0.303403, 1.119535;;, + 9;3; 1.849058, 0.303403, 1.119535;;, + 10;3; 1.849058, 0.303403, 1.119535;;, + 11;3; 1.849058, 0.303403, 1.119535;;, + 12;3; 1.849058, 0.303403, 1.119535;;, + 13;3; 1.849058, 0.303403, 1.119535;;, + 14;3; 1.849058, 0.303403, 1.119535;;, + 15;3; 1.849058, 0.303403, 1.119535;;, + 16;3; 1.849058, 0.303403, 1.119535;;, + 17;3; 1.849058, 0.303403, 1.119535;;, + 18;3; 1.849058, 0.303403, 1.119535;;, + 19;3; 1.849058, 0.303403, 1.119535;;, + 20;3; 1.849058, 0.303403, 1.119535;;, + 21;3; 1.849058, 0.303403, 1.119535;;, + 22;3; 1.849058, 0.303403, 1.119535;;, + 23;3; 1.849058, 0.303403, 1.119535;;, + 24;3; 1.849058, 0.303403, 1.119535;;, + 25;3; 1.849058, 0.303403, 1.119535;;, + 26;3; 1.849058, 0.303403, 1.119535;;, + 27;3; 1.849058, 0.303403, 1.119535;;, + 28;3; 1.849058, 0.303403, 1.119535;;, + 29;3; 1.849058, 0.303403, 1.119535;;, + 30;3; 1.849058, 0.303403, 1.119535;;, + 31;3; 1.849058, 0.303403, 1.119535;;, + 32;3; 1.849058, 0.303403, 1.119535;;, + 33;3; 1.849058, 0.303403, 1.119535;;, + 34;3; 1.849058, 0.303403, 1.119535;;, + 35;3; 1.849058, 0.303403, 1.119535;;, + 36;3; 1.849058, 0.303403, 1.119535;;, + 37;3; 1.849058, 0.303403, 1.119535;;, + 38;3; 1.849058, 0.303403, 1.119535;;, + 39;3; 1.849058, 0.303403, 1.119535;;, + 40;3; 1.849058, 0.303403, 1.119535;;, + 41;3; 1.849058, 0.303403, 1.119535;;, + 42;3; 1.849058, 0.303403, 1.119535;;, + 43;3; 1.849058, 0.303403, 1.119535;;, + 44;3; 1.849058, 0.303403, 1.119535;;, + 45;3; 1.849058, 0.303403, 1.119535;;, + 46;3; 1.849058, 0.303403, 1.119535;;, + 47;3; 1.849058, 0.303403, 1.119535;;, + 48;3; 1.849058, 0.303403, 1.119535;;, + 49;3; 1.849058, 0.303403, 1.119535;;, + 50;3; 1.849058, 0.303403, 1.119535;;, + 51;3; 1.849058, 0.303403, 1.119535;;, + 52;3; 1.849058, 0.303403, 1.119535;;, + 53;3; 1.849058, 0.303403, 1.119535;;, + 54;3; 1.849058, 0.303403, 1.119535;;, + 55;3; 1.849058, 0.303403, 1.119535;;, + 56;3; 1.849058, 0.303403, 1.119535;;, + 57;3; 1.849058, 0.303403, 1.119535;;, + 58;3; 1.849058, 0.303403, 1.119535;;, + 59;3; 1.849058, 0.303403, 1.119535;;, + 60;3; 1.849058, 0.303403, 1.119535;;, + 61;3; 1.849058, 0.303403, 1.119535;;, + 62;3; 1.849058, 0.303403, 1.119535;;, + 63;3; 1.849058, 0.303403, 1.119535;;, + 64;3; 1.849058, 0.303403, 1.119535;;, + 65;3; 1.849058, 0.303403, 1.119535;;, + 66;3; 1.849058, 0.303403, 1.119535;;, + 67;3; 1.849058, 0.303403, 1.119535;;, + 68;3; 1.849058, 0.303403, 1.119535;;, + 69;3; 1.849058, 0.303403, 1.119535;;, + 70;3; 1.849058, 0.303403, 1.119535;;, + 71;3; 1.849058, 0.303403, 1.119535;;, + 72;3; 1.849058, 0.303403, 1.119535;;, + 73;3; 1.849058, 0.303403, 1.119535;;, + 74;3; 1.849058, 0.303403, 1.119535;;, + 75;3; 1.849058, 0.303403, 1.119535;;, + 76;3; 1.849058, 0.303403, 1.119535;;, + 77;3; 1.849058, 0.303403, 1.119535;;, + 78;3; 1.849058, 0.303403, 1.119535;;, + 79;3; 1.849058, 0.303403, 1.119535;;; + } + AnimationKey { // Position + 2; + 80; + 0;3; 2.179102,-0.717032,-3.382473;;, + 1;3; 2.179102,-0.717032,-3.382473;;, + 2;3; 2.179102,-0.717032,-3.382473;;, + 3;3; 2.179102,-0.717032,-3.382473;;, + 4;3; 2.179102,-0.717032,-3.382473;;, + 5;3; 2.179102,-0.717032,-3.382473;;, + 6;3; 2.179102,-0.717032,-3.382473;;, + 7;3; 2.179102,-0.717032,-3.382473;;, + 8;3; 2.179102,-0.717032,-3.382473;;, + 9;3; 2.179102,-0.717032,-3.382473;;, + 10;3; 2.179102,-0.717032,-3.382473;;, + 11;3; 2.179102,-0.717032,-3.382473;;, + 12;3; 2.179102,-0.717032,-3.382473;;, + 13;3; 2.179102,-0.717032,-3.382473;;, + 14;3; 2.179102,-0.717032,-3.382473;;, + 15;3; 2.179102,-0.717032,-3.382473;;, + 16;3; 2.179102,-0.717032,-3.382473;;, + 17;3; 2.179102,-0.717032,-3.382473;;, + 18;3; 2.179102,-0.717032,-3.382473;;, + 19;3; 2.179102,-0.717032,-3.382473;;, + 20;3; 2.179102,-0.717032,-3.382473;;, + 21;3; 2.179102,-0.717032,-3.382473;;, + 22;3; 2.179102,-0.717032,-3.382473;;, + 23;3; 2.179102,-0.717032,-3.382473;;, + 24;3; 2.179102,-0.717032,-3.382473;;, + 25;3; 2.179102,-0.717032,-3.382473;;, + 26;3; 2.179102,-0.717032,-3.382473;;, + 27;3; 2.179102,-0.717032,-3.382473;;, + 28;3; 2.179102,-0.717032,-3.382473;;, + 29;3; 2.179102,-0.717032,-3.382473;;, + 30;3; 2.179102,-0.717032,-3.382473;;, + 31;3; 2.179102,-0.717032,-3.382473;;, + 32;3; 2.179102,-0.717032,-3.382473;;, + 33;3; 2.179102,-0.717032,-3.382473;;, + 34;3; 2.179102,-0.717032,-3.382473;;, + 35;3; 2.179102,-0.717032,-3.382473;;, + 36;3; 2.179102,-0.717032,-3.382473;;, + 37;3; 2.179102,-0.717032,-3.382473;;, + 38;3; 2.179102,-0.717032,-3.382473;;, + 39;3; 2.179102,-0.717032,-3.382473;;, + 40;3; 2.179102,-0.717032,-3.382473;;, + 41;3; 2.179102,-0.717032,-3.382473;;, + 42;3; 2.179102,-0.717032,-3.382473;;, + 43;3; 2.179102,-0.717032,-3.382473;;, + 44;3; 2.179102,-0.717032,-3.382473;;, + 45;3; 2.179102,-0.717032,-3.382473;;, + 46;3; 2.179102,-0.717032,-3.382473;;, + 47;3; 2.179102,-0.717032,-3.382473;;, + 48;3; 2.179102,-0.717032,-3.382473;;, + 49;3; 2.179102,-0.717032,-3.382473;;, + 50;3; 2.179102,-0.717032,-3.382473;;, + 51;3; 2.179102,-0.717032,-3.382473;;, + 52;3; 2.179102,-0.717032,-3.382473;;, + 53;3; 2.179102,-0.717032,-3.382473;;, + 54;3; 2.179102,-0.717032,-3.382473;;, + 55;3; 2.179102,-0.717032,-3.382473;;, + 56;3; 2.179102,-0.717032,-3.382473;;, + 57;3; 2.179102,-0.717032,-3.382473;;, + 58;3; 2.179102,-0.717032,-3.382473;;, + 59;3; 2.179102,-0.717032,-3.382473;;, + 60;3; 2.179102,-0.717032,-3.382473;;, + 61;3; 2.179102,-0.717032,-3.382473;;, + 62;3; 2.179102,-0.717032,-3.382473;;, + 63;3; 2.179102,-0.717032,-3.382473;;, + 64;3; 2.179102,-0.717032,-3.382473;;, + 65;3; 2.179102,-0.717032,-3.382473;;, + 66;3; 2.179102,-0.717032,-3.382473;;, + 67;3; 2.179102,-0.717032,-3.382473;;, + 68;3; 2.179102,-0.717032,-3.382473;;, + 69;3; 2.179102,-0.717032,-3.382473;;, + 70;3; 2.179102,-0.717032,-3.382473;;, + 71;3; 2.179102,-0.717032,-3.382473;;, + 72;3; 2.179102,-0.717032,-3.382473;;, + 73;3; 2.179102,-0.717032,-3.382473;;, + 74;3; 2.179102,-0.717032,-3.382473;;, + 75;3; 2.179102,-0.717032,-3.382473;;, + 76;3; 2.179102,-0.717032,-3.382473;;, + 77;3; 2.179102,-0.717032,-3.382473;;, + 78;3; 2.179102,-0.717032,-3.382473;;, + 79;3; 2.179102,-0.717032,-3.382473;;; + } + } + Animation { + {Cube_003} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 2;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 3;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 4;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 5;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 6;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 7;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 8;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 9;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 10;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 11;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 12;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 13;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 14;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 15;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 16;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 17;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 18;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 19;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 20;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 21;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 22;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 23;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 24;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 25;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 26;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 27;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 28;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 29;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 30;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 31;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 32;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 33;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 34;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 35;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 36;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 37;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 38;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 39;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 40;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 41;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 42;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 43;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 44;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 45;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 46;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 47;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 48;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 49;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 50;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 51;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 52;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 53;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 54;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 55;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 56;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 57;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 58;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 59;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 60;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 61;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 62;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 63;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 64;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 65;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 66;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 67;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 68;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 69;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 70;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 71;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 72;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 73;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 74;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 75;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 76;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 77;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 78;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 79;4;-0.706700, 0.000000, 0.000000, 0.707513;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 0.831444, 0.926812, 1.022895;;, + 1;3; 0.831444, 0.926812, 1.022895;;, + 2;3; 0.831444, 0.926812, 1.022895;;, + 3;3; 0.831444, 0.926812, 1.022895;;, + 4;3; 0.831444, 0.926812, 1.022895;;, + 5;3; 0.831444, 0.926812, 1.022895;;, + 6;3; 0.831444, 0.926812, 1.022895;;, + 7;3; 0.831444, 0.926812, 1.022895;;, + 8;3; 0.831444, 0.926812, 1.022895;;, + 9;3; 0.831444, 0.926812, 1.022895;;, + 10;3; 0.831444, 0.926812, 1.022895;;, + 11;3; 0.831444, 0.926812, 1.022895;;, + 12;3; 0.831444, 0.926812, 1.022895;;, + 13;3; 0.831444, 0.926812, 1.022895;;, + 14;3; 0.831444, 0.926812, 1.022895;;, + 15;3; 0.831444, 0.926812, 1.022895;;, + 16;3; 0.831444, 0.926812, 1.022895;;, + 17;3; 0.831444, 0.926812, 1.022895;;, + 18;3; 0.831444, 0.926812, 1.022895;;, + 19;3; 0.831444, 0.926812, 1.022895;;, + 20;3; 0.831444, 0.926812, 1.022895;;, + 21;3; 0.831444, 0.926812, 1.022895;;, + 22;3; 0.831444, 0.926812, 1.022895;;, + 23;3; 0.831444, 0.926812, 1.022895;;, + 24;3; 0.831444, 0.926812, 1.022895;;, + 25;3; 0.831444, 0.926812, 1.022895;;, + 26;3; 0.831444, 0.926812, 1.022895;;, + 27;3; 0.831444, 0.926812, 1.022895;;, + 28;3; 0.831444, 0.926812, 1.022895;;, + 29;3; 0.831444, 0.926812, 1.022895;;, + 30;3; 0.831444, 0.926812, 1.022895;;, + 31;3; 0.831444, 0.926812, 1.022895;;, + 32;3; 0.831444, 0.926812, 1.022895;;, + 33;3; 0.831444, 0.926812, 1.022895;;, + 34;3; 0.831444, 0.926812, 1.022895;;, + 35;3; 0.831444, 0.926812, 1.022895;;, + 36;3; 0.831444, 0.926812, 1.022895;;, + 37;3; 0.831444, 0.926812, 1.022895;;, + 38;3; 0.831444, 0.926812, 1.022895;;, + 39;3; 0.831444, 0.926812, 1.022895;;, + 40;3; 0.831444, 0.926812, 1.022895;;, + 41;3; 0.831444, 0.926812, 1.022895;;, + 42;3; 0.831444, 0.926812, 1.022895;;, + 43;3; 0.831444, 0.926812, 1.022895;;, + 44;3; 0.831444, 0.926812, 1.022895;;, + 45;3; 0.831444, 0.926812, 1.022895;;, + 46;3; 0.831444, 0.926812, 1.022895;;, + 47;3; 0.831444, 0.926812, 1.022895;;, + 48;3; 0.831444, 0.926812, 1.022895;;, + 49;3; 0.831444, 0.926812, 1.022895;;, + 50;3; 0.831444, 0.926812, 1.022895;;, + 51;3; 0.831444, 0.926812, 1.022895;;, + 52;3; 0.831444, 0.926812, 1.022895;;, + 53;3; 0.831444, 0.926812, 1.022895;;, + 54;3; 0.831444, 0.926812, 1.022895;;, + 55;3; 0.831444, 0.926812, 1.022895;;, + 56;3; 0.831444, 0.926812, 1.022895;;, + 57;3; 0.831444, 0.926812, 1.022895;;, + 58;3; 0.831444, 0.926812, 1.022895;;, + 59;3; 0.831444, 0.926812, 1.022895;;, + 60;3; 0.831444, 0.926812, 1.022895;;, + 61;3; 0.831444, 0.926812, 1.022895;;, + 62;3; 0.831444, 0.926812, 1.022895;;, + 63;3; 0.831444, 0.926812, 1.022895;;, + 64;3; 0.831444, 0.926812, 1.022895;;, + 65;3; 0.831444, 0.926812, 1.022895;;, + 66;3; 0.831444, 0.926812, 1.022895;;, + 67;3; 0.831444, 0.926812, 1.022895;;, + 68;3; 0.831444, 0.926812, 1.022895;;, + 69;3; 0.831444, 0.926812, 1.022895;;, + 70;3; 0.831444, 0.926812, 1.022895;;, + 71;3; 0.831444, 0.926812, 1.022895;;, + 72;3; 0.831444, 0.926812, 1.022895;;, + 73;3; 0.831444, 0.926812, 1.022895;;, + 74;3; 0.831444, 0.926812, 1.022895;;, + 75;3; 0.831444, 0.926812, 1.022895;;, + 76;3; 0.831444, 0.926812, 1.022895;;, + 77;3; 0.831444, 0.926812, 1.022895;;, + 78;3; 0.831444, 0.926812, 1.022895;;, + 79;3; 0.831444, 0.926812, 1.022895;;; + } + AnimationKey { // Position + 2; + 80; + 0;3; 0.351826, 1.619185,-1.628760;;, + 1;3; 0.351826, 1.619185,-1.628760;;, + 2;3; 0.351826, 1.619185,-1.628760;;, + 3;3; 0.351826, 1.619185,-1.628760;;, + 4;3; 0.351826, 1.619185,-1.628760;;, + 5;3; 0.351826, 1.619185,-1.628760;;, + 6;3; 0.351826, 1.619185,-1.628760;;, + 7;3; 0.351826, 1.619185,-1.628760;;, + 8;3; 0.351826, 1.619185,-1.628760;;, + 9;3; 0.351826, 1.619185,-1.628760;;, + 10;3; 0.351826, 1.619185,-1.628760;;, + 11;3; 0.351826, 1.619185,-1.628760;;, + 12;3; 0.351826, 1.619185,-1.628760;;, + 13;3; 0.351826, 1.619185,-1.628760;;, + 14;3; 0.351826, 1.619185,-1.628760;;, + 15;3; 0.351826, 1.619185,-1.628760;;, + 16;3; 0.351826, 1.619185,-1.628760;;, + 17;3; 0.351826, 1.619185,-1.628760;;, + 18;3; 0.351826, 1.619185,-1.628760;;, + 19;3; 0.351826, 1.619185,-1.628760;;, + 20;3; 0.351826, 1.619185,-1.628760;;, + 21;3; 0.351826, 1.619185,-1.628760;;, + 22;3; 0.351826, 1.619185,-1.628760;;, + 23;3; 0.351826, 1.619185,-1.628760;;, + 24;3; 0.351826, 1.619185,-1.628760;;, + 25;3; 0.351826, 1.619185,-1.628760;;, + 26;3; 0.351826, 1.619185,-1.628760;;, + 27;3; 0.351826, 1.619185,-1.628760;;, + 28;3; 0.351826, 1.619185,-1.628760;;, + 29;3; 0.351826, 1.619185,-1.628760;;, + 30;3; 0.351826, 1.619185,-1.628760;;, + 31;3; 0.351826, 1.619185,-1.628760;;, + 32;3; 0.351826, 1.619185,-1.628760;;, + 33;3; 0.351826, 1.619185,-1.628760;;, + 34;3; 0.351826, 1.619185,-1.628760;;, + 35;3; 0.351826, 1.619185,-1.628760;;, + 36;3; 0.351826, 1.619185,-1.628760;;, + 37;3; 0.351826, 1.619185,-1.628760;;, + 38;3; 0.351826, 1.619185,-1.628760;;, + 39;3; 0.351826, 1.619185,-1.628760;;, + 40;3; 0.351826, 1.619185,-1.628760;;, + 41;3; 0.351826, 1.619185,-1.628760;;, + 42;3; 0.351826, 1.619185,-1.628760;;, + 43;3; 0.351826, 1.619185,-1.628760;;, + 44;3; 0.351826, 1.619185,-1.628760;;, + 45;3; 0.351826, 1.619185,-1.628760;;, + 46;3; 0.351826, 1.619185,-1.628760;;, + 47;3; 0.351826, 1.619185,-1.628760;;, + 48;3; 0.351826, 1.619185,-1.628760;;, + 49;3; 0.351826, 1.619185,-1.628760;;, + 50;3; 0.351826, 1.619185,-1.628760;;, + 51;3; 0.351826, 1.619185,-1.628760;;, + 52;3; 0.351826, 1.619185,-1.628760;;, + 53;3; 0.351826, 1.619185,-1.628760;;, + 54;3; 0.351826, 1.619185,-1.628760;;, + 55;3; 0.351826, 1.619185,-1.628760;;, + 56;3; 0.351826, 1.619185,-1.628760;;, + 57;3; 0.351826, 1.619185,-1.628760;;, + 58;3; 0.351826, 1.619185,-1.628760;;, + 59;3; 0.351826, 1.619185,-1.628760;;, + 60;3; 0.351826, 1.619185,-1.628760;;, + 61;3; 0.351826, 1.619185,-1.628760;;, + 62;3; 0.351826, 1.619185,-1.628760;;, + 63;3; 0.351826, 1.619185,-1.628760;;, + 64;3; 0.351826, 1.619185,-1.628760;;, + 65;3; 0.351826, 1.619185,-1.628760;;, + 66;3; 0.351826, 1.619185,-1.628760;;, + 67;3; 0.351826, 1.619185,-1.628760;;, + 68;3; 0.351826, 1.619185,-1.628760;;, + 69;3; 0.351826, 1.619185,-1.628760;;, + 70;3; 0.351826, 1.619185,-1.628760;;, + 71;3; 0.351826, 1.619185,-1.628760;;, + 72;3; 0.351826, 1.619185,-1.628760;;, + 73;3; 0.351826, 1.619185,-1.628760;;, + 74;3; 0.351826, 1.619185,-1.628760;;, + 75;3; 0.351826, 1.619185,-1.628760;;, + 76;3; 0.351826, 1.619185,-1.628760;;, + 77;3; 0.351826, 1.619185,-1.628760;;, + 78;3; 0.351826, 1.619185,-1.628760;;, + 79;3; 0.351826, 1.619185,-1.628760;;; + } + } + Animation { + {Cube_004} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 2;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 3;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 4;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 5;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 6;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 7;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 8;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 9;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 10;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 11;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 12;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 13;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 14;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 15;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 16;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 17;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 18;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 19;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 20;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 21;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 22;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 23;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 24;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 25;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 26;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 27;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 28;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 29;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 30;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 31;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 32;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 33;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 34;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 35;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 36;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 37;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 38;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 39;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 40;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 41;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 42;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 43;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 44;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 45;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 46;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 47;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 48;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 49;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 50;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 51;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 52;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 53;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 54;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 55;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 56;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 57;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 58;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 59;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 60;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 61;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 62;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 63;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 64;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 65;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 66;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 67;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 68;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 69;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 70;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 71;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 72;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 73;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 74;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 75;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 76;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 77;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 78;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 79;4;-0.706700, 0.000000, 0.000000, 0.707513;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 0.472154, 0.647698, 0.278316;;, + 1;3; 0.472154, 0.647698, 0.278316;;, + 2;3; 0.472154, 0.647698, 0.278316;;, + 3;3; 0.472154, 0.647698, 0.278316;;, + 4;3; 0.472154, 0.647698, 0.278316;;, + 5;3; 0.472154, 0.647698, 0.278316;;, + 6;3; 0.472154, 0.647698, 0.278316;;, + 7;3; 0.472154, 0.647698, 0.278316;;, + 8;3; 0.472154, 0.647698, 0.278316;;, + 9;3; 0.472154, 0.647698, 0.278316;;, + 10;3; 0.472154, 0.647698, 0.278316;;, + 11;3; 0.472154, 0.647698, 0.278316;;, + 12;3; 0.472154, 0.647698, 0.278316;;, + 13;3; 0.472154, 0.647698, 0.278316;;, + 14;3; 0.472154, 0.647698, 0.278316;;, + 15;3; 0.472154, 0.647698, 0.278316;;, + 16;3; 0.472154, 0.647698, 0.278316;;, + 17;3; 0.472154, 0.647698, 0.278316;;, + 18;3; 0.472154, 0.647698, 0.278316;;, + 19;3; 0.472154, 0.647698, 0.278316;;, + 20;3; 0.472154, 0.647698, 0.278316;;, + 21;3; 0.472154, 0.647698, 0.278316;;, + 22;3; 0.472154, 0.647698, 0.278316;;, + 23;3; 0.472154, 0.647698, 0.278316;;, + 24;3; 0.472154, 0.647698, 0.278316;;, + 25;3; 0.472154, 0.647698, 0.278316;;, + 26;3; 0.472154, 0.647698, 0.278316;;, + 27;3; 0.472154, 0.647698, 0.278316;;, + 28;3; 0.472154, 0.647698, 0.278316;;, + 29;3; 0.472154, 0.647698, 0.278316;;, + 30;3; 0.472154, 0.647698, 0.278316;;, + 31;3; 0.472154, 0.647698, 0.278316;;, + 32;3; 0.472154, 0.647698, 0.278316;;, + 33;3; 0.472154, 0.647698, 0.278316;;, + 34;3; 0.472154, 0.647698, 0.278316;;, + 35;3; 0.472154, 0.647698, 0.278316;;, + 36;3; 0.472154, 0.647698, 0.278316;;, + 37;3; 0.472154, 0.647698, 0.278316;;, + 38;3; 0.472154, 0.647698, 0.278316;;, + 39;3; 0.472154, 0.647698, 0.278316;;, + 40;3; 0.472154, 0.647698, 0.278316;;, + 41;3; 0.472154, 0.647698, 0.278316;;, + 42;3; 0.472154, 0.647698, 0.278316;;, + 43;3; 0.472154, 0.647698, 0.278316;;, + 44;3; 0.472154, 0.647698, 0.278316;;, + 45;3; 0.472154, 0.647698, 0.278316;;, + 46;3; 0.472154, 0.647698, 0.278316;;, + 47;3; 0.472154, 0.647698, 0.278316;;, + 48;3; 0.472154, 0.647698, 0.278316;;, + 49;3; 0.472154, 0.647698, 0.278316;;, + 50;3; 0.472154, 0.647698, 0.278316;;, + 51;3; 0.472154, 0.647698, 0.278316;;, + 52;3; 0.472154, 0.647698, 0.278316;;, + 53;3; 0.472154, 0.647698, 0.278316;;, + 54;3; 0.472154, 0.647698, 0.278316;;, + 55;3; 0.472154, 0.647698, 0.278316;;, + 56;3; 0.472154, 0.647698, 0.278316;;, + 57;3; 0.472154, 0.647698, 0.278316;;, + 58;3; 0.472154, 0.647698, 0.278316;;, + 59;3; 0.472154, 0.647698, 0.278316;;, + 60;3; 0.472154, 0.647698, 0.278316;;, + 61;3; 0.472154, 0.647698, 0.278316;;, + 62;3; 0.472154, 0.647698, 0.278316;;, + 63;3; 0.472154, 0.647698, 0.278316;;, + 64;3; 0.472154, 0.647698, 0.278316;;, + 65;3; 0.472154, 0.647698, 0.278316;;, + 66;3; 0.472154, 0.647698, 0.278316;;, + 67;3; 0.472154, 0.647698, 0.278316;;, + 68;3; 0.472154, 0.647698, 0.278316;;, + 69;3; 0.472154, 0.647698, 0.278316;;, + 70;3; 0.472154, 0.647698, 0.278316;;, + 71;3; 0.472154, 0.647698, 0.278316;;, + 72;3; 0.472154, 0.647698, 0.278316;;, + 73;3; 0.472154, 0.647698, 0.278316;;, + 74;3; 0.472154, 0.647698, 0.278316;;, + 75;3; 0.472154, 0.647698, 0.278316;;, + 76;3; 0.472154, 0.647698, 0.278316;;, + 77;3; 0.472154, 0.647698, 0.278316;;, + 78;3; 0.472154, 0.647698, 0.278316;;, + 79;3; 0.472154, 0.647698, 0.278316;;; + } + AnimationKey { // Position + 2; + 80; + 0;3; 0.350341, 2.911684,-1.628760;;, + 1;3; 0.350341, 2.911684,-1.628760;;, + 2;3; 0.350341, 2.911684,-1.628760;;, + 3;3; 0.350341, 2.911684,-1.628760;;, + 4;3; 0.350341, 2.911684,-1.628760;;, + 5;3; 0.350341, 2.911684,-1.628760;;, + 6;3; 0.350341, 2.911684,-1.628760;;, + 7;3; 0.350341, 2.911684,-1.628760;;, + 8;3; 0.350341, 2.911684,-1.628760;;, + 9;3; 0.350341, 2.911684,-1.628760;;, + 10;3; 0.350341, 2.911684,-1.628760;;, + 11;3; 0.350341, 2.911684,-1.628760;;, + 12;3; 0.350341, 2.911684,-1.628760;;, + 13;3; 0.350341, 2.911684,-1.628760;;, + 14;3; 0.350341, 2.911684,-1.628760;;, + 15;3; 0.350341, 2.911684,-1.628760;;, + 16;3; 0.350341, 2.911684,-1.628760;;, + 17;3; 0.350341, 2.911684,-1.628760;;, + 18;3; 0.350341, 2.911684,-1.628760;;, + 19;3; 0.350341, 2.911684,-1.628760;;, + 20;3; 0.350341, 2.911684,-1.628760;;, + 21;3; 0.350341, 2.911684,-1.628760;;, + 22;3; 0.350341, 2.911684,-1.628760;;, + 23;3; 0.350341, 2.911684,-1.628760;;, + 24;3; 0.350341, 2.911684,-1.628760;;, + 25;3; 0.350341, 2.911684,-1.628760;;, + 26;3; 0.350341, 2.911684,-1.628760;;, + 27;3; 0.350341, 2.911684,-1.628760;;, + 28;3; 0.350341, 2.911684,-1.628760;;, + 29;3; 0.350341, 2.911684,-1.628760;;, + 30;3; 0.350341, 2.911684,-1.628760;;, + 31;3; 0.350341, 2.911684,-1.628760;;, + 32;3; 0.350341, 2.911684,-1.628760;;, + 33;3; 0.350341, 2.911684,-1.628760;;, + 34;3; 0.350341, 2.911684,-1.628760;;, + 35;3; 0.350341, 2.911684,-1.628760;;, + 36;3; 0.350341, 2.911684,-1.628760;;, + 37;3; 0.350341, 2.911684,-1.628760;;, + 38;3; 0.350341, 2.911684,-1.628760;;, + 39;3; 0.350341, 2.911684,-1.628760;;, + 40;3; 0.350341, 2.911684,-1.628760;;, + 41;3; 0.350341, 2.911684,-1.628760;;, + 42;3; 0.350341, 2.911684,-1.628760;;, + 43;3; 0.350341, 2.911684,-1.628760;;, + 44;3; 0.350341, 2.911684,-1.628760;;, + 45;3; 0.350341, 2.911684,-1.628760;;, + 46;3; 0.350341, 2.911684,-1.628760;;, + 47;3; 0.350341, 2.911684,-1.628760;;, + 48;3; 0.350341, 2.911684,-1.628760;;, + 49;3; 0.350341, 2.911684,-1.628760;;, + 50;3; 0.350341, 2.911684,-1.628760;;, + 51;3; 0.350341, 2.911684,-1.628760;;, + 52;3; 0.350341, 2.911684,-1.628760;;, + 53;3; 0.350341, 2.911684,-1.628760;;, + 54;3; 0.350341, 2.911684,-1.628760;;, + 55;3; 0.350341, 2.911684,-1.628760;;, + 56;3; 0.350341, 2.911684,-1.628760;;, + 57;3; 0.350341, 2.911684,-1.628760;;, + 58;3; 0.350341, 2.911684,-1.628760;;, + 59;3; 0.350341, 2.911684,-1.628760;;, + 60;3; 0.350341, 2.911684,-1.628760;;, + 61;3; 0.350341, 2.911684,-1.628760;;, + 62;3; 0.350341, 2.911684,-1.628760;;, + 63;3; 0.350341, 2.911684,-1.628760;;, + 64;3; 0.350341, 2.911684,-1.628760;;, + 65;3; 0.350341, 2.911684,-1.628760;;, + 66;3; 0.350341, 2.911684,-1.628760;;, + 67;3; 0.350341, 2.911684,-1.628760;;, + 68;3; 0.350341, 2.911684,-1.628760;;, + 69;3; 0.350341, 2.911684,-1.628760;;, + 70;3; 0.350341, 2.911684,-1.628760;;, + 71;3; 0.350341, 2.911684,-1.628760;;, + 72;3; 0.350341, 2.911684,-1.628760;;, + 73;3; 0.350341, 2.911684,-1.628760;;, + 74;3; 0.350341, 2.911684,-1.628760;;, + 75;3; 0.350341, 2.911684,-1.628760;;, + 76;3; 0.350341, 2.911684,-1.628760;;, + 77;3; 0.350341, 2.911684,-1.628760;;, + 78;3; 0.350341, 2.911684,-1.628760;;, + 79;3; 0.350341, 2.911684,-1.628760;;; + } + } + Animation { + {Cube_005} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706699,-0.000970, 0.000971, 0.707513;;, + 2;4;-0.706689,-0.003901, 0.003906, 0.707503;;, + 3;4;-0.706644,-0.008800, 0.008811, 0.707459;;, + 4;4;-0.706525,-0.015623, 0.015643, 0.707342;;, + 5;4;-0.706281,-0.024268, 0.024300, 0.707099;;, + 6;4;-0.705851,-0.034560, 0.034605, 0.706670;;, + 7;4;-0.705182,-0.046243, 0.046303, 0.706001;;, + 8;4;-0.704230,-0.058981, 0.059057, 0.705048;;, + 9;4;-0.702981,-0.072371, 0.072463, 0.703796;;, + 10;4;-0.701449,-0.085964, 0.086072, 0.702261;;, + 11;4;-0.699687,-0.099297, 0.099422, 0.700495;;, + 12;4;-0.697779,-0.111931, 0.112069, 0.698582;;, + 13;4;-0.695831,-0.123473, 0.123624, 0.696628;;, + 14;4;-0.693958,-0.133607, 0.133768, 0.694750;;, + 15;4;-0.692271,-0.142094, 0.142264, 0.693059;;, + 16;4;-0.690866,-0.148776, 0.148952, 0.691652;;, + 17;4;-0.689817,-0.153565, 0.153744, 0.690603;;, + 18;4;-0.689173,-0.156427, 0.156609, 0.689960;;, + 19;4;-0.688955,-0.157374, 0.157555, 0.689747;;, + 20;4;-0.690481,-0.150503, 0.150675, 0.691290;;, + 21;4;-0.694667,-0.129741, 0.129886, 0.695510;;, + 22;4;-0.700143,-0.095751, 0.095854, 0.701030;;, + 23;4;-0.704802,-0.050976, 0.051022, 0.705728;;, + 24;4;-0.706633,-0.000025, 0.000008, 0.707580;;, + 25;4;-0.704797, 0.050917,-0.050997, 0.705739;;, + 26;4;-0.700136, 0.095673,-0.095805, 0.701055;;, + 27;4;-0.694661, 0.129640,-0.129811, 0.695549;;, + 28;4;-0.690477, 0.150386,-0.150579, 0.691340;;, + 29;4;-0.688950, 0.157251,-0.157451, 0.689804;;, + 30;4;-0.690460, 0.150464,-0.150656, 0.691323;;, + 31;4;-0.694603, 0.129950,-0.130120, 0.695492;;, + 32;4;-0.700040, 0.096361,-0.096494, 0.700962;;, + 33;4;-0.704707, 0.052104,-0.052186, 0.705656;;, + 34;4;-0.706626, 0.001730,-0.001751, 0.707583;;, + 35;4;-0.704958,-0.048653, 0.048694, 0.705901;;, + 36;4;-0.700512,-0.092931, 0.093025, 0.701422;;, + 37;4;-0.695244,-0.126545, 0.126680, 0.696114;;, + 38;4;-0.691205,-0.147078, 0.147237, 0.692045;;, + 39;4;-0.689730,-0.153872, 0.154040, 0.690556;;, + 40;4;-0.691193,-0.147149, 0.147310, 0.692025;;, + 41;4;-0.695199,-0.126835, 0.126976, 0.696052;;, + 42;4;-0.700439,-0.093584, 0.093690, 0.701320;;, + 43;4;-0.704898,-0.049788, 0.049844, 0.705801;;, + 44;4;-0.706652, 0.000053,-0.000054, 0.707561;;, + 45;4;-0.704894, 0.049900,-0.049959, 0.705789;;, + 46;4;-0.700430, 0.093712,-0.093822, 0.701294;;, + 47;4;-0.695184, 0.126979,-0.127127, 0.696013;;, + 48;4;-0.691173, 0.147306,-0.147476, 0.691976;;, + 49;4;-0.689709, 0.154034,-0.154211, 0.690503;;, + 50;4;-0.689876, 0.153283,-0.153460, 0.690670;;, + 51;4;-0.690374, 0.151018,-0.151192, 0.691172;;, + 52;4;-0.691192, 0.147220,-0.147390, 0.691994;;, + 53;4;-0.692304, 0.141884,-0.142048, 0.693114;;, + 54;4;-0.693673, 0.135015,-0.135171, 0.694491;;, + 55;4;-0.695247, 0.126635,-0.126782, 0.696075;;, + 56;4;-0.696965, 0.116783,-0.116919, 0.697804;;, + 57;4;-0.698754, 0.105524,-0.105647, 0.699604;;, + 58;4;-0.700534, 0.092944,-0.093053, 0.701395;;, + 59;4;-0.702221, 0.079159,-0.079251, 0.703093;;, + 60;4;-0.703732, 0.064312,-0.064387, 0.704613;;, + 61;4;-0.704990, 0.048575,-0.048632, 0.705879;;, + 62;4;-0.705927, 0.032145,-0.032182, 0.706823;;, + 63;4;-0.706493, 0.015240,-0.015257, 0.707392;;, + 64;4;-0.706654,-0.001905, 0.001908, 0.707554;;, + 65;4;-0.706400,-0.019050, 0.019073, 0.707299;;, + 66;4;-0.705743,-0.035951, 0.035994, 0.706639;;, + 67;4;-0.704717,-0.052376, 0.052439, 0.705606;;, + 68;4;-0.703375,-0.068106, 0.068187, 0.704256;;, + 69;4;-0.701784,-0.082945, 0.083043, 0.702655;;, + 70;4;-0.700022,-0.096721, 0.096835, 0.700883;;, + 71;4;-0.698175,-0.109292, 0.109420, 0.699024;;, + 72;4;-0.696325,-0.120542, 0.120683, 0.697163;;, + 73;4;-0.694554,-0.130384, 0.130536, 0.695381;;, + 74;4;-0.692934,-0.138756, 0.138917, 0.693752;;, + 75;4;-0.691528,-0.145617, 0.145786, 0.692337;;, + 76;4;-0.690387,-0.150948, 0.151122, 0.691189;;, + 77;4;-0.689549,-0.154741, 0.154919, 0.690346;;, + 78;4;-0.689039,-0.157004, 0.157185, 0.689832;;, + 79;4;-0.688868,-0.157754, 0.157935, 0.689660;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 0.195703, 0.182964, 0.780890;;, + 1;3; 0.195703, 0.182964, 0.780890;;, + 2;3; 0.195703, 0.182964, 0.780890;;, + 3;3; 0.195703, 0.182964, 0.780890;;, + 4;3; 0.195703, 0.182964, 0.780890;;, + 5;3; 0.195703, 0.182964, 0.780890;;, + 6;3; 0.195703, 0.182964, 0.780890;;, + 7;3; 0.195703, 0.182964, 0.780890;;, + 8;3; 0.195703, 0.182964, 0.780890;;, + 9;3; 0.195703, 0.182964, 0.780890;;, + 10;3; 0.195703, 0.182964, 0.780890;;, + 11;3; 0.195703, 0.182964, 0.780890;;, + 12;3; 0.195703, 0.182964, 0.780890;;, + 13;3; 0.195703, 0.182964, 0.780890;;, + 14;3; 0.195703, 0.182964, 0.780890;;, + 15;3; 0.195703, 0.182964, 0.780890;;, + 16;3; 0.195703, 0.182964, 0.780890;;, + 17;3; 0.195703, 0.182964, 0.780890;;, + 18;3; 0.195703, 0.182964, 0.780890;;, + 19;3; 0.195703, 0.182964, 0.780890;;, + 20;3; 0.195703, 0.182964, 0.780890;;, + 21;3; 0.195703, 0.182964, 0.780890;;, + 22;3; 0.195703, 0.182964, 0.780890;;, + 23;3; 0.195703, 0.182964, 0.780890;;, + 24;3; 0.195703, 0.182964, 0.780890;;, + 25;3; 0.195703, 0.182964, 0.780890;;, + 26;3; 0.195703, 0.182964, 0.780890;;, + 27;3; 0.195703, 0.182964, 0.780890;;, + 28;3; 0.195703, 0.182964, 0.780890;;, + 29;3; 0.195703, 0.182964, 0.780890;;, + 30;3; 0.195703, 0.182964, 0.780890;;, + 31;3; 0.195703, 0.182964, 0.780890;;, + 32;3; 0.195703, 0.182964, 0.780890;;, + 33;3; 0.195703, 0.182964, 0.780890;;, + 34;3; 0.195703, 0.182964, 0.780890;;, + 35;3; 0.195703, 0.182964, 0.780890;;, + 36;3; 0.195703, 0.182964, 0.780890;;, + 37;3; 0.195703, 0.182964, 0.780890;;, + 38;3; 0.195703, 0.182964, 0.780890;;, + 39;3; 0.195703, 0.182964, 0.780890;;, + 40;3; 0.195703, 0.182964, 0.780890;;, + 41;3; 0.195703, 0.182964, 0.780890;;, + 42;3; 0.195703, 0.182964, 0.780890;;, + 43;3; 0.195703, 0.182964, 0.780890;;, + 44;3; 0.195703, 0.182964, 0.780890;;, + 45;3; 0.195703, 0.182964, 0.780890;;, + 46;3; 0.195703, 0.182964, 0.780890;;, + 47;3; 0.195703, 0.182964, 0.780890;;, + 48;3; 0.195703, 0.182964, 0.780890;;, + 49;3; 0.195703, 0.182964, 0.780890;;, + 50;3; 0.195703, 0.182964, 0.780890;;, + 51;3; 0.195703, 0.182964, 0.780890;;, + 52;3; 0.195703, 0.182964, 0.780890;;, + 53;3; 0.195703, 0.182964, 0.780890;;, + 54;3; 0.195703, 0.182964, 0.780890;;, + 55;3; 0.195703, 0.182964, 0.780890;;, + 56;3; 0.195703, 0.182964, 0.780890;;, + 57;3; 0.195703, 0.182964, 0.780890;;, + 58;3; 0.195703, 0.182964, 0.780890;;, + 59;3; 0.195703, 0.182964, 0.780890;;, + 60;3; 0.195703, 0.182964, 0.780890;;, + 61;3; 0.195703, 0.182964, 0.780890;;, + 62;3; 0.195703, 0.182964, 0.780890;;, + 63;3; 0.195703, 0.182964, 0.780890;;, + 64;3; 0.195703, 0.182964, 0.780890;;, + 65;3; 0.195703, 0.182964, 0.780890;;, + 66;3; 0.195703, 0.182964, 0.780890;;, + 67;3; 0.195703, 0.182964, 0.780890;;, + 68;3; 0.195703, 0.182964, 0.780890;;, + 69;3; 0.195703, 0.182964, 0.780890;;, + 70;3; 0.195703, 0.182964, 0.780890;;, + 71;3; 0.195703, 0.182964, 0.780890;;, + 72;3; 0.195703, 0.182964, 0.780890;;, + 73;3; 0.195703, 0.182964, 0.780890;;, + 74;3; 0.195703, 0.182964, 0.780890;;, + 75;3; 0.195703, 0.182964, 0.780890;;, + 76;3; 0.195703, 0.182964, 0.780890;;, + 77;3; 0.195703, 0.182964, 0.780890;;, + 78;3; 0.195703, 0.182964, 0.780890;;, + 79;3; 0.195703, 0.182964, 0.780890;;; + } + AnimationKey { // Position + 2; + 80; + 0;3;-0.444974,-0.720049,-6.328409;;, + 1;3;-0.444974,-0.721787,-6.327650;;, + 2;3;-0.444974,-0.727041,-6.325339;;, + 3;3;-0.444974,-0.735822,-6.321445;;, + 4;3;-0.444974,-0.748055,-6.315963;;, + 5;3;-0.444974,-0.763561,-6.308934;;, + 6;3;-0.444974,-0.782029,-6.300446;;, + 7;3;-0.444974,-0.803011,-6.290648;;, + 8;3;-0.444974,-0.825915,-6.279746;;, + 9;3;-0.444974,-0.850027,-6.268005;;, + 10;3;-0.444974,-0.874552,-6.255732;;, + 11;3;-0.444974,-0.898664,-6.243254;;, + 12;3;-0.444974,-0.921567,-6.230899;;, + 13;3;-0.444974,-0.942547,-6.218971;;, + 14;3;-0.444974,-0.961014,-6.207732;;, + 15;3;-0.444974,-0.976517,-6.197392;;, + 16;3;-0.444974,-0.988749,-6.188108;;, + 17;3;-0.444974,-0.997528,-6.179986;;, + 18;3;-0.444974,-1.002782,-6.173084;;, + 19;3;-0.444974,-1.004519,-6.167428;;, + 20;3;-0.444974,-0.997850,-6.162767;;, + 21;3;-0.444974,-0.977778,-6.158899;;, + 22;3;-0.444974,-0.945143,-6.155876;;, + 23;3;-0.444974,-0.902458,-6.153681;;, + 24;3;-0.444974,-0.854104,-6.152203;;, + 25;3;-0.444974,-0.805750,-6.151237;;, + 26;3;-0.444974,-0.763066,-6.150527;;, + 27;3;-0.444974,-0.730432,-6.149829;;, + 28;3;-0.444974,-0.710360,-6.148953;;, + 29;3;-0.444974,-0.703691,-6.147783;;, + 30;3;-0.444974,-0.707978,-6.146466;;, + 31;3;-0.444974,-0.720880,-6.145220;;, + 32;3;-0.444974,-0.741858,-6.144074;;, + 33;3;-0.444974,-0.769296,-6.143066;;, + 34;3;-0.444974,-0.800378,-6.142225;;, + 35;3;-0.444974,-0.831462,-6.141570;;, + 36;3;-0.444974,-0.858902,-6.141101;;, + 37;3;-0.444974,-0.879883,-6.140800;;, + 38;3;-0.444974,-0.892787,-6.140642;;, + 39;3;-0.444974,-0.897076,-6.140595;;, + 40;3;-0.444974,-0.885800,-6.141282;;, + 41;3;-0.444974,-0.851868,-6.143350;;, + 42;3;-0.444974,-0.796700,-6.146711;;, + 43;3;-0.444974,-0.724548,-6.151108;;, + 44;3;-0.444974,-0.642815,-6.156090;;, + 45;3;-0.444974,-0.561082,-6.161071;;, + 46;3;-0.444974,-0.488931,-6.165468;;, + 47;3;-0.444974,-0.433764,-6.168829;;, + 48;3;-0.444974,-0.399831,-6.170897;;, + 49;3;-0.444974,-0.388556,-6.171584;;, + 50;3;-0.444974,-0.390021,-6.171462;;, + 51;3;-0.444974,-0.394444,-6.171092;;, + 52;3;-0.444974,-0.401851,-6.170472;;, + 53;3;-0.444974,-0.412244,-6.169601;;, + 54;3;-0.444974,-0.425600,-6.168483;;, + 55;3;-0.444974,-0.441860,-6.167122;;, + 56;3;-0.444974,-0.460930,-6.165525;;, + 57;3;-0.444974,-0.482674,-6.163705;;, + 58;3;-0.444974,-0.506906,-6.161676;;, + 59;3;-0.444974,-0.533396,-6.159459;;, + 60;3;-0.444974,-0.561863,-6.157075;;, + 61;3;-0.444974,-0.591978,-6.154554;;, + 62;3;-0.444974,-0.623372,-6.151925;;, + 63;3;-0.444974,-0.655638,-6.149223;;, + 64;3;-0.444974,-0.688348,-6.146485;;, + 65;3;-0.444974,-0.721058,-6.143746;;, + 66;3;-0.444974,-0.753326,-6.141044;;, + 67;3;-0.444974,-0.784720,-6.138416;;, + 68;3;-0.444974,-0.814837,-6.135894;;, + 69;3;-0.444974,-0.843306,-6.133511;;, + 70;3;-0.444974,-0.869798,-6.131293;;, + 71;3;-0.444974,-0.894033,-6.129264;;, + 72;3;-0.444974,-0.915779,-6.127444;;, + 73;3;-0.444974,-0.934852,-6.125847;;, + 74;3;-0.444974,-0.951114,-6.124486;;, + 75;3;-0.444974,-0.964472,-6.123368;;, + 76;3;-0.444974,-0.974866,-6.122498;;, + 77;3;-0.444974,-0.982274,-6.121878;;, + 78;3;-0.444974,-0.986698,-6.121508;;, + 79;3;-0.444974,-0.988163,-6.121385;;; + } + } + Animation { + {Cube_006} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706699,-0.000970, 0.000971, 0.707513;;, + 2;4;-0.706689,-0.003901, 0.003906, 0.707503;;, + 3;4;-0.706644,-0.008800, 0.008811, 0.707459;;, + 4;4;-0.706525,-0.015623, 0.015643, 0.707342;;, + 5;4;-0.706281,-0.024268, 0.024300, 0.707099;;, + 6;4;-0.705851,-0.034560, 0.034605, 0.706670;;, + 7;4;-0.705182,-0.046243, 0.046303, 0.706001;;, + 8;4;-0.704230,-0.058981, 0.059057, 0.705048;;, + 9;4;-0.702981,-0.072371, 0.072463, 0.703796;;, + 10;4;-0.701449,-0.085964, 0.086072, 0.702261;;, + 11;4;-0.699687,-0.099297, 0.099422, 0.700495;;, + 12;4;-0.697779,-0.111931, 0.112069, 0.698582;;, + 13;4;-0.695831,-0.123473, 0.123624, 0.696628;;, + 14;4;-0.693958,-0.133607, 0.133768, 0.694750;;, + 15;4;-0.692271,-0.142094, 0.142264, 0.693059;;, + 16;4;-0.690866,-0.148776, 0.148952, 0.691652;;, + 17;4;-0.689817,-0.153565, 0.153744, 0.690603;;, + 18;4;-0.689173,-0.156427, 0.156609, 0.689960;;, + 19;4;-0.688955,-0.157374, 0.157555, 0.689747;;, + 20;4;-0.690481,-0.150503, 0.150675, 0.691290;;, + 21;4;-0.694667,-0.129741, 0.129886, 0.695510;;, + 22;4;-0.700143,-0.095751, 0.095854, 0.701030;;, + 23;4;-0.704802,-0.050976, 0.051022, 0.705728;;, + 24;4;-0.706633,-0.000025, 0.000008, 0.707580;;, + 25;4;-0.704797, 0.050917,-0.050997, 0.705739;;, + 26;4;-0.700136, 0.095673,-0.095805, 0.701055;;, + 27;4;-0.694661, 0.129640,-0.129811, 0.695549;;, + 28;4;-0.690477, 0.150386,-0.150579, 0.691340;;, + 29;4;-0.688950, 0.157251,-0.157451, 0.689804;;, + 30;4;-0.690460, 0.150464,-0.150656, 0.691323;;, + 31;4;-0.694603, 0.129950,-0.130120, 0.695492;;, + 32;4;-0.700040, 0.096361,-0.096494, 0.700962;;, + 33;4;-0.704707, 0.052104,-0.052186, 0.705656;;, + 34;4;-0.706626, 0.001730,-0.001751, 0.707583;;, + 35;4;-0.704958,-0.048653, 0.048694, 0.705901;;, + 36;4;-0.700512,-0.092931, 0.093025, 0.701422;;, + 37;4;-0.695244,-0.126545, 0.126680, 0.696114;;, + 38;4;-0.691205,-0.147078, 0.147237, 0.692045;;, + 39;4;-0.689730,-0.153872, 0.154040, 0.690556;;, + 40;4;-0.691193,-0.147149, 0.147310, 0.692025;;, + 41;4;-0.695199,-0.126835, 0.126976, 0.696052;;, + 42;4;-0.700439,-0.093584, 0.093690, 0.701320;;, + 43;4;-0.704898,-0.049788, 0.049844, 0.705801;;, + 44;4;-0.706652, 0.000053,-0.000054, 0.707561;;, + 45;4;-0.704894, 0.049900,-0.049959, 0.705789;;, + 46;4;-0.700430, 0.093712,-0.093822, 0.701294;;, + 47;4;-0.695184, 0.126979,-0.127127, 0.696013;;, + 48;4;-0.691173, 0.147306,-0.147476, 0.691976;;, + 49;4;-0.689709, 0.154034,-0.154211, 0.690503;;, + 50;4;-0.689876, 0.153283,-0.153460, 0.690670;;, + 51;4;-0.690374, 0.151018,-0.151192, 0.691172;;, + 52;4;-0.691192, 0.147220,-0.147390, 0.691994;;, + 53;4;-0.692304, 0.141884,-0.142048, 0.693114;;, + 54;4;-0.693673, 0.135015,-0.135171, 0.694491;;, + 55;4;-0.695247, 0.126635,-0.126782, 0.696075;;, + 56;4;-0.696965, 0.116783,-0.116919, 0.697804;;, + 57;4;-0.698754, 0.105524,-0.105647, 0.699604;;, + 58;4;-0.700534, 0.092944,-0.093053, 0.701395;;, + 59;4;-0.702221, 0.079159,-0.079251, 0.703093;;, + 60;4;-0.703732, 0.064312,-0.064387, 0.704613;;, + 61;4;-0.704990, 0.048575,-0.048632, 0.705879;;, + 62;4;-0.705927, 0.032145,-0.032182, 0.706823;;, + 63;4;-0.706493, 0.015240,-0.015257, 0.707392;;, + 64;4;-0.706654,-0.001905, 0.001908, 0.707554;;, + 65;4;-0.706400,-0.019050, 0.019073, 0.707299;;, + 66;4;-0.705743,-0.035951, 0.035994, 0.706639;;, + 67;4;-0.704717,-0.052376, 0.052439, 0.705606;;, + 68;4;-0.703375,-0.068106, 0.068187, 0.704256;;, + 69;4;-0.701784,-0.082945, 0.083043, 0.702655;;, + 70;4;-0.700022,-0.096721, 0.096835, 0.700883;;, + 71;4;-0.698175,-0.109292, 0.109420, 0.699024;;, + 72;4;-0.696325,-0.120542, 0.120683, 0.697163;;, + 73;4;-0.694554,-0.130384, 0.130536, 0.695381;;, + 74;4;-0.692934,-0.138756, 0.138917, 0.693752;;, + 75;4;-0.691528,-0.145617, 0.145786, 0.692337;;, + 76;4;-0.690387,-0.150948, 0.151122, 0.691189;;, + 77;4;-0.689549,-0.154741, 0.154919, 0.690346;;, + 78;4;-0.689039,-0.157004, 0.157185, 0.689832;;, + 79;4;-0.688868,-0.157754, 0.157935, 0.689660;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 1.009079, 0.367400, 0.044988;;, + 1;3; 1.009079, 0.367400, 0.044988;;, + 2;3; 1.009079, 0.367400, 0.044988;;, + 3;3; 1.009079, 0.367400, 0.044988;;, + 4;3; 1.009079, 0.367400, 0.044988;;, + 5;3; 1.009079, 0.367400, 0.044988;;, + 6;3; 1.009079, 0.367400, 0.044988;;, + 7;3; 1.009079, 0.367400, 0.044988;;, + 8;3; 1.009079, 0.367400, 0.044988;;, + 9;3; 1.009079, 0.367400, 0.044988;;, + 10;3; 1.009079, 0.367400, 0.044988;;, + 11;3; 1.009079, 0.367400, 0.044988;;, + 12;3; 1.009079, 0.367400, 0.044988;;, + 13;3; 1.009079, 0.367400, 0.044988;;, + 14;3; 1.009079, 0.367400, 0.044988;;, + 15;3; 1.009079, 0.367400, 0.044988;;, + 16;3; 1.009079, 0.367400, 0.044988;;, + 17;3; 1.009080, 0.367400, 0.044988;;, + 18;3; 1.009079, 0.367400, 0.044988;;, + 19;3; 1.009079, 0.367400, 0.044988;;, + 20;3; 1.009079, 0.367400, 0.044988;;, + 21;3; 1.009079, 0.367400, 0.044988;;, + 22;3; 1.009079, 0.367400, 0.044988;;, + 23;3; 1.009079, 0.367400, 0.044988;;, + 24;3; 1.009079, 0.367400, 0.044988;;, + 25;3; 1.009079, 0.367400, 0.044988;;, + 26;3; 1.009079, 0.367400, 0.044988;;, + 27;3; 1.009079, 0.367400, 0.044988;;, + 28;3; 1.009079, 0.367400, 0.044988;;, + 29;3; 1.009079, 0.367400, 0.044988;;, + 30;3; 1.009079, 0.367400, 0.044988;;, + 31;3; 1.009079, 0.367400, 0.044988;;, + 32;3; 1.009079, 0.367400, 0.044988;;, + 33;3; 1.009079, 0.367400, 0.044988;;, + 34;3; 1.009080, 0.367400, 0.044988;;, + 35;3; 1.009079, 0.367400, 0.044988;;, + 36;3; 1.009079, 0.367400, 0.044988;;, + 37;3; 1.009079, 0.367400, 0.044988;;, + 38;3; 1.009079, 0.367400, 0.044988;;, + 39;3; 1.009079, 0.367400, 0.044988;;, + 40;3; 1.009079, 0.367400, 0.044988;;, + 41;3; 1.009079, 0.367400, 0.044988;;, + 42;3; 1.009079, 0.367400, 0.044988;;, + 43;3; 1.009079, 0.367400, 0.044988;;, + 44;3; 1.009079, 0.367400, 0.044988;;, + 45;3; 1.009079, 0.367400, 0.044988;;, + 46;3; 1.009079, 0.367400, 0.044988;;, + 47;3; 1.009079, 0.367400, 0.044988;;, + 48;3; 1.009079, 0.367400, 0.044988;;, + 49;3; 1.009079, 0.367400, 0.044988;;, + 50;3; 1.009079, 0.367400, 0.044988;;, + 51;3; 1.009079, 0.367400, 0.044988;;, + 52;3; 1.009079, 0.367400, 0.044988;;, + 53;3; 1.009079, 0.367400, 0.044988;;, + 54;3; 1.009079, 0.367400, 0.044988;;, + 55;3; 1.009079, 0.367400, 0.044988;;, + 56;3; 1.009080, 0.367400, 0.044988;;, + 57;3; 1.009079, 0.367400, 0.044988;;, + 58;3; 1.009080, 0.367400, 0.044988;;, + 59;3; 1.009079, 0.367400, 0.044988;;, + 60;3; 1.009079, 0.367400, 0.044988;;, + 61;3; 1.009079, 0.367400, 0.044988;;, + 62;3; 1.009080, 0.367400, 0.044988;;, + 63;3; 1.009079, 0.367400, 0.044988;;, + 64;3; 1.009079, 0.367400, 0.044988;;, + 65;3; 1.009079, 0.367400, 0.044988;;, + 66;3; 1.009079, 0.367400, 0.044988;;, + 67;3; 1.009079, 0.367400, 0.044988;;, + 68;3; 1.009080, 0.367400, 0.044988;;, + 69;3; 1.009080, 0.367400, 0.044988;;, + 70;3; 1.009080, 0.367400, 0.044988;;, + 71;3; 1.009079, 0.367400, 0.044988;;, + 72;3; 1.009080, 0.367400, 0.044988;;, + 73;3; 1.009079, 0.367400, 0.044988;;, + 74;3; 1.009079, 0.367400, 0.044988;;, + 75;3; 1.009079, 0.367400, 0.044988;;, + 76;3; 1.009079, 0.367400, 0.044988;;, + 77;3; 1.009079, 0.367400, 0.044988;;, + 78;3; 1.009079, 0.367400, 0.044988;;, + 79;3; 1.009079, 0.367400, 0.044988;;; + } + AnimationKey { // Position + 2; + 80; + 0;3;-0.448732,-0.399916,-7.147284;;, + 1;3;-0.448732,-0.404025,-7.147274;;, + 2;3;-0.448732,-0.416442,-7.147199;;, + 3;3;-0.448732,-0.437189,-7.146982;;, + 4;3;-0.448732,-0.466091,-7.146529;;, + 5;3;-0.448732,-0.502716,-7.145728;;, + 6;3;-0.448732,-0.546334,-7.144456;;, + 7;3;-0.448732,-0.595880,-7.142581;;, + 8;3;-0.448732,-0.649957,-7.139967;;, + 9;3;-0.448732,-0.706885,-7.136487;;, + 10;3;-0.448732,-0.764784,-7.132030;;, + 11;3;-0.448732,-0.821707,-7.126510;;, + 12;3;-0.448732,-0.875778,-7.119878;;, + 13;3;-0.448732,-0.925314,-7.112115;;, + 14;3;-0.448732,-0.968922,-7.103236;;, + 15;3;-0.448732,-1.005537,-7.093283;;, + 16;3;-0.448732,-1.034429,-7.082315;;, + 17;3;-0.448732,-1.055169,-7.070407;;, + 18;3;-0.448732,-1.067582,-7.057637;;, + 19;3;-0.448732,-1.071688,-7.044086;;, + 20;3;-0.448732,-1.050912,-7.024075;;, + 21;3;-0.448732,-0.988394,-6.991998;;, + 22;3;-0.448732,-0.886765,-6.948990;;, + 23;3;-0.448732,-0.753869,-6.897814;;, + 24;3;-0.448732,-0.603347,-6.842973;;, + 25;3;-0.448732,-0.452844,-6.790066;;, + 26;3;-0.448732,-0.319993,-6.744496;;, + 27;3;-0.448732,-0.218418,-6.710258;;, + 28;3;-0.448732,-0.155941,-6.689467;;, + 29;3;-0.448732,-0.135180,-6.682620;;, + 30;3;-0.448732,-0.152022,-6.690032;;, + 31;3;-0.448732,-0.202706,-6.712340;;, + 32;3;-0.448732,-0.285111,-6.748610;;, + 33;3;-0.448732,-0.392890,-6.796051;;, + 34;3;-0.448732,-0.514988,-6.849793;;, + 35;3;-0.448732,-0.637090,-6.903535;;, + 36;3;-0.448732,-0.744884,-6.950976;;, + 37;3;-0.448732,-0.827305,-6.987247;;, + 38;3;-0.448732,-0.878002,-7.009555;;, + 39;3;-0.448732,-0.894848,-7.016967;;, + 40;3;-0.448732,-0.869473,-7.011635;;, + 41;3;-0.448732,-0.793118,-6.995588;;, + 42;3;-0.448732,-0.668994,-6.969497;;, + 43;3;-0.448732,-0.506665,-6.935371;;, + 44;3;-0.448732,-0.322774,-6.896713;;, + 45;3;-0.448732,-0.138857,-6.858054;;, + 46;3;-0.448732, 0.023536,-6.823927;;, + 47;3;-0.448732, 0.147735,-6.797835;;, + 48;3;-0.448732, 0.224147,-6.781788;;, + 49;3;-0.448732, 0.249544,-6.776455;;, + 50;3;-0.448732, 0.246350,-6.776997;;, + 51;3;-0.448732, 0.236709,-6.778630;;, + 52;3;-0.448732, 0.220568,-6.781366;;, + 53;3;-0.448732, 0.197921,-6.785206;;, + 54;3;-0.448732, 0.168823,-6.790139;;, + 55;3;-0.448732, 0.133401,-6.796146;;, + 56;3;-0.448732, 0.091862,-6.803191;;, + 57;3;-0.448732, 0.044507,-6.811224;;, + 58;3;-0.448732,-0.008263,-6.820177;;, + 59;3;-0.448732,-0.065943,-6.829964;;, + 60;3;-0.448732,-0.127922,-6.840481;;, + 61;3;-0.448732,-0.193485,-6.851608;;, + 62;3;-0.448732,-0.261828,-6.863206;;, + 63;3;-0.448732,-0.332070,-6.875127;;, + 64;3;-0.448732,-0.403277,-6.887212;;, + 65;3;-0.448732,-0.474487,-6.899297;;, + 66;3;-0.448732,-0.544736,-6.911219;;, + 67;3;-0.448732,-0.613091,-6.922818;;, + 68;3;-0.448732,-0.678669,-6.933944;;, + 69;3;-0.448732,-0.740665,-6.944461;;, + 70;3;-0.448732,-0.798365,-6.954247;;, + 71;3;-0.448732,-0.851156,-6.963201;;, + 72;3;-0.448732,-0.898531,-6.971233;;, + 73;3;-0.448732,-0.940090,-6.978278;;, + 74;3;-0.448732,-0.975531,-6.984285;;, + 75;3;-0.448732,-1.004644,-6.989219;;, + 76;3;-0.448732,-1.027304,-6.993057;;, + 77;3;-0.448732,-1.043455,-6.995793;;, + 78;3;-0.448732,-1.053102,-6.997427;;, + 79;3;-0.448732,-1.056298,-6.997969;;; + } + } + Animation { + {Cube_007} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706699, 0.000944,-0.000945, 0.707513;;, + 2;4;-0.706690, 0.003796,-0.003801, 0.707503;;, + 3;4;-0.706647, 0.008562,-0.008573, 0.707462;;, + 4;4;-0.706535, 0.015201,-0.015221, 0.707351;;, + 5;4;-0.706303, 0.023613,-0.023643, 0.707120;;, + 6;4;-0.705897, 0.033627,-0.033671, 0.706714;;, + 7;4;-0.705263, 0.044995,-0.045053, 0.706081;;, + 8;4;-0.704363, 0.057391,-0.057465, 0.705179;;, + 9;4;-0.703180, 0.070423,-0.070512, 0.703994;;, + 10;4;-0.701729, 0.083653,-0.083758, 0.702540;;, + 11;4;-0.700061, 0.096633,-0.096753, 0.700867;;, + 12;4;-0.698255, 0.108932,-0.109066, 0.699056;;, + 13;4;-0.696410, 0.120171,-0.120318, 0.697206;;, + 14;4;-0.694636, 0.130040,-0.130197, 0.695427;;, + 15;4;-0.693038, 0.138306,-0.138471, 0.693826;;, + 16;4;-0.691708, 0.144816,-0.144987, 0.692494;;, + 17;4;-0.690714, 0.149481,-0.149656, 0.691500;;, + 18;4;-0.690103, 0.152270,-0.152446, 0.690892;;, + 19;4;-0.689897, 0.153192,-0.153368, 0.690690;;, + 20;4;-0.691356, 0.146435,-0.146601, 0.692165;;, + 21;4;-0.695352, 0.126019,-0.126160, 0.696195;;, + 22;4;-0.700567, 0.092608,-0.092706, 0.701453;;, + 23;4;-0.704970, 0.048611,-0.048653, 0.705894;;, + 24;4;-0.706633,-0.001439, 0.001460, 0.707578;;, + 25;4;-0.704757,-0.051474, 0.051556, 0.705698;;, + 26;4;-0.700169,-0.095433, 0.095567, 0.701087;;, + 27;4;-0.694816,-0.128802, 0.128973, 0.695706;;, + 28;4;-0.690736,-0.149185, 0.149378, 0.691602;;, + 29;4;-0.689249,-0.155931, 0.156131, 0.690105;;, + 30;4;-0.690758,-0.149082, 0.149275, 0.691625;;, + 31;4;-0.694892,-0.128384, 0.128553, 0.695785;;, + 32;4;-0.700292,-0.094494, 0.094625, 0.701219;;, + 33;4;-0.704868,-0.049845, 0.049922, 0.705822;;, + 34;4;-0.706625, 0.000968,-0.000952, 0.707587;;, + 35;4;-0.704734, 0.051775,-0.051823, 0.705680;;, + 36;4;-0.700040, 0.096410,-0.096514, 0.700952;;, + 37;4;-0.694551, 0.130284,-0.130428, 0.695423;;, + 38;4;-0.690364, 0.150970,-0.151139, 0.691204;;, + 39;4;-0.688837, 0.157814,-0.157992, 0.689664;;, + 40;4;-0.690381, 0.150907,-0.151079, 0.691214;;, + 41;4;-0.694606, 0.130034,-0.130184, 0.695461;;, + 42;4;-0.700129, 0.095855,-0.095969, 0.701015;;, + 43;4;-0.704821, 0.050819,-0.050881, 0.705731;;, + 44;4;-0.706648,-0.000444, 0.000442, 0.707565;;, + 45;4;-0.704760,-0.051711, 0.051770, 0.705662;;, + 46;4;-0.700013,-0.096759, 0.096871, 0.700882;;, + 47;4;-0.694446,-0.130950, 0.131102, 0.695276;;, + 48;4;-0.690193,-0.151833, 0.152008, 0.690995;;, + 49;4;-0.688641,-0.158743, 0.158926, 0.689433;;, + 50;4;-0.688814,-0.157989, 0.158171, 0.689606;;, + 51;4;-0.689331,-0.155713, 0.155892, 0.690126;;, + 52;4;-0.690179,-0.151897, 0.152073, 0.690980;;, + 53;4;-0.691335,-0.146536, 0.146706, 0.692142;;, + 54;4;-0.692758,-0.139634, 0.139797, 0.693574;;, + 55;4;-0.694398,-0.131213, 0.131367, 0.695224;;, + 56;4;-0.696192,-0.121313, 0.121456, 0.697028;;, + 57;4;-0.698065,-0.109997, 0.110126, 0.698912;;, + 58;4;-0.699936,-0.097351, 0.097467, 0.700795;;, + 59;4;-0.701719,-0.083493, 0.083592, 0.702589;;, + 60;4;-0.703331,-0.068565, 0.068647, 0.704210;;, + 61;4;-0.704691,-0.052740, 0.052803, 0.705579;;, + 62;4;-0.705730,-0.036215, 0.036259, 0.706625;;, + 63;4;-0.706396,-0.019212, 0.019235, 0.707294;;, + 64;4;-0.706654,-0.001963, 0.001966, 0.707554;;, + 65;4;-0.706492, 0.015286,-0.015304, 0.707391;;, + 66;4;-0.705920, 0.032294,-0.032331, 0.706815;;, + 67;4;-0.704973, 0.048823,-0.048881, 0.705862;;, + 68;4;-0.703700, 0.064655,-0.064732, 0.704582;;, + 69;4;-0.702172, 0.079592,-0.079686, 0.703043;;, + 70;4;-0.700465, 0.093460,-0.093570, 0.701326;;, + 71;4;-0.698665, 0.106115,-0.106239, 0.699514;;, + 72;4;-0.696855, 0.117442,-0.117579, 0.697693;;, + 73;4;-0.695117, 0.127352,-0.127500, 0.695944;;, + 74;4;-0.693523, 0.135781,-0.135939, 0.694341;;, + 75;4;-0.692138, 0.142691,-0.142856, 0.692948;;, + 76;4;-0.691013, 0.148058,-0.148229, 0.691815;;, + 77;4;-0.690185, 0.151878,-0.152053, 0.690983;;, + 78;4;-0.689681, 0.154157,-0.154335, 0.690475;;, + 79;4;-0.689512, 0.154912,-0.155090, 0.690306;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 1.009079, 0.367400, 0.044988;;, + 1;3; 1.009079, 0.367400, 0.044988;;, + 2;3; 1.009079, 0.367400, 0.044988;;, + 3;3; 1.009079, 0.367400, 0.044988;;, + 4;3; 1.009079, 0.367400, 0.044988;;, + 5;3; 1.009079, 0.367400, 0.044988;;, + 6;3; 1.009080, 0.367400, 0.044988;;, + 7;3; 1.009079, 0.367400, 0.044988;;, + 8;3; 1.009079, 0.367400, 0.044988;;, + 9;3; 1.009079, 0.367400, 0.044988;;, + 10;3; 1.009079, 0.367400, 0.044988;;, + 11;3; 1.009079, 0.367400, 0.044988;;, + 12;3; 1.009079, 0.367400, 0.044988;;, + 13;3; 1.009080, 0.367400, 0.044988;;, + 14;3; 1.009079, 0.367400, 0.044988;;, + 15;3; 1.009079, 0.367400, 0.044988;;, + 16;3; 1.009079, 0.367400, 0.044988;;, + 17;3; 1.009079, 0.367400, 0.044988;;, + 18;3; 1.009080, 0.367400, 0.044988;;, + 19;3; 1.009079, 0.367400, 0.044988;;, + 20;3; 1.009079, 0.367400, 0.044988;;, + 21;3; 1.009079, 0.367400, 0.044988;;, + 22;3; 1.009079, 0.367400, 0.044988;;, + 23;3; 1.009079, 0.367400, 0.044988;;, + 24;3; 1.009079, 0.367400, 0.044988;;, + 25;3; 1.009079, 0.367400, 0.044988;;, + 26;3; 1.009079, 0.367400, 0.044988;;, + 27;3; 1.009079, 0.367400, 0.044988;;, + 28;3; 1.009079, 0.367400, 0.044988;;, + 29;3; 1.009079, 0.367400, 0.044988;;, + 30;3; 1.009080, 0.367400, 0.044988;;, + 31;3; 1.009079, 0.367400, 0.044988;;, + 32;3; 1.009079, 0.367400, 0.044988;;, + 33;3; 1.009079, 0.367400, 0.044988;;, + 34;3; 1.009079, 0.367400, 0.044988;;, + 35;3; 1.009079, 0.367400, 0.044988;;, + 36;3; 1.009079, 0.367400, 0.044988;;, + 37;3; 1.009079, 0.367400, 0.044988;;, + 38;3; 1.009079, 0.367400, 0.044988;;, + 39;3; 1.009079, 0.367400, 0.044988;;, + 40;3; 1.009079, 0.367400, 0.044988;;, + 41;3; 1.009080, 0.367400, 0.044988;;, + 42;3; 1.009079, 0.367400, 0.044988;;, + 43;3; 1.009079, 0.367400, 0.044988;;, + 44;3; 1.009079, 0.367400, 0.044988;;, + 45;3; 1.009079, 0.367400, 0.044988;;, + 46;3; 1.009079, 0.367400, 0.044988;;, + 47;3; 1.009079, 0.367400, 0.044988;;, + 48;3; 1.009079, 0.367400, 0.044988;;, + 49;3; 1.009079, 0.367400, 0.044988;;, + 50;3; 1.009079, 0.367400, 0.044988;;, + 51;3; 1.009079, 0.367400, 0.044988;;, + 52;3; 1.009079, 0.367400, 0.044988;;, + 53;3; 1.009079, 0.367400, 0.044988;;, + 54;3; 1.009079, 0.367400, 0.044988;;, + 55;3; 1.009079, 0.367400, 0.044988;;, + 56;3; 1.009079, 0.367400, 0.044988;;, + 57;3; 1.009079, 0.367400, 0.044988;;, + 58;3; 1.009079, 0.367400, 0.044988;;, + 59;3; 1.009079, 0.367400, 0.044988;;, + 60;3; 1.009079, 0.367400, 0.044988;;, + 61;3; 1.009079, 0.367400, 0.044988;;, + 62;3; 1.009079, 0.367400, 0.044988;;, + 63;3; 1.009079, 0.367400, 0.044988;;, + 64;3; 1.009079, 0.367400, 0.044988;;, + 65;3; 1.009079, 0.367400, 0.044988;;, + 66;3; 1.009079, 0.367400, 0.044988;;, + 67;3; 1.009079, 0.367400, 0.044988;;, + 68;3; 1.009079, 0.367400, 0.044988;;, + 69;3; 1.009079, 0.367400, 0.044988;;, + 70;3; 1.009079, 0.367400, 0.044988;;, + 71;3; 1.009079, 0.367400, 0.044988;;, + 72;3; 1.009079, 0.367400, 0.044988;;, + 73;3; 1.009079, 0.367400, 0.044988;;, + 74;3; 1.009079, 0.367400, 0.044988;;, + 75;3; 1.009079, 0.367400, 0.044988;;, + 76;3; 1.009079, 0.367400, 0.044988;;, + 77;3; 1.009079, 0.367400, 0.044988;;, + 78;3; 1.009079, 0.367400, 0.044988;;, + 79;3; 1.009079, 0.367400, 0.044988;;; + } + AnimationKey { // Position + 2; + 80; + 0;3; 0.982119,-0.398271,-7.147284;;, + 1;3; 0.982119,-0.394882,-7.144940;;, + 2;3; 0.982119,-0.384637,-7.137857;;, + 3;3; 0.982119,-0.367519,-7.126019;;, + 4;3; 0.982119,-0.343674,-7.109527;;, + 5;3; 0.982119,-0.313457,-7.088624;;, + 6;3; 0.982119,-0.277470,-7.063726;;, + 7;3; 0.982119,-0.236591,-7.035442;;, + 8;3; 0.982119,-0.191969,-7.004568;;, + 9;3; 0.982119,-0.144991,-6.972064;;, + 10;3; 0.982119,-0.097204,-6.939005;;, + 11;3; 0.982119,-0.050215,-6.906504;;, + 12;3; 0.982119,-0.005573,-6.875633;;, + 13;3; 0.982119, 0.035333,-6.847355;;, + 14;3; 0.982119, 0.071350,-6.822463;;, + 15;3; 0.982119, 0.101597,-6.801566;;, + 16;3; 0.982119, 0.125468,-6.785079;;, + 17;3; 0.982119, 0.142607,-6.773246;;, + 18;3; 0.982119, 0.152866,-6.766165;;, + 19;3; 0.982119, 0.156260,-6.763823;;, + 20;3; 0.982119, 0.128710,-6.767977;;, + 21;3; 0.982119, 0.045834,-6.780480;;, + 22;3; 0.982119,-0.088843,-6.800809;;, + 23;3; 0.982119,-0.264892,-6.827399;;, + 24;3; 0.982119,-0.464226,-6.857521;;, + 25;3; 0.982119,-0.663491,-6.887642;;, + 26;3; 0.982119,-0.839364,-6.914232;;, + 27;3; 0.982119,-0.973836,-6.934562;;, + 28;3; 0.982119,-1.056554,-6.947064;;, + 29;3; 0.982119,-1.084046,-6.951219;;, + 30;3; 0.982119,-1.057759,-6.946794;;, + 31;3; 0.982119,-0.978647,-6.933474;;, + 32;3; 0.982119,-0.850017,-6.911818;;, + 33;3; 0.982119,-0.681774,-6.883492;;, + 34;3; 0.982119,-0.491183,-6.851403;;, + 35;3; 0.982119,-0.300592,-6.819315;;, + 36;3; 0.982119,-0.132350,-6.790989;;, + 37;3; 0.982119,-0.003719,-6.769332;;, + 38;3; 0.982119, 0.075391,-6.756013;;, + 39;3; 0.982119, 0.101678,-6.751587;;, + 40;3; 0.982119, 0.075342,-6.757804;;, + 41;3; 0.982119,-0.003907,-6.776517;;, + 42;3; 0.982119,-0.132745,-6.806942;;, + 43;3; 0.982119,-0.301252,-6.846736;;, + 44;3; 0.982119,-0.492163,-6.891817;;, + 45;3; 0.982119,-0.683122,-6.936897;;, + 46;3; 0.982119,-0.851748,-6.976693;;, + 47;3; 0.982119,-0.980724,-7.007119;;, + 48;3; 0.982119,-1.060079,-7.025833;;, + 49;3; 0.982119,-1.086455,-7.032051;;, + 50;3; 0.982119,-1.083567,-7.031389;;, + 51;3; 0.982119,-1.074850,-7.029391;;, + 52;3; 0.982119,-1.060257,-7.026044;;, + 53;3; 0.982119,-1.039781,-7.021348;;, + 54;3; 0.982119,-1.013474,-7.015314;;, + 55;3; 0.982119,-0.981449,-7.007967;;, + 56;3; 0.982119,-0.943896,-6.999349;;, + 57;3; 0.982119,-0.901085,-6.989524;;, + 58;3; 0.982119,-0.853379,-6.978574;;, + 59;3; 0.982119,-0.801236,-6.966603;;, + 60;3; 0.982119,-0.745209,-6.953739;;, + 61;3; 0.982119,-0.685942,-6.940131;;, + 62;3; 0.982119,-0.624166,-6.925944;;, + 63;3; 0.982119,-0.560674,-6.911363;;, + 64;3; 0.982119,-0.496313,-6.896581;;, + 65;3; 0.982119,-0.431951,-6.881800;;, + 66;3; 0.982119,-0.368460,-6.867218;;, + 67;3; 0.982119,-0.306684,-6.853032;;, + 68;3; 0.982119,-0.247418,-6.839423;;, + 69;3; 0.982119,-0.191392,-6.826559;;, + 70;3; 0.982119,-0.139249,-6.814589;;, + 71;3; 0.982119,-0.091545,-6.803638;;, + 72;3; 0.982119,-0.048735,-6.793814;;, + 73;3; 0.982119,-0.011182,-6.785196;;, + 74;3; 0.982119, 0.020842,-6.777849;;, + 75;3; 0.982119, 0.047149,-6.771815;;, + 76;3; 0.982119, 0.067624,-6.767118;;, + 77;3; 0.982119, 0.082217,-6.763772;;, + 78;3; 0.982119, 0.090933,-6.761774;;, + 79;3; 0.982119, 0.093821,-6.761112;;; + } + } + Animation { + {Cube_008} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706699, 0.000944,-0.000945, 0.707513;;, + 2;4;-0.706690, 0.003796,-0.003801, 0.707503;;, + 3;4;-0.706647, 0.008562,-0.008573, 0.707462;;, + 4;4;-0.706535, 0.015201,-0.015221, 0.707351;;, + 5;4;-0.706303, 0.023613,-0.023643, 0.707120;;, + 6;4;-0.705897, 0.033627,-0.033671, 0.706714;;, + 7;4;-0.705263, 0.044995,-0.045053, 0.706081;;, + 8;4;-0.704363, 0.057391,-0.057465, 0.705179;;, + 9;4;-0.703180, 0.070423,-0.070512, 0.703994;;, + 10;4;-0.701729, 0.083653,-0.083758, 0.702540;;, + 11;4;-0.700061, 0.096633,-0.096753, 0.700867;;, + 12;4;-0.698255, 0.108932,-0.109066, 0.699056;;, + 13;4;-0.696410, 0.120171,-0.120318, 0.697206;;, + 14;4;-0.694636, 0.130040,-0.130197, 0.695427;;, + 15;4;-0.693038, 0.138306,-0.138471, 0.693826;;, + 16;4;-0.691708, 0.144816,-0.144987, 0.692494;;, + 17;4;-0.690714, 0.149481,-0.149656, 0.691500;;, + 18;4;-0.690103, 0.152270,-0.152446, 0.690892;;, + 19;4;-0.689897, 0.153192,-0.153368, 0.690690;;, + 20;4;-0.691356, 0.146435,-0.146601, 0.692165;;, + 21;4;-0.695352, 0.126019,-0.126160, 0.696195;;, + 22;4;-0.700567, 0.092608,-0.092706, 0.701453;;, + 23;4;-0.704970, 0.048611,-0.048653, 0.705894;;, + 24;4;-0.706633,-0.001439, 0.001460, 0.707578;;, + 25;4;-0.704757,-0.051474, 0.051556, 0.705698;;, + 26;4;-0.700169,-0.095433, 0.095567, 0.701087;;, + 27;4;-0.694816,-0.128802, 0.128973, 0.695706;;, + 28;4;-0.690736,-0.149185, 0.149378, 0.691602;;, + 29;4;-0.689249,-0.155931, 0.156131, 0.690105;;, + 30;4;-0.690758,-0.149082, 0.149275, 0.691625;;, + 31;4;-0.694892,-0.128384, 0.128553, 0.695785;;, + 32;4;-0.700292,-0.094494, 0.094625, 0.701219;;, + 33;4;-0.704868,-0.049845, 0.049922, 0.705822;;, + 34;4;-0.706625, 0.000968,-0.000952, 0.707587;;, + 35;4;-0.704734, 0.051775,-0.051823, 0.705680;;, + 36;4;-0.700040, 0.096410,-0.096514, 0.700952;;, + 37;4;-0.694551, 0.130284,-0.130428, 0.695423;;, + 38;4;-0.690364, 0.150970,-0.151139, 0.691204;;, + 39;4;-0.688837, 0.157814,-0.157992, 0.689664;;, + 40;4;-0.690381, 0.150907,-0.151079, 0.691214;;, + 41;4;-0.694606, 0.130034,-0.130184, 0.695461;;, + 42;4;-0.700129, 0.095855,-0.095969, 0.701015;;, + 43;4;-0.704821, 0.050819,-0.050881, 0.705731;;, + 44;4;-0.706648,-0.000444, 0.000442, 0.707565;;, + 45;4;-0.704760,-0.051711, 0.051770, 0.705662;;, + 46;4;-0.700013,-0.096759, 0.096871, 0.700882;;, + 47;4;-0.694446,-0.130950, 0.131102, 0.695276;;, + 48;4;-0.690193,-0.151833, 0.152008, 0.690995;;, + 49;4;-0.688641,-0.158743, 0.158926, 0.689433;;, + 50;4;-0.688814,-0.157989, 0.158171, 0.689606;;, + 51;4;-0.689331,-0.155713, 0.155892, 0.690126;;, + 52;4;-0.690179,-0.151897, 0.152073, 0.690980;;, + 53;4;-0.691335,-0.146536, 0.146706, 0.692142;;, + 54;4;-0.692758,-0.139634, 0.139797, 0.693574;;, + 55;4;-0.694398,-0.131213, 0.131367, 0.695224;;, + 56;4;-0.696192,-0.121313, 0.121456, 0.697028;;, + 57;4;-0.698065,-0.109997, 0.110126, 0.698912;;, + 58;4;-0.699936,-0.097351, 0.097467, 0.700795;;, + 59;4;-0.701719,-0.083493, 0.083592, 0.702589;;, + 60;4;-0.703331,-0.068565, 0.068647, 0.704210;;, + 61;4;-0.704691,-0.052740, 0.052803, 0.705579;;, + 62;4;-0.705730,-0.036215, 0.036259, 0.706625;;, + 63;4;-0.706396,-0.019212, 0.019235, 0.707294;;, + 64;4;-0.706654,-0.001963, 0.001966, 0.707554;;, + 65;4;-0.706492, 0.015286,-0.015304, 0.707391;;, + 66;4;-0.705920, 0.032294,-0.032331, 0.706815;;, + 67;4;-0.704973, 0.048823,-0.048881, 0.705862;;, + 68;4;-0.703700, 0.064655,-0.064732, 0.704582;;, + 69;4;-0.702172, 0.079592,-0.079686, 0.703043;;, + 70;4;-0.700465, 0.093460,-0.093570, 0.701326;;, + 71;4;-0.698665, 0.106115,-0.106239, 0.699514;;, + 72;4;-0.696855, 0.117442,-0.117579, 0.697693;;, + 73;4;-0.695117, 0.127352,-0.127500, 0.695944;;, + 74;4;-0.693523, 0.135781,-0.135939, 0.694341;;, + 75;4;-0.692138, 0.142691,-0.142856, 0.692948;;, + 76;4;-0.691013, 0.148058,-0.148229, 0.691815;;, + 77;4;-0.690185, 0.151878,-0.152053, 0.690983;;, + 78;4;-0.689681, 0.154157,-0.154335, 0.690475;;, + 79;4;-0.689512, 0.154912,-0.155090, 0.690306;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 0.195703, 0.182964, 0.780890;;, + 1;3; 0.195703, 0.182964, 0.780890;;, + 2;3; 0.195703, 0.182964, 0.780890;;, + 3;3; 0.195703, 0.182964, 0.780890;;, + 4;3; 0.195703, 0.182964, 0.780890;;, + 5;3; 0.195703, 0.182964, 0.780890;;, + 6;3; 0.195703, 0.182964, 0.780890;;, + 7;3; 0.195703, 0.182964, 0.780890;;, + 8;3; 0.195703, 0.182964, 0.780890;;, + 9;3; 0.195703, 0.182964, 0.780890;;, + 10;3; 0.195703, 0.182964, 0.780890;;, + 11;3; 0.195703, 0.182964, 0.780890;;, + 12;3; 0.195703, 0.182964, 0.780890;;, + 13;3; 0.195703, 0.182964, 0.780890;;, + 14;3; 0.195703, 0.182964, 0.780890;;, + 15;3; 0.195703, 0.182964, 0.780890;;, + 16;3; 0.195703, 0.182964, 0.780890;;, + 17;3; 0.195703, 0.182964, 0.780890;;, + 18;3; 0.195703, 0.182964, 0.780890;;, + 19;3; 0.195703, 0.182964, 0.780890;;, + 20;3; 0.195703, 0.182964, 0.780890;;, + 21;3; 0.195703, 0.182964, 0.780890;;, + 22;3; 0.195703, 0.182964, 0.780890;;, + 23;3; 0.195703, 0.182964, 0.780890;;, + 24;3; 0.195703, 0.182964, 0.780890;;, + 25;3; 0.195703, 0.182964, 0.780890;;, + 26;3; 0.195703, 0.182964, 0.780890;;, + 27;3; 0.195703, 0.182964, 0.780890;;, + 28;3; 0.195703, 0.182964, 0.780890;;, + 29;3; 0.195703, 0.182964, 0.780890;;, + 30;3; 0.195703, 0.182964, 0.780890;;, + 31;3; 0.195703, 0.182964, 0.780890;;, + 32;3; 0.195703, 0.182964, 0.780890;;, + 33;3; 0.195703, 0.182964, 0.780890;;, + 34;3; 0.195703, 0.182964, 0.780890;;, + 35;3; 0.195703, 0.182964, 0.780890;;, + 36;3; 0.195703, 0.182964, 0.780890;;, + 37;3; 0.195703, 0.182964, 0.780890;;, + 38;3; 0.195703, 0.182964, 0.780890;;, + 39;3; 0.195703, 0.182964, 0.780890;;, + 40;3; 0.195703, 0.182964, 0.780890;;, + 41;3; 0.195703, 0.182964, 0.780890;;, + 42;3; 0.195703, 0.182964, 0.780890;;, + 43;3; 0.195703, 0.182964, 0.780890;;, + 44;3; 0.195703, 0.182964, 0.780890;;, + 45;3; 0.195703, 0.182964, 0.780890;;, + 46;3; 0.195703, 0.182964, 0.780890;;, + 47;3; 0.195703, 0.182964, 0.780890;;, + 48;3; 0.195703, 0.182964, 0.780890;;, + 49;3; 0.195703, 0.182964, 0.780890;;, + 50;3; 0.195703, 0.182964, 0.780890;;, + 51;3; 0.195703, 0.182964, 0.780890;;, + 52;3; 0.195703, 0.182964, 0.780890;;, + 53;3; 0.195703, 0.182964, 0.780890;;, + 54;3; 0.195703, 0.182964, 0.780890;;, + 55;3; 0.195703, 0.182964, 0.780890;;, + 56;3; 0.195703, 0.182964, 0.780890;;, + 57;3; 0.195703, 0.182964, 0.780890;;, + 58;3; 0.195703, 0.182964, 0.780890;;, + 59;3; 0.195703, 0.182964, 0.780890;;, + 60;3; 0.195703, 0.182964, 0.780890;;, + 61;3; 0.195703, 0.182964, 0.780890;;, + 62;3; 0.195703, 0.182964, 0.780890;;, + 63;3; 0.195703, 0.182964, 0.780890;;, + 64;3; 0.195703, 0.182964, 0.780890;;, + 65;3; 0.195703, 0.182964, 0.780890;;, + 66;3; 0.195703, 0.182964, 0.780890;;, + 67;3; 0.195703, 0.182964, 0.780890;;, + 68;3; 0.195703, 0.182964, 0.780890;;, + 69;3; 0.195703, 0.182964, 0.780890;;, + 70;3; 0.195703, 0.182964, 0.780890;;, + 71;3; 0.195703, 0.182964, 0.780890;;, + 72;3; 0.195703, 0.182964, 0.780890;;, + 73;3; 0.195703, 0.182964, 0.780890;;, + 74;3; 0.195703, 0.182964, 0.780890;;, + 75;3; 0.195703, 0.182964, 0.780890;;, + 76;3; 0.195703, 0.182964, 0.780890;;, + 77;3; 0.195703, 0.182964, 0.780890;;, + 78;3; 0.195703, 0.182964, 0.780890;;, + 79;3; 0.195703, 0.182964, 0.780890;;; + } + AnimationKey { // Position + 2; + 80; + 0;3; 0.985878,-0.718404,-6.328409;;, + 1;3; 0.985878,-0.716950,-6.327615;;, + 2;3; 0.985878,-0.712554,-6.325198;;, + 3;3; 0.985878,-0.705207,-6.321122;;, + 4;3; 0.985878,-0.694972,-6.315381;;, + 5;3; 0.985878,-0.681998,-6.308012;;, + 6;3; 0.985878,-0.666546,-6.299107;;, + 7;3; 0.985878,-0.648991,-6.288815;;, + 8;3; 0.985878,-0.629828,-6.277351;;, + 9;3; 0.985878,-0.609652,-6.264987;;, + 10;3; 0.985878,-0.589131,-6.252039;;, + 11;3; 0.985878,-0.568955,-6.238850;;, + 12;3; 0.985878,-0.549789,-6.225760;;, + 13;3; 0.985878,-0.532232,-6.213085;;, + 14;3; 0.985878,-0.516777,-6.201101;;, + 15;3; 0.985878,-0.503801,-6.190028;;, + 16;3; 0.985878,-0.493563,-6.180032;;, + 17;3; 0.985878,-0.486214,-6.171224;;, + 18;3; 0.985878,-0.481817,-6.163669;;, + 19;3; 0.985878,-0.480362,-6.157396;;, + 20;3; 0.985878,-0.492642,-6.152040;;, + 21;3; 0.985878,-0.529594,-6.147311;;, + 22;3; 0.985878,-0.589670,-6.143323;;, + 23;3; 0.985878,-0.668236,-6.140161;;, + 24;3; 0.985878,-0.757231,-6.137845;;, + 25;3; 0.985878,-0.846219,-6.136311;;, + 26;3; 0.985878,-0.924770,-6.135415;;, + 27;3; 0.985878,-0.984827,-6.134974;;, + 28;3; 0.985878,-1.021765,-6.134810;;, + 29;3; 0.985878,-1.034040,-6.134781;;, + 30;3; 0.985878,-1.023379,-6.135458;;, + 31;3; 0.985878,-0.991296,-6.137495;;, + 32;3; 0.985878,-0.939131,-6.140805;;, + 33;3; 0.985878,-0.870902,-6.145136;;, + 34;3; 0.985878,-0.793609,-6.150042;;, + 35;3; 0.985878,-0.716317,-6.154948;;, + 36;3; 0.985878,-0.648088,-6.159278;;, + 37;3; 0.985878,-0.595923,-6.162590;;, + 38;3; 0.985878,-0.563840,-6.164626;;, + 39;3; 0.985878,-0.553180,-6.165302;;, + 40;3; 0.985878,-0.563436,-6.165089;;, + 41;3; 0.985878,-0.594300,-6.164446;;, + 42;3; 0.985878,-0.644484,-6.163401;;, + 43;3; 0.985878,-0.710121,-6.162034;;, + 44;3; 0.985878,-0.784478,-6.160485;;, + 45;3; 0.985878,-0.858838,-6.158936;;, + 46;3; 0.985878,-0.924482,-6.157569;;, + 47;3; 0.985878,-0.974673,-6.156523;;, + 48;3; 0.985878,-1.005544,-6.155880;;, + 49;3; 0.985878,-1.015802,-6.155667;;, + 50;3; 0.985878,-1.014653,-6.155672;;, + 51;3; 0.985878,-1.011186,-6.155688;;, + 52;3; 0.985878,-1.005381,-6.155716;;, + 53;3; 0.985878,-0.997234,-6.155754;;, + 54;3; 0.985878,-0.986766,-6.155803;;, + 55;3; 0.985878,-0.974020,-6.155862;;, + 56;3; 0.985878,-0.959072,-6.155932;;, + 57;3; 0.985878,-0.942028,-6.156013;;, + 58;3; 0.985878,-0.923034,-6.156101;;, + 59;3; 0.985878,-0.902269,-6.156199;;, + 60;3; 0.985878,-0.879956,-6.156303;;, + 61;3; 0.985878,-0.856350,-6.156414;;, + 62;3; 0.985878,-0.831742,-6.156528;;, + 63;3; 0.985878,-0.806450,-6.156647;;, + 64;3; 0.985878,-0.780811,-6.156767;;, + 65;3; 0.985878,-0.755171,-6.156887;;, + 66;3; 0.985878,-0.729879,-6.157006;;, + 67;3; 0.985878,-0.705271,-6.157121;;, + 68;3; 0.985878,-0.681665,-6.157231;;, + 69;3; 0.985878,-0.659352,-6.157336;;, + 70;3; 0.985878,-0.638587,-6.157433;;, + 71;3; 0.985878,-0.619592,-6.157522;;, + 72;3; 0.985878,-0.602548,-6.157602;;, + 73;3; 0.985878,-0.587600,-6.157671;;, + 74;3; 0.985878,-0.574854,-6.157732;;, + 75;3; 0.985878,-0.564386,-6.157781;;, + 76;3; 0.985878,-0.556239,-6.157819;;, + 77;3; 0.985878,-0.550433,-6.157845;;, + 78;3; 0.985878,-0.546966,-6.157862;;, + 79;3; 0.985878,-0.545818,-6.157867;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs/models/mobs_bee.png b/mods/mobs/models/mobs_bee.png new file mode 100644 index 0000000..25542aa Binary files /dev/null and b/mods/mobs/models/mobs_bee.png differ diff --git a/mods/mobs/models/mobs_bee.x b/mods/mobs/models/mobs_bee.x new file mode 100644 index 0000000..e900392 --- /dev/null +++ b/mods/mobs/models/mobs_bee.x @@ -0,0 +1,7645 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 0.384873, 0.000000, 0.000000, 0.000000, + 0.000000, 0.384873, 0.000000, 0.000000, + 0.000000, 0.000000, 0.384873, 0.000000, + 0.140869, 0.294248, 0.956928, 1.000000;; + } + Frame Armature_telo { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.997725, 0.067414, 0.000000, + 0.000000,-0.067414,-0.997725, 0.000000, + -0.420690, 0.533795,-0.000000, 1.000000;; + } + Frame Armature_popa { + FrameTransformMatrix { + -1.000000, 0.000000,-0.000001, 0.000000, + -0.000000, 0.979027, 0.203730, 0.000000, + 0.000001, 0.203730,-0.979027, 0.000000, + 0.000000, 1.173850, 0.000000, 1.000000;; + } + } //End of Armature_popa + Frame Armature_nogi1 { + FrameTransformMatrix { + -0.000000, 0.997725, 0.067414, 0.000000, + 0.814990,-0.039065, 0.578158, 0.000000, + 0.579476, 0.054942,-0.813135, 0.000000, + 0.000000, 1.173850, 0.000000, 1.000000;; + } + } //End of Armature_nogi1 + Frame Armature_nogi2 { + FrameTransformMatrix { + -0.000000,-0.997725,-0.067414, 0.000000, + -0.835281,-0.037066, 0.548572, 0.000000, + -0.549823, 0.056310,-0.833381, 0.000000, + 0.000000, 1.173850, 0.000000, 1.000000;; + } + } //End of Armature_nogi2 + Frame Armature_golova { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.963513, 0.267663, 0.000000, + 0.000000,-0.267663,-0.963513, 0.000000, + 0.000000,-0.000000, 0.000000, 1.000000;; + } + Frame Armature_us1 { + FrameTransformMatrix { + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000, 0.588365, 0.808596, 0.000000, + 0.000000, 0.808596,-0.588364, 0.000000, + 0.000000, 0.535820, 1.341474, 1.000000;; + } + } //End of Armature_us1 + } //End of Armature_golova + Frame Armature_Bone_006 { + FrameTransformMatrix { + -1.000000,-0.000000,-0.000001, 0.000000, + 0.000000, 0.530521,-0.847671, 0.000000, + 0.000000,-0.847672,-0.530521, 0.000000, + 0.000000,-0.000000, 0.000000, 1.000000;; + } + Frame Armature_Bone_007 { + FrameTransformMatrix { + -0.000000, 0.472169,-0.881508, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 0.881508, 0.472169, 0.000000, + 0.000000, 1.619178, 0.000000, 1.000000;; + } + Frame Armature_krilo1 { + FrameTransformMatrix { + 0.143811,-0.989605,-0.000000, 0.000000, + 0.989605, 0.143811, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -0.000000, 0.328829,-0.000000, 1.000000;; + } + } //End of Armature_krilo1 + } //End of Armature_Bone_007 + Frame Armature_Bone_008 { + FrameTransformMatrix { + 0.000000,-0.472169, 0.881508, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.881508, 0.472169, 0.000000, + 0.000000, 1.619178, 0.000000, 1.000000;; + } + Frame Armature_krilo2 { + FrameTransformMatrix { + 0.132673, 0.991160,-0.000000, 0.000000, + -0.991160, 0.132673, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 0.346481,-0.000000, 1.000000;; + } + } //End of Armature_krilo2 + } //End of Armature_Bone_008 + } //End of Armature_Bone_006 + } //End of Armature_telo + } //End of Armature + Frame Cube { + FrameTransformMatrix { + 0.384873, 0.000000, 0.000000, 0.000000, + 0.000000, 0.384873, 0.000000, 0.000000, + 0.000000, 0.000000, 0.384873, 0.000000, + 0.142552,-0.710054, 0.633902, 1.000000;; + } + Mesh { //Mesh Mesh + 752; + -1.207143;-1.565834;-0.160260;, + -1.207143; 0.848453;-0.114428;, + -1.207143; 0.848453; 2.299859;, + -1.207143;-1.565834; 2.061798;, + 0.000000; 1.649486;-0.222824;, + -0.697598; 1.641988;-0.148365;, + -1.207143; 0.848453;-0.114428;, + 0.000000; 0.793238;-0.357718;, + 1.207143; 0.848453;-0.114428;, + 1.207143;-1.565834;-0.160260;, + 1.207143;-1.565834; 2.061798;, + 1.207143; 0.848453; 2.299859;, + 0.000000;-3.357429;-0.154227;, + 0.754746;-2.998208;-0.084791;, + 1.207143;-1.565834;-0.160260;, + 0.000000;-1.811853;-0.407172;, + 1.207143;-1.565834;-0.160260;, + 1.207143; 0.848453;-0.114428;, + 0.000000; 0.793238;-0.357718;, + 0.000000;-1.811853;-0.407172;, + -1.207143;-1.565834; 2.061798;, + -1.207143; 0.848453; 2.299859;, + 0.000000; 0.793238; 2.418884;, + 0.000000;-1.811853; 2.162010;, + 0.000000;-4.017673;-0.152394;, + 0.394190;-3.610095;-0.083093;, + 0.754746;-2.998208;-0.084791;, + 0.000000;-3.357429;-0.154227;, + 0.000000;-3.357429; 1.267141;, + -0.754746;-2.998208; 1.232472;, + -1.207143;-1.565834; 2.061798;, + 0.000000;-1.811853; 2.162010;, + -1.207143;-1.565834;-0.160260;, + -1.207143;-1.565834; 2.061798;, + -0.754746;-2.998208; 1.232472;, + -0.754746;-2.998208;-0.084791;, + 1.207143;-1.565834; 2.061798;, + 1.207143;-1.565834;-0.160260;, + 0.754746;-2.998208;-0.084791;, + 0.754746;-2.998208; 1.232472;, + 0.000000;-4.017673;-0.152394;, + -0.394190;-3.610095;-0.083093;, + -0.394190;-3.610095; 0.502768;, + 0.000000;-4.017673; 0.479768;, + 0.754746;-2.998208; 1.232472;, + 0.754746;-2.998208;-0.084791;, + 0.394190;-3.610095;-0.083093;, + 0.394190;-3.610095; 0.502768;, + 0.000000;-4.017673; 0.479768;, + -0.394190;-3.610095; 0.502768;, + -0.754746;-2.998208; 1.232472;, + 0.000000;-3.357429; 1.267141;, + -0.754746;-2.998208;-0.084791;, + -0.754746;-2.998208; 1.232472;, + -0.394190;-3.610095; 0.502768;, + -0.394190;-3.610095;-0.083093;, + 0.000000; 1.954336; 0.156781;, + -0.889277; 1.924510; 0.203438;, + -0.697598; 1.641988;-0.148365;, + 0.000000; 1.649486;-0.222824;, + 0.000000; 1.649486; 1.282635;, + 0.697598; 1.641988; 1.246832;, + 1.207143; 0.848453; 2.299859;, + 0.000000; 0.793238; 2.418884;, + 0.697598; 1.641988; 1.246832;, + 0.697598; 1.641988;-0.148365;, + 1.207143; 0.848453;-0.114428;, + 1.207143; 0.848453; 2.299859;, + -1.207143; 0.848453; 2.299859;, + -1.207143; 0.848453;-0.114428;, + -0.697598; 1.641988;-0.148365;, + -0.697598; 1.641988; 1.246832;, + 0.000000; 2.397149;-0.077860;, + -1.106733; 2.334890;-0.014018;, + -0.889277; 1.924510; 0.203438;, + 0.000000; 1.954336; 0.156781;, + -0.697598; 1.641988; 1.246832;, + -0.697598; 1.641988;-0.148365;, + -0.889277; 1.924510; 0.203438;, + -0.889277; 1.924510; 1.981993;, + 0.000000; 1.954336; 2.075897;, + 0.889277; 1.924510; 1.981993;, + 0.697598; 1.641988; 1.246832;, + 0.000000; 1.649486; 1.282635;, + 0.889277; 1.924510; 1.981993;, + 0.889277; 1.924510; 0.203438;, + 0.697598; 1.641988;-0.148365;, + 0.697598; 1.641988; 1.246832;, + 0.000000; 2.954030; 0.088741;, + -0.754683; 2.850984; 0.140381;, + -1.106733; 2.334890;-0.014018;, + 0.000000; 2.397149;-0.077860;, + 1.106733; 2.334890; 2.199448;, + 1.106733; 2.334890;-0.014018;, + 0.889277; 1.924510; 0.203438;, + 0.889277; 1.924510; 1.981993;, + -0.889277; 1.924510; 1.981993;, + -0.889277; 1.924510; 0.203438;, + -1.106733; 2.334890;-0.014018;, + -1.106733; 2.334890; 2.199448;, + 0.000000; 2.397149; 2.310538;, + 1.106733; 2.334890; 2.199448;, + 0.889277; 1.924510; 1.981993;, + 0.000000; 1.954336; 2.075897;, + 0.052044; 3.134467; 0.095083;, + -0.512813; 2.991794; 0.145328;, + -0.754683; 2.850984; 0.140381;, + 0.000000; 2.954030; 0.088741;, + -1.106733; 2.334890; 2.199448;, + -1.106733; 2.334890;-0.014018;, + -0.754683; 2.850984; 0.140381;, + -0.754683; 2.850984; 1.847398;, + 0.000000; 2.954030; 1.930665;, + 0.754683; 2.850984; 1.847398;, + 1.106733; 2.334890; 2.199448;, + 0.000000; 2.397149; 2.310538;, + 0.754683; 2.850984; 1.847398;, + 0.754683; 2.850984; 0.140381;, + 1.106733; 2.334890;-0.014018;, + 1.106733; 2.334890; 2.199448;, + 0.037324; 3.437407;-0.268378;, + -1.044630; 3.249253;-0.038202;, + -0.512813; 2.991794; 0.145328;, + 0.052044; 3.134467; 0.095083;, + 0.046281; 3.357266; 1.286510;, + 0.603937; 3.251096; 1.251353;, + 0.754683; 2.850984; 1.847398;, + 0.000000; 2.954030; 1.930665;, + 0.603937; 3.251096; 1.251353;, + 0.609278; 3.044615; 0.147188;, + 0.754683; 2.850984; 0.140381;, + 0.754683; 2.850984; 1.847398;, + -0.754683; 2.850984; 1.847398;, + -0.754683; 2.850984; 0.140381;, + -0.512813; 2.991794; 0.145328;, + -0.518154; 3.198276; 1.249492;, + -0.014320; 5.258876;-0.451437;, + -1.092491; 4.943257;-0.188008;, + -1.044630; 3.249253;-0.038202;, + 0.037324; 3.437407;-0.268378;, + -0.518154; 3.198276; 1.249492;, + -0.512813; 2.991794; 0.145328;, + -1.044630; 3.249253;-0.038202;, + -1.054904; 3.646428; 2.085701;, + 0.026238; 3.865972; 2.183405;, + 1.103537; 3.745837; 2.077552;, + 0.603937; 3.251096; 1.251353;, + 0.046281; 3.357266; 1.286510;, + 1.103537; 3.745837; 2.077552;, + 1.113811; 3.348662;-0.046351;, + 0.609278; 3.044615; 0.147188;, + 0.603937; 3.251096; 1.251353;, + -0.058332; 6.253111;-0.308079;, + -0.589462; 5.886722;-0.215508;, + -1.092491; 4.943257;-0.188008;, + -0.014320; 5.258876;-0.451437;, + -1.054904; 3.646428; 2.085701;, + -1.044630; 3.249253;-0.038202;, + -1.092491; 4.943257;-0.188008;, + -1.102765; 4.669911; 1.894075;, + -0.025405; 4.970342; 1.976635;, + 1.055676; 4.769320; 1.885926;, + 1.103537; 3.745837; 2.077552;, + 0.026238; 3.865972; 2.183405;, + 1.055676; 4.769320; 1.885926;, + 1.065950; 5.030777;-0.235848;, + 1.113811; 3.348662;-0.046351;, + 1.103537; 3.745837; 2.077552;, + -0.058332; 6.253111;-0.308079;, + 0.481344; 5.930141;-0.239242;, + 0.476247; 5.448880; 1.050888;, + -0.063831; 5.730633; 1.073387;, + 0.476247; 5.448880; 1.050888;, + 0.481344; 5.930141;-0.239242;, + 1.065950; 5.030777;-0.235848;, + 1.055676; 4.769320; 1.885926;, + -1.102765; 4.669911; 1.894075;, + -1.092491; 4.943257;-0.188008;, + -0.589462; 5.886722;-0.215508;, + -0.594559; 5.399563; 1.054930;, + -0.063831; 5.730633; 1.073387;, + 0.476247; 5.448880; 1.050888;, + 1.055676; 4.769320; 1.885926;, + -0.025405; 4.970342; 1.976635;, + 1.927217;-0.178291; 1.340505;, + 1.927217;-0.178291; 1.803474;, + 1.818528;-0.039697; 1.803474;, + 1.818528;-0.039697; 1.340505;, + 1.944126; 0.567656; 1.340505;, + 1.117424; 1.717077; 0.118293;, + 1.117424; 1.717077; 0.696181;, + 1.944126; 0.567656; 1.803474;, + 1.117424; 1.717077; 0.118293;, + 0.960650; 0.958966; 0.118293;, + 0.960650; 0.958966; 0.696181;, + 1.117424; 1.717077; 0.696181;, + 0.960650; 0.958966; 0.118293;, + 1.818528;-0.039697; 1.340505;, + 1.818528;-0.039697; 1.803474;, + 0.960650; 0.958966; 0.696181;, + 0.960650; 0.958966; 0.118293;, + 1.117424; 1.717077; 0.118293;, + 1.944126; 0.567656; 1.340505;, + 1.818528;-0.039697; 1.340505;, + 1.818528;-0.039697; 1.803474;, + 1.944126; 0.567656; 1.803474;, + 1.117424; 1.717077; 0.696181;, + 0.960650; 0.958966; 0.696181;, + 2.563935;-2.600637;-1.705319;, + 2.563935;-2.600637;-1.127432;, + 1.927217;-0.178291; 1.803474;, + 1.927217;-0.178291; 1.340505;, + 2.052814; 0.429062; 1.803474;, + 2.052814; 0.429062; 1.340505;, + 1.944126; 0.567656; 1.340505;, + 1.944126; 0.567656; 1.803474;, + 2.052814; 0.429062; 1.340505;, + 1.927217;-0.178291; 1.340505;, + 1.818528;-0.039697; 1.340505;, + 1.944126; 0.567656; 1.340505;, + 1.927217;-0.178291; 1.803474;, + 2.052814; 0.429062; 1.803474;, + 1.944126; 0.567656; 1.803474;, + 1.818528;-0.039697; 1.803474;, + 2.563935;-2.600637;-1.705319;, + 2.720709;-1.842527;-1.705319;, + 2.720709;-1.842527;-1.127432;, + 2.563935;-2.600637;-1.127432;, + 2.563935;-2.600637;-1.127432;, + 2.720709;-1.842527;-1.127432;, + 2.052814; 0.429062; 1.803474;, + 1.927217;-0.178291; 1.803474;, + 2.720709;-1.842527;-1.127432;, + 2.720709;-1.842527;-1.705319;, + 2.052814; 0.429062; 1.340505;, + 2.052814; 0.429062; 1.803474;, + 2.720709;-1.842527;-1.705319;, + 2.563935;-2.600637;-1.705319;, + 1.927217;-0.178291; 1.340505;, + 2.052814; 0.429062; 1.340505;, + 2.087688; 1.787264; 2.217100;, + 2.087688; 1.787264; 2.646394;, + 1.975209; 1.753564; 2.646394;, + 1.975209; 1.753564; 2.217100;, + 1.944670; 2.382095; 2.217100;, + 0.670069; 2.176223; 0.318695;, + 0.670069; 2.176223; 0.747989;, + 1.944670; 2.382095; 2.646394;, + 0.670069; 2.176223; 0.318695;, + 0.700608; 1.547692; 0.318695;, + 0.700608; 1.547692; 0.747989;, + 0.670069; 2.176223; 0.747989;, + 0.700608; 1.547692; 0.318695;, + 1.975209; 1.753564; 2.217100;, + 1.975209; 1.753564; 2.646394;, + 0.700608; 1.547692; 0.747989;, + 0.700608; 1.547692; 0.318695;, + 0.670069; 2.176223; 0.318695;, + 1.944670; 2.382095; 2.217100;, + 1.975209; 1.753564; 2.217100;, + 1.975209; 1.753564; 2.646394;, + 1.944670; 2.382095; 2.646394;, + 0.670069; 2.176223; 0.747989;, + 0.700608; 1.547692; 0.747989;, + 3.505196; 1.864721;-1.578208;, + 3.505196; 1.864721;-1.148914;, + 2.087688; 1.787264; 2.646394;, + 2.087688; 1.787264; 2.217100;, + 2.057148; 2.415795; 2.646394;, + 2.057148; 2.415795; 2.217100;, + 1.944670; 2.382095; 2.217100;, + 1.944670; 2.382095; 2.646394;, + 2.057148; 2.415795; 2.217100;, + 2.087688; 1.787264; 2.217100;, + 1.975209; 1.753564; 2.217100;, + 1.944670; 2.382095; 2.217100;, + 2.087688; 1.787264; 2.646394;, + 2.057148; 2.415795; 2.646394;, + 1.944670; 2.382095; 2.646394;, + 1.975209; 1.753564; 2.646394;, + 3.505196; 1.864721;-1.578208;, + 3.474657; 2.493252;-1.578208;, + 3.474657; 2.493252;-1.148914;, + 3.505196; 1.864721;-1.148914;, + 3.505196; 1.864721;-1.148914;, + 3.474657; 2.493252;-1.148914;, + 2.057148; 2.415795; 2.646394;, + 2.087688; 1.787264; 2.646394;, + 3.474657; 2.493252;-1.148914;, + 3.474657; 2.493252;-1.578208;, + 2.057148; 2.415795; 2.217100;, + 2.057148; 2.415795; 2.646394;, + 3.474657; 2.493252;-1.578208;, + 3.505196; 1.864721;-1.578208;, + 2.087688; 1.787264; 2.217100;, + 2.057148; 2.415795; 2.217100;, + 2.058483; 3.786135; 1.232689;, + 2.058483; 3.786135; 1.661983;, + 1.950418; 3.701648; 1.661983;, + 1.950418; 3.701648; 1.232689;, + 1.873854; 4.305515; 1.232689;, + 0.832739; 3.408118; 0.367431;, + 0.832739; 3.408118; 0.796725;, + 1.873854; 4.305515; 1.661983;, + 0.832739; 3.408118; 0.367431;, + 0.909303; 2.804250; 0.367431;, + 0.909303; 2.804250; 0.796725;, + 0.832739; 3.408118; 0.796725;, + 0.909303; 2.804250; 0.367431;, + 1.950418; 3.701648; 1.232689;, + 1.950418; 3.701648; 1.661983;, + 0.909303; 2.804250; 0.796725;, + 0.909303; 2.804250; 0.367431;, + 0.832739; 3.408118; 0.367431;, + 1.873854; 4.305515; 1.232689;, + 1.950418; 3.701648; 1.232689;, + 1.950418; 3.701648; 1.661983;, + 1.873854; 4.305515; 1.661983;, + 0.832739; 3.408118; 0.796725;, + 0.909303; 2.804250; 0.796725;, + 2.306866; 4.951811;-1.582934;, + 2.306866; 4.951811;-1.153640;, + 2.058483; 3.786135; 1.661983;, + 2.058483; 3.786135; 1.232689;, + 1.981918; 4.390002; 1.661983;, + 1.981918; 4.390002; 1.232689;, + 1.873854; 4.305515; 1.232689;, + 1.873854; 4.305515; 1.661983;, + 1.981918; 4.390002; 1.232689;, + 2.058483; 3.786135; 1.232689;, + 1.950418; 3.701648; 1.232689;, + 1.873854; 4.305515; 1.232689;, + 2.058483; 3.786135; 1.661983;, + 1.981918; 4.390002; 1.661983;, + 1.873854; 4.305515; 1.661983;, + 1.950418; 3.701648; 1.661983;, + 2.306866; 4.951811;-1.582934;, + 2.230301; 5.555677;-1.582934;, + 2.230301; 5.555677;-1.153640;, + 2.306866; 4.951811;-1.153640;, + 2.306866; 4.951811;-1.153640;, + 2.230301; 5.555677;-1.153640;, + 1.981918; 4.390002; 1.661983;, + 2.058483; 3.786135; 1.661983;, + 2.230301; 5.555677;-1.153640;, + 2.230301; 5.555677;-1.582934;, + 1.981918; 4.390002; 1.232689;, + 1.981918; 4.390002; 1.661983;, + 2.230301; 5.555677;-1.582934;, + 2.306866; 4.951811;-1.582934;, + 2.058483; 3.786135; 1.232689;, + 1.981918; 4.390002; 1.232689;, + -2.063160;-0.178291; 1.340505;, + -2.063160;-0.178291; 1.803474;, + -1.954471;-0.039697; 1.803474;, + -1.954471;-0.039697; 1.340505;, + -2.080069; 0.567656; 1.340505;, + -1.253367; 1.717077; 0.118293;, + -1.253367; 1.717077; 0.696181;, + -2.080069; 0.567656; 1.803474;, + -1.253367; 1.717077; 0.118293;, + -1.096593; 0.958966; 0.118293;, + -1.096593; 0.958966; 0.696181;, + -1.253367; 1.717077; 0.696181;, + -1.096593; 0.958966; 0.118293;, + -1.954471;-0.039697; 1.340505;, + -1.954471;-0.039697; 1.803474;, + -1.096593; 0.958966; 0.696181;, + -1.096593; 0.958966; 0.118293;, + -1.253367; 1.717077; 0.118293;, + -2.080069; 0.567656; 1.340505;, + -1.954471;-0.039697; 1.340505;, + -1.954471;-0.039697; 1.803474;, + -2.080069; 0.567656; 1.803474;, + -1.253367; 1.717077; 0.696181;, + -1.096593; 0.958966; 0.696181;, + -2.699878;-2.600637;-1.705319;, + -2.699878;-2.600637;-1.127432;, + -2.063160;-0.178291; 1.803474;, + -2.063160;-0.178291; 1.340505;, + -2.188757; 0.429062; 1.803474;, + -2.188757; 0.429062; 1.340505;, + -2.080069; 0.567656; 1.340505;, + -2.080069; 0.567656; 1.803474;, + -2.188757; 0.429062; 1.340505;, + -2.063160;-0.178291; 1.340505;, + -1.954471;-0.039697; 1.340505;, + -2.080069; 0.567656; 1.340505;, + -2.063160;-0.178291; 1.803474;, + -2.188757; 0.429062; 1.803474;, + -2.080069; 0.567656; 1.803474;, + -1.954471;-0.039697; 1.803474;, + -2.699878;-2.600637;-1.705319;, + -2.856652;-1.842527;-1.705319;, + -2.856652;-1.842527;-1.127432;, + -2.699878;-2.600637;-1.127432;, + -2.699878;-2.600637;-1.127432;, + -2.856652;-1.842527;-1.127432;, + -2.188757; 0.429062; 1.803474;, + -2.063160;-0.178291; 1.803474;, + -2.856652;-1.842527;-1.127432;, + -2.856652;-1.842527;-1.705319;, + -2.188757; 0.429062; 1.340505;, + -2.188757; 0.429062; 1.803474;, + -2.856652;-1.842527;-1.705319;, + -2.699878;-2.600637;-1.705319;, + -2.063160;-0.178291; 1.340505;, + -2.188757; 0.429062; 1.340505;, + -2.223631; 1.787264; 2.217100;, + -2.223631; 1.787264; 2.646394;, + -2.111152; 1.753564; 2.646394;, + -2.111152; 1.753564; 2.217100;, + -2.080613; 2.382095; 2.217100;, + -0.806012; 2.176223; 0.318695;, + -0.806012; 2.176223; 0.747989;, + -2.080613; 2.382095; 2.646394;, + -0.806012; 2.176223; 0.318695;, + -0.836551; 1.547692; 0.318695;, + -0.836551; 1.547692; 0.747989;, + -0.806012; 2.176223; 0.747989;, + -0.836551; 1.547692; 0.318695;, + -2.111152; 1.753564; 2.217100;, + -2.111152; 1.753564; 2.646394;, + -0.836551; 1.547692; 0.747989;, + -0.836551; 1.547692; 0.318695;, + -0.806012; 2.176223; 0.318695;, + -2.080613; 2.382095; 2.217100;, + -2.111152; 1.753564; 2.217100;, + -2.111152; 1.753564; 2.646394;, + -2.080613; 2.382095; 2.646394;, + -0.806012; 2.176223; 0.747989;, + -0.836551; 1.547692; 0.747989;, + -3.641139; 1.864721;-1.578208;, + -3.641139; 1.864721;-1.148914;, + -2.223631; 1.787264; 2.646394;, + -2.223631; 1.787264; 2.217100;, + -2.193091; 2.415795; 2.646394;, + -2.193091; 2.415795; 2.217100;, + -2.080613; 2.382095; 2.217100;, + -2.080613; 2.382095; 2.646394;, + -2.193091; 2.415795; 2.217100;, + -2.223631; 1.787264; 2.217100;, + -2.111152; 1.753564; 2.217100;, + -2.080613; 2.382095; 2.217100;, + -2.223631; 1.787264; 2.646394;, + -2.193091; 2.415795; 2.646394;, + -2.080613; 2.382095; 2.646394;, + -2.111152; 1.753564; 2.646394;, + -3.641139; 1.864721;-1.578208;, + -3.610600; 2.493252;-1.578208;, + -3.610600; 2.493252;-1.148914;, + -3.641139; 1.864721;-1.148914;, + -3.641139; 1.864721;-1.148914;, + -3.610600; 2.493252;-1.148914;, + -2.193091; 2.415795; 2.646394;, + -2.223631; 1.787264; 2.646394;, + -3.610600; 2.493252;-1.148914;, + -3.610600; 2.493252;-1.578208;, + -2.193091; 2.415795; 2.217100;, + -2.193091; 2.415795; 2.646394;, + -3.610600; 2.493252;-1.578208;, + -3.641139; 1.864721;-1.578208;, + -2.223631; 1.787264; 2.217100;, + -2.193091; 2.415795; 2.217100;, + -2.194426; 3.786135; 1.232689;, + -2.194426; 3.786135; 1.661983;, + -2.086361; 3.701648; 1.661983;, + -2.086361; 3.701648; 1.232689;, + -2.009797; 4.305515; 1.232689;, + -0.968682; 3.408118; 0.367431;, + -0.968682; 3.408118; 0.796725;, + -2.009797; 4.305515; 1.661983;, + -0.968682; 3.408118; 0.367431;, + -1.045246; 2.804250; 0.367431;, + -1.045246; 2.804250; 0.796725;, + -0.968682; 3.408118; 0.796725;, + -1.045246; 2.804250; 0.367431;, + -2.086361; 3.701648; 1.232689;, + -2.086361; 3.701648; 1.661983;, + -1.045246; 2.804250; 0.796725;, + -1.045246; 2.804250; 0.367431;, + -0.968682; 3.408118; 0.367431;, + -2.009797; 4.305515; 1.232689;, + -2.086361; 3.701648; 1.232689;, + -2.086361; 3.701648; 1.661983;, + -2.009797; 4.305515; 1.661983;, + -0.968682; 3.408118; 0.796725;, + -1.045246; 2.804250; 0.796725;, + -2.442809; 4.951811;-1.582934;, + -2.442809; 4.951811;-1.153640;, + -2.194426; 3.786135; 1.661983;, + -2.194426; 3.786135; 1.232689;, + -2.117861; 4.390002; 1.661983;, + -2.117861; 4.390002; 1.232689;, + -2.009797; 4.305515; 1.232689;, + -2.009797; 4.305515; 1.661983;, + -2.117861; 4.390002; 1.232689;, + -2.194426; 3.786135; 1.232689;, + -2.086361; 3.701648; 1.232689;, + -2.009797; 4.305515; 1.232689;, + -2.194426; 3.786135; 1.661983;, + -2.117861; 4.390002; 1.661983;, + -2.009797; 4.305515; 1.661983;, + -2.086361; 3.701648; 1.661983;, + -2.442809; 4.951811;-1.582934;, + -2.366244; 5.555677;-1.582934;, + -2.366244; 5.555677;-1.153640;, + -2.442809; 4.951811;-1.153640;, + -2.442809; 4.951811;-1.153640;, + -2.366244; 5.555677;-1.153640;, + -2.117861; 4.390002; 1.661983;, + -2.194426; 3.786135; 1.661983;, + -2.366244; 5.555677;-1.153640;, + -2.366244; 5.555677;-1.582934;, + -2.117861; 4.390002; 1.232689;, + -2.117861; 4.390002; 1.661983;, + -2.366244; 5.555677;-1.582934;, + -2.442809; 4.951811;-1.582934;, + -2.194426; 3.786135; 1.232689;, + -2.117861; 4.390002; 1.232689;, + 0.697598; 1.641988;-0.148365;, + 0.000000; 1.649486;-0.222824;, + 0.000000; 0.793238;-0.357718;, + 1.207143; 0.848453;-0.114428;, + -0.754746;-2.998208;-0.084791;, + 0.000000;-3.357429;-0.154227;, + 0.000000;-1.811853;-0.407172;, + -1.207143;-1.565834;-0.160260;, + 0.000000;-1.811853;-0.407172;, + 0.000000; 0.793238;-0.357718;, + -1.207143; 0.848453;-0.114428;, + -1.207143;-1.565834;-0.160260;, + 0.000000;-1.811853; 2.162010;, + 0.000000; 0.793238; 2.418884;, + 1.207143; 0.848453; 2.299859;, + 1.207143;-1.565834; 2.061798;, + -0.394190;-3.610095;-0.083093;, + 0.000000;-4.017673;-0.152394;, + 0.000000;-3.357429;-0.154227;, + -0.754746;-2.998208;-0.084791;, + 0.754746;-2.998208; 1.232472;, + 0.000000;-3.357429; 1.267141;, + 0.000000;-1.811853; 2.162010;, + 1.207143;-1.565834; 2.061798;, + 0.394190;-3.610095;-0.083093;, + 0.000000;-4.017673;-0.152394;, + 0.000000;-4.017673; 0.479768;, + 0.394190;-3.610095; 0.502768;, + 0.394190;-3.610095; 0.502768;, + 0.000000;-4.017673; 0.479768;, + 0.000000;-3.357429; 1.267141;, + 0.754746;-2.998208; 1.232472;, + 0.889277; 1.924510; 0.203438;, + 0.000000; 1.954336; 0.156781;, + 0.000000; 1.649486;-0.222824;, + 0.697598; 1.641988;-0.148365;, + -0.697598; 1.641988; 1.246832;, + 0.000000; 1.649486; 1.282635;, + 0.000000; 0.793238; 2.418884;, + -1.207143; 0.848453; 2.299859;, + 1.106733; 2.334890;-0.014018;, + 0.000000; 2.397149;-0.077860;, + 0.000000; 1.954336; 0.156781;, + 0.889277; 1.924510; 0.203438;, + -0.889277; 1.924510; 1.981993;, + 0.000000; 1.954336; 2.075897;, + 0.000000; 1.649486; 1.282635;, + -0.697598; 1.641988; 1.246832;, + 0.754683; 2.850984; 0.140381;, + 0.000000; 2.954030; 0.088741;, + 0.000000; 2.397149;-0.077860;, + 1.106733; 2.334890;-0.014018;, + -1.106733; 2.334890; 2.199448;, + 0.000000; 2.397149; 2.310538;, + 0.000000; 1.954336; 2.075897;, + -0.889277; 1.924510; 1.981993;, + 0.609278; 3.044615; 0.147188;, + 0.052044; 3.134467; 0.095083;, + 0.000000; 2.954030; 0.088741;, + 0.754683; 2.850984; 0.140381;, + -0.754683; 2.850984; 1.847398;, + 0.000000; 2.954030; 1.930665;, + 0.000000; 2.397149; 2.310538;, + -1.106733; 2.334890; 2.199448;, + 1.113811; 3.348662;-0.046351;, + 0.037324; 3.437407;-0.268378;, + 0.052044; 3.134467; 0.095083;, + 0.609278; 3.044615; 0.147188;, + -0.518154; 3.198276; 1.249492;, + 0.046281; 3.357266; 1.286510;, + 0.000000; 2.954030; 1.930665;, + -0.754683; 2.850984; 1.847398;, + 1.065950; 5.030777;-0.235848;, + -0.014320; 5.258876;-0.451437;, + 0.037324; 3.437407;-0.268378;, + 1.113811; 3.348662;-0.046351;, + -1.054904; 3.646428; 2.085701;, + 0.026238; 3.865972; 2.183405;, + 0.046281; 3.357266; 1.286510;, + -0.518154; 3.198276; 1.249492;, + 0.481344; 5.930141;-0.239242;, + -0.058332; 6.253111;-0.308079;, + -0.014320; 5.258876;-0.451437;, + 1.065950; 5.030777;-0.235848;, + -1.102765; 4.669911; 1.894075;, + -0.025405; 4.970342; 1.976635;, + 0.026238; 3.865972; 2.183405;, + -1.054904; 3.646428; 2.085701;, + -0.589462; 5.886722;-0.215508;, + -0.058332; 6.253111;-0.308079;, + -0.063831; 5.730633; 1.073387;, + -0.594559; 5.399563; 1.054930;, + -0.594559; 5.399563; 1.054930;, + -0.063831; 5.730633; 1.073387;, + -0.025405; 4.970342; 1.976635;, + -1.102765; 4.669911; 1.894075;, + 1.149048; 5.755170; 2.593041;, + 1.360315; 5.755170; 2.593041;, + 1.360315; 5.755170; 2.763561;, + 1.149048; 5.755170; 2.763561;, + -0.532928; 4.034887; 1.678477;, + -0.744195; 4.034887; 1.678477;, + -0.744195; 4.255737; 2.551880;, + -0.532928; 4.255737; 2.551880;, + 0.548626; 4.255737; 2.551880;, + 0.548626; 4.467005; 2.551880;, + 0.548626; 4.467005; 2.722400;, + 0.548626; 4.255737; 2.722400;, + 0.759894; 4.467005; 2.551880;, + 0.759894; 4.255737; 2.551880;, + 0.759894; 4.255737; 2.722400;, + 0.759894; 4.467005; 2.722400;, + 1.900347; 0.355355; 2.671022;, + -0.099653; 0.355355; 2.671022;, + -0.013057; 2.355355; 2.231760;, + 0.428951; 2.355355; 2.231760;, + -0.116855;-1.491917; 2.671022;, + -2.116855;-1.491917; 2.671022;, + -2.116855; 0.355355; 2.671022;, + -0.116855; 0.355355; 2.671022;, + 0.759894; 4.467005; 2.551880;, + 0.759894; 4.467005; 2.722400;, + 1.360315; 5.755170; 2.763561;, + 1.360315; 5.755170; 2.593041;, + -0.532928; 4.255737; 2.551880;, + -0.744195; 4.255737; 2.551880;, + -0.744195; 4.255737; 2.722400;, + -0.532928; 4.255737; 2.722400;, + -0.648334;-3.216755; 2.671022;, + -1.585377;-3.216755; 2.671022;, + -2.116855;-1.491917; 2.671022;, + -0.116855;-1.491917; 2.671022;, + 0.548626; 4.246155; 1.678477;, + 0.759894; 4.246155; 1.678477;, + 0.759894; 4.467005; 2.551880;, + 0.548626; 4.467005; 2.551880;, + 1.149048; 5.755170; 2.763561;, + 1.360315; 5.755170; 2.763561;, + 0.759894; 4.467005; 2.722400;, + 0.548626; 4.467005; 2.722400;, + -0.532928; 4.467005; 2.551880;, + -0.532928; 4.467005; 2.722400;, + -1.131419; 5.755170; 2.763561;, + -1.131419; 5.755170; 2.593041;, + 0.759894; 4.246155; 1.678477;, + 0.759894; 4.034887; 1.678477;, + 0.759894; 4.255737; 2.551880;, + 0.759894; 4.467005; 2.551880;, + -0.532928; 4.467005; 2.551880;, + -0.532928; 4.255737; 2.551880;, + -0.532928; 4.255737; 2.722400;, + -0.532928; 4.467005; 2.722400;, + 0.548626; 4.467005; 2.551880;, + 0.759894; 4.467005; 2.551880;, + 1.360315; 5.755170; 2.593041;, + 1.149048; 5.755170; 2.593041;, + -0.532928; 4.034887; 1.678477;, + -0.532928; 4.246155; 1.678477;, + -0.744195; 4.246155; 1.678477;, + -0.744195; 4.034887; 1.678477;, + 1.368868;-3.216755; 2.671022;, + 0.431826;-3.216755; 2.671022;, + -0.099653;-1.491917; 2.671022;, + 1.900347;-1.491917; 2.671022;, + -0.744195; 4.034887; 1.678477;, + -0.744195; 4.246155; 1.678477;, + -0.744195; 4.467005; 2.551880;, + -0.744195; 4.255737; 2.551880;, + 0.548626; 4.255737; 2.722400;, + 0.548626; 4.467005; 2.722400;, + 0.759894; 4.467005; 2.722400;, + 0.759894; 4.255737; 2.722400;, + 0.759894; 4.255737; 2.551880;, + 0.548626; 4.255737; 2.551880;, + 0.548626; 4.255737; 2.722400;, + 0.759894; 4.255737; 2.722400;, + -0.744195; 4.467005; 2.551880;, + -0.532928; 4.467005; 2.551880;, + -1.131419; 5.755170; 2.593041;, + -1.342687; 5.755170; 2.593041;, + -0.532928; 4.246155; 1.678477;, + -0.532928; 4.034887; 1.678477;, + -0.532928; 4.255737; 2.551880;, + -0.532928; 4.467005; 2.551880;, + 0.759894; 4.034887; 1.678477;, + 0.759894; 4.246155; 1.678477;, + 0.548626; 4.246155; 1.678477;, + 0.548626; 4.034887; 1.678477;, + 0.759894; 4.034887; 1.678477;, + 0.548626; 4.034887; 1.678477;, + 0.548626; 4.255737; 2.551880;, + 0.759894; 4.255737; 2.551880;, + -0.744195; 4.246155; 1.678477;, + -0.532928; 4.246155; 1.678477;, + -0.532928; 4.467005; 2.551880;, + -0.744195; 4.467005; 2.551880;, + -0.744195; 4.255737; 2.551880;, + -0.744195; 4.467005; 2.551880;, + -0.744195; 4.467005; 2.722400;, + -0.744195; 4.255737; 2.722400;, + 0.548626; 4.467005; 2.722400;, + 0.548626; 4.467005; 2.551880;, + 1.149048; 5.755170; 2.593041;, + 1.149048; 5.755170; 2.763561;, + -1.342687; 5.755170; 2.763561;, + -1.131419; 5.755170; 2.763561;, + -0.532928; 4.467005; 2.722400;, + -0.744195; 4.467005; 2.722400;, + -0.744195; 4.255737; 2.722400;, + -0.744195; 4.467005; 2.722400;, + -0.532928; 4.467005; 2.722400;, + -0.532928; 4.255737; 2.722400;, + 0.548626; 4.034887; 1.678477;, + 0.548626; 4.246155; 1.678477;, + 0.548626; 4.467005; 2.551880;, + 0.548626; 4.255737; 2.551880;, + 1.900347;-1.491917; 2.671022;, + -0.099653;-1.491917; 2.671022;, + -0.099653; 0.355355; 2.671022;, + 1.900347; 0.355355; 2.671022;, + -1.342687; 5.755170; 2.593041;, + -1.131419; 5.755170; 2.593041;, + -1.131419; 5.755170; 2.763561;, + -1.342687; 5.755170; 2.763561;, + -0.744195; 4.467005; 2.722400;, + -0.744195; 4.467005; 2.551880;, + -1.342687; 5.755170; 2.593041;, + -1.342687; 5.755170; 2.763561;, + -0.116855; 0.355355; 2.671022;, + -2.116855; 0.355355; 2.671022;, + -0.592775; 2.355355; 2.231760;, + -0.150767; 2.355355; 2.231760;; + 188; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;, + 4;408;409;410;411;, + 4;412;413;414;415;, + 4;416;417;418;419;, + 4;420;421;422;423;, + 4;424;425;426;427;, + 4;428;429;430;431;, + 4;432;433;434;435;, + 4;436;437;438;439;, + 4;440;441;442;443;, + 4;444;445;446;447;, + 4;448;449;450;451;, + 4;452;453;454;455;, + 4;456;457;458;459;, + 4;460;461;462;463;, + 4;464;465;466;467;, + 4;468;469;470;471;, + 4;472;473;474;475;, + 4;476;477;478;479;, + 4;480;481;482;483;, + 4;484;485;486;487;, + 4;488;489;490;491;, + 4;492;493;494;495;, + 4;496;497;498;499;, + 4;500;501;502;503;, + 4;504;505;506;507;, + 4;508;509;510;511;, + 4;512;513;514;515;, + 4;516;517;518;519;, + 4;520;521;522;523;, + 4;524;525;526;527;, + 4;528;529;530;531;, + 4;532;533;534;535;, + 4;536;537;538;539;, + 4;540;541;542;543;, + 4;544;545;546;547;, + 4;548;549;550;551;, + 4;552;553;554;555;, + 4;556;557;558;559;, + 4;560;561;562;563;, + 4;564;565;566;567;, + 4;568;569;570;571;, + 4;572;573;574;575;, + 4;576;577;578;579;, + 4;580;581;582;583;, + 4;584;585;586;587;, + 4;588;589;590;591;, + 4;592;593;594;595;, + 4;596;597;598;599;, + 4;600;601;602;603;, + 4;604;605;606;607;, + 4;608;609;610;611;, + 4;612;613;614;615;, + 4;616;617;618;619;, + 4;620;621;622;623;, + 4;624;625;626;627;, + 4;628;629;630;631;, + 4;632;633;634;635;, + 4;636;637;638;639;, + 4;640;641;642;643;, + 4;644;645;646;647;, + 4;648;649;650;651;, + 4;652;653;654;655;, + 4;656;657;658;659;, + 4;660;661;662;663;, + 4;664;665;666;667;, + 4;668;669;670;671;, + 4;672;673;674;675;, + 4;676;677;678;679;, + 4;680;681;682;683;, + 4;684;685;686;687;, + 4;688;689;690;691;, + 4;692;693;694;695;, + 4;696;697;698;699;, + 4;700;701;702;703;, + 4;704;705;706;707;, + 4;708;709;710;711;, + 4;712;713;714;715;, + 4;716;717;718;719;, + 4;720;721;722;723;, + 4;724;725;726;727;, + 4;728;729;730;731;, + 4;732;733;734;735;, + 4;736;737;738;739;, + 4;740;741;742;743;, + 4;744;745;746;747;, + 4;748;749;750;751;; + MeshNormals { //Mesh Normals + 752; + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.160879; 0.109711;-0.980858;, + -0.160879; 0.109711;-0.980858;, + -0.160879; 0.109711;-0.980858;, + -0.160879; 0.109711;-0.980858;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.198803;-0.137217;-0.970386;, + 0.198803;-0.137217;-0.970386;, + 0.198803;-0.137217;-0.970386;, + 0.198803;-0.137217;-0.970386;, + 0.196717; 0.018609;-0.980284;, + 0.196717; 0.018609;-0.980284;, + 0.196717; 0.018609;-0.980284;, + 0.196717; 0.018609;-0.980284;, + -0.102078;-0.097616; 0.989975;, + -0.102078;-0.097616; 0.989975;, + -0.102078;-0.097616; 0.989975;, + -0.102078;-0.097616; 0.989975;, + 0.149356;-0.045074;-0.987756;, + 0.149356;-0.045074;-0.987756;, + 0.149356;-0.045074;-0.987756;, + 0.149356;-0.045074;-0.987756;, + -0.215544;-0.513602; 0.830515;, + -0.215544;-0.513602; 0.830515;, + -0.215544;-0.513602; 0.830515;, + -0.215544;-0.513602; 0.830515;, + -0.953570;-0.301173; 0.000000;, + -0.953570;-0.301173; 0.000000;, + -0.953570;-0.301173; 0.000000;, + -0.953570;-0.301173; 0.000000;, + 0.953570;-0.301173; 0.000000;, + 0.953570;-0.301173; 0.000000;, + 0.953570;-0.301173; 0.000000;, + 0.953570;-0.301173; 0.000000;, + -0.718815;-0.695202; 0.000000;, + -0.718815;-0.695202; 0.000000;, + -0.718815;-0.695202; 0.000000;, + -0.718815;-0.695202; 0.000000;, + 0.861551;-0.507672; 0.000000;, + 0.861551;-0.507672; 0.000000;, + 0.861551;-0.507672; 0.000000;, + 0.861551;-0.507672; 0.000000;, + -0.487294;-0.722679; 0.490183;, + -0.487294;-0.722679; 0.490183;, + -0.487294;-0.722679; 0.490183;, + -0.487294;-0.722679; 0.490183;, + -0.861551;-0.507672; 0.000000;, + -0.861551;-0.507672; 0.000000;, + -0.861551;-0.507672; 0.000000;, + -0.861551;-0.507672; 0.000000;, + -0.066586; 0.769377;-0.635315;, + -0.066586; 0.769377;-0.635315;, + -0.066586; 0.769377;-0.635315;, + -0.066586; 0.769377;-0.635315;, + 0.028478; 0.801478; 0.597345;, + 0.028478; 0.801478; 0.597345;, + 0.028478; 0.801478; 0.597345;, + 0.028478; 0.801478; 0.597345;, + 0.841460; 0.540319; 0.000000;, + 0.841460; 0.540319; 0.000000;, + 0.841460; 0.540319; 0.000000;, + 0.841460; 0.540319; 0.000000;, + -0.841460; 0.540319; 0.000000;, + -0.841460; 0.540319; 0.000000;, + -0.841460; 0.540319; 0.000000;, + -0.841460; 0.540319; 0.000000;, + -0.026901;-0.473392;-0.880441;, + -0.026901;-0.473392;-0.880441;, + -0.026901;-0.473392;-0.880441;, + -0.026901;-0.473392;-0.880441;, + -0.827520;-0.561437; 0.000000;, + -0.827520;-0.561437; 0.000000;, + -0.827520;-0.561437; 0.000000;, + -0.827520;-0.561437; 0.000000;, + 0.007294;-0.933725; 0.357916;, + 0.007294;-0.933725; 0.357916;, + 0.007294;-0.933725; 0.357916;, + 0.007294;-0.933725; 0.357916;, + 0.827520;-0.561437; 0.000000;, + 0.827520;-0.561437; 0.000000;, + 0.827520;-0.561437; 0.000000;, + 0.827520;-0.561437; 0.000000;, + -0.086369; 0.311450;-0.946329;, + -0.086369; 0.311450;-0.946329;, + -0.086369; 0.311450;-0.946329;, + -0.086369; 0.311450;-0.946329;, + 0.883614;-0.468216; 0.000000;, + 0.883614;-0.468216; 0.000000;, + 0.883614;-0.468216; 0.000000;, + 0.883614;-0.468216; 0.000000;, + -0.883614;-0.468216; 0.000000;, + -0.883614;-0.468216; 0.000000;, + -0.883614;-0.468216; 0.000000;, + -0.883614;-0.468216; 0.000000;, + 0.067629;-0.480548; 0.874357;, + 0.067629;-0.480548; 0.874357;, + 0.067629;-0.480548; 0.874357;, + 0.067629;-0.480548; 0.874357;, + -0.099647; 0.125854;-0.987032;, + -0.099647; 0.125854;-0.987032;, + -0.099647; 0.125854;-0.987032;, + -0.099647; 0.125854;-0.987032;, + -0.826102; 0.563521; 0.000000;, + -0.826102; 0.563521; 0.000000;, + -0.826102; 0.563521; 0.000000;, + -0.826102; 0.563521; 0.000000;, + 0.135484; 0.588278; 0.797228;, + 0.135484; 0.588278; 0.797228;, + 0.135484; 0.588278; 0.797228;, + 0.135484; 0.588278; 0.797228;, + 0.826102; 0.563521; 0.000000;, + 0.826102; 0.563521; 0.000000;, + 0.826102; 0.563521; 0.000000;, + 0.826102; 0.563521; 0.000000;, + 0.015601;-0.690576;-0.723091;, + 0.015601;-0.690576;-0.723091;, + 0.015601;-0.690576;-0.723091;, + 0.015601;-0.690576;-0.723091;, + 0.180001; 0.832443; 0.524059;, + 0.180001; 0.832443; 0.524059;, + 0.180001; 0.832443; 0.524059;, + 0.180001; 0.832443; 0.524059;, + 0.905797; 0.422696;-0.029326;, + 0.905797; 0.422696;-0.029326;, + 0.905797; 0.422696;-0.029326;, + 0.905797; 0.422696;-0.029326;, + -0.743195; 0.667173;-0.050416;, + -0.743195; 0.667173;-0.050416;, + -0.743195; 0.667173;-0.050416;, + -0.743195; 0.667173;-0.050416;, + -0.199925;-0.097968;-0.974901;, + -0.199925;-0.097968;-0.974901;, + -0.199925;-0.097968;-0.974901;, + -0.199925;-0.097968;-0.974901;, + -0.474231;-0.865811; 0.159615;, + -0.474231;-0.865811; 0.159615;, + -0.474231;-0.865811; 0.159615;, + -0.474231;-0.865811; 0.159615;, + -0.073445;-0.852790; 0.517064;, + -0.073445;-0.852790; 0.517064;, + -0.073445;-0.852790; 0.517064;, + -0.073445;-0.852790; 0.517064;, + 0.552994;-0.818501; 0.155737;, + 0.552994;-0.818501; 0.155737;, + 0.552994;-0.818501; 0.155737;, + 0.552994;-0.818501; 0.155737;, + -0.262428; 0.119418;-0.957534;, + -0.262428; 0.119418;-0.957534;, + -0.262428; 0.119418;-0.957534;, + -0.262428; 0.119418;-0.957534;, + -0.999356;-0.035683;-0.003832;, + -0.999356;-0.035683;-0.003832;, + -0.999356;-0.035683;-0.003832;, + -0.999356;-0.035683;-0.003832;, + 0.116790; 0.188045; 0.975192;, + 0.116790; 0.188045; 0.975192;, + 0.116790; 0.188045; 0.975192;, + 0.116790; 0.188045; 0.975192;, + 0.999349; 0.035876; 0.003690;, + 0.999349; 0.035876; 0.003690;, + 0.999349; 0.035876; 0.003690;, + 0.999349; 0.035876; 0.003690;, + 0.453429; 0.833755; 0.315047;, + 0.453429; 0.833755; 0.315047;, + 0.453429; 0.833755; 0.315047;, + 0.453429; 0.833755; 0.315047;, + 0.759366; 0.635055; 0.141663;, + 0.759366; 0.635055; 0.141663;, + 0.759366; 0.635055; 0.141663;, + 0.759366; 0.635055; 0.141663;, + -0.819802; 0.559257; 0.123106;, + -0.819802; 0.559257; 0.123106;, + -0.819802; 0.559257; 0.123106;, + -0.819802; 0.559257; 0.123106;, + 0.272867; 0.786303; 0.554320;, + 0.272867; 0.786303; 0.554320;, + 0.272867; 0.786303; 0.554320;, + 0.272867; 0.786303; 0.554320;, + 0.786887; 0.617097; 0.000000;, + 0.786887; 0.617097; 0.000000;, + 0.786887; 0.617097; 0.000000;, + 0.786887; 0.617097; 0.000000;, + -0.811829;-0.583895; 0.000000;, + -0.811829;-0.583895; 0.000000;, + -0.811829;-0.583895; 0.000000;, + -0.811829;-0.583895; 0.000000;, + 0.979280;-0.202511; 0.000000;, + 0.979280;-0.202511; 0.000000;, + 0.979280;-0.202511; 0.000000;, + 0.979280;-0.202511; 0.000000;, + 0.758551; 0.651614; 0.000000;, + 0.758551; 0.651614; 0.000000;, + 0.758551; 0.651614; 0.000000;, + 0.758551; 0.651614; 0.000000;, + -0.745109; 0.154085; 0.648899;, + -0.745109; 0.154085; 0.648899;, + -0.745109; 0.154085; 0.648899;, + -0.745109; 0.154085; 0.648899;, + 0.713053;-0.147456;-0.685429;, + 0.713053;-0.147456;-0.685429;, + 0.713053;-0.147456;-0.685429;, + 0.713053;-0.147456;-0.685429;, + 0.967147; 0.254217; 0.000000;, + 0.967147; 0.254217; 0.000000;, + 0.967147; 0.254217; 0.000000;, + 0.967147; 0.254217; 0.000000;, + -0.786887;-0.617097; 0.000000;, + -0.786887;-0.617097; 0.000000;, + -0.786887;-0.617097; 0.000000;, + -0.786887;-0.617097; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.979280; 0.202511; 0.000000;, + -0.979280; 0.202511; 0.000000;, + -0.979280; 0.202511; 0.000000;, + -0.979280; 0.202511; 0.000000;, + -0.915380; 0.189297;-0.355310;, + -0.915380; 0.189297;-0.355310;, + -0.915380; 0.189297;-0.355310;, + -0.915380; 0.189297;-0.355310;, + -0.959391;-0.282081; 0.000000;, + -0.959391;-0.282081; 0.000000;, + -0.959391;-0.282081; 0.000000;, + -0.959391;-0.282081; 0.000000;, + 0.919689;-0.190187; 0.343514;, + 0.919689;-0.190187; 0.343514;, + 0.919689;-0.190187; 0.343514;, + 0.919689;-0.190187; 0.343514;, + -0.287003; 0.957930; 0.000000;, + -0.287003; 0.957930; 0.000000;, + -0.287003; 0.957930; 0.000000;, + -0.287003; 0.957930; 0.000000;, + 0.159452;-0.987206; 0.000000;, + 0.159452;-0.987206; 0.000000;, + 0.159452;-0.987206; 0.000000;, + 0.159452;-0.987206; 0.000000;, + 0.998822; 0.048531; 0.000000;, + 0.998822; 0.048531; 0.000000;, + 0.998822; 0.048531; 0.000000;, + 0.998822; 0.048531; 0.000000;, + -0.159452; 0.987206; 0.000000;, + -0.159452; 0.987206; 0.000000;, + -0.159452; 0.987206; 0.000000;, + -0.159452; 0.987206; 0.000000;, + -0.827535;-0.040209; 0.559973;, + -0.827535;-0.040209; 0.559973;, + -0.827535;-0.040209; 0.559973;, + -0.827535;-0.040209; 0.559973;, + 0.827535; 0.040209;-0.559973;, + 0.827535; 0.040209;-0.559973;, + 0.827535; 0.040209;-0.559973;, + 0.827535; 0.040209;-0.559973;, + -0.054562; 0.998510; 0.000000;, + -0.054562; 0.998510; 0.000000;, + -0.054562; 0.998510; 0.000000;, + -0.054562; 0.998510; 0.000000;, + 0.287004;-0.957929; 0.000000;, + 0.287004;-0.957929; 0.000000;, + 0.287004;-0.957929; 0.000000;, + 0.287004;-0.957929; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.998822;-0.048531; 0.000000;, + -0.998822;-0.048531; 0.000000;, + -0.998822;-0.048531; 0.000000;, + -0.998822;-0.048531; 0.000000;, + -0.935521;-0.045456;-0.350335;, + -0.935521;-0.045456;-0.350335;, + -0.935521;-0.045456;-0.350335;, + -0.935521;-0.045456;-0.350335;, + 0.054562;-0.998510; 0.000000;, + 0.054562;-0.998510; 0.000000;, + 0.054562;-0.998510; 0.000000;, + 0.054562;-0.998510; 0.000000;, + 0.935521; 0.045456; 0.350335;, + 0.935521; 0.045456; 0.350335;, + 0.935521; 0.045456; 0.350335;, + 0.935521; 0.045456; 0.350335;, + -0.615920; 0.787809; 0.000000;, + -0.615920; 0.787809; 0.000000;, + -0.615920; 0.787809; 0.000000;, + -0.615920; 0.787809; 0.000000;, + 0.652891;-0.757452; 0.000000;, + 0.652891;-0.757452; 0.000000;, + 0.652891;-0.757452; 0.000000;, + 0.652891;-0.757452; 0.000000;, + 0.992058; 0.125784; 0.000000;, + 0.992058; 0.125784; 0.000000;, + 0.992058; 0.125784; 0.000000;, + 0.992058; 0.125784; 0.000000;, + -0.652892; 0.757451; 0.000000;, + -0.652892; 0.757451; 0.000000;, + -0.652892; 0.757451; 0.000000;, + -0.652892; 0.757451; 0.000000;, + -0.597869;-0.075804; 0.798001;, + -0.597869;-0.075804; 0.798001;, + -0.597869;-0.075804; 0.798001;, + -0.597869;-0.075804; 0.798001;, + 0.597869; 0.075804;-0.798001;, + 0.597869; 0.075804;-0.798001;, + 0.597869; 0.075804;-0.798001;, + 0.597869; 0.075804;-0.798001;, + -0.978043; 0.208402; 0.000000;, + -0.978043; 0.208402; 0.000000;, + -0.978043; 0.208402; 0.000000;, + -0.978043; 0.208402; 0.000000;, + 0.615923;-0.787806; 0.000000;, + 0.615923;-0.787806; 0.000000;, + 0.615923;-0.787806; 0.000000;, + 0.615923;-0.787806; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.992058;-0.125784; 0.000000;, + -0.992058;-0.125784; 0.000000;, + -0.992058;-0.125784; 0.000000;, + -0.992058;-0.125784; 0.000000;, + -0.982531;-0.124576;-0.138250;, + -0.982531;-0.124576;-0.138250;, + -0.982531;-0.124576;-0.138250;, + -0.982531;-0.124576;-0.138250;, + 0.978043;-0.208402; 0.000000;, + 0.978043;-0.208402; 0.000000;, + 0.978043;-0.208402; 0.000000;, + 0.978043;-0.208402; 0.000000;, + 0.982531; 0.124576; 0.138250;, + 0.982531; 0.124576; 0.138250;, + 0.982531; 0.124576; 0.138250;, + 0.982531; 0.124576; 0.138250;, + 0.786888;-0.617096; 0.000000;, + 0.786888;-0.617096; 0.000000;, + 0.786888;-0.617096; 0.000000;, + 0.786888;-0.617096; 0.000000;, + -0.811829; 0.583895; 0.000000;, + -0.811829; 0.583895; 0.000000;, + -0.811829; 0.583895; 0.000000;, + -0.811829; 0.583895; 0.000000;, + 0.979280; 0.202510; 0.000000;, + 0.979280; 0.202510; 0.000000;, + 0.979280; 0.202510; 0.000000;, + 0.979280; 0.202510; 0.000000;, + 0.758551;-0.651614; 0.000000;, + 0.758551;-0.651614; 0.000000;, + 0.758551;-0.651614; 0.000000;, + 0.758551;-0.651614; 0.000000;, + -0.745109;-0.154085;-0.648899;, + -0.745109;-0.154085;-0.648899;, + -0.745109;-0.154085;-0.648899;, + -0.745109;-0.154085;-0.648899;, + 0.713053; 0.147456; 0.685429;, + 0.713053; 0.147456; 0.685429;, + 0.713053; 0.147456; 0.685429;, + 0.713053; 0.147456; 0.685429;, + 0.967147;-0.254217; 0.000000;, + 0.967147;-0.254217; 0.000000;, + 0.967147;-0.254217; 0.000000;, + 0.967147;-0.254217; 0.000000;, + -0.786888; 0.617096; 0.000000;, + -0.786888; 0.617096; 0.000000;, + -0.786888; 0.617096; 0.000000;, + -0.786888; 0.617096; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000; 1.000000;, + -0.000000;-0.000000; 1.000000;, + -0.000000;-0.000000; 1.000000;, + -0.000000;-0.000000; 1.000000;, + -0.979280;-0.202510; 0.000000;, + -0.979280;-0.202510; 0.000000;, + -0.979280;-0.202510; 0.000000;, + -0.979280;-0.202510; 0.000000;, + -0.915380;-0.189296; 0.355310;, + -0.915380;-0.189296; 0.355310;, + -0.915380;-0.189296; 0.355310;, + -0.915380;-0.189296; 0.355310;, + -0.959391; 0.282081; 0.000000;, + -0.959391; 0.282081; 0.000000;, + -0.959391; 0.282081; 0.000000;, + -0.959391; 0.282081; 0.000000;, + 0.919689; 0.190187;-0.343514;, + 0.919689; 0.190187;-0.343514;, + 0.919689; 0.190187;-0.343514;, + 0.919689; 0.190187;-0.343514;, + -0.287002;-0.957930; 0.000000;, + -0.287002;-0.957930; 0.000000;, + -0.287002;-0.957930; 0.000000;, + -0.287002;-0.957930; 0.000000;, + 0.159452; 0.987206; 0.000000;, + 0.159452; 0.987206; 0.000000;, + 0.159452; 0.987206; 0.000000;, + 0.159452; 0.987206; 0.000000;, + 0.998822;-0.048531; 0.000000;, + 0.998822;-0.048531; 0.000000;, + 0.998822;-0.048531; 0.000000;, + 0.998822;-0.048531; 0.000000;, + -0.159452;-0.987206; 0.000000;, + -0.159452;-0.987206; 0.000000;, + -0.159452;-0.987206; 0.000000;, + -0.159452;-0.987206; 0.000000;, + -0.827535; 0.040209;-0.559973;, + -0.827535; 0.040209;-0.559973;, + -0.827535; 0.040209;-0.559973;, + -0.827535; 0.040209;-0.559973;, + 0.827535;-0.040209; 0.559973;, + 0.827535;-0.040209; 0.559973;, + 0.827535;-0.040209; 0.559973;, + 0.827535;-0.040209; 0.559973;, + -0.054562;-0.998510; 0.000000;, + -0.054562;-0.998510; 0.000000;, + -0.054562;-0.998510; 0.000000;, + -0.054562;-0.998510; 0.000000;, + 0.287004; 0.957929; 0.000000;, + 0.287004; 0.957929; 0.000000;, + 0.287004; 0.957929; 0.000000;, + 0.287004; 0.957929; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.998822; 0.048531; 0.000000;, + -0.998822; 0.048531; 0.000000;, + -0.998822; 0.048531; 0.000000;, + -0.998822; 0.048531; 0.000000;, + -0.935521; 0.045456; 0.350335;, + -0.935521; 0.045456; 0.350335;, + -0.935521; 0.045456; 0.350335;, + -0.935521; 0.045456; 0.350335;, + 0.054562; 0.998510; 0.000000;, + 0.054562; 0.998510; 0.000000;, + 0.054562; 0.998510; 0.000000;, + 0.054562; 0.998510; 0.000000;, + 0.935521;-0.045456;-0.350335;, + 0.935521;-0.045456;-0.350335;, + 0.935521;-0.045456;-0.350335;, + 0.935521;-0.045456;-0.350335;, + -0.615920;-0.787809; 0.000000;, + -0.615920;-0.787809; 0.000000;, + -0.615920;-0.787809; 0.000000;, + -0.615920;-0.787809; 0.000000;, + 0.652891; 0.757452; 0.000000;, + 0.652891; 0.757452; 0.000000;, + 0.652891; 0.757452; 0.000000;, + 0.652891; 0.757452; 0.000000;, + 0.992058;-0.125784; 0.000000;, + 0.992058;-0.125784; 0.000000;, + 0.992058;-0.125784; 0.000000;, + 0.992058;-0.125784; 0.000000;, + -0.652892;-0.757451; 0.000000;, + -0.652892;-0.757451; 0.000000;, + -0.652892;-0.757451; 0.000000;, + -0.652892;-0.757451; 0.000000;, + -0.597869; 0.075804;-0.798001;, + -0.597869; 0.075804;-0.798001;, + -0.597869; 0.075804;-0.798001;, + -0.597869; 0.075804;-0.798001;, + 0.597869;-0.075804; 0.798001;, + 0.597869;-0.075804; 0.798001;, + 0.597869;-0.075804; 0.798001;, + 0.597869;-0.075804; 0.798001;, + -0.978043;-0.208402; 0.000000;, + -0.978043;-0.208402; 0.000000;, + -0.978043;-0.208402; 0.000000;, + -0.978043;-0.208402; 0.000000;, + 0.615923; 0.787806; 0.000000;, + 0.615923; 0.787806; 0.000000;, + 0.615923; 0.787806; 0.000000;, + 0.615923; 0.787806; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.992058; 0.125784; 0.000000;, + -0.992058; 0.125784; 0.000000;, + -0.992058; 0.125784; 0.000000;, + -0.992058; 0.125784; 0.000000;, + -0.982531; 0.124576; 0.138250;, + -0.982531; 0.124576; 0.138250;, + -0.982531; 0.124576; 0.138250;, + -0.982531; 0.124576; 0.138250;, + 0.978043; 0.208402; 0.000000;, + 0.978043; 0.208402; 0.000000;, + 0.978043; 0.208402; 0.000000;, + 0.978043; 0.208402; 0.000000;, + 0.982531;-0.124576;-0.138250;, + 0.982531;-0.124576;-0.138250;, + 0.982531;-0.124576;-0.138250;, + 0.982531;-0.124576;-0.138250;, + 0.160879; 0.109711;-0.980858;, + 0.160879; 0.109711;-0.980858;, + 0.160879; 0.109711;-0.980858;, + 0.160879; 0.109711;-0.980858;, + -0.198803;-0.137217;-0.970386;, + -0.198803;-0.137217;-0.970386;, + -0.198803;-0.137217;-0.970386;, + -0.198803;-0.137217;-0.970386;, + -0.196717; 0.018609;-0.980284;, + -0.196717; 0.018609;-0.980284;, + -0.196717; 0.018609;-0.980284;, + -0.196717; 0.018609;-0.980284;, + 0.102078;-0.097616; 0.989975;, + 0.102078;-0.097616; 0.989975;, + 0.102078;-0.097616; 0.989975;, + 0.102078;-0.097616; 0.989975;, + -0.149356;-0.045074;-0.987756;, + -0.149356;-0.045074;-0.987756;, + -0.149356;-0.045074;-0.987756;, + -0.149356;-0.045074;-0.987756;, + 0.215544;-0.513602; 0.830515;, + 0.215544;-0.513602; 0.830515;, + 0.215544;-0.513602; 0.830515;, + 0.215544;-0.513602; 0.830515;, + 0.718815;-0.695202; 0.000000;, + 0.718815;-0.695202; 0.000000;, + 0.718815;-0.695202; 0.000000;, + 0.718815;-0.695202; 0.000000;, + 0.487294;-0.722679; 0.490183;, + 0.487294;-0.722679; 0.490183;, + 0.487294;-0.722679; 0.490183;, + 0.487294;-0.722679; 0.490183;, + 0.066586; 0.769377;-0.635315;, + 0.066586; 0.769377;-0.635315;, + 0.066586; 0.769377;-0.635315;, + 0.066586; 0.769377;-0.635315;, + -0.028478; 0.801478; 0.597345;, + -0.028478; 0.801478; 0.597345;, + -0.028478; 0.801478; 0.597345;, + -0.028478; 0.801478; 0.597345;, + 0.026901;-0.473392;-0.880441;, + 0.026901;-0.473392;-0.880441;, + 0.026901;-0.473392;-0.880441;, + 0.026901;-0.473392;-0.880441;, + -0.007294;-0.933725; 0.357916;, + -0.007294;-0.933725; 0.357916;, + -0.007294;-0.933725; 0.357916;, + -0.007294;-0.933725; 0.357916;, + 0.086369; 0.311450;-0.946329;, + 0.086369; 0.311450;-0.946329;, + 0.086369; 0.311450;-0.946329;, + 0.086369; 0.311450;-0.946329;, + -0.067629;-0.480548; 0.874357;, + -0.067629;-0.480548; 0.874357;, + -0.067629;-0.480548; 0.874357;, + -0.067629;-0.480548; 0.874357;, + 0.086985; 0.056673;-0.994596;, + 0.086985; 0.056673;-0.994596;, + 0.086985; 0.056673;-0.994596;, + 0.086985; 0.056673;-0.994596;, + -0.135484; 0.588278; 0.797228;, + -0.135484; 0.588278; 0.797228;, + -0.135484; 0.588278; 0.797228;, + -0.135484; 0.588278; 0.797228;, + 0.044517;-0.694711;-0.717910;, + 0.044517;-0.694711;-0.717910;, + 0.044517;-0.694711;-0.717910;, + 0.044517;-0.694711;-0.717910;, + -0.213024; 0.856950; 0.469316;, + -0.213024; 0.856950; 0.469316;, + -0.213024; 0.856950; 0.469316;, + -0.213024; 0.856950; 0.469316;, + 0.183924;-0.098769;-0.977966;, + 0.183924;-0.098769;-0.977966;, + 0.183924;-0.098769;-0.977966;, + 0.183924;-0.098769;-0.977966;, + 0.151963;-0.843802; 0.514690;, + 0.151963;-0.843802; 0.514690;, + 0.151963;-0.843802; 0.514690;, + 0.151963;-0.843802; 0.514690;, + 0.218400; 0.143845;-0.965199;, + 0.218400; 0.143845;-0.965199;, + 0.218400; 0.143845;-0.965199;, + 0.218400; 0.143845;-0.965199;, + -0.124175; 0.176993; 0.976347;, + -0.124175; 0.176993; 0.976347;, + -0.124175; 0.176993; 0.976347;, + -0.124175; 0.176993; 0.976347;, + -0.507936; 0.805697; 0.304717;, + -0.507936; 0.805697; 0.304717;, + -0.507936; 0.805697; 0.304717;, + -0.507936; 0.805697; 0.304717;, + -0.333223; 0.759077; 0.559254;, + -0.333223; 0.759077; 0.559254;, + -0.333223; 0.759077; 0.559254;, + -0.333223; 0.759077; 0.559254;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000;-0.969486; 0.245146;, + 0.000000;-0.969486; 0.245146;, + 0.000000;-0.969486; 0.245146;, + 0.000000;-0.969486; 0.245146;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 0.214518; 0.976720;, + 0.000000; 0.214518; 0.976720;, + 0.000000; 0.214518; 0.976720;, + 0.000000; 0.214518; 0.976720;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.906378;-0.422468; 0.000000;, + 0.906378;-0.422468; 0.000000;, + 0.906378;-0.422468; 0.000000;, + 0.906378;-0.422468; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.969486;-0.245146;, + 0.000000; 0.969486;-0.245146;, + 0.000000; 0.969486;-0.245146;, + 0.000000; 0.969486;-0.245146;, + 0.000000;-0.031937; 0.999490;, + 0.000000;-0.031937; 0.999490;, + 0.000000;-0.031937; 0.999490;, + 0.000000;-0.031937; 0.999490;, + 0.906898; 0.421351; 0.000000;, + 0.906898; 0.421351; 0.000000;, + 0.906898; 0.421351; 0.000000;, + 0.906898; 0.421351; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 0.031937;-0.999490;, + 0.000000; 0.031937;-0.999490;, + 0.000000; 0.031937;-0.999490;, + 0.000000; 0.031937;-0.999490;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.031937;-0.999490;, + 0.000000; 0.031937;-0.999490;, + 0.000000; 0.031937;-0.999490;, + 0.000000; 0.031937;-0.999490;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-0.969486; 0.245146;, + 0.000000;-0.969486; 0.245146;, + 0.000000;-0.969486; 0.245146;, + 0.000000;-0.969486; 0.245146;, + 0.000000; 0.969486;-0.245146;, + 0.000000; 0.969486;-0.245146;, + 0.000000; 0.969486;-0.245146;, + 0.000000; 0.969486;-0.245146;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.906378; 0.422468; 0.000000;, + -0.906378; 0.422468; 0.000000;, + -0.906378; 0.422468; 0.000000;, + -0.906378; 0.422468; 0.000000;, + 0.000000;-0.031937; 0.999490;, + 0.000000;-0.031937; 0.999490;, + 0.000000;-0.031937; 0.999490;, + 0.000000;-0.031937; 0.999490;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.906898;-0.421351; 0.000000;, + -0.906898;-0.421351; 0.000000;, + -0.906898;-0.421351; 0.000000;, + -0.906898;-0.421351; 0.000000;, + 0.000000; 0.214518; 0.976720;, + 0.000000; 0.214518; 0.976720;, + 0.000000; 0.214518; 0.976720;, + 0.000000; 0.214518; 0.976720;; + 188; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;, + 4;408;409;410;411;, + 4;412;413;414;415;, + 4;416;417;418;419;, + 4;420;421;422;423;, + 4;424;425;426;427;, + 4;428;429;430;431;, + 4;432;433;434;435;, + 4;436;437;438;439;, + 4;440;441;442;443;, + 4;444;445;446;447;, + 4;448;449;450;451;, + 4;452;453;454;455;, + 4;456;457;458;459;, + 4;460;461;462;463;, + 4;464;465;466;467;, + 4;468;469;470;471;, + 4;472;473;474;475;, + 4;476;477;478;479;, + 4;480;481;482;483;, + 4;484;485;486;487;, + 4;488;489;490;491;, + 4;492;493;494;495;, + 4;496;497;498;499;, + 4;500;501;502;503;, + 4;504;505;506;507;, + 4;508;509;510;511;, + 4;512;513;514;515;, + 4;516;517;518;519;, + 4;520;521;522;523;, + 4;524;525;526;527;, + 4;528;529;530;531;, + 4;532;533;534;535;, + 4;536;537;538;539;, + 4;540;541;542;543;, + 4;544;545;546;547;, + 4;548;549;550;551;, + 4;552;553;554;555;, + 4;556;557;558;559;, + 4;560;561;562;563;, + 4;564;565;566;567;, + 4;568;569;570;571;, + 4;572;573;574;575;, + 4;576;577;578;579;, + 4;580;581;582;583;, + 4;584;585;586;587;, + 4;588;589;590;591;, + 4;592;593;594;595;, + 4;596;597;598;599;, + 4;600;601;602;603;, + 4;604;605;606;607;, + 4;608;609;610;611;, + 4;612;613;614;615;, + 4;616;617;618;619;, + 4;620;621;622;623;, + 4;624;625;626;627;, + 4;628;629;630;631;, + 4;632;633;634;635;, + 4;636;637;638;639;, + 4;640;641;642;643;, + 4;644;645;646;647;, + 4;648;649;650;651;, + 4;652;653;654;655;, + 4;656;657;658;659;, + 4;660;661;662;663;, + 4;664;665;666;667;, + 4;668;669;670;671;, + 4;672;673;674;675;, + 4;676;677;678;679;, + 4;680;681;682;683;, + 4;684;685;686;687;, + 4;688;689;690;691;, + 4;692;693;694;695;, + 4;696;697;698;699;, + 4;700;701;702;703;, + 4;704;705;706;707;, + 4;708;709;710;711;, + 4;712;713;714;715;, + 4;716;717;718;719;, + 4;720;721;722;723;, + 4;724;725;726;727;, + 4;728;729;730;731;, + 4;732;733;734;735;, + 4;736;737;738;739;, + 4;740;741;742;743;, + 4;744;745;746;747;, + 4;748;749;750;751;; + } //End of Mesh Normals + MeshMaterialList { //Mesh Material List + 1; + 188; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material_001 { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Mesh Material List + MeshTextureCoords { //Mesh UV Coordinates + 752; + 0.178234; 0.624787;, + 0.137634; 0.780449;, + 0.278497; 0.761273;, + 0.279269; 0.675143;, + 0.037208; 0.867209;, + 0.112992; 0.859487;, + 0.137634; 0.780449;, + 0.027110; 0.773639;, + 0.136141; 0.780448;, + 0.176742; 0.624786;, + 0.277777; 0.675143;, + 0.277004; 0.761272;, + 0.254870; 0.478392;, + 0.236267; 0.548779;, + 0.176742; 0.624786;, + 0.112729; 0.540103;, + 0.176742; 0.624786;, + 0.136141; 0.780448;, + 0.025617; 0.773636;, + 0.112729; 0.540103;, + 0.279269; 0.675143;, + 0.278497; 0.761273;, + 0.323330; 0.764832;, + 0.323330; 0.665705;, + 0.323331; 0.491088;, + 0.277953; 0.517036;, + 0.236267; 0.548779;, + 0.254870; 0.478392;, + 0.323330; 0.590540;, + 0.289459; 0.604571;, + 0.279269; 0.675143;, + 0.323330; 0.665705;, + 0.178234; 0.624787;, + 0.279269; 0.675143;, + 0.289459; 0.604571;, + 0.237759; 0.548780;, + 0.277777; 0.675143;, + 0.176742; 0.624786;, + 0.236267; 0.548779;, + 0.287967; 0.604571;, + 0.323331; 0.491088;, + 0.279444; 0.517037;, + 0.297460; 0.553140;, + 0.323331; 0.539628;, + 0.287967; 0.604571;, + 0.236267; 0.548779;, + 0.277953; 0.517036;, + 0.295968; 0.553140;, + 0.323331; 0.539628;, + 0.297460; 0.553140;, + 0.289459; 0.604571;, + 0.323330; 0.590540;, + 0.237759; 0.548780;, + 0.289459; 0.604571;, + 0.297460; 0.553140;, + 0.279444; 0.517037;, + 0.042969; 0.976392;, + 0.069912; 0.975431;, + 0.074844; 0.999643;, + 0.028313; 0.997604;, + 0.323329; 0.866146;, + 0.256600; 0.861325;, + 0.277004; 0.761272;, + 0.323330; 0.764832;, + 0.256600; 0.861325;, + 0.111499; 0.859485;, + 0.136141; 0.780448;, + 0.277004; 0.761272;, + 0.278497; 0.761273;, + 0.137634; 0.780449;, + 0.112992; 0.859487;, + 0.258094; 0.861325;, + 0.050074; 0.966766;, + 0.063339; 0.966130;, + 0.069912; 0.975431;, + 0.042969; 0.976392;, + 0.074844; 0.957233;, + 0.074844; 0.999643;, + 0.069912; 0.975431;, + 0.066750; 0.953156;, + 0.063236; 0.948147;, + 0.057631; 0.947033;, + 0.050634; 0.938780;, + 0.070361; 0.938775;, + 0.057631; 0.947033;, + 0.032177; 0.948906;, + 0.003557; 0.951590;, + 0.050634; 0.938780;, + 0.054534; 0.960473;, + 0.059371; 0.962337;, + 0.063339; 0.966130;, + 0.050074; 0.966766;, + 0.057518; 0.949477;, + 0.046936; 0.954091;, + 0.032177; 0.948906;, + 0.057631; 0.947033;, + 0.066750; 0.953156;, + 0.069912; 0.975431;, + 0.063339; 0.966130;, + 0.063929; 0.954071;, + 0.061464; 0.950742;, + 0.057518; 0.949477;, + 0.057631; 0.947033;, + 0.063236; 0.948147;, + 0.055038; 0.959289;, + 0.057975; 0.961075;, + 0.059371; 0.962337;, + 0.054534; 0.960473;, + 0.063929; 0.954071;, + 0.063339; 0.966130;, + 0.059371; 0.962337;, + 0.061737; 0.954781;, + 0.059773; 0.953174;, + 0.057560; 0.951878;, + 0.057518; 0.949477;, + 0.061464; 0.950742;, + 0.057560; 0.951878;, + 0.051430; 0.956487;, + 0.046936; 0.954091;, + 0.057518; 0.949477;, + 0.184220; 0.118411;, + 0.330675; 0.100335;, + 0.302179; 0.039460;, + 0.200963; 0.038195;, + 0.058231; 0.955124;, + 0.056821; 0.954084;, + 0.057560; 0.951878;, + 0.059773; 0.953174;, + 0.056821; 0.954084;, + 0.053046; 0.957052;, + 0.051430; 0.956487;, + 0.057560; 0.951878;, + 0.061737; 0.954781;, + 0.059371; 0.962337;, + 0.057975; 0.961075;, + 0.059797; 0.956192;, + 0.334487; 0.386951;, + 0.383126; 0.240007;, + 0.330675; 0.100335;, + 0.184220; 0.118411;, + 0.446491; 0.018699;, + 0.302179; 0.039460;, + 0.330675; 0.100335;, + 0.476633; 0.108770;, + 0.519659; 0.104516;, + 0.476892; 0.108573;, + 0.443842; 0.017362;, + 0.517802; 0.014943;, + 0.476892; 0.108573;, + 0.329854; 0.100368;, + 0.299809; 0.040785;, + 0.443842; 0.017362;, + 0.520619; 0.391138;, + 0.451350; 0.320787;, + 0.383126; 0.240007;, + 0.334487; 0.386951;, + 0.476633; 0.108770;, + 0.330675; 0.100335;, + 0.383126; 0.240007;, + 0.477074; 0.148561;, + 0.520629; 0.158106;, + 0.477073; 0.148486;, + 0.476892; 0.108573;, + 0.519659; 0.104516;, + 0.477073; 0.148486;, + 0.383165; 0.240469;, + 0.329854; 0.100368;, + 0.476892; 0.108573;, + 0.520619; 0.391138;, + 0.451420; 0.319780;, + 0.485437; 0.209764;, + 0.521872; 0.222745;, + 0.485437; 0.209764;, + 0.451420; 0.319780;, + 0.383165; 0.240469;, + 0.477073; 0.148486;, + 0.477074; 0.148561;, + 0.383126; 0.240007;, + 0.451350; 0.320787;, + 0.485984; 0.210903;, + 0.521872; 0.222745;, + 0.485437; 0.209764;, + 0.477073; 0.148486;, + 0.520629; 0.158106;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.111499; 0.859485;, + 0.035714; 0.867207;, + 0.025617; 0.773636;, + 0.136141; 0.780448;, + 0.237759; 0.548780;, + 0.256361; 0.478392;, + 0.114220; 0.540105;, + 0.178234; 0.624787;, + 0.114220; 0.540105;, + 0.027110; 0.773639;, + 0.137634; 0.780449;, + 0.178234; 0.624787;, + 0.323330; 0.665705;, + 0.323330; 0.764832;, + 0.277004; 0.761272;, + 0.277777; 0.675143;, + 0.279444; 0.517037;, + 0.323331; 0.491088;, + 0.256361; 0.478392;, + 0.237759; 0.548780;, + 0.287967; 0.604571;, + 0.323330; 0.590540;, + 0.323330; 0.665705;, + 0.277777; 0.675143;, + 0.277953; 0.517036;, + 0.323331; 0.491088;, + 0.323331; 0.539628;, + 0.295968; 0.553140;, + 0.295968; 0.553140;, + 0.323331; 0.539628;, + 0.323330; 0.590540;, + 0.287967; 0.604571;, + 0.032177; 0.948906;, + 0.042969; 0.976392;, + 0.028313; 0.997604;, + 0.003557; 0.951590;, + 0.258094; 0.861325;, + 0.323329; 0.866146;, + 0.323330; 0.764832;, + 0.278497; 0.761273;, + 0.046936; 0.954091;, + 0.050074; 0.966766;, + 0.042969; 0.976392;, + 0.032177; 0.948906;, + 0.066750; 0.953156;, + 0.063236; 0.948147;, + 0.070361; 0.938775;, + 0.074844; 0.957233;, + 0.051430; 0.956487;, + 0.054534; 0.960473;, + 0.050074; 0.966766;, + 0.046936; 0.954091;, + 0.063929; 0.954071;, + 0.061464; 0.950742;, + 0.063236; 0.948147;, + 0.066750; 0.953156;, + 0.053046; 0.957052;, + 0.055038; 0.959289;, + 0.054534; 0.960473;, + 0.051430; 0.956487;, + 0.061737; 0.954781;, + 0.059773; 0.953174;, + 0.061464; 0.950742;, + 0.063929; 0.954071;, + 0.329854; 0.100368;, + 0.184050; 0.120233;, + 0.201413; 0.039911;, + 0.299809; 0.040785;, + 0.059797; 0.956192;, + 0.058231; 0.955124;, + 0.059773; 0.953174;, + 0.061737; 0.954781;, + 0.383165; 0.240469;, + 0.334369; 0.387551;, + 0.184050; 0.120233;, + 0.329854; 0.100368;, + 0.476633; 0.108770;, + 0.519659; 0.104516;, + 0.517802; 0.014943;, + 0.446491; 0.018699;, + 0.451420; 0.319780;, + 0.520619; 0.391138;, + 0.334369; 0.387551;, + 0.383165; 0.240469;, + 0.477074; 0.148561;, + 0.520629; 0.158106;, + 0.519659; 0.104516;, + 0.476633; 0.108770;, + 0.451350; 0.320787;, + 0.520619; 0.391138;, + 0.521872; 0.222745;, + 0.485984; 0.210903;, + 0.485984; 0.210903;, + 0.521872; 0.222745;, + 0.520629; 0.158106;, + 0.477074; 0.148561;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.816854; 0.810423;, + 0.658584; 0.810421;, + 0.771993; 0.971876;, + 0.807286; 0.971876;, + 0.816852; 0.662921;, + 0.658586; 0.662919;, + 0.658584; 0.810421;, + 0.816854; 0.810423;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.775847; 0.525195;, + 0.701026; 0.525194;, + 0.658586; 0.662919;, + 0.816852; 0.662921;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.775847; 0.525195;, + 0.701026; 0.525194;, + 0.658586; 0.662919;, + 0.816852; 0.662921;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.816852; 0.662921;, + 0.658586; 0.662919;, + 0.658584; 0.810421;, + 0.816854; 0.810423;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.816854; 0.810423;, + 0.658584; 0.810421;, + 0.771993; 0.971876;, + 0.807286; 0.971876;; + } //End of Mesh UV Coordinates + XSkinMeshHeader { + 2; + 6; + 8; + } + SkinWeights { + "Armature_us1"; + 112; + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 0.833611, 0.552352, 0.000000, + -0.000000, 0.552351,-0.833611, 0.000000, + -0.004373,-4.477100,-0.655155, 1.000000;; + } //End of Armature_us1 Skin Weights + SkinWeights { + "Armature_nogi1"; + 168; + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.000000, 0.814990, 0.579476, 0.000000, + -1.000000,-0.000000,-0.000000, 0.000000, + -0.000000,-0.579475, 0.814990, 0.000000, + 1.972052, 0.535777,-0.745986, 1.000000;; + } //End of Armature_nogi1 Skin Weights + SkinWeights { + "Armature_nogi2"; + 168; + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.000000,-0.835281,-0.549824, 0.000000, + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.549824, 0.835281, 0.000000, + -1.972052, 0.501328,-0.769559, 1.000000;; + } //End of Armature_nogi2 Skin Weights + SkinWeights { + "Armature_krilo1"; + 12; + 632, + 633, + 634, + 635, + 680, + 681, + 682, + 683, + 736, + 737, + 738, + 739; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.989605, 0.143812,-0.000000, 0.000000, + -0.143812,-0.989605,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + 0.663170, 2.307318,-2.266624, 1.000000;; + } //End of Armature_krilo1 Skin Weights + SkinWeights { + "Armature_telo"; + 120; + 4, + 5, + 56, + 57, + 58, + 59, + 60, + 61, + 64, + 65, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 140, + 141, + 146, + 147, + 150, + 151, + 520, + 521, + 552, + 553, + 554, + 555, + 556, + 557, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 586, + 587, + 588, + 589, + 590, + 591, + 598, + 599; + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.997725,-0.067414, 0.000000, + 0.000000, 0.067414,-0.997725, 0.000000, + 0.004372, 3.079499, 1.049295, 1.000000;; + } //End of Armature_telo Skin Weights + SkinWeights { + "Armature_krilo2"; + 12; + 636, + 637, + 638, + 639, + 648, + 649, + 650, + 651, + 748, + 749, + 750, + 751; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.991160,-0.132673, 0.000000, 0.000000, + 0.132673,-0.991160,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.663343, 2.311128,-2.266624, 1.000000;; + } //End of Armature_krilo2 Skin Weights + SkinWeights { + "Armature_golova"; + 92; + 104, + 105, + 120, + 121, + 122, + 123, + 124, + 125, + 128, + 129, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 576, + 577, + 584, + 585, + 586, + 587, + 588, + 589, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615; + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 0.943276, 0.332009, 0.000000, + -0.000000,-0.332009, 0.943276, 0.000000, + 0.004372,-2.686279,-1.835278, 1.000000;; + } //End of Armature_golova Skin Weights + SkinWeights { + "Armature_popa"; + 116; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 76, + 77, + 82, + 83, + 86, + 87, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 554, + 555, + 556, + 557, + 558, + 559, + 566, + 567; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000; + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.990534,-0.137266, 0.000000, + 0.000000,-0.137266, 0.990534, 0.000000, + -0.004373, 2.079456,-0.639050, 1.000000;; + } //End of Armature_popa Skin Weights + } //End of Mesh Mesh + } //End of Cube +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 72; + 0;3; 0.140869, 0.294248, 0.956928;;, + 1;3; 0.140869, 0.294248, 0.956928;;, + 2;3; 0.140869, 0.294248, 0.956928;;, + 3;3; 0.140869, 0.294248, 0.956928;;, + 4;3; 0.140869, 0.294248, 0.956928;;, + 5;3; 0.140869, 0.294248, 0.956928;;, + 6;3; 0.140869, 0.294248, 0.956928;;, + 7;3; 0.140869, 0.294248, 0.956928;;, + 8;3; 0.140869, 0.294248, 0.956928;;, + 9;3; 0.140869, 0.294248, 0.956928;;, + 10;3; 0.140869, 0.294248, 0.956928;;, + 11;3; 0.140869, 0.294248, 0.956928;;, + 12;3; 0.140869, 0.294248, 0.956928;;, + 13;3; 0.140869, 0.294248, 0.956928;;, + 14;3; 0.140869, 0.294248, 0.956928;;, + 15;3; 0.140869, 0.294248, 0.956928;;, + 16;3; 0.140869, 0.294248, 0.956928;;, + 17;3; 0.140869, 0.294248, 0.956928;;, + 18;3; 0.140869, 0.294248, 0.956928;;, + 19;3; 0.140869, 0.294248, 0.956928;;, + 20;3; 0.140869, 0.294248, 0.956928;;, + 21;3; 0.140869, 0.294248, 0.956928;;, + 22;3; 0.140869, 0.294248, 0.956928;;, + 23;3; 0.140869, 0.294248, 0.956928;;, + 24;3; 0.140869, 0.294248, 0.956928;;, + 25;3; 0.140869, 0.294248, 0.956928;;, + 26;3; 0.140869, 0.294248, 0.956928;;, + 27;3; 0.140869, 0.294248, 0.956928;;, + 28;3; 0.140869, 0.294248, 0.956928;;, + 29;3; 0.140869, 0.294248, 0.956928;;, + 30;3; 0.140869, 0.294248, 0.956928;;, + 31;3; 0.140869, 0.294248, 0.956928;;, + 32;3; 0.140869, 0.294248, 0.956928;;, + 33;3; 0.140869, 0.294248, 0.956928;;, + 34;3; 0.140869, 0.294248, 0.956928;;, + 35;3; 0.140869, 0.294248, 0.956928;;, + 36;3; 0.140869, 0.294248, 0.956928;;, + 37;3; 0.140869, 0.294248, 0.956928;;, + 38;3; 0.140869, 0.294248, 0.956928;;, + 39;3; 0.140869, 0.294248, 0.956928;;, + 40;3; 0.140869, 0.294248, 0.956928;;, + 41;3; 0.140869, 0.294248, 0.956928;;, + 42;3; 0.140869, 0.294248, 0.956928;;, + 43;3; 0.140869, 0.294248, 0.956928;;, + 44;3; 0.140869, 0.294248, 0.956928;;, + 45;3; 0.140869, 0.294248, 0.956928;;, + 46;3; 0.140869, 0.294248, 0.956928;;, + 47;3; 0.140869, 0.294248, 0.956928;;, + 48;3; 0.140869, 0.294248, 0.956928;;, + 49;3; 0.140869, 0.294248, 0.956928;;, + 50;3; 0.140869, 0.294248, 0.956928;;, + 51;3; 0.140869, 0.294248, 0.956928;;, + 52;3; 0.140869, 0.294248, 0.956928;;, + 53;3; 0.140869, 0.294248, 0.956928;;, + 54;3; 0.140869, 0.294248, 0.956928;;, + 55;3; 0.140869, 0.294248, 0.956928;;, + 56;3; 0.140869, 0.294248, 0.956928;;, + 57;3; 0.140869, 0.294248, 0.956928;;, + 58;3; 0.140869, 0.294248, 0.956928;;, + 59;3; 0.140869, 0.294248, 0.956928;;, + 60;3; 0.140869, 0.294248, 0.956928;;, + 61;3; 0.140869, 0.294248, 0.956928;;, + 62;3; 0.140869, 0.294248, 0.956928;;, + 63;3; 0.140869, 0.294248, 0.956928;;, + 64;3; 0.140869, 0.294248, 0.956928;;, + 65;3; 0.140869, 0.294248, 0.956928;;, + 66;3; 0.140869, 0.294248, 0.956928;;, + 67;3; 0.140869, 0.294248, 0.956928;;, + 68;3; 0.140869, 0.294248, 0.956928;;, + 69;3; 0.140869, 0.294248, 0.956928;;, + 70;3; 0.140869, 0.294248, 0.956928;;, + 71;3; 0.140869, 0.294248, 0.956928;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 0.384873, 0.384873, 0.384873;;, + 1;3; 0.384873, 0.384873, 0.384873;;, + 2;3; 0.384873, 0.384873, 0.384873;;, + 3;3; 0.384873, 0.384873, 0.384873;;, + 4;3; 0.384873, 0.384873, 0.384873;;, + 5;3; 0.384873, 0.384873, 0.384873;;, + 6;3; 0.384873, 0.384873, 0.384873;;, + 7;3; 0.384873, 0.384873, 0.384873;;, + 8;3; 0.384873, 0.384873, 0.384873;;, + 9;3; 0.384873, 0.384873, 0.384873;;, + 10;3; 0.384873, 0.384873, 0.384873;;, + 11;3; 0.384873, 0.384873, 0.384873;;, + 12;3; 0.384873, 0.384873, 0.384873;;, + 13;3; 0.384873, 0.384873, 0.384873;;, + 14;3; 0.384873, 0.384873, 0.384873;;, + 15;3; 0.384873, 0.384873, 0.384873;;, + 16;3; 0.384873, 0.384873, 0.384873;;, + 17;3; 0.384873, 0.384873, 0.384873;;, + 18;3; 0.384873, 0.384873, 0.384873;;, + 19;3; 0.384873, 0.384873, 0.384873;;, + 20;3; 0.384873, 0.384873, 0.384873;;, + 21;3; 0.384873, 0.384873, 0.384873;;, + 22;3; 0.384873, 0.384873, 0.384873;;, + 23;3; 0.384873, 0.384873, 0.384873;;, + 24;3; 0.384873, 0.384873, 0.384873;;, + 25;3; 0.384873, 0.384873, 0.384873;;, + 26;3; 0.384873, 0.384873, 0.384873;;, + 27;3; 0.384873, 0.384873, 0.384873;;, + 28;3; 0.384873, 0.384873, 0.384873;;, + 29;3; 0.384873, 0.384873, 0.384873;;, + 30;3; 0.384873, 0.384873, 0.384873;;, + 31;3; 0.384873, 0.384873, 0.384873;;, + 32;3; 0.384873, 0.384873, 0.384873;;, + 33;3; 0.384873, 0.384873, 0.384873;;, + 34;3; 0.384873, 0.384873, 0.384873;;, + 35;3; 0.384873, 0.384873, 0.384873;;, + 36;3; 0.384873, 0.384873, 0.384873;;, + 37;3; 0.384873, 0.384873, 0.384873;;, + 38;3; 0.384873, 0.384873, 0.384873;;, + 39;3; 0.384873, 0.384873, 0.384873;;, + 40;3; 0.384873, 0.384873, 0.384873;;, + 41;3; 0.384873, 0.384873, 0.384873;;, + 42;3; 0.384873, 0.384873, 0.384873;;, + 43;3; 0.384873, 0.384873, 0.384873;;, + 44;3; 0.384873, 0.384873, 0.384873;;, + 45;3; 0.384873, 0.384873, 0.384873;;, + 46;3; 0.384873, 0.384873, 0.384873;;, + 47;3; 0.384873, 0.384873, 0.384873;;, + 48;3; 0.384873, 0.384873, 0.384873;;, + 49;3; 0.384873, 0.384873, 0.384873;;, + 50;3; 0.384873, 0.384873, 0.384873;;, + 51;3; 0.384873, 0.384873, 0.384873;;, + 52;3; 0.384873, 0.384873, 0.384873;;, + 53;3; 0.384873, 0.384873, 0.384873;;, + 54;3; 0.384873, 0.384873, 0.384873;;, + 55;3; 0.384873, 0.384873, 0.384873;;, + 56;3; 0.384873, 0.384873, 0.384873;;, + 57;3; 0.384873, 0.384873, 0.384873;;, + 58;3; 0.384873, 0.384873, 0.384873;;, + 59;3; 0.384873, 0.384873, 0.384873;;, + 60;3; 0.384873, 0.384873, 0.384873;;, + 61;3; 0.384873, 0.384873, 0.384873;;, + 62;3; 0.384873, 0.384873, 0.384873;;, + 63;3; 0.384873, 0.384873, 0.384873;;, + 64;3; 0.384873, 0.384873, 0.384873;;, + 65;3; 0.384873, 0.384873, 0.384873;;, + 66;3; 0.384873, 0.384873, 0.384873;;, + 67;3; 0.384873, 0.384873, 0.384873;;, + 68;3; 0.384873, 0.384873, 0.384873;;, + 69;3; 0.384873, 0.384873, 0.384873;;, + 70;3; 0.384873, 0.384873, 0.384873;;, + 71;3; 0.384873, 0.384873, 0.384873;;; + } + } + Animation { + {Armature_telo} + AnimationKey { //Position + 2; + 72; + 0;3; -0.420690, 0.533795,-0.000000;;, + 1;3; -0.420690, 0.533795,-0.000000;;, + 2;3; -0.420690, 0.533795,-0.000000;;, + 3;3; -0.420690, 0.533795,-0.000000;;, + 4;3; -0.420690, 0.533795,-0.000000;;, + 5;3; -0.420690, 0.533795,-0.000000;;, + 6;3; -0.420690, 0.533795,-0.000000;;, + 7;3; -0.420690, 0.533795,-0.000000;;, + 8;3; -0.420690, 0.533795,-0.000000;;, + 9;3; -0.420690, 0.533795,-0.000000;;, + 10;3; -0.420690, 0.533795,-0.000000;;, + 11;3; -0.420690, 0.533795,-0.000000;;, + 12;3; -0.420690, 0.533795,-0.000000;;, + 13;3; -0.420690, 0.533795,-0.000000;;, + 14;3; -0.420690, 0.533795,-0.000000;;, + 15;3; -0.420690, 0.533795,-0.000000;;, + 16;3; -0.420690, 0.533795,-0.000000;;, + 17;3; -0.420690, 0.533795,-0.000000;;, + 18;3; -0.420690, 0.533795,-0.000000;;, + 19;3; -0.420690, 0.533795,-0.000000;;, + 20;3; -0.420690, 0.533795,-0.000000;;, + 21;3; -0.420690, 0.533795,-0.000000;;, + 22;3; -0.420690, 0.533795,-0.000000;;, + 23;3; -0.420690, 0.533795,-0.000000;;, + 24;3; -0.420690, 0.533795,-0.000000;;, + 25;3; -0.420690, 0.533795,-0.000000;;, + 26;3; -0.420690, 0.533795,-0.000000;;, + 27;3; -0.420690, 0.533795,-0.000000;;, + 28;3; -0.420690, 0.533795,-0.000000;;, + 29;3; -0.420690, 0.533795,-0.000000;;, + 30;3; -0.420690, 0.533795,-0.000000;;, + 31;3; -0.420690, 0.533795,-0.000000;;, + 32;3; -0.420690, 0.533795,-0.000000;;, + 33;3; -0.420690, 0.533795,-0.000000;;, + 34;3; -0.420690, 0.533795,-0.000000;;, + 35;3; -0.420690, 0.533795,-0.000000;;, + 36;3; -0.420691, 0.697844, 5.096399;;, + 37;3; -0.420691, 0.649030,11.835538;;, + 38;3; -0.420690, 0.467079,18.898138;;, + 39;3; -0.420690, 0.386893,25.967310;;, + 40;3; -0.420690, 0.533795,32.266632;;, + 41;3; -0.420690, 0.533472,33.885704;;, + 42;3; -0.420690, 0.488681,34.629696;;, + 43;3; -0.420690, 0.442798,35.112400;;, + 44;3; -0.420690, 0.404856,35.451447;;, + 45;3; -0.420689, 0.377828,35.695206;;, + 46;3; -0.420689, 0.361520,35.869213;;, + 47;3; -0.420689, 0.353766,35.988956;;, + 48;3; -0.420689, 0.351512,36.064732;;, + 49;3; -0.420689, 0.351747,36.104042;;, + 50;3; -0.420689, 0.352129,36.114277;;, + 51;3; -0.420689, 0.308901,34.759087;;, + 52;3; -0.420689, 0.263859,31.941816;;, + 53;3; -0.420689, 0.264396,28.434992;;, + 54;3; -0.420689, 0.317380,24.548536;;, + 55;3; -0.420690, 0.409746,20.457424;;, + 56;3; -0.420690, 0.515895,16.287056;;, + 57;3; -0.420691, 0.605579,12.149173;;, + 58;3; -0.420691, 0.652924, 8.167800;;, + 59;3; -0.420691, 0.644488, 4.516260;;, + 60;3; -0.420691, 0.587241, 1.509617;;, + 61;3; -0.420690, 0.533795,-0.000000;;, + 62;3; -0.420690, 0.533795,-0.000000;;, + 63;3; -0.420690, 0.533795,-0.000000;;, + 64;3; -0.420690, 0.533795,-0.000000;;, + 65;3; -0.420690, 0.533795,-0.000000;;, + 66;3; -0.420690, 0.533795,-0.000000;;, + 67;3; -0.420690, 0.533795,-0.000000;;, + 68;3; -0.420690, 0.533795,-0.000000;;, + 69;3; -0.420690, 0.533795,-0.000000;;, + 70;3; -0.420690, 0.533795,-0.000000;;, + 71;3; -0.420690, 0.533795,-0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 1;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 2;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 3;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 4;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 5;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 6;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 7;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 8;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 9;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 10;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 11;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 12;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 13;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 14;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 15;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 16;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 17;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 18;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 19;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 20;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 21;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 22;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 23;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 24;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 25;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 26;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 27;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 28;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 29;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 30;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 31;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 32;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 33;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 34;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 35;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 36;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 37;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 38;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 39;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 40;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 41;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 42;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 43;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 44;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 45;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 46;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 47;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 48;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 49;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 50;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 51;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 52;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 53;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 54;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 55;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 56;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 57;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 58;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 59;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 60;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 61;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 62;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 63;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 64;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 65;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 66;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 67;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 68;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 69;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 70;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 71;4; -0.033726, 0.999431, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_popa} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000, 1.173850, 0.000000;;, + 1;3; 0.000000, 1.173850, 0.000000;;, + 2;3; 0.000000, 1.173850, 0.000000;;, + 3;3; 0.000000, 1.173850, 0.000000;;, + 4;3; 0.000000, 1.173850, 0.000000;;, + 5;3; 0.000000, 1.173850, 0.000000;;, + 6;3; 0.000000, 1.173850, 0.000000;;, + 7;3; 0.000000, 1.173850, 0.000000;;, + 8;3; 0.000000, 1.173850, 0.000000;;, + 9;3; 0.000000, 1.173850, 0.000000;;, + 10;3; 0.000000, 1.173850, 0.000000;;, + 11;3; 0.000000, 1.173850, 0.000000;;, + 12;3; 0.000000, 1.173850, 0.000000;;, + 13;3; 0.000000, 1.173850, 0.000000;;, + 14;3; 0.000000, 1.173850, 0.000000;;, + 15;3; 0.000000, 1.173850, 0.000000;;, + 16;3; 0.000000, 1.173850, 0.000000;;, + 17;3; 0.000000, 1.173850, 0.000000;;, + 18;3; 0.000000, 1.173850, 0.000000;;, + 19;3; 0.000000, 1.173850, 0.000000;;, + 20;3; 0.000000, 1.173850, 0.000000;;, + 21;3; 0.000000, 1.173850, 0.000000;;, + 22;3; 0.000000, 1.173850, 0.000000;;, + 23;3; 0.000000, 1.173850, 0.000000;;, + 24;3; 0.000000, 1.173850, 0.000000;;, + 25;3; 0.000000, 1.173850, 0.000000;;, + 26;3; 0.000000, 1.173850, 0.000000;;, + 27;3; 0.000000, 1.173850, 0.000000;;, + 28;3; 0.000000, 1.173850, 0.000000;;, + 29;3; 0.000000, 1.173850, 0.000000;;, + 30;3; 0.000000, 1.173850, 0.000000;;, + 31;3; 0.000000, 1.173850, 0.000000;;, + 32;3; 0.000000, 1.173850, 0.000000;;, + 33;3; 0.000000, 1.173850, 0.000000;;, + 34;3; 0.000000, 1.173850, 0.000000;;, + 35;3; 0.000000, 1.173850, 0.000000;;, + 36;3; 0.000000, 1.173850,-0.000001;;, + 37;3; -0.000000, 1.173850,-0.000000;;, + 38;3; -0.000000, 1.173850, 0.000001;;, + 39;3; -0.000000, 1.173849, 0.000000;;, + 40;3; -0.000000, 1.173850,-0.000001;;, + 41;3; 0.000000, 1.173850,-0.000000;;, + 42;3; 0.000000, 1.173850,-0.000003;;, + 43;3; 0.000000, 1.173850,-0.000000;;, + 44;3; 0.000000, 1.173850,-0.000002;;, + 45;3; 0.000000, 1.173850,-0.000001;;, + 46;3; -0.000000, 1.173850,-0.000002;;, + 47;3; 0.000000, 1.173850,-0.000004;;, + 48;3; 0.000000, 1.173850,-0.000004;;, + 49;3; 0.000000, 1.173850,-0.000002;;, + 50;3; 0.000000, 1.173850,-0.000001;;, + 51;3; 0.000000, 1.173850,-0.000002;;, + 52;3; 0.000000, 1.173850,-0.000001;;, + 53;3; -0.000000, 1.173850, 0.000000;;, + 54;3; -0.000000, 1.173850,-0.000000;;, + 55;3; 0.000000, 1.173850,-0.000000;;, + 56;3; -0.000000, 1.173850,-0.000000;;, + 57;3; -0.000000, 1.173850, 0.000000;;, + 58;3; 0.000000, 1.173850, 0.000000;;, + 59;3; 0.000000, 1.173850,-0.000000;;, + 60;3; 0.000000, 1.173850,-0.000000;;, + 61;3; 0.000000, 1.173850, 0.000000;;, + 62;3; 0.000000, 1.173850, 0.000000;;, + 63;3; 0.000000, 1.173850, 0.000000;;, + 64;3; 0.000000, 1.173850, 0.000000;;, + 65;3; 0.000000, 1.173850, 0.000000;;, + 66;3; 0.000000, 1.173850, 0.000000;;, + 67;3; 0.000000, 1.173850, 0.000000;;, + 68;3; 0.000000, 1.173850, 0.000000;;, + 69;3; 0.000000, 1.173850, 0.000000;;, + 70;3; 0.000000, 1.173850, 0.000000;;, + 71;3; 0.000000, 1.173850, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 1;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 2;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 3;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 4;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 5;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 6;4; -0.000000,-0.000000, 0.993602, 0.111707;;, + 7;4; -0.000000,-0.000000, 0.991162, 0.131616;;, + 8;4; -0.000000,-0.000000, 0.990021, 0.140919;;, + 9;4; -0.000000,-0.000000, 0.990066, 0.140550;;, + 10;4; -0.000000,-0.000000, 0.990199, 0.139469;;, + 11;4; -0.000000,-0.000000, 0.990412, 0.137731;;, + 12;4; -0.000000,-0.000000, 0.990697, 0.135410;;, + 13;4; -0.000000,-0.000000, 0.991041, 0.132600;;, + 14;4; -0.000000,-0.000000, 0.991432, 0.129413;;, + 15;4; -0.000000,-0.000000, 0.991854, 0.125971;;, + 16;4; -0.000000,-0.000000, 0.992291, 0.122404;;, + 17;4; -0.000000,-0.000000, 0.992728, 0.118842;;, + 18;4; -0.000000,-0.000000, 0.993149, 0.115410;;, + 19;4; -0.000000,-0.000000, 0.993540, 0.112219;;, + 20;4; -0.000000,-0.000000, 0.993889, 0.109367;;, + 21;4; -0.000000,-0.000000, 0.994188, 0.106935;;, + 22;4; -0.000000,-0.000000, 0.994427, 0.104984;;, + 23;4; -0.000000,-0.000000, 0.994601, 0.103560;;, + 24;4; -0.000000,-0.000000, 0.994707, 0.102694;;, + 25;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 26;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 27;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 28;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 29;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 30;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 31;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 32;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 33;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 34;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 35;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 36;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 37;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 38;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 39;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 40;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 41;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 42;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 43;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 44;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 45;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 46;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 47;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 48;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 49;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 50;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 51;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 52;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 53;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 54;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 55;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 56;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 57;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 58;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 59;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 60;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 61;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 62;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 63;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 64;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 65;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 66;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 67;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 68;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 69;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 70;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 71;4; -0.000000,-0.000000, 0.994743, 0.102403;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_nogi1} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000, 1.173850, 0.000000;;, + 1;3; 0.000000, 1.173850, 0.000000;;, + 2;3; 0.000000, 1.173850, 0.000000;;, + 3;3; 0.000000, 1.173850, 0.000000;;, + 4;3; 0.000000, 1.173850, 0.000000;;, + 5;3; 0.000000, 1.173850, 0.000000;;, + 6;3; 0.000000, 1.173850, 0.000000;;, + 7;3; 0.000000, 1.173850, 0.000000;;, + 8;3; 0.000000, 1.173850, 0.000000;;, + 9;3; 0.000000, 1.173850, 0.000000;;, + 10;3; 0.000000, 1.173850, 0.000000;;, + 11;3; 0.000000, 1.173850, 0.000000;;, + 12;3; 0.000000, 1.173850, 0.000000;;, + 13;3; 0.000000, 1.173850, 0.000000;;, + 14;3; 0.000000, 1.173850, 0.000000;;, + 15;3; 0.000000, 1.173850, 0.000000;;, + 16;3; 0.000000, 1.173850, 0.000000;;, + 17;3; 0.000000, 1.173850, 0.000000;;, + 18;3; 0.000000, 1.173850, 0.000000;;, + 19;3; 0.000000, 1.173850, 0.000000;;, + 20;3; 0.000000, 1.173850, 0.000000;;, + 21;3; 0.000000, 1.173850, 0.000000;;, + 22;3; 0.000000, 1.173850, 0.000000;;, + 23;3; 0.000000, 1.173850, 0.000000;;, + 24;3; 0.000000, 1.173850, 0.000000;;, + 25;3; 0.000000, 1.173850, 0.000000;;, + 26;3; 0.000000, 1.173850, 0.000000;;, + 27;3; 0.000000, 1.173850, 0.000000;;, + 28;3; 0.000000, 1.173850, 0.000000;;, + 29;3; 0.000000, 1.173850, 0.000000;;, + 30;3; 0.000000, 1.173850, 0.000000;;, + 31;3; 0.000000, 1.173850, 0.000000;;, + 32;3; 0.000000, 1.173850, 0.000000;;, + 33;3; 0.000000, 1.173850, 0.000000;;, + 34;3; 0.000000, 1.173850, 0.000000;;, + 35;3; 0.000000, 1.173850, 0.000000;;, + 36;3; 0.000000, 1.173850,-0.000001;;, + 37;3; -0.000000, 1.173850,-0.000000;;, + 38;3; -0.000000, 1.173850, 0.000001;;, + 39;3; -0.000000, 1.173849, 0.000000;;, + 40;3; -0.000000, 1.173850,-0.000001;;, + 41;3; 0.000000, 1.173850,-0.000000;;, + 42;3; 0.000000, 1.173850,-0.000003;;, + 43;3; 0.000000, 1.173850,-0.000000;;, + 44;3; 0.000000, 1.173850,-0.000002;;, + 45;3; 0.000000, 1.173850,-0.000001;;, + 46;3; -0.000000, 1.173850,-0.000002;;, + 47;3; 0.000000, 1.173850,-0.000004;;, + 48;3; 0.000000, 1.173850,-0.000004;;, + 49;3; 0.000000, 1.173850,-0.000002;;, + 50;3; 0.000000, 1.173850,-0.000001;;, + 51;3; 0.000000, 1.173850,-0.000002;;, + 52;3; 0.000000, 1.173850,-0.000001;;, + 53;3; -0.000000, 1.173850, 0.000000;;, + 54;3; -0.000000, 1.173850,-0.000000;;, + 55;3; 0.000000, 1.173850,-0.000000;;, + 56;3; -0.000000, 1.173850,-0.000000;;, + 57;3; -0.000000, 1.173850, 0.000000;;, + 58;3; 0.000000, 1.173850, 0.000000;;, + 59;3; 0.000000, 1.173850,-0.000000;;, + 60;3; 0.000000, 1.173850,-0.000000;;, + 61;3; 0.000000, 1.173850, 0.000000;;, + 62;3; 0.000000, 1.173850, 0.000000;;, + 63;3; 0.000000, 1.173850, 0.000000;;, + 64;3; 0.000000, 1.173850, 0.000000;;, + 65;3; 0.000000, 1.173850, 0.000000;;, + 66;3; 0.000000, 1.173850, 0.000000;;, + 67;3; 0.000000, 1.173850, 0.000000;;, + 68;3; 0.000000, 1.173850, 0.000000;;, + 69;3; 0.000000, 1.173850, 0.000000;;, + 70;3; 0.000000, 1.173850, 0.000000;;, + 71;3; 0.000000, 1.173850, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 1;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 2;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 3;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 4;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 5;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 6;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 7;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 8;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 9;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 10;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 11;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 12;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 13;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 14;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 15;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 16;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 17;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 18;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 19;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 20;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 21;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 22;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 23;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 24;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 25;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 26;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 27;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 28;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 29;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 30;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 31;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 32;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 33;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 34;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 35;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 36;4; -0.209329, 0.672734, 0.657092, 0.254205;;, + 37;4; -0.257488, 0.650930, 0.632091, 0.300784;;, + 38;4; -0.319305, 0.622939, 0.599996, 0.360574;;, + 39;4; -0.367454, 0.601138, 0.574998, 0.407143;;, + 40;4; -0.384553, 0.593396, 0.566121, 0.423682;;, + 41;4; -0.383592, 0.593831, 0.566621, 0.422752;;, + 42;4; -0.380686, 0.595147, 0.568129, 0.419942;;, + 43;4; -0.375825, 0.597347, 0.570652, 0.415240;;, + 44;4; -0.369035, 0.600421, 0.574177, 0.408673;;, + 45;4; -0.360387, 0.604336, 0.578666, 0.400309;;, + 46;4; -0.350008, 0.609036, 0.584055, 0.390269;;, + 47;4; -0.338084, 0.614434, 0.590245, 0.378737;;, + 48;4; -0.324869, 0.620417, 0.597105, 0.365956;;, + 49;4; -0.310679, 0.626842, 0.604472, 0.352231;;, + 50;4; -0.295880, 0.633543, 0.612155, 0.337917;;, + 51;4; -0.280875, 0.640337, 0.619945, 0.323404;;, + 52;4; -0.266077, 0.647038, 0.627628, 0.309092;;, + 53;4; -0.251889, 0.653462, 0.634994, 0.295369;;, + 54;4; -0.238677, 0.659444, 0.641854, 0.282590;;, + 55;4; -0.226756, 0.664842, 0.648043, 0.271061;;, + 56;4; -0.216380, 0.669540, 0.653430, 0.261024;;, + 57;4; -0.207735, 0.673455, 0.657918, 0.252663;;, + 58;4; -0.200948, 0.676528, 0.661442, 0.246099;;, + 59;4; -0.196089, 0.678728, 0.663964, 0.241399;;, + 60;4; -0.193185, 0.680043, 0.665472, 0.238590;;, + 61;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 62;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 63;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 64;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 65;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 66;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 67;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 68;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 69;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 70;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 71;4; -0.192224, 0.680478, 0.665971, 0.237660;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_nogi2} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000, 1.173850, 0.000000;;, + 1;3; 0.000000, 1.173850, 0.000000;;, + 2;3; 0.000000, 1.173850, 0.000000;;, + 3;3; 0.000000, 1.173850, 0.000000;;, + 4;3; 0.000000, 1.173850, 0.000000;;, + 5;3; 0.000000, 1.173850, 0.000000;;, + 6;3; 0.000000, 1.173850, 0.000000;;, + 7;3; 0.000000, 1.173850, 0.000000;;, + 8;3; 0.000000, 1.173850, 0.000000;;, + 9;3; 0.000000, 1.173850, 0.000000;;, + 10;3; 0.000000, 1.173850, 0.000000;;, + 11;3; 0.000000, 1.173850, 0.000000;;, + 12;3; 0.000000, 1.173850, 0.000000;;, + 13;3; 0.000000, 1.173850, 0.000000;;, + 14;3; 0.000000, 1.173850, 0.000000;;, + 15;3; 0.000000, 1.173850, 0.000000;;, + 16;3; 0.000000, 1.173850, 0.000000;;, + 17;3; 0.000000, 1.173850, 0.000000;;, + 18;3; 0.000000, 1.173850, 0.000000;;, + 19;3; 0.000000, 1.173850, 0.000000;;, + 20;3; 0.000000, 1.173850, 0.000000;;, + 21;3; 0.000000, 1.173850, 0.000000;;, + 22;3; 0.000000, 1.173850, 0.000000;;, + 23;3; 0.000000, 1.173850, 0.000000;;, + 24;3; 0.000000, 1.173850, 0.000000;;, + 25;3; 0.000000, 1.173850, 0.000000;;, + 26;3; 0.000000, 1.173850, 0.000000;;, + 27;3; 0.000000, 1.173850, 0.000000;;, + 28;3; 0.000000, 1.173850, 0.000000;;, + 29;3; 0.000000, 1.173850, 0.000000;;, + 30;3; 0.000000, 1.173850, 0.000000;;, + 31;3; 0.000000, 1.173850, 0.000000;;, + 32;3; 0.000000, 1.173850, 0.000000;;, + 33;3; 0.000000, 1.173850, 0.000000;;, + 34;3; 0.000000, 1.173850, 0.000000;;, + 35;3; 0.000000, 1.173850, 0.000000;;, + 36;3; 0.000000, 1.173850,-0.000001;;, + 37;3; -0.000000, 1.173850,-0.000000;;, + 38;3; -0.000000, 1.173850, 0.000001;;, + 39;3; -0.000000, 1.173849, 0.000000;;, + 40;3; -0.000000, 1.173850,-0.000001;;, + 41;3; 0.000000, 1.173850,-0.000000;;, + 42;3; 0.000000, 1.173850,-0.000003;;, + 43;3; 0.000000, 1.173850,-0.000000;;, + 44;3; 0.000000, 1.173850,-0.000002;;, + 45;3; 0.000000, 1.173850,-0.000001;;, + 46;3; -0.000000, 1.173850,-0.000002;;, + 47;3; 0.000000, 1.173850,-0.000004;;, + 48;3; 0.000000, 1.173850,-0.000004;;, + 49;3; 0.000000, 1.173850,-0.000002;;, + 50;3; 0.000000, 1.173850,-0.000001;;, + 51;3; 0.000000, 1.173850,-0.000002;;, + 52;3; 0.000000, 1.173850,-0.000001;;, + 53;3; -0.000000, 1.173850, 0.000000;;, + 54;3; -0.000000, 1.173850,-0.000000;;, + 55;3; 0.000000, 1.173850,-0.000000;;, + 56;3; -0.000000, 1.173850,-0.000000;;, + 57;3; -0.000000, 1.173850, 0.000000;;, + 58;3; 0.000000, 1.173850, 0.000000;;, + 59;3; 0.000000, 1.173850,-0.000000;;, + 60;3; 0.000000, 1.173850,-0.000000;;, + 61;3; 0.000000, 1.173850, 0.000000;;, + 62;3; 0.000000, 1.173850, 0.000000;;, + 63;3; 0.000000, 1.173850, 0.000000;;, + 64;3; 0.000000, 1.173850, 0.000000;;, + 65;3; 0.000000, 1.173850, 0.000000;;, + 66;3; 0.000000, 1.173850, 0.000000;;, + 67;3; 0.000000, 1.173850, 0.000000;;, + 68;3; 0.000000, 1.173850, 0.000000;;, + 69;3; 0.000000, 1.173850, 0.000000;;, + 70;3; 0.000000, 1.173850, 0.000000;;, + 71;3; 0.000000, 1.173850, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 1;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 2;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 3;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 4;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 5;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 6;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 7;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 8;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 9;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 10;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 11;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 12;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 13;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 14;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 15;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 16;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 17;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 18;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 19;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 20;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 21;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 22;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 23;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 24;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 25;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 26;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 27;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 28;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 29;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 30;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 31;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 32;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 33;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 34;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 35;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 36;4; -0.199513, 0.674883,-0.659898,-0.244556;;, + 37;4; -0.254533, 0.649715,-0.631078,-0.297754;;, + 38;4; -0.325150, 0.617407,-0.594083,-0.366032;;, + 39;4; -0.380155, 0.592243,-0.565268,-0.419216;;, + 40;4; -0.399692, 0.583307,-0.555035,-0.438106;;, + 41;4; -0.398593, 0.583809,-0.555610,-0.437043;;, + 42;4; -0.395273, 0.585328,-0.557349,-0.433833;;, + 43;4; -0.389719, 0.587868,-0.560258,-0.428463;;, + 44;4; -0.381961, 0.591416,-0.564321,-0.420962;;, + 45;4; -0.372081, 0.595935,-0.569496,-0.411409;;, + 46;4; -0.360222, 0.601359,-0.575707,-0.399943;;, + 47;4; -0.346599, 0.607591,-0.582843,-0.386771;;, + 48;4; -0.331502, 0.614497,-0.590751,-0.372174;;, + 49;4; -0.315291, 0.621913,-0.599243,-0.356499;;, + 50;4; -0.298384, 0.629647,-0.608100,-0.340153;;, + 51;4; -0.281242, 0.637489,-0.617080,-0.323578;;, + 52;4; -0.264337, 0.645223,-0.625935,-0.307233;;, + 53;4; -0.248129, 0.652639,-0.634427,-0.291562;;, + 54;4; -0.233036, 0.659544,-0.642333,-0.276968;;, + 55;4; -0.219418, 0.665774,-0.649467,-0.263802;;, + 56;4; -0.207564, 0.671197,-0.655677,-0.252340;;, + 57;4; -0.197688, 0.675715,-0.660851,-0.242791;;, + 58;4; -0.189935, 0.679262,-0.664912,-0.235294;;, + 59;4; -0.184384, 0.681801,-0.667820,-0.229928;;, + 60;4; -0.181066, 0.683319,-0.669558,-0.226719;;, + 61;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 62;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 63;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 64;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 65;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 66;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 67;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 68;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 69;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 70;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 71;4; -0.179968, 0.683821,-0.670133,-0.225657;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 1.000000, 0.999999, 1.000000;;, + 1;3; 1.000000, 0.999999, 1.000000;;, + 2;3; 1.000000, 0.999999, 1.000000;;, + 3;3; 1.000000, 0.999999, 1.000000;;, + 4;3; 1.000000, 0.999999, 1.000000;;, + 5;3; 1.000000, 0.999999, 1.000000;;, + 6;3; 1.000000, 0.999999, 1.000000;;, + 7;3; 1.000000, 0.999999, 1.000000;;, + 8;3; 1.000000, 0.999999, 1.000000;;, + 9;3; 1.000000, 0.999999, 1.000000;;, + 10;3; 1.000000, 0.999999, 1.000000;;, + 11;3; 1.000000, 0.999999, 1.000000;;, + 12;3; 1.000000, 0.999999, 1.000000;;, + 13;3; 1.000000, 0.999999, 1.000000;;, + 14;3; 1.000000, 0.999999, 1.000000;;, + 15;3; 1.000000, 0.999999, 1.000000;;, + 16;3; 1.000000, 0.999999, 1.000000;;, + 17;3; 1.000000, 0.999999, 1.000000;;, + 18;3; 1.000000, 0.999999, 1.000000;;, + 19;3; 1.000000, 0.999999, 1.000000;;, + 20;3; 1.000000, 0.999999, 1.000000;;, + 21;3; 1.000000, 0.999999, 1.000000;;, + 22;3; 1.000000, 0.999999, 1.000000;;, + 23;3; 1.000000, 0.999999, 1.000000;;, + 24;3; 1.000000, 0.999999, 1.000000;;, + 25;3; 1.000000, 0.999999, 1.000000;;, + 26;3; 1.000000, 0.999999, 1.000000;;, + 27;3; 1.000000, 0.999999, 1.000000;;, + 28;3; 1.000000, 0.999999, 1.000000;;, + 29;3; 1.000000, 0.999999, 1.000000;;, + 30;3; 1.000000, 0.999999, 1.000000;;, + 31;3; 1.000000, 0.999999, 1.000000;;, + 32;3; 1.000000, 0.999999, 1.000000;;, + 33;3; 1.000000, 0.999999, 1.000000;;, + 34;3; 1.000000, 0.999999, 1.000000;;, + 35;3; 1.000000, 0.999999, 1.000000;;, + 36;3; 1.000000, 0.999999, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 0.999999, 1.000000;;, + 62;3; 1.000000, 0.999999, 1.000000;;, + 63;3; 1.000000, 0.999999, 1.000000;;, + 64;3; 1.000000, 0.999999, 1.000000;;, + 65;3; 1.000000, 0.999999, 1.000000;;, + 66;3; 1.000000, 0.999999, 1.000000;;, + 67;3; 1.000000, 0.999999, 1.000000;;, + 68;3; 1.000000, 0.999999, 1.000000;;, + 69;3; 1.000000, 0.999999, 1.000000;;, + 70;3; 1.000000, 0.999999, 1.000000;;, + 71;3; 1.000000, 0.999999, 1.000000;;; + } + } + Animation { + {Armature_golova} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000,-0.000000, 0.000000;;, + 1;3; 0.000000,-0.000000, 0.000000;;, + 2;3; 0.000000,-0.000000, 0.000000;;, + 3;3; 0.000000,-0.000000, 0.000000;;, + 4;3; 0.000000,-0.000000, 0.000000;;, + 5;3; 0.000000,-0.000000, 0.000000;;, + 6;3; 0.000000,-0.000000, 0.000000;;, + 7;3; 0.000000,-0.000000, 0.000000;;, + 8;3; 0.000000,-0.000000, 0.000000;;, + 9;3; 0.000000,-0.000000, 0.000000;;, + 10;3; 0.000000,-0.000000, 0.000000;;, + 11;3; 0.000000,-0.000000, 0.000000;;, + 12;3; 0.000000,-0.000000, 0.000000;;, + 13;3; 0.000000,-0.000000, 0.000000;;, + 14;3; 0.000000,-0.000000, 0.000000;;, + 15;3; 0.000000,-0.000000, 0.000000;;, + 16;3; 0.000000,-0.000000, 0.000000;;, + 17;3; 0.000000,-0.000000, 0.000000;;, + 18;3; 0.000000,-0.000000, 0.000000;;, + 19;3; 0.000000,-0.000000, 0.000000;;, + 20;3; 0.000000,-0.000000, 0.000000;;, + 21;3; 0.000000,-0.000000, 0.000000;;, + 22;3; 0.000000,-0.000000, 0.000000;;, + 23;3; 0.000000,-0.000000, 0.000000;;, + 24;3; 0.000000,-0.000000, 0.000000;;, + 25;3; 0.000000,-0.000000, 0.000000;;, + 26;3; 0.000000,-0.000000, 0.000000;;, + 27;3; 0.000000,-0.000000, 0.000000;;, + 28;3; 0.000000,-0.000000, 0.000000;;, + 29;3; 0.000000,-0.000000, 0.000000;;, + 30;3; 0.000000,-0.000000, 0.000000;;, + 31;3; 0.000000,-0.000000, 0.000000;;, + 32;3; 0.000000,-0.000000, 0.000000;;, + 33;3; 0.000000,-0.000000, 0.000000;;, + 34;3; 0.000000,-0.000000, 0.000000;;, + 35;3; 0.000000,-0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000,-0.000000;;, + 37;3; -0.000000,-0.000000,-0.000000;;, + 38;3; -0.000000, 0.000000, 0.000001;;, + 39;3; -0.000000,-0.000000, 0.000000;;, + 40;3; -0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000,-0.000000, 0.000001;;, + 42;3; 0.000000, 0.000000,-0.000001;;, + 43;3; 0.000000, 0.000000, 0.000001;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000,-0.000000, 0.000000;;, + 46;3; -0.000000,-0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000,-0.000002;;, + 48;3; 0.000000, 0.000000,-0.000002;;, + 49;3; 0.000000, 0.000000,-0.000001;;, + 50;3; 0.000000,-0.000000, 0.000000;;, + 51;3; 0.000000,-0.000000,-0.000000;;, + 52;3; 0.000000, 0.000000,-0.000001;;, + 53;3; -0.000000, 0.000000,-0.000000;;, + 54;3; -0.000000,-0.000000,-0.000000;;, + 55;3; 0.000000, 0.000000,-0.000001;;, + 56;3; -0.000000, 0.000000,-0.000000;;, + 57;3; -0.000000,-0.000000, 0.000000;;, + 58;3; 0.000000,-0.000000, 0.000000;;, + 59;3; 0.000000,-0.000000,-0.000000;;, + 60;3; 0.000000,-0.000000, 0.000000;;, + 61;3; 0.000000,-0.000000, 0.000000;;, + 62;3; 0.000000,-0.000000, 0.000000;;, + 63;3; 0.000000,-0.000000, 0.000000;;, + 64;3; 0.000000,-0.000000, 0.000000;;, + 65;3; 0.000000,-0.000000, 0.000000;;, + 66;3; 0.000000,-0.000000, 0.000000;;, + 67;3; 0.000000,-0.000000, 0.000000;;, + 68;3; 0.000000,-0.000000, 0.000000;;, + 69;3; 0.000000,-0.000000, 0.000000;;, + 70;3; 0.000000,-0.000000, 0.000000;;, + 71;3; 0.000000,-0.000000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 1;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 2;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 3;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 4;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 5;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 6;4; -0.156764, 0.986995,-0.000000, 0.000000;;, + 7;4; -0.211132, 0.976666,-0.000000, 0.000000;;, + 8;4; -0.257363, 0.966315,-0.000000, 0.000000;;, + 9;4; -0.290954, 0.955942,-0.012361,-0.002399;;, + 10;4; -0.323006, 0.943617,-0.044691,-0.008676;;, + 11;4; -0.344393, 0.934121,-0.077021,-0.014953;;, + 12;4; -0.351061, 0.930891,-0.089381,-0.017353;;, + 13;4; -0.336011, 0.934372,-0.087769,-0.017559;;, + 14;4; -0.292954, 0.944458,-0.082761,-0.018124;;, + 15;4; -0.235871, 0.958164,-0.075080,-0.018807;;, + 16;4; -0.187914, 0.970308,-0.066661,-0.019256;;, + 17;4; -0.164533, 0.977290,-0.059244,-0.019266;;, + 18;4; -0.155673, 0.981054,-0.051727,-0.018413;;, + 19;4; -0.148265, 0.984288,-0.042554,-0.016314;;, + 20;4; -0.142573, 0.986870,-0.032274,-0.013151;;, + 21;4; -0.138695, 0.988731,-0.021882,-0.009371;;, + 22;4; -0.136455, 0.989904,-0.012631,-0.005629;;, + 23;4; -0.135426, 0.990525,-0.005602,-0.002576;;, + 24;4; -0.135106, 0.990781,-0.001368,-0.000645;;, + 25;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 26;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 27;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 28;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 29;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 30;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 31;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 32;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 33;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 34;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 35;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 36;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 37;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 38;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 39;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 40;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 41;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 42;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 43;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 44;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 45;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 46;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 47;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 48;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 49;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 50;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 51;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 52;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 53;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 54;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 55;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 56;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 57;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 58;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 59;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 60;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 61;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 62;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 63;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 64;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 65;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 66;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 67;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 68;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 69;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 70;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 71;4; -0.135069, 0.990836,-0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_us1} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000, 0.535820, 1.341474;;, + 1;3; 0.000000, 0.535820, 1.341474;;, + 2;3; 0.000000, 0.535820, 1.341474;;, + 3;3; 0.000000, 0.535820, 1.341474;;, + 4;3; 0.000000, 0.535820, 1.341474;;, + 5;3; 0.000000, 0.535820, 1.341474;;, + 6;3; 0.000000, 0.535820, 1.341474;;, + 7;3; 0.000000, 0.535820, 1.341474;;, + 8;3; 0.000000, 0.535820, 1.341474;;, + 9;3; 0.000000, 0.535820, 1.341474;;, + 10;3; 0.000000, 0.535820, 1.341474;;, + 11;3; -0.000000, 0.535820, 1.341474;;, + 12;3; -0.000000, 0.535820, 1.341474;;, + 13;3; 0.000000, 0.535820, 1.341474;;, + 14;3; 0.000000, 0.535820, 1.341474;;, + 15;3; 0.000000, 0.535820, 1.341474;;, + 16;3; -0.000000, 0.535820, 1.341474;;, + 17;3; -0.000000, 0.535820, 1.341474;;, + 18;3; -0.000000, 0.535820, 1.341474;;, + 19;3; -0.000000, 0.535820, 1.341474;;, + 20;3; 0.000000, 0.535820, 1.341474;;, + 21;3; 0.000000, 0.535820, 1.341474;;, + 22;3; -0.000000, 0.535820, 1.341474;;, + 23;3; 0.000000, 0.535820, 1.341474;;, + 24;3; 0.000000, 0.535820, 1.341474;;, + 25;3; 0.000000, 0.535820, 1.341474;;, + 26;3; 0.000000, 0.535820, 1.341474;;, + 27;3; 0.000000, 0.535820, 1.341474;;, + 28;3; 0.000000, 0.535820, 1.341474;;, + 29;3; 0.000000, 0.535820, 1.341474;;, + 30;3; 0.000000, 0.535820, 1.341474;;, + 31;3; 0.000000, 0.535820, 1.341474;;, + 32;3; 0.000000, 0.535820, 1.341474;;, + 33;3; 0.000000, 0.535820, 1.341474;;, + 34;3; 0.000000, 0.535820, 1.341474;;, + 35;3; 0.000000, 0.535820, 1.341474;;, + 36;3; -0.000000, 0.535820, 1.341474;;, + 37;3; -0.000000, 0.535820, 1.341473;;, + 38;3; -0.000000, 0.535820, 1.341475;;, + 39;3; -0.000000, 0.535820, 1.341475;;, + 40;3; -0.000000, 0.535821, 1.341473;;, + 41;3; -0.000000, 0.535821, 1.341474;;, + 42;3; -0.000000, 0.535820, 1.341473;;, + 43;3; -0.000000, 0.535821, 1.341472;;, + 44;3; -0.000000, 0.535820, 1.341473;;, + 45;3; -0.000000, 0.535821, 1.341473;;, + 46;3; -0.000000, 0.535821, 1.341474;;, + 47;3; -0.000000, 0.535820, 1.341472;;, + 48;3; -0.000000, 0.535820, 1.341472;;, + 49;3; -0.000000, 0.535820, 1.341472;;, + 50;3; -0.000000, 0.535820, 1.341472;;, + 51;3; -0.000000, 0.535821, 1.341473;;, + 52;3; -0.000000, 0.535820, 1.341474;;, + 53;3; -0.000000, 0.535820, 1.341474;;, + 54;3; -0.000000, 0.535820, 1.341475;;, + 55;3; -0.000000, 0.535820, 1.341474;;, + 56;3; -0.000000, 0.535820, 1.341475;;, + 57;3; -0.000000, 0.535820, 1.341474;;, + 58;3; -0.000000, 0.535820, 1.341474;;, + 59;3; -0.000000, 0.535820, 1.341474;;, + 60;3; 0.000000, 0.535820, 1.341474;;, + 61;3; 0.000000, 0.535820, 1.341474;;, + 62;3; 0.000000, 0.535820, 1.341474;;, + 63;3; 0.000000, 0.535820, 1.341474;;, + 64;3; 0.000000, 0.535820, 1.341474;;, + 65;3; 0.000000, 0.535820, 1.341474;;, + 66;3; 0.000000, 0.535820, 1.341474;;, + 67;3; 0.000000, 0.535820, 1.341474;;, + 68;3; 0.000000, 0.535820, 1.341474;;, + 69;3; 0.000000, 0.535820, 1.341474;;, + 70;3; 0.000000, 0.535820, 1.341474;;, + 71;3; 0.000000, 0.535820, 1.341474;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 1;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 2;4; -0.004254, 0.032017, 0.888040, 0.452075;;, + 3;4; -0.015397, 0.115672, 0.879684, 0.447816;;, + 4;4; -0.026547, 0.199275, 0.870869, 0.443327;;, + 5;4; -0.030808, 0.231245, 0.866580, 0.441154;;, + 6;4; -0.030330, 0.229140, 0.864693, 0.441564;;, + 7;4; -0.028882, 0.222777, 0.861790, 0.444197;;, + 8;4; -0.026462, 0.212139, 0.857875, 0.449068;;, + 9;4; -0.023085, 0.197295, 0.852973, 0.456142;;, + 10;4; -0.018793, 0.178430, 0.847136, 0.465330;;, + 11;4; -0.013659, 0.155865, 0.840454, 0.476468;;, + 12;4; -0.007789, 0.130071, 0.833050, 0.489318;;, + 13;4; -0.001329, 0.101679, 0.825089, 0.503555;;, + 14;4; 0.005548, 0.071460, 0.816766, 0.518785;;, + 15;4; 0.012639, 0.040298, 0.808305, 0.534551;;, + 16;4; 0.019731, 0.009137, 0.799940, 0.550365;;, + 17;4; 0.026608,-0.021080, 0.791905, 0.565738;;, + 18;4; 0.033069,-0.049470, 0.784413, 0.580212;;, + 19;4; 0.038939,-0.075261, 0.777652, 0.593383;;, + 20;4; 0.044074,-0.097823, 0.771769, 0.604922;;, + 21;4; 0.048367,-0.116685, 0.766874, 0.614580;;, + 22;4; 0.051745,-0.131527, 0.763037, 0.622187;;, + 23;4; 0.054165,-0.142163, 0.760298, 0.627643;;, + 24;4; 0.055613,-0.148524, 0.758664, 0.630909;;, + 25;4; 0.056092,-0.150629, 0.758125, 0.631991;;, + 26;4; 0.051106,-0.137240, 0.769952, 0.616138;;, + 27;4; 0.037063,-0.099527, 0.803261, 0.571495;;, + 28;4; 0.019031,-0.051105, 0.846028, 0.514176;;, + 29;4; 0.004986,-0.013390, 0.879340, 0.469527;;, + 30;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 31;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 32;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 33;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 34;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 35;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 36;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 37;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 38;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 39;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 40;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 41;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 42;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 43;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 44;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 45;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 46;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 47;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 48;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 49;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 50;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 51;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 52;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 53;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 54;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 55;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 56;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 57;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 58;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 59;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 60;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 61;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 62;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 63;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 64;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 65;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 66;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 67;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 68;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 69;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 70;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 71;4; -0.000000, 0.000000, 0.891169, 0.453672;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_006} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000,-0.000000, 0.000000;;, + 1;3; 0.000000,-0.000000, 0.000000;;, + 2;3; 0.000000,-0.000000, 0.000000;;, + 3;3; 0.000000,-0.000000, 0.000000;;, + 4;3; 0.000000,-0.000000, 0.000000;;, + 5;3; 0.000000,-0.000000, 0.000000;;, + 6;3; 0.000000,-0.000000, 0.000000;;, + 7;3; 0.000000,-0.000000, 0.000000;;, + 8;3; 0.000000,-0.000000, 0.000000;;, + 9;3; 0.000000,-0.000000, 0.000000;;, + 10;3; 0.000000,-0.000000, 0.000000;;, + 11;3; 0.000000,-0.000000, 0.000000;;, + 12;3; 0.000000,-0.000000, 0.000000;;, + 13;3; 0.000000,-0.000000, 0.000000;;, + 14;3; 0.000000,-0.000000, 0.000000;;, + 15;3; 0.000000,-0.000000, 0.000000;;, + 16;3; 0.000000,-0.000000, 0.000000;;, + 17;3; 0.000000,-0.000000, 0.000000;;, + 18;3; 0.000000,-0.000000, 0.000000;;, + 19;3; 0.000000,-0.000000, 0.000000;;, + 20;3; 0.000000,-0.000000, 0.000000;;, + 21;3; 0.000000,-0.000000, 0.000000;;, + 22;3; 0.000000,-0.000000, 0.000000;;, + 23;3; 0.000000,-0.000000, 0.000000;;, + 24;3; 0.000000,-0.000000, 0.000000;;, + 25;3; 0.000000,-0.000000, 0.000000;;, + 26;3; 0.000000,-0.000000, 0.000000;;, + 27;3; 0.000000,-0.000000, 0.000000;;, + 28;3; 0.000000,-0.000000, 0.000000;;, + 29;3; 0.000000,-0.000000, 0.000000;;, + 30;3; 0.000000,-0.000000, 0.000000;;, + 31;3; 0.000000,-0.000000, 0.000000;;, + 32;3; 0.000000,-0.000000, 0.000000;;, + 33;3; 0.000000,-0.000000, 0.000000;;, + 34;3; 0.000000,-0.000000, 0.000000;;, + 35;3; 0.000000,-0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000,-0.000000;;, + 37;3; -0.000000,-0.000000,-0.000000;;, + 38;3; -0.000000, 0.000000, 0.000001;;, + 39;3; -0.000000,-0.000000, 0.000000;;, + 40;3; -0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000,-0.000000, 0.000001;;, + 42;3; 0.000000, 0.000000,-0.000001;;, + 43;3; 0.000000, 0.000000, 0.000001;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000,-0.000000, 0.000000;;, + 46;3; -0.000000,-0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000,-0.000002;;, + 48;3; 0.000000, 0.000000,-0.000002;;, + 49;3; 0.000000, 0.000000,-0.000001;;, + 50;3; 0.000000,-0.000000, 0.000000;;, + 51;3; 0.000000,-0.000000,-0.000000;;, + 52;3; 0.000000, 0.000000,-0.000001;;, + 53;3; -0.000000, 0.000000,-0.000000;;, + 54;3; -0.000000,-0.000000,-0.000000;;, + 55;3; 0.000000, 0.000000,-0.000001;;, + 56;3; -0.000000, 0.000000,-0.000000;;, + 57;3; -0.000000,-0.000000, 0.000000;;, + 58;3; 0.000000,-0.000000, 0.000000;;, + 59;3; 0.000000,-0.000000,-0.000000;;, + 60;3; 0.000000,-0.000000, 0.000000;;, + 61;3; 0.000000,-0.000000, 0.000000;;, + 62;3; 0.000000,-0.000000, 0.000000;;, + 63;3; 0.000000,-0.000000, 0.000000;;, + 64;3; 0.000000,-0.000000, 0.000000;;, + 65;3; 0.000000,-0.000000, 0.000000;;, + 66;3; 0.000000,-0.000000, 0.000000;;, + 67;3; 0.000000,-0.000000, 0.000000;;, + 68;3; 0.000000,-0.000000, 0.000000;;, + 69;3; 0.000000,-0.000000, 0.000000;;, + 70;3; 0.000000,-0.000000, 0.000000;;, + 71;3; 0.000000,-0.000000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 1;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 2;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 3;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 4;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 5;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 6;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 7;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 8;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 9;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 10;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 11;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 12;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 13;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 14;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 15;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 16;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 17;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 18;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 19;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 20;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 21;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 22;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 23;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 24;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 25;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 26;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 27;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 28;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 29;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 30;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 31;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 32;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 33;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 34;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 35;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 36;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 37;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 38;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 39;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 40;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 41;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 42;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 43;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 44;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 45;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 46;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 47;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 48;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 49;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 50;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 51;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 52;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 53;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 54;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 55;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 56;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 57;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 58;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 59;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 60;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 61;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 62;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 63;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 64;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 65;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 66;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 67;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 68;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 69;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 70;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 71;4; -0.000000, 0.000000, 0.874792,-0.484499;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_007} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000, 1.619178, 0.000000;;, + 1;3; 0.000000, 1.619178, 0.000000;;, + 2;3; 0.000000, 1.619178, 0.000000;;, + 3;3; 0.000000, 1.619178, 0.000000;;, + 4;3; 0.000000, 1.619178, 0.000000;;, + 5;3; 0.000000, 1.619178, 0.000000;;, + 6;3; 0.000000, 1.619178, 0.000000;;, + 7;3; 0.000000, 1.619178, 0.000000;;, + 8;3; 0.000000, 1.619178, 0.000000;;, + 9;3; 0.000000, 1.619178, 0.000000;;, + 10;3; 0.000000, 1.619178, 0.000000;;, + 11;3; 0.000000, 1.619178, 0.000000;;, + 12;3; 0.000000, 1.619178, 0.000000;;, + 13;3; 0.000000, 1.619178, 0.000000;;, + 14;3; 0.000000, 1.619178, 0.000000;;, + 15;3; 0.000000, 1.619178, 0.000000;;, + 16;3; 0.000000, 1.619178, 0.000000;;, + 17;3; 0.000000, 1.619178, 0.000000;;, + 18;3; 0.000000, 1.619178, 0.000000;;, + 19;3; 0.000000, 1.619178, 0.000000;;, + 20;3; 0.000000, 1.619178, 0.000000;;, + 21;3; 0.000000, 1.619178, 0.000000;;, + 22;3; 0.000000, 1.619178, 0.000000;;, + 23;3; 0.000000, 1.619178, 0.000000;;, + 24;3; 0.000000, 1.619178, 0.000000;;, + 25;3; 0.000000, 1.619178, 0.000000;;, + 26;3; 0.000000, 1.619178, 0.000000;;, + 27;3; 0.000000, 1.619178, 0.000000;;, + 28;3; 0.000000, 1.619178, 0.000000;;, + 29;3; 0.000000, 1.619178, 0.000000;;, + 30;3; 0.000000, 1.619178, 0.000000;;, + 31;3; 0.000000, 1.619178, 0.000000;;, + 32;3; 0.000000, 1.619178, 0.000000;;, + 33;3; 0.000000, 1.619178, 0.000000;;, + 34;3; 0.000000, 1.619178, 0.000000;;, + 35;3; 0.000000, 1.619178, 0.000000;;, + 36;3; 0.000000, 1.619177,-0.000000;;, + 37;3; 0.000000, 1.619178,-0.000000;;, + 38;3; 0.000000, 1.619178, 0.000001;;, + 39;3; 0.000000, 1.619178, 0.000001;;, + 40;3; 0.000000, 1.619179, 0.000001;;, + 41;3; 0.000000, 1.619177,-0.000001;;, + 42;3; 0.000000, 1.619176,-0.000001;;, + 43;3; 0.000000, 1.619178, 0.000000;;, + 44;3; 0.000000, 1.619178,-0.000001;;, + 45;3; -0.000000, 1.619177, 0.000000;;, + 46;3; 0.000000, 1.619177, 0.000001;;, + 47;3; 0.000000, 1.619178, 0.000001;;, + 48;3; 0.000000, 1.619177, 0.000000;;, + 49;3; 0.000000, 1.619177,-0.000000;;, + 50;3; -0.000000, 1.619178, 0.000001;;, + 51;3; 0.000000, 1.619178,-0.000000;;, + 52;3; 0.000000, 1.619176,-0.000000;;, + 53;3; 0.000000, 1.619177, 0.000001;;, + 54;3; 0.000000, 1.619178, 0.000000;;, + 55;3; 0.000000, 1.619178, 0.000001;;, + 56;3; 0.000000, 1.619179, 0.000000;;, + 57;3; 0.000000, 1.619178,-0.000000;;, + 58;3; 0.000000, 1.619178,-0.000000;;, + 59;3; 0.000000, 1.619178, 0.000000;;, + 60;3; 0.000000, 1.619178, 0.000000;;, + 61;3; 0.000000, 1.619178, 0.000000;;, + 62;3; 0.000000, 1.619178, 0.000000;;, + 63;3; 0.000000, 1.619178, 0.000000;;, + 64;3; 0.000000, 1.619178, 0.000000;;, + 65;3; 0.000000, 1.619178, 0.000000;;, + 66;3; 0.000000, 1.619178, 0.000000;;, + 67;3; 0.000000, 1.619178, 0.000000;;, + 68;3; 0.000000, 1.619178, 0.000000;;, + 69;3; 0.000000, 1.619178, 0.000000;;, + 70;3; 0.000000, 1.619178, 0.000000;;, + 71;3; 0.000000, 1.619178, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 1;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 2;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 3;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 4;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 5;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 6;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 7;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 8;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 9;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 10;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 11;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 12;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 13;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 14;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 15;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 16;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 17;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 18;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 19;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 20;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 21;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 22;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 23;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 24;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 25;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 26;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 27;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 28;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 29;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 30;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 31;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 32;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 33;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 34;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 35;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 36;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 37;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 38;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 39;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 40;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 41;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 42;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 43;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 44;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 45;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 46;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 47;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 48;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 49;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 50;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 51;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 52;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 53;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 54;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 55;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 56;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 57;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 58;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 59;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 60;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 61;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 62;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 63;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 64;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 65;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 66;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 67;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 68;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 69;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 70;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 71;4; -0.606665,-0.363260, 0.363260, 0.606665;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_krilo1} + AnimationKey { //Position + 2; + 72; + 0;3; -0.000000, 0.328829,-0.000000;;, + 1;3; -0.000000, 0.328829,-0.000000;;, + 2;3; -0.000000, 0.328829,-0.000000;;, + 3;3; -0.000000, 0.328829,-0.000000;;, + 4;3; -0.000000, 0.328829,-0.000000;;, + 5;3; -0.000000, 0.328829,-0.000000;;, + 6;3; -0.000000, 0.328829,-0.000000;;, + 7;3; -0.000000, 0.328829,-0.000000;;, + 8;3; -0.000000, 0.328829,-0.000000;;, + 9;3; -0.000000, 0.328829,-0.000000;;, + 10;3; -0.000000, 0.328829,-0.000000;;, + 11;3; -0.000000, 0.328829,-0.000000;;, + 12;3; -0.000000, 0.328829,-0.000000;;, + 13;3; -0.000000, 0.328829,-0.000000;;, + 14;3; -0.000000, 0.328829,-0.000000;;, + 15;3; -0.000000, 0.328829,-0.000000;;, + 16;3; -0.000000, 0.328829,-0.000000;;, + 17;3; -0.000000, 0.328829,-0.000000;;, + 18;3; -0.000000, 0.328829,-0.000000;;, + 19;3; -0.000000, 0.328829,-0.000000;;, + 20;3; -0.000000, 0.328829,-0.000000;;, + 21;3; -0.000000, 0.328829,-0.000000;;, + 22;3; -0.000000, 0.328829,-0.000000;;, + 23;3; -0.000000, 0.328829,-0.000000;;, + 24;3; -0.000000, 0.328829,-0.000000;;, + 25;3; -0.000000, 0.328829,-0.000000;;, + 26;3; -0.000000, 0.328829,-0.000000;;, + 27;3; -0.000000, 0.328829,-0.000000;;, + 28;3; -0.000000, 0.328829,-0.000000;;, + 29;3; -0.000000, 0.328829,-0.000000;;, + 30;3; -0.000000, 0.328829,-0.000000;;, + 31;3; -0.000000, 0.328829,-0.000000;;, + 32;3; -0.000000, 0.328829,-0.000000;;, + 33;3; -0.000000, 0.328829,-0.000000;;, + 34;3; -0.000000, 0.328829,-0.000000;;, + 35;3; -0.000000, 0.328829,-0.000000;;, + 36;3; 0.000000, 0.328829, 0.000000;;, + 37;3; 0.000000, 0.328829, 0.000000;;, + 38;3; 0.000000, 0.328829, 0.000001;;, + 39;3; 0.000000, 0.328829, 0.000001;;, + 40;3; 0.000000, 0.328829, 0.000000;;, + 41;3; 0.000000, 0.328829, 0.000001;;, + 42;3; 0.000000, 0.328829, 0.000001;;, + 43;3; 0.000000, 0.328829, 0.000001;;, + 44;3; 0.000000, 0.328829, 0.000001;;, + 45;3; 0.000000, 0.328829, 0.000001;;, + 46;3; 0.000000, 0.328829, 0.000001;;, + 47;3; 0.000000, 0.328829, 0.000001;;, + 48;3; 0.000000, 0.328829, 0.000001;;, + 49;3; 0.000000, 0.328829, 0.000001;;, + 50;3; 0.000000, 0.328829, 0.000001;;, + 51;3; 0.000000, 0.328829, 0.000001;;, + 52;3; 0.000000, 0.328829,-0.000003;;, + 53;3; 0.000000, 0.328829,-0.000000;;, + 54;3; 0.000000, 0.328829, 0.000001;;, + 55;3; 0.000000, 0.328829, 0.000001;;, + 56;3; 0.000000, 0.328829, 0.000000;;, + 57;3; -0.000000, 0.328829, 0.000000;;, + 58;3; 0.000000, 0.328829, 0.000000;;, + 59;3; 0.000000, 0.328829, 0.000000;;, + 60;3; -0.000000, 0.328829, 0.000000;;, + 61;3; -0.000000, 0.328829,-0.000000;;, + 62;3; -0.000000, 0.328829,-0.000000;;, + 63;3; -0.000000, 0.328829,-0.000000;;, + 64;3; -0.000000, 0.328829,-0.000000;;, + 65;3; -0.000000, 0.328829,-0.000000;;, + 66;3; -0.000000, 0.328829,-0.000000;;, + 67;3; -0.000000, 0.328829,-0.000000;;, + 68;3; -0.000000, 0.328829,-0.000000;;, + 69;3; -0.000000, 0.328829,-0.000000;;, + 70;3; -0.000000, 0.328829,-0.000000;;, + 71;3; -0.000000, 0.328829,-0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 1;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 2;4; -0.759791, 0.000000, 0.000000,-0.650020;;, + 3;4; -0.769068, 0.000000, 0.000000,-0.638852;;, + 4;4; -0.778344, 0.000000, 0.000000,-0.627685;;, + 5;4; -0.781891, 0.000000, 0.000000,-0.623416;;, + 6;4; -0.781749, 0.000000, 0.000000,-0.623586;;, + 7;4; -0.781322, 0.000000, 0.000000,-0.624100;;, + 8;4; -0.780608, 0.000000, 0.000000,-0.624960;;, + 9;4; -0.779611, 0.000000, 0.000000,-0.626160;;, + 10;4; -0.778344, 0.000000, 0.000000,-0.627685;;, + 11;4; -0.776829, 0.000000, 0.000000,-0.629509;;, + 12;4; -0.775097, 0.000000, 0.000000,-0.631594;;, + 13;4; -0.773190, 0.000000, 0.000000,-0.633890;;, + 14;4; -0.771160, 0.000000, 0.000000,-0.636333;;, + 15;4; -0.769068, 0.000000, 0.000000,-0.638852;;, + 16;4; -0.766975, 0.000000, 0.000000,-0.641372;;, + 17;4; -0.764945, 0.000000, 0.000000,-0.643815;;, + 18;4; -0.763038, 0.000000, 0.000000,-0.646110;;, + 19;4; -0.761306, 0.000000, 0.000000,-0.648196;;, + 20;4; -0.759791, 0.000000, 0.000000,-0.650020;;, + 21;4; -0.758524, 0.000000, 0.000000,-0.651545;;, + 22;4; -0.757527, 0.000000, 0.000000,-0.652745;;, + 23;4; -0.756813, 0.000000, 0.000000,-0.653605;;, + 24;4; -0.756386, 0.000000, 0.000000,-0.654119;;, + 25;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 26;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 27;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 28;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 29;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 30;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 31;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 32;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 33;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 34;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 35;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 36;4; -0.774609,-0.027614,-0.000881,-0.599671;;, + 37;4; -0.825683,-0.105349,-0.003363,-0.445659;;, + 38;4; -0.889878,-0.205182,-0.006550,-0.246972;;, + 39;4; -0.937492,-0.283030,-0.009028,-0.089985;;, + 40;4; -0.949971,-0.310709,-0.009905,-0.030285;;, + 41;4; -0.943262,-0.151135,-0.004838,-0.027171;;, + 42;4; -0.938209, 0.189674, 0.006037,-0.028546;;, + 43;4; -0.936624, 0.348885, 0.011122,-0.029859;;, + 44;4; -0.939848, 0.189782, 0.006032,-0.029962;;, + 45;4; -0.946747,-0.150903,-0.004849,-0.030182;;, + 46;4; -0.949971,-0.310709,-0.009905,-0.030285;;, + 47;4; -0.949971,-0.310709,-0.009905,-0.030285;;, + 48;4; -0.949971,-0.310709,-0.009905,-0.030285;;, + 49;4; -0.949971,-0.310709,-0.009905,-0.030285;;, + 50;4; -0.946747,-0.150903,-0.004849,-0.030182;;, + 51;4; -0.939848, 0.189782, 0.006032,-0.029962;;, + 52;4; -0.936624, 0.348885, 0.011122,-0.029859;;, + 53;4; -0.938209, 0.189690, 0.006037,-0.028546;;, + 54;4; -0.943263,-0.151101,-0.004839,-0.027171;;, + 55;4; -0.949971,-0.310709,-0.009905,-0.030285;;, + 56;4; -0.943101,-0.291464,-0.009296,-0.073312;;, + 57;4; -0.910087,-0.235530,-0.007519,-0.187106;;, + 58;4; -0.858994,-0.155234,-0.004958,-0.347366;;, + 59;4; -0.806373,-0.075003,-0.002395,-0.506312;;, + 60;4; -0.769161,-0.019189,-0.000612,-0.616487;;, + 61;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 62;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 63;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 64;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 65;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 66;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 67;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 68;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 69;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 70;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 71;4; -0.756244, 0.000000, 0.000000,-0.654289;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_008} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000, 1.619178, 0.000000;;, + 1;3; 0.000000, 1.619178, 0.000000;;, + 2;3; 0.000000, 1.619178, 0.000000;;, + 3;3; 0.000000, 1.619178, 0.000000;;, + 4;3; 0.000000, 1.619178, 0.000000;;, + 5;3; 0.000000, 1.619178, 0.000000;;, + 6;3; 0.000000, 1.619178, 0.000000;;, + 7;3; 0.000000, 1.619178, 0.000000;;, + 8;3; 0.000000, 1.619178, 0.000000;;, + 9;3; 0.000000, 1.619178, 0.000000;;, + 10;3; 0.000000, 1.619178, 0.000000;;, + 11;3; 0.000000, 1.619178, 0.000000;;, + 12;3; 0.000000, 1.619178, 0.000000;;, + 13;3; 0.000000, 1.619178, 0.000000;;, + 14;3; 0.000000, 1.619178, 0.000000;;, + 15;3; 0.000000, 1.619178, 0.000000;;, + 16;3; 0.000000, 1.619178, 0.000000;;, + 17;3; 0.000000, 1.619178, 0.000000;;, + 18;3; 0.000000, 1.619178, 0.000000;;, + 19;3; 0.000000, 1.619178, 0.000000;;, + 20;3; 0.000000, 1.619178, 0.000000;;, + 21;3; 0.000000, 1.619178, 0.000000;;, + 22;3; 0.000000, 1.619178, 0.000000;;, + 23;3; 0.000000, 1.619178, 0.000000;;, + 24;3; 0.000000, 1.619178, 0.000000;;, + 25;3; 0.000000, 1.619178, 0.000000;;, + 26;3; 0.000000, 1.619178, 0.000000;;, + 27;3; 0.000000, 1.619178, 0.000000;;, + 28;3; 0.000000, 1.619178, 0.000000;;, + 29;3; 0.000000, 1.619178, 0.000000;;, + 30;3; 0.000000, 1.619178, 0.000000;;, + 31;3; 0.000000, 1.619178, 0.000000;;, + 32;3; 0.000000, 1.619178, 0.000000;;, + 33;3; 0.000000, 1.619178, 0.000000;;, + 34;3; 0.000000, 1.619178, 0.000000;;, + 35;3; 0.000000, 1.619178, 0.000000;;, + 36;3; 0.000000, 1.619177,-0.000000;;, + 37;3; 0.000000, 1.619178,-0.000000;;, + 38;3; 0.000000, 1.619178, 0.000001;;, + 39;3; 0.000000, 1.619178, 0.000001;;, + 40;3; 0.000000, 1.619179, 0.000001;;, + 41;3; 0.000000, 1.619177,-0.000001;;, + 42;3; 0.000000, 1.619176,-0.000001;;, + 43;3; 0.000000, 1.619178, 0.000000;;, + 44;3; 0.000000, 1.619178,-0.000001;;, + 45;3; -0.000000, 1.619177, 0.000000;;, + 46;3; 0.000000, 1.619177, 0.000001;;, + 47;3; 0.000000, 1.619178, 0.000001;;, + 48;3; 0.000000, 1.619177, 0.000000;;, + 49;3; 0.000000, 1.619177,-0.000000;;, + 50;3; -0.000000, 1.619178, 0.000001;;, + 51;3; 0.000000, 1.619178,-0.000000;;, + 52;3; 0.000000, 1.619176,-0.000000;;, + 53;3; 0.000000, 1.619177, 0.000001;;, + 54;3; 0.000000, 1.619178, 0.000000;;, + 55;3; 0.000000, 1.619178, 0.000001;;, + 56;3; 0.000000, 1.619179, 0.000000;;, + 57;3; 0.000000, 1.619178,-0.000000;;, + 58;3; 0.000000, 1.619178,-0.000000;;, + 59;3; 0.000000, 1.619178, 0.000000;;, + 60;3; 0.000000, 1.619178, 0.000000;;, + 61;3; 0.000000, 1.619178, 0.000000;;, + 62;3; 0.000000, 1.619178, 0.000000;;, + 63;3; 0.000000, 1.619178, 0.000000;;, + 64;3; 0.000000, 1.619178, 0.000000;;, + 65;3; 0.000000, 1.619178, 0.000000;;, + 66;3; 0.000000, 1.619178, 0.000000;;, + 67;3; 0.000000, 1.619178, 0.000000;;, + 68;3; 0.000000, 1.619178, 0.000000;;, + 69;3; 0.000000, 1.619178, 0.000000;;, + 70;3; 0.000000, 1.619178, 0.000000;;, + 71;3; 0.000000, 1.619178, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 1;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 2;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 3;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 4;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 5;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 6;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 7;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 8;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 9;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 10;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 11;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 12;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 13;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 14;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 15;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 16;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 17;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 18;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 19;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 20;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 21;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 22;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 23;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 24;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 25;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 26;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 27;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 28;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 29;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 30;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 31;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 32;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 33;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 34;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 35;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 36;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 37;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 38;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 39;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 40;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 41;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 42;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 43;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 44;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 45;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 46;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 47;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 48;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 49;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 50;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 51;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 52;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 53;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 54;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 55;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 56;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 57;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 58;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 59;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 60;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 61;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 62;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 63;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 64;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 65;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 66;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 67;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 68;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 69;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 70;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 71;4; -0.606665,-0.363260,-0.363260,-0.606665;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_krilo2} + AnimationKey { //Position + 2; + 72; + 0;3; -0.000000, 0.346481,-0.000000;;, + 1;3; -0.000000, 0.346481,-0.000000;;, + 2;3; -0.000000, 0.346481,-0.000000;;, + 3;3; -0.000000, 0.346481,-0.000000;;, + 4;3; -0.000000, 0.346481,-0.000000;;, + 5;3; -0.000000, 0.346481,-0.000000;;, + 6;3; -0.000000, 0.346481,-0.000000;;, + 7;3; -0.000000, 0.346481,-0.000000;;, + 8;3; -0.000000, 0.346481,-0.000000;;, + 9;3; -0.000000, 0.346481,-0.000000;;, + 10;3; -0.000000, 0.346481,-0.000000;;, + 11;3; -0.000000, 0.346481,-0.000000;;, + 12;3; -0.000000, 0.346481,-0.000000;;, + 13;3; -0.000000, 0.346481,-0.000000;;, + 14;3; -0.000000, 0.346481,-0.000000;;, + 15;3; -0.000000, 0.346481,-0.000000;;, + 16;3; -0.000000, 0.346481,-0.000000;;, + 17;3; -0.000000, 0.346481,-0.000000;;, + 18;3; -0.000000, 0.346481,-0.000000;;, + 19;3; -0.000000, 0.346481,-0.000000;;, + 20;3; -0.000000, 0.346481,-0.000000;;, + 21;3; -0.000000, 0.346481,-0.000000;;, + 22;3; -0.000000, 0.346481,-0.000000;;, + 23;3; -0.000000, 0.346481,-0.000000;;, + 24;3; -0.000000, 0.346481,-0.000000;;, + 25;3; -0.000000, 0.346481,-0.000000;;, + 26;3; -0.000000, 0.346481,-0.000000;;, + 27;3; -0.000000, 0.346481,-0.000000;;, + 28;3; -0.000000, 0.346481,-0.000000;;, + 29;3; -0.000000, 0.346481,-0.000000;;, + 30;3; -0.000000, 0.346481,-0.000000;;, + 31;3; -0.000000, 0.346481,-0.000000;;, + 32;3; -0.000000, 0.346481,-0.000000;;, + 33;3; -0.000000, 0.346481,-0.000000;;, + 34;3; -0.000000, 0.346481,-0.000000;;, + 35;3; -0.000000, 0.346481,-0.000000;;, + 36;3; -0.000000, 0.346481, 0.000000;;, + 37;3; -0.000000, 0.346481, 0.000000;;, + 38;3; -0.000000, 0.346481, 0.000001;;, + 39;3; -0.000000, 0.346481, 0.000001;;, + 40;3; -0.000000, 0.346481, 0.000000;;, + 41;3; -0.000000, 0.346481, 0.000001;;, + 42;3; -0.000000, 0.346481, 0.000001;;, + 43;3; -0.000000, 0.346482, 0.000001;;, + 44;3; -0.000000, 0.346481, 0.000001;;, + 45;3; -0.000000, 0.346481, 0.000001;;, + 46;3; -0.000000, 0.346481, 0.000001;;, + 47;3; -0.000000, 0.346481, 0.000001;;, + 48;3; -0.000000, 0.346481, 0.000001;;, + 49;3; -0.000000, 0.346481, 0.000001;;, + 50;3; -0.000000, 0.346481, 0.000001;;, + 51;3; -0.000000, 0.346481, 0.000001;;, + 52;3; 0.000000, 0.346481, 0.000000;;, + 53;3; 0.000000, 0.346481,-0.000001;;, + 54;3; -0.000000, 0.346481, 0.000000;;, + 55;3; 0.000000, 0.346481, 0.000001;;, + 56;3; -0.000000, 0.346481, 0.000000;;, + 57;3; -0.000000, 0.346481, 0.000000;;, + 58;3; -0.000000, 0.346481, 0.000000;;, + 59;3; -0.000000, 0.346481,-0.000000;;, + 60;3; -0.000000, 0.346481,-0.000000;;, + 61;3; -0.000000, 0.346481,-0.000000;;, + 62;3; -0.000000, 0.346481,-0.000000;;, + 63;3; -0.000000, 0.346481,-0.000000;;, + 64;3; -0.000000, 0.346481,-0.000000;;, + 65;3; -0.000000, 0.346481,-0.000000;;, + 66;3; -0.000000, 0.346481,-0.000000;;, + 67;3; -0.000000, 0.346481,-0.000000;;, + 68;3; -0.000000, 0.346481,-0.000000;;, + 69;3; -0.000000, 0.346481,-0.000000;;, + 70;3; -0.000000, 0.346481,-0.000000;;, + 71;3; -0.000000, 0.346481,-0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 1;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 2;4; -0.754673,-0.000000, 0.000000, 0.656051;;, + 3;4; -0.760217,-0.000000, 0.000000, 0.649562;;, + 4;4; -0.765761,-0.000000, 0.000000, 0.643074;;, + 5;4; -0.767881,-0.000000, 0.000000, 0.640593;;, + 6;4; -0.767796,-0.000000, 0.000000, 0.640692;;, + 7;4; -0.767541,-0.000000, 0.000000, 0.640991;;, + 8;4; -0.767114,-0.000000, 0.000000, 0.641490;;, + 9;4; -0.766518,-0.000000, 0.000000, 0.642187;;, + 10;4; -0.765761,-0.000000, 0.000000, 0.643074;;, + 11;4; -0.764856,-0.000000, 0.000000, 0.644133;;, + 12;4; -0.763820,-0.000000, 0.000000, 0.645345;;, + 13;4; -0.762681,-0.000000, 0.000000, 0.646679;;, + 14;4; -0.761468,-0.000000, 0.000000, 0.648098;;, + 15;4; -0.760217,-0.000000, 0.000000, 0.649562;;, + 16;4; -0.758966,-0.000000, 0.000000, 0.651026;;, + 17;4; -0.757753,-0.000000, 0.000000, 0.652445;;, + 18;4; -0.756614,-0.000000, 0.000000, 0.653779;;, + 19;4; -0.755579,-0.000000, 0.000000, 0.654991;;, + 20;4; -0.754673,-0.000000, 0.000000, 0.656051;;, + 21;4; -0.753916,-0.000000, 0.000000, 0.656937;;, + 22;4; -0.753320,-0.000000, 0.000000, 0.657634;;, + 23;4; -0.752893,-0.000000, 0.000000, 0.658134;;, + 24;4; -0.752638,-0.000000, 0.000000, 0.658432;;, + 25;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 26;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 27;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 28;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 29;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 30;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 31;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 32;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 33;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 34;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 35;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 36;4; -0.773327,-0.026242,-0.001055, 0.603456;;, + 37;4; -0.830468,-0.100111,-0.004015, 0.447558;;, + 38;4; -0.900551,-0.194986,-0.007822, 0.244811;;, + 39;4; -0.949085,-0.268986,-0.010813, 0.081432;;, + 40;4; -0.955233,-0.295302,-0.011886, 0.013587;;, + 41;4; -0.938372,-0.129848,-0.005166, 0.005908;;, + 42;4; -0.925397, 0.223399, 0.009020, 0.009664;;, + 43;4; -0.921261, 0.388410, 0.015633, 0.013104;;, + 44;4; -0.929467, 0.223514, 0.009047, 0.013220;;, + 45;4; -0.947027,-0.129602,-0.005107, 0.013470;;, + 46;4; -0.955233,-0.295302,-0.011886, 0.013587;;, + 47;4; -0.955233,-0.295302,-0.011886, 0.013587;;, + 48;4; -0.955233,-0.295302,-0.011886, 0.013587;;, + 49;4; -0.955233,-0.295302,-0.011886, 0.013587;;, + 50;4; -0.947027,-0.129602,-0.005107, 0.013470;;, + 51;4; -0.929467, 0.223514, 0.009047, 0.013220;;, + 52;4; -0.921261, 0.388410, 0.015633, 0.013104;;, + 53;4; -0.925398, 0.223415, 0.009024, 0.009663;;, + 54;4; -0.938375,-0.129812,-0.005158, 0.005907;;, + 55;4; -0.955233,-0.295302,-0.011886, 0.013587;;, + 56;4; -0.955424,-0.277004,-0.011138, 0.064620;;, + 57;4; -0.923527,-0.223831,-0.008981, 0.184574;;, + 58;4; -0.868522,-0.147516,-0.005911, 0.348824;;, + 59;4; -0.809718,-0.071274,-0.002857, 0.509770;;, + 60;4; -0.767385,-0.018236,-0.000733, 0.620627;;, + 61;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 62;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 63;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 64;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 65;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 66;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 67;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 68;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 69;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 70;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 71;4; -0.752553,-0.000000, 0.000000, 0.658531;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Cube} + AnimationKey { //Position + 2; + 72; + 0;3; 0.142552,-0.710054, 0.633902;;, + 1;3; 0.142552,-0.710054, 0.633902;;, + 2;3; 0.142552,-0.710054, 0.633902;;, + 3;3; 0.142552,-0.710054, 0.633902;;, + 4;3; 0.142552,-0.710054, 0.633902;;, + 5;3; 0.142552,-0.710054, 0.633902;;, + 6;3; 0.142552,-0.710054, 0.633902;;, + 7;3; 0.142552,-0.710054, 0.633902;;, + 8;3; 0.142552,-0.710054, 0.633902;;, + 9;3; 0.142552,-0.710054, 0.633902;;, + 10;3; 0.142552,-0.710054, 0.633902;;, + 11;3; 0.142552,-0.710054, 0.633902;;, + 12;3; 0.142552,-0.710054, 0.633902;;, + 13;3; 0.142552,-0.710054, 0.633902;;, + 14;3; 0.142552,-0.710054, 0.633902;;, + 15;3; 0.142552,-0.710054, 0.633902;;, + 16;3; 0.142552,-0.710054, 0.633902;;, + 17;3; 0.142552,-0.710054, 0.633902;;, + 18;3; 0.142552,-0.710054, 0.633902;;, + 19;3; 0.142552,-0.710054, 0.633902;;, + 20;3; 0.142552,-0.710054, 0.633902;;, + 21;3; 0.142552,-0.710054, 0.633902;;, + 22;3; 0.142552,-0.710054, 0.633902;;, + 23;3; 0.142552,-0.710054, 0.633902;;, + 24;3; 0.142552,-0.710054, 0.633902;;, + 25;3; 0.142552,-0.710054, 0.633902;;, + 26;3; 0.142552,-0.710054, 0.633902;;, + 27;3; 0.142552,-0.710054, 0.633902;;, + 28;3; 0.142552,-0.710054, 0.633902;;, + 29;3; 0.142552,-0.710054, 0.633902;;, + 30;3; 0.142552,-0.710054, 0.633902;;, + 31;3; 0.142552,-0.710054, 0.633902;;, + 32;3; 0.142552,-0.710054, 0.633902;;, + 33;3; 0.142552,-0.710054, 0.633902;;, + 34;3; 0.142552,-0.710054, 0.633902;;, + 35;3; 0.142552,-0.710054, 0.633902;;, + 36;3; 0.142552,-0.710054, 0.633902;;, + 37;3; 0.142552,-0.710054, 0.633902;;, + 38;3; 0.142552,-0.710054, 0.633902;;, + 39;3; 0.142552,-0.710054, 0.633902;;, + 40;3; 0.142552,-0.710054, 0.633902;;, + 41;3; 0.142552,-0.710054, 0.633902;;, + 42;3; 0.142552,-0.710054, 0.633902;;, + 43;3; 0.142552,-0.710054, 0.633902;;, + 44;3; 0.142552,-0.710054, 0.633902;;, + 45;3; 0.142552,-0.710054, 0.633902;;, + 46;3; 0.142552,-0.710054, 0.633902;;, + 47;3; 0.142552,-0.710054, 0.633902;;, + 48;3; 0.142552,-0.710054, 0.633902;;, + 49;3; 0.142552,-0.710054, 0.633902;;, + 50;3; 0.142552,-0.710054, 0.633902;;, + 51;3; 0.142552,-0.710054, 0.633902;;, + 52;3; 0.142552,-0.710054, 0.633902;;, + 53;3; 0.142552,-0.710054, 0.633902;;, + 54;3; 0.142552,-0.710054, 0.633902;;, + 55;3; 0.142552,-0.710054, 0.633902;;, + 56;3; 0.142552,-0.710054, 0.633902;;, + 57;3; 0.142552,-0.710054, 0.633902;;, + 58;3; 0.142552,-0.710054, 0.633902;;, + 59;3; 0.142552,-0.710054, 0.633902;;, + 60;3; 0.142552,-0.710054, 0.633902;;, + 61;3; 0.142552,-0.710054, 0.633902;;, + 62;3; 0.142552,-0.710054, 0.633902;;, + 63;3; 0.142552,-0.710054, 0.633902;;, + 64;3; 0.142552,-0.710054, 0.633902;;, + 65;3; 0.142552,-0.710054, 0.633902;;, + 66;3; 0.142552,-0.710054, 0.633902;;, + 67;3; 0.142552,-0.710054, 0.633902;;, + 68;3; 0.142552,-0.710054, 0.633902;;, + 69;3; 0.142552,-0.710054, 0.633902;;, + 70;3; 0.142552,-0.710054, 0.633902;;, + 71;3; 0.142552,-0.710054, 0.633902;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 0.384873, 0.384873, 0.384873;;, + 1;3; 0.384873, 0.384873, 0.384873;;, + 2;3; 0.384873, 0.384873, 0.384873;;, + 3;3; 0.384873, 0.384873, 0.384873;;, + 4;3; 0.384873, 0.384873, 0.384873;;, + 5;3; 0.384873, 0.384873, 0.384873;;, + 6;3; 0.384873, 0.384873, 0.384873;;, + 7;3; 0.384873, 0.384873, 0.384873;;, + 8;3; 0.384873, 0.384873, 0.384873;;, + 9;3; 0.384873, 0.384873, 0.384873;;, + 10;3; 0.384873, 0.384873, 0.384873;;, + 11;3; 0.384873, 0.384873, 0.384873;;, + 12;3; 0.384873, 0.384873, 0.384873;;, + 13;3; 0.384873, 0.384873, 0.384873;;, + 14;3; 0.384873, 0.384873, 0.384873;;, + 15;3; 0.384873, 0.384873, 0.384873;;, + 16;3; 0.384873, 0.384873, 0.384873;;, + 17;3; 0.384873, 0.384873, 0.384873;;, + 18;3; 0.384873, 0.384873, 0.384873;;, + 19;3; 0.384873, 0.384873, 0.384873;;, + 20;3; 0.384873, 0.384873, 0.384873;;, + 21;3; 0.384873, 0.384873, 0.384873;;, + 22;3; 0.384873, 0.384873, 0.384873;;, + 23;3; 0.384873, 0.384873, 0.384873;;, + 24;3; 0.384873, 0.384873, 0.384873;;, + 25;3; 0.384873, 0.384873, 0.384873;;, + 26;3; 0.384873, 0.384873, 0.384873;;, + 27;3; 0.384873, 0.384873, 0.384873;;, + 28;3; 0.384873, 0.384873, 0.384873;;, + 29;3; 0.384873, 0.384873, 0.384873;;, + 30;3; 0.384873, 0.384873, 0.384873;;, + 31;3; 0.384873, 0.384873, 0.384873;;, + 32;3; 0.384873, 0.384873, 0.384873;;, + 33;3; 0.384873, 0.384873, 0.384873;;, + 34;3; 0.384873, 0.384873, 0.384873;;, + 35;3; 0.384873, 0.384873, 0.384873;;, + 36;3; 0.384873, 0.384873, 0.384873;;, + 37;3; 0.384873, 0.384873, 0.384873;;, + 38;3; 0.384873, 0.384873, 0.384873;;, + 39;3; 0.384873, 0.384873, 0.384873;;, + 40;3; 0.384873, 0.384873, 0.384873;;, + 41;3; 0.384873, 0.384873, 0.384873;;, + 42;3; 0.384873, 0.384873, 0.384873;;, + 43;3; 0.384873, 0.384873, 0.384873;;, + 44;3; 0.384873, 0.384873, 0.384873;;, + 45;3; 0.384873, 0.384873, 0.384873;;, + 46;3; 0.384873, 0.384873, 0.384873;;, + 47;3; 0.384873, 0.384873, 0.384873;;, + 48;3; 0.384873, 0.384873, 0.384873;;, + 49;3; 0.384873, 0.384873, 0.384873;;, + 50;3; 0.384873, 0.384873, 0.384873;;, + 51;3; 0.384873, 0.384873, 0.384873;;, + 52;3; 0.384873, 0.384873, 0.384873;;, + 53;3; 0.384873, 0.384873, 0.384873;;, + 54;3; 0.384873, 0.384873, 0.384873;;, + 55;3; 0.384873, 0.384873, 0.384873;;, + 56;3; 0.384873, 0.384873, 0.384873;;, + 57;3; 0.384873, 0.384873, 0.384873;;, + 58;3; 0.384873, 0.384873, 0.384873;;, + 59;3; 0.384873, 0.384873, 0.384873;;, + 60;3; 0.384873, 0.384873, 0.384873;;, + 61;3; 0.384873, 0.384873, 0.384873;;, + 62;3; 0.384873, 0.384873, 0.384873;;, + 63;3; 0.384873, 0.384873, 0.384873;;, + 64;3; 0.384873, 0.384873, 0.384873;;, + 65;3; 0.384873, 0.384873, 0.384873;;, + 66;3; 0.384873, 0.384873, 0.384873;;, + 67;3; 0.384873, 0.384873, 0.384873;;, + 68;3; 0.384873, 0.384873, 0.384873;;, + 69;3; 0.384873, 0.384873, 0.384873;;, + 70;3; 0.384873, 0.384873, 0.384873;;, + 71;3; 0.384873, 0.384873, 0.384873;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs/models/mobs_chicken.png b/mods/mobs/models/mobs_chicken.png new file mode 100644 index 0000000..19cbd15 Binary files /dev/null and b/mods/mobs/models/mobs_chicken.png differ diff --git a/mods/mobs/models/mobs_cow.png b/mods/mobs/models/mobs_cow.png new file mode 100644 index 0000000..aa9cf57 Binary files /dev/null and b/mods/mobs/models/mobs_cow.png differ diff --git a/mods/mobs/models/mobs_cow.x b/mods/mobs/models/mobs_cow.x new file mode 100644 index 0000000..f0b61f8 --- /dev/null +++ b/mods/mobs/models/mobs_cow.x @@ -0,0 +1,7420 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 3.749036, 0.000000, 0.000000, 0.000000, + 0.000000, 3.749036, 0.000000, 0.000000, + 0.000000, 0.000000, 3.749036, 0.000000, + -19.739037, 0.216398, 0.218101, 1.000000;; + } + Frame Armature_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.996529, 0.083252, 0.000000, + 0.000000,-0.083252, 0.996529, 0.000000, + 5.378092,-1.647068, 2.876912, 1.000000;; + } + Frame Armature_noga3 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.824256,-0.011078,-1.204985, 1.000000;; + } + } //End of Armature_noga3 + Frame Armature_noga1 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.784448, 3.021216,-1.494725, 1.000000;; + } + } //End of Armature_noga1 + Frame Armature_noga4 { + FrameTransformMatrix { + 0.000000,-0.996528, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996528, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + -0.923299,-0.011159,-1.205961, 1.000000;; + } + } //End of Armature_noga4 + Frame Armature_noga2 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + -0.921735, 3.022715,-1.476782, 1.000000;; + } + } //End of Armature_noga2 + Frame Armature_hvost { + FrameTransformMatrix { + 0.699967,-0.700526, 0.138963, 0.000000, + -0.057085,-0.248836,-0.966862, 0.000000, + 0.711890, 0.668838,-0.214166, 0.000000, + 0.105165,-0.291279, 0.358470, 1.000000;; + } + } //End of Armature_hvost + Frame Armature_sheya { + FrameTransformMatrix { + 0.997121, 0.067775,-0.033999, 0.000000, + -0.071692, 0.988697,-0.131678, 0.000000, + 0.024691, 0.133736, 0.990709, 0.000000, + 0.000000, 3.238709,-0.013816, 1.000000;; + } + Frame Armature_head { + FrameTransformMatrix { + 0.997121,-0.075824,-0.000243, 0.000000, + 0.074075, 0.974794,-0.210453, 0.000000, + 0.016195, 0.209829, 0.977604, 0.000000, + 0.067776, 0.891274, 0.002915, 1.000000;; + } + } //End of Armature_head + Frame Armature_zubi { + FrameTransformMatrix { + 0.997121,-0.075824,-0.000243, 0.000000, + 0.074236, 0.976877,-0.200501, 0.000000, + 0.015440, 0.199905, 0.979693, 0.000000, + 0.194650, 1.828288,-0.748248, 1.000000;; + } + } //End of Armature_zubi + } //End of Armature_sheya + } //End of Armature_Body + } //End of Armature + Frame Cube { + FrameTransformMatrix { + 3.749036, 0.000000, 0.000000, 0.000000, + 0.000000, 3.749036, 0.000000, 0.000000, + 0.000000, 0.000000, 3.749036, 0.000000, + 0.274003,-0.357581,11.859126, 1.000000;; + } + Mesh { //Mesh Mesh + 464; + -1.182819; 0.256475;-1.515163;, + -1.191885; 2.052689;-1.468648;, + -1.191885; 2.052689; 0.297009;, + -1.182819; 0.256475; 0.202888;, + -1.191885; 2.052689;-1.468648;, + 1.158376; 2.052689;-1.459295;, + 1.158376; 2.052689; 0.297009;, + -1.191885; 2.052689; 0.297009;, + 1.182819; 0.256475;-1.515163;, + 1.209352;-1.823040;-1.465410;, + 1.209352;-1.823040; 0.173570;, + 1.182819; 0.256475; 0.202888;, + 1.209352;-1.823040;-1.465410;, + -1.190063;-1.800769;-1.465410;, + -1.190063;-1.800769; 0.173570;, + 1.209352;-1.823040; 0.173570;, + 1.182819; 0.256475;-1.515163;, + 1.158376; 2.052689;-1.459295;, + -1.191885; 2.052689;-1.468648;, + -1.182819; 0.256475;-1.515163;, + -1.182819; 0.256475; 0.202888;, + -1.191885; 2.052689; 0.297009;, + 1.158376; 2.052689; 0.297009;, + 1.182819; 0.256475; 0.202888;, + -1.190063;-1.800769;-1.465410;, + -1.182819; 0.256475;-1.515163;, + -1.182819; 0.256475; 0.202888;, + -1.190063;-1.800769; 0.173570;, + 1.158376; 2.052689;-1.459295;, + 1.182819; 0.256475;-1.515163;, + 1.182819; 0.256475; 0.202888;, + 1.158376; 2.052689; 0.297009;, + 1.209352;-1.823040;-1.465410;, + 1.182819; 0.256475;-1.515163;, + -1.182819; 0.256475;-1.515163;, + -1.190063;-1.800769;-1.465410;, + -1.190063;-1.800769; 0.173570;, + -1.182819; 0.256475; 0.202888;, + 1.182819; 0.256475; 0.202888;, + 1.209352;-1.823040; 0.173570;, + -0.433904; 1.621176;-0.737264;, + -0.433904; 3.384479;-0.669402;, + -0.433904; 3.329543; 0.247469;, + -0.433904; 1.566239; 0.179607;, + -0.433904; 3.384479;-0.669402;, + 0.440838; 3.384479;-0.669402;, + 0.440838; 3.329543; 0.247469;, + -0.433904; 3.329543; 0.247469;, + 0.440838; 3.384479;-0.669402;, + 0.440838; 1.621176;-0.737264;, + 0.440838; 1.566239; 0.179607;, + 0.440838; 3.329543; 0.247469;, + 0.440838; 1.621176;-0.737264;, + -0.433904; 1.621176;-0.737264;, + -0.433904; 1.566239; 0.179607;, + 0.440838; 1.566239; 0.179607;, + 0.440838; 1.621176;-0.737264;, + 0.440838; 3.384479;-0.669402;, + -0.433904; 3.384479;-0.669402;, + -0.433904; 1.621176;-0.737264;, + -0.433904; 1.566239; 0.179607;, + -0.433904; 3.329543; 0.247469;, + 0.440838; 3.329543; 0.247469;, + 0.440838; 1.566239; 0.179607;, + -0.570123; 2.826026;-0.609147;, + -0.570123; 3.422311;-0.723481;, + -0.570123; 3.619422; 0.304511;, + -0.570123; 3.023137; 0.418845;, + 0.472727; 3.658540;-0.785318;, + -0.491013; 3.658540;-0.785318;, + -0.570123; 3.422311;-0.723481;, + 0.541260; 3.422311;-0.723481;, + 0.541260; 3.422311;-0.723481;, + 0.541260; 2.826026;-0.609147;, + 0.541260; 3.023137; 0.418845;, + 0.541260; 3.619422; 0.304511;, + 0.541260; 2.826026;-0.609147;, + -0.570123; 2.826026;-0.609147;, + -0.570123; 3.023137; 0.418845;, + 0.541260; 3.023137; 0.418845;, + 0.541260; 2.826026;-0.609147;, + 0.541260; 3.422311;-0.723481;, + -0.570123; 3.422311;-0.723481;, + -0.570123; 2.826026;-0.609147;, + -0.570123; 3.023137; 0.418845;, + -0.570123; 3.619422; 0.304511;, + 0.541260; 3.619422; 0.304511;, + 0.541260; 3.023137; 0.418845;, + 0.381228; 4.436496;-1.012536;, + -0.399515; 4.436496;-1.012536;, + -0.491013; 3.658540;-0.785318;, + 0.472727; 3.658540;-0.785318;, + -0.491013; 4.056458;-0.059518;, + 0.472727; 4.056458;-0.059518;, + 0.541260; 3.619422; 0.304511;, + -0.570123; 3.619422; 0.304511;, + 0.472727; 4.056458;-0.059518;, + 0.472727; 3.658540;-0.785318;, + 0.541260; 3.422311;-0.723481;, + 0.541260; 3.619422; 0.304511;, + -0.570123; 3.619422; 0.304511;, + -0.570123; 3.422311;-0.723481;, + -0.491013; 3.658540;-0.785318;, + -0.491013; 4.056458;-0.059518;, + -0.399515; 4.436496;-1.012536;, + 0.381228; 4.436496;-1.012536;, + 0.381228; 4.664130;-0.420370;, + -0.399515; 4.664130;-0.420370;, + -0.491013; 4.056458;-0.059518;, + -0.491013; 3.658540;-0.785318;, + -0.399515; 4.436496;-1.012536;, + -0.399515; 4.664130;-0.420370;, + -0.399515; 4.664130;-0.420370;, + 0.381228; 4.664130;-0.420370;, + 0.472727; 4.056458;-0.059518;, + -0.491013; 4.056458;-0.059518;, + 0.381228; 4.664130;-0.420370;, + 0.381228; 4.436496;-1.012536;, + 0.472727; 3.658540;-0.785318;, + 0.472727; 4.056458;-0.059518;, + 0.405161; 2.892449; 0.389317;, + 0.356167; 3.163855; 0.374390;, + 0.933491; 3.279887; 0.529882;, + 0.982485; 3.008481; 0.544809;, + 0.356167; 3.163855; 0.374390;, + 0.528218; 3.212470; 0.074339;, + 1.027210; 3.314350; 0.229683;, + 0.933491; 3.279887; 0.529882;, + 0.528218; 3.212470; 0.074339;, + 0.577212; 2.941064; 0.089265;, + 1.076203; 3.042944; 0.244609;, + 1.027210; 3.314350; 0.229683;, + 0.577212; 2.941064; 0.089265;, + 0.405161; 2.892449; 0.389317;, + 0.982485; 3.008481; 0.544809;, + 1.076203; 3.042944; 0.244609;, + 0.577212; 2.941064; 0.089265;, + 0.528218; 3.212470; 0.074339;, + 0.356167; 3.163855; 0.374390;, + 0.405161; 2.892449; 0.389317;, + 0.982485; 3.008481; 0.544809;, + 0.933491; 3.279887; 0.529882;, + 1.027210; 3.314350; 0.229683;, + 1.076203; 3.042944; 0.244609;, + -0.609625; 2.928426; 0.070173;, + -0.558808; 3.199832; 0.058956;, + -1.078051; 3.301528; 0.167247;, + -1.128868; 3.030122; 0.178463;, + -0.558808; 3.199832; 0.058956;, + -0.468088; 3.195864; 0.373960;, + -1.030881; 3.306796; 0.508425;, + -1.078051; 3.301528; 0.167247;, + -0.468088; 3.195864; 0.373960;, + -0.518905; 2.924458; 0.385176;, + -1.081698; 3.035390; 0.519641;, + -1.030881; 3.306796; 0.508425;, + -0.518905; 2.924458; 0.385176;, + -0.609625; 2.928426; 0.070173;, + -1.128868; 3.030122; 0.178463;, + -1.081698; 3.035390; 0.519641;, + -0.518905; 2.924458; 0.385176;, + -0.468088; 3.195864; 0.373960;, + -0.558808; 3.199832; 0.058956;, + -0.609625; 2.928426; 0.070173;, + -1.128868; 3.030122; 0.178463;, + -1.078051; 3.301528; 0.167247;, + -1.030881; 3.306796; 0.508425;, + -1.081698; 3.035390; 0.519641;, + 0.068099;-2.068482;-0.815726;, + 0.017526;-1.862952;-0.832142;, + 0.082807;-1.887635;-0.385204;, + 0.105635;-1.969985;-0.374655;, + 0.017526;-1.862952;-0.832142;, + 0.207545;-1.815554;-0.824100;, + 0.159407;-1.881011;-0.377324;, + 0.082807;-1.887635;-0.385204;, + 0.207545;-1.815554;-0.824100;, + 0.258117;-2.021084;-0.807684;, + 0.176925;-1.952203;-0.371637;, + 0.159407;-1.881011;-0.377324;, + 0.258117;-2.021084;-0.807684;, + 0.068099;-2.068482;-0.815726;, + 0.105635;-1.969985;-0.374655;, + 0.176925;-1.952203;-0.371637;, + 0.258117;-2.021084;-0.807684;, + 0.207545;-1.815554;-0.824100;, + 0.017526;-1.862952;-0.832142;, + 0.068099;-2.068482;-0.815726;, + 0.032801;-1.863856; 0.148379;, + 0.018910;-1.807401; 0.143870;, + 0.102635;-1.786517; 0.147413;, + 0.116527;-1.842972; 0.151922;, + 0.099551;-1.963196;-0.270905;, + 0.082033;-1.892004;-0.276591;, + 0.018910;-1.807401; 0.143870;, + 0.032801;-1.863856; 0.148379;, + 0.082033;-1.892004;-0.276591;, + 0.153323;-1.874221;-0.273574;, + 0.102635;-1.786517; 0.147413;, + 0.018910;-1.807401; 0.143870;, + 0.153323;-1.874221;-0.273574;, + 0.170840;-1.945413;-0.267887;, + 0.116527;-1.842972; 0.151922;, + 0.102635;-1.786517; 0.147413;, + 0.170840;-1.945413;-0.267887;, + 0.099551;-1.963196;-0.270905;, + 0.032801;-1.863856; 0.148379;, + 0.116527;-1.842972; 0.151922;, + 0.159407;-1.881011;-0.377324;, + 0.176925;-1.952203;-0.371637;, + 0.170840;-1.945413;-0.267887;, + 0.153323;-1.874221;-0.273574;, + 0.176925;-1.952203;-0.371637;, + 0.105635;-1.969985;-0.374655;, + 0.099551;-1.963196;-0.270905;, + 0.170840;-1.945413;-0.267887;, + -1.051378; 1.496758;-3.168478;, + -1.051378; 1.849385;-3.168478;, + -1.123806; 1.982406;-1.484576;, + -1.123806; 1.363736;-1.484576;, + 0.999745; 1.496758;-3.168478;, + 0.999745; 1.849385;-3.168478;, + 0.664487; 1.849385;-3.168478;, + 0.664487; 1.496758;-3.168478;, + 0.082807;-1.887635;-0.385204;, + 0.159407;-1.881011;-0.377324;, + 0.153323;-1.874221;-0.273574;, + 0.082033;-1.892004;-0.276591;, + 0.664487; 1.496758;-3.168478;, + 0.664487; 1.849385;-3.168478;, + 0.583813; 1.982406;-1.484576;, + 0.583813; 1.363736;-1.484576;, + 0.105635;-1.969985;-0.374655;, + 0.082807;-1.887635;-0.385204;, + 0.082033;-1.892004;-0.276591;, + 0.099551;-1.963196;-0.270905;, + 0.583813; 1.363736;-1.484576;, + 0.583813; 1.982406;-1.484576;, + 1.080419; 1.982406;-1.484576;, + 1.080419; 1.363736;-1.484576;, + 0.664487; 1.849385;-3.168478;, + 0.999745; 1.849385;-3.168478;, + 1.080419; 1.982406;-1.484576;, + 0.583813; 1.982406;-1.484576;, + -0.750392; 1.496758;-3.168478;, + -0.750392; 1.849385;-3.168478;, + -1.051378; 1.849385;-3.168478;, + -1.051378; 1.496758;-3.168478;, + 0.999745; 1.496758;-3.168478;, + 0.664487; 1.496758;-3.168478;, + 0.583813; 1.363736;-1.484576;, + 1.080419; 1.363736;-1.484576;, + 0.999745; 1.849385;-3.168478;, + 0.999745; 1.496758;-3.168478;, + 1.080419; 1.363736;-1.484576;, + 1.080419; 1.982406;-1.484576;, + -1.123806; 1.363736;-1.484576;, + -1.123806; 1.982406;-1.484576;, + -0.677966; 1.982406;-1.484576;, + -0.677966; 1.363736;-1.484576;, + -1.051378; 1.849385;-3.168478;, + -0.750392; 1.849385;-3.168478;, + -0.677966; 1.982406;-1.484576;, + -1.123806; 1.982406;-1.484576;, + -0.750392; 1.496758;-3.168478;, + -1.051378; 1.496758;-3.168478;, + -1.123806; 1.363736;-1.484576;, + -0.677966; 1.363736;-1.484576;, + -0.750392; 1.849385;-3.168478;, + -0.750392; 1.496758;-3.168478;, + -0.677966; 1.363736;-1.484576;, + -0.677966; 1.982406;-1.484576;, + -1.051378;-1.614760;-3.168478;, + -1.051378;-1.262132;-3.168478;, + -1.123806;-1.129111;-1.484576;, + -1.123806;-1.747781;-1.484576;, + -0.750392;-1.614760;-3.168478;, + -0.750392;-1.262132;-3.168478;, + -1.051378;-1.262132;-3.168478;, + -1.051378;-1.614760;-3.168478;, + -1.123806;-1.747781;-1.484576;, + -1.123806;-1.129111;-1.484576;, + -0.677966;-1.129111;-1.484576;, + -0.677966;-1.747781;-1.484576;, + -1.051378;-1.262132;-3.168478;, + -0.750392;-1.262132;-3.168478;, + -0.677966;-1.129111;-1.484576;, + -1.123806;-1.129111;-1.484576;, + -0.750392;-1.614760;-3.168478;, + -1.051378;-1.614760;-3.168478;, + -1.123806;-1.747781;-1.484576;, + -0.677966;-1.747781;-1.484576;, + -0.750392;-1.262132;-3.168478;, + -0.750392;-1.614760;-3.168478;, + -0.677966;-1.747781;-1.484576;, + -0.677966;-1.129111;-1.484576;, + 0.702960;-1.578270;-3.168478;, + 0.702960;-1.225643;-3.168478;, + 0.622286;-1.092621;-1.484576;, + 0.622286;-1.711292;-1.484576;, + 1.038219;-1.578270;-3.168478;, + 1.038219;-1.225643;-3.168478;, + 0.702960;-1.225643;-3.168478;, + 0.702960;-1.578270;-3.168478;, + 0.622286;-1.711292;-1.484576;, + 0.622286;-1.092621;-1.484576;, + 1.118893;-1.092621;-1.484576;, + 1.118893;-1.711292;-1.484576;, + 0.702960;-1.225643;-3.168478;, + 1.038219;-1.225643;-3.168478;, + 1.118893;-1.092621;-1.484576;, + 0.622286;-1.092621;-1.484576;, + 1.038219;-1.578270;-3.168478;, + 0.702960;-1.578270;-3.168478;, + 0.622286;-1.711292;-1.484576;, + 1.118893;-1.711292;-1.484576;, + 1.038219;-1.225643;-3.168478;, + 1.038219;-1.578270;-3.168478;, + 1.118893;-1.711292;-1.484576;, + 1.118893;-1.092621;-1.484576;, + -0.375302; 3.723651;-0.919717;, + -0.375302; 4.404733;-1.101104;, + -0.375302; 4.406694;-1.025498;, + -0.375302; 3.723651;-0.866785;, + -0.375302; 4.404733;-1.101104;, + 0.411050; 4.404733;-1.111786;, + 0.411050; 4.404733;-1.026451;, + -0.375302; 4.406694;-1.025498;, + 0.411050; 4.404733;-1.111786;, + 0.411050; 3.723651;-0.930399;, + 0.411050; 3.723651;-0.860715;, + 0.411050; 4.404733;-1.026451;, + 0.411050; 3.723651;-0.930399;, + -0.375302; 3.723651;-0.919717;, + -0.375302; 3.723651;-0.866785;, + 0.411050; 3.723651;-0.860715;, + 0.411050; 3.723651;-0.930399;, + 0.411050; 4.404733;-1.111786;, + -0.375302; 4.404733;-1.101104;, + -0.375302; 3.723651;-0.919717;, + -0.375302; 3.723651;-0.866785;, + -0.375302; 4.406694;-1.025498;, + 0.411050; 4.404733;-1.026451;, + 0.411050; 3.723651;-0.860715;, + -0.491839; 3.204797; 0.832126;, + -0.420050; 3.204797; 0.832126;, + -0.276340; 3.271977; 0.372442;, + -0.459907; 3.271977; 0.372442;, + -0.085533; 3.271977; 0.150769;, + 0.090794; 3.271977; 0.150769;, + 0.090794; 3.271977; 0.372442;, + -0.085533; 3.271977; 0.372442;, + 0.465169; 3.051323; 0.150769;, + 0.465169; 3.271977; 0.150769;, + 0.465169; 3.271977; 0.372442;, + 0.465169; 3.051323; 0.372442;, + 0.090794; 3.051323; 0.150769;, + -0.085533; 3.051323; 0.150769;, + -0.085533; 3.051323; 0.372442;, + 0.090794; 3.051323; 0.372442;, + 0.090794; 3.051323; 0.150769;, + 0.090794; 3.271977; 0.150769;, + -0.085533; 3.271977; 0.150769;, + -0.085533; 3.051323; 0.150769;, + -0.085533; 3.051323; 0.372442;, + -0.085533; 3.271977; 0.372442;, + 0.090794; 3.271977; 0.372442;, + 0.090794; 3.051323; 0.372442;, + -0.420050; 3.204797; 0.832126;, + -0.491839; 3.204797; 0.832126;, + -0.491839; 3.118504; 0.832126;, + -0.420050; 3.118504; 0.832126;, + -0.085533; 3.051323; 0.372442;, + 0.281602; 3.051323; 0.372442;, + 0.281602; 3.271977; 0.372442;, + -0.085533; 3.271977; 0.372442;, + -0.085533; 3.271977; 0.372442;, + 0.281602; 3.271977; 0.372442;, + 0.281602; 3.271977; 0.150769;, + -0.085533; 3.271977; 0.150769;, + -0.085533; 3.271977; 0.150769;, + 0.281602; 3.271977; 0.150769;, + 0.281602; 3.051323; 0.150769;, + -0.085533; 3.051323; 0.150769;, + -0.085533; 3.051323; 0.150769;, + 0.281602; 3.051323; 0.150769;, + 0.281602; 3.051323; 0.372442;, + -0.085533; 3.051323; 0.372442;, + 0.408578; 3.118362; 0.832126;, + 0.480603; 3.118362; 0.832126;, + 0.480603; 3.204938; 0.832126;, + 0.408578; 3.204938; 0.832126;, + 0.090794; 3.271977; 0.372442;, + -0.276340; 3.271977; 0.372442;, + -0.276340; 3.051323; 0.372442;, + 0.090794; 3.051323; 0.372442;, + 0.090794; 3.051323; 0.372442;, + -0.276340; 3.051323; 0.372442;, + -0.276340; 3.051323; 0.150769;, + 0.090794; 3.051323; 0.150769;, + 0.090794; 3.051323; 0.150769;, + -0.276340; 3.051323; 0.150769;, + -0.276340; 3.271977; 0.150769;, + 0.090794; 3.271977; 0.150769;, + 0.090794; 3.271977; 0.150769;, + -0.276340; 3.271977; 0.150769;, + -0.276340; 3.271977; 0.372442;, + 0.090794; 3.271977; 0.372442;, + 0.281602; 3.271977; 0.372442;, + 0.465169; 3.271977; 0.372442;, + 0.465169; 3.271977; 0.150769;, + 0.281602; 3.271977; 0.150769;, + 0.281602; 3.271977; 0.150769;, + 0.465169; 3.271977; 0.150769;, + 0.465169; 3.051323; 0.150769;, + 0.281602; 3.051323; 0.150769;, + 0.281602; 3.051323; 0.150769;, + 0.465169; 3.051323; 0.150769;, + 0.465169; 3.051323; 0.372442;, + 0.281602; 3.051323; 0.372442;, + -0.459907; 3.271977; 0.150769;, + -0.459907; 3.051323; 0.150769;, + -0.459907; 3.051323; 0.372442;, + -0.459907; 3.271977; 0.372442;, + 0.408578; 3.118362; 0.832126;, + 0.408578; 3.204938; 0.832126;, + 0.281602; 3.271977; 0.372442;, + 0.281602; 3.051323; 0.372442;, + -0.276340; 3.051323; 0.372442;, + -0.459907; 3.051323; 0.372442;, + -0.459907; 3.051323; 0.150769;, + -0.276340; 3.051323; 0.150769;, + -0.276340; 3.051323; 0.150769;, + -0.459907; 3.051323; 0.150769;, + -0.459907; 3.271977; 0.150769;, + -0.276340; 3.271977; 0.150769;, + -0.276340; 3.271977; 0.150769;, + -0.459907; 3.271977; 0.150769;, + -0.459907; 3.271977; 0.372442;, + -0.276340; 3.271977; 0.372442;, + -0.459907; 3.271977; 0.372442;, + -0.459907; 3.051323; 0.372442;, + -0.491839; 3.118504; 0.832126;, + -0.491839; 3.204797; 0.832126;, + 0.480603; 3.118362; 0.832126;, + 0.408578; 3.118362; 0.832126;, + 0.281602; 3.051323; 0.372442;, + 0.465169; 3.051323; 0.372442;, + 0.465169; 3.051323; 0.372442;, + 0.465169; 3.271977; 0.372442;, + 0.480603; 3.204938; 0.832126;, + 0.480603; 3.118362; 0.832126;, + -0.420050; 3.118504; 0.832126;, + -0.491839; 3.118504; 0.832126;, + -0.459907; 3.051323; 0.372442;, + -0.276340; 3.051323; 0.372442;, + -0.420050; 3.204797; 0.832126;, + -0.420050; 3.118504; 0.832126;, + -0.276340; 3.051323; 0.372442;, + -0.276340; 3.271977; 0.372442;, + 0.408578; 3.204938; 0.832126;, + 0.480603; 3.204938; 0.832126;, + 0.465169; 3.271977; 0.372442;, + 0.281602; 3.271977; 0.372442;; + 116; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;, + 4;408;409;410;411;, + 4;412;413;414;415;, + 4;416;417;418;419;, + 4;420;421;422;423;, + 4;424;425;426;427;, + 4;428;429;430;431;, + 4;432;433;434;435;, + 4;436;437;438;439;, + 4;440;441;442;443;, + 4;444;445;446;447;, + 4;448;449;450;451;, + 4;452;453;454;455;, + 4;456;457;458;459;, + 4;460;461;462;463;; + MeshNormals { //Mesh Normals + 464; + -0.999987;-0.005047; 0.000000;, + -0.999987;-0.005047; 0.000000;, + -0.999987;-0.005047; 0.000000;, + -0.999987;-0.005047; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.999919; 0.012758; 0.000000;, + 0.999919; 0.012758; 0.000000;, + 0.999919; 0.012758; 0.000000;, + 0.999919; 0.012758; 0.000000;, + -0.009281;-0.999957; 0.000000;, + -0.009281;-0.999957; 0.000000;, + -0.009281;-0.999957; 0.000000;, + -0.009281;-0.999957; 0.000000;, + 0.001982; 0.028507;-0.999592;, + 0.001982; 0.028507;-0.999592;, + 0.001982; 0.028507;-0.999592;, + 0.001982; 0.028507;-0.999592;, + -0.000000;-0.052328; 0.998630;, + -0.000000;-0.052328; 0.998630;, + -0.000000;-0.052328; 0.998630;, + -0.000000;-0.052328; 0.998630;, + -0.999994; 0.003521;-0.000000;, + -0.999994; 0.003521;-0.000000;, + -0.999994; 0.003521;-0.000000;, + -0.999994; 0.003521;-0.000000;, + 0.999907; 0.013606; 0.000000;, + 0.999907; 0.013606; 0.000000;, + 0.999907; 0.013606; 0.000000;, + 0.999907; 0.013606; 0.000000;, + -0.000112;-0.024047;-0.999711;, + -0.000112;-0.024047;-0.999711;, + -0.000112;-0.024047;-0.999711;, + -0.000112;-0.024047;-0.999711;, + -0.000066;-0.014174; 0.999900;, + -0.000066;-0.014174; 0.999900;, + -0.000066;-0.014174; 0.999900;, + -0.000066;-0.014174; 0.999900;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.998210; 0.059810;, + 0.000000; 0.998210; 0.059810;, + 0.000000; 0.998210; 0.059810;, + 0.000000; 0.998210; 0.059810;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.998210;-0.059810;, + 0.000000;-0.998210;-0.059810;, + 0.000000;-0.998210;-0.059810;, + 0.000000;-0.998210;-0.059810;, + 0.000000; 0.038457;-0.999260;, + 0.000000; 0.038457;-0.999260;, + 0.000000; 0.038457;-0.999260;, + 0.000000; 0.038457;-0.999260;, + 0.000000;-0.038457; 0.999260;, + 0.000000;-0.038457; 0.999260;, + 0.000000;-0.038457; 0.999260;, + 0.000000;-0.038457; 0.999260;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-0.253236;-0.967405;, + 0.000000;-0.253236;-0.967405;, + 0.000000;-0.253236;-0.967405;, + 0.000000;-0.253236;-0.967405;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.982109; 0.188312;, + 0.000000;-0.982109; 0.188312;, + 0.000000;-0.982109; 0.188312;, + 0.000000;-0.982109; 0.188312;, + 0.000000;-0.188312;-0.982109;, + 0.000000;-0.188312;-0.982109;, + 0.000000;-0.188312;-0.982109;, + 0.000000;-0.188312;-0.982109;, + 0.000000; 0.188312; 0.982109;, + 0.000000; 0.188312; 0.982109;, + 0.000000; 0.188312; 0.982109;, + 0.000000; 0.188312; 0.982109;, + 0.000000;-0.280357;-0.959896;, + 0.000000;-0.280357;-0.959896;, + 0.000000;-0.280357;-0.959896;, + 0.000000;-0.280357;-0.959896;, + 0.000000; 0.640010; 0.768367;, + 0.000000; 0.640010; 0.768367;, + 0.000000; 0.640010; 0.768367;, + 0.000000; 0.640010; 0.768367;, + 0.984694; 0.165048;-0.055998;, + 0.984694; 0.165048;-0.055998;, + 0.984694; 0.165048;-0.055998;, + 0.984694; 0.165048;-0.055998;, + -0.979760; 0.189564;-0.064316;, + -0.979760; 0.189564;-0.064316;, + -0.979760; 0.189564;-0.064316;, + -0.979760; 0.189564;-0.064316;, + 0.000000; 0.933410;-0.358811;, + 0.000000; 0.933410;-0.358811;, + 0.000000; 0.933410;-0.358811;, + 0.000000; 0.933410;-0.358811;, + -0.992678; 0.109120;-0.051792;, + -0.992678; 0.109120;-0.051792;, + -0.992678; 0.109120;-0.051792;, + -0.992678; 0.109120;-0.051792;, + 0.000000; 0.510587; 0.859826;, + 0.000000; 0.510587; 0.859826;, + 0.000000; 0.510587; 0.859826;, + 0.000000; 0.510587; 0.859826;, + 0.992678; 0.109120;-0.051792;, + 0.992678; 0.109120;-0.051792;, + 0.992678; 0.109120;-0.051792;, + 0.992678; 0.109120;-0.051792;, + -0.261173; 0.005940; 0.965274;, + -0.261173; 0.005940; 0.965274;, + -0.261173; 0.005940; 0.965274;, + -0.261173; 0.005940; 0.965274;, + -0.209960; 0.976798; 0.042231;, + -0.209960; 0.976798; 0.042231;, + -0.209960; 0.976798; 0.042231;, + -0.209960; 0.976798; 0.042231;, + 0.297039; 0.001107;-0.954865;, + 0.297039; 0.001107;-0.954865;, + 0.297039; 0.001107;-0.954865;, + 0.297039; 0.001107;-0.954865;, + 0.209960;-0.976798;-0.042233;, + 0.209960;-0.976798;-0.042233;, + 0.209960;-0.976798;-0.042233;, + 0.209960;-0.976798;-0.042233;, + -0.840506;-0.179834;-0.511087;, + -0.840506;-0.179834;-0.511087;, + -0.840506;-0.179834;-0.511087;, + -0.840506;-0.179834;-0.511087;, + 0.931767; 0.185369; 0.312167;, + 0.931767; 0.185369; 0.312167;, + 0.931767; 0.185369; 0.312167;, + 0.931767; 0.185369; 0.312167;, + -0.204566;-0.002152;-0.978850;, + -0.204566;-0.002152;-0.978850;, + -0.204566;-0.002152;-0.978850;, + -0.204566;-0.002152;-0.978850;, + 0.183886; 0.982109;-0.040588;, + 0.183886; 0.982109;-0.040588;, + 0.183886; 0.982109;-0.040588;, + 0.183886; 0.982109;-0.040588;, + 0.231786;-0.003196; 0.972761;, + 0.231786;-0.003196; 0.972761;, + 0.231786;-0.003196; 0.972761;, + 0.231786;-0.003196; 0.972761;, + -0.183886;-0.982109; 0.040589;, + -0.183886;-0.982109; 0.040589;, + -0.183886;-0.982109; 0.040589;, + -0.183886;-0.982109; 0.040589;, + 0.943190;-0.187923;-0.274003;, + 0.943190;-0.187923;-0.274003;, + 0.943190;-0.187923;-0.274003;, + 0.943190;-0.187923;-0.274003;, + -0.973362; 0.187690; 0.131676;, + -0.973362; 0.187690; 0.131676;, + -0.973362; 0.187690; 0.131676;, + -0.973362; 0.187690; 0.131676;, + -0.963521;-0.233403; 0.130961;, + -0.963521;-0.233403; 0.130961;, + -0.963521;-0.233403; 0.130961;, + -0.963521;-0.233403; 0.130961;, + -0.203399; 0.973756; 0.102115;, + -0.203399; 0.973756; 0.102115;, + -0.203399; 0.973756; 0.102115;, + -0.203399; 0.973756; 0.102115;, + 0.958897; 0.247088; 0.139516;, + 0.958897; 0.247088; 0.139516;, + 0.958897; 0.247088; 0.139516;, + 0.958897; 0.247088; 0.139516;, + 0.229736;-0.953833; 0.193451;, + 0.229736;-0.953833; 0.193451;, + 0.229736;-0.953833; 0.193451;, + 0.229736;-0.953833; 0.193451;, + 0.058422;-0.065189;-0.996161;, + 0.058422;-0.065189;-0.996161;, + 0.058422;-0.065189;-0.996161;, + 0.058422;-0.065189;-0.996161;, + -0.058422; 0.065189; 0.996161;, + -0.058422; 0.065189; 0.996161;, + -0.058422; 0.065189; 0.996161;, + -0.058422; 0.065189; 0.996161;, + -0.964797;-0.245028;-0.095541;, + -0.964797;-0.245028;-0.095541;, + -0.964797;-0.245028;-0.095541;, + -0.964797;-0.245028;-0.095541;, + -0.226867; 0.947641;-0.224738;, + -0.226867; 0.947641;-0.224738;, + -0.226867; 0.947641;-0.224738;, + -0.226867; 0.947641;-0.224738;, + 0.967699; 0.243367; 0.065811;, + 0.967699; 0.243367; 0.065811;, + 0.967699; 0.243367; 0.065811;, + 0.967699; 0.243367; 0.065811;, + 0.223509;-0.939864; 0.258262;, + 0.223509;-0.939864; 0.258262;, + 0.223509;-0.939864; 0.258262;, + 0.223509;-0.939864; 0.258262;, + 0.969453; 0.241820; 0.041031;, + 0.969453; 0.241820; 0.041031;, + 0.969453; 0.241820; 0.041031;, + 0.969453; 0.241820; 0.041031;, + 0.238217;-0.968129; 0.077326;, + 0.238217;-0.968129; 0.077326;, + 0.238217;-0.968129; 0.077326;, + 0.238217;-0.968129; 0.077326;, + -0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.161622; 0.986715;-0.016464;, + -0.161622; 0.986715;-0.016464;, + -0.161622; 0.986715;-0.016464;, + -0.161622; 0.986715;-0.016464;, + -0.998854; 0.000000;-0.047854;, + -0.998854; 0.000000;-0.047854;, + -0.998854; 0.000000;-0.047854;, + -0.998854; 0.000000;-0.047854;, + -0.966042;-0.256834;-0.028270;, + -0.966042;-0.256834;-0.028270;, + -0.966042;-0.256834;-0.028270;, + -0.966042;-0.256834;-0.028270;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.998854; 0.000000;-0.047854;, + 0.998854; 0.000000;-0.047854;, + 0.998854; 0.000000;-0.047854;, + 0.998854; 0.000000;-0.047854;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.999076; 0.000000;-0.042972;, + 0.999076; 0.000000;-0.042972;, + 0.999076; 0.000000;-0.042972;, + 0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.999076; 0.000000;-0.042972;, + 0.999076; 0.000000;-0.042972;, + 0.999076; 0.000000;-0.042972;, + 0.999076; 0.000000;-0.042972;, + -0.998854; 0.000000;-0.047854;, + -0.998854; 0.000000;-0.047854;, + -0.998854; 0.000000;-0.047854;, + -0.998854; 0.000000;-0.047854;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.998854; 0.000000;-0.047854;, + 0.998854; 0.000000;-0.047854;, + 0.998854; 0.000000;-0.047854;, + 0.998854; 0.000000;-0.047854;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.001157; 0.999925;-0.012185;, + 0.001157; 0.999925;-0.012185;, + 0.001157; 0.999925;-0.012185;, + 0.001157; 0.999925;-0.012185;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.013126;-0.257330;-0.966235;, + -0.013126;-0.257330;-0.966235;, + -0.013126;-0.257330;-0.966235;, + -0.013126;-0.257330;-0.966235;, + -0.002877; 0.231388; 0.972857;, + -0.002877; 0.231388; 0.972857;, + -0.002877; 0.231388; 0.972857;, + -0.002877; 0.231388; 0.972857;, + 0.000000;-0.989489;-0.144609;, + 0.000000;-0.989489;-0.144609;, + 0.000000;-0.989489;-0.144609;, + 0.000000;-0.989489;-0.144609;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.963903; 0.000000;-0.266253;, + 0.963903; 0.000000;-0.266253;, + 0.963903; 0.000000;-0.266253;, + 0.963903; 0.000000;-0.266253;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.997596; 0.000000; 0.069296;, + 0.997596; 0.000000; 0.069296;, + 0.997596; 0.000000; 0.069296;, + 0.997596; 0.000000; 0.069296;, + 0.000000; 0.989532;-0.144311;, + 0.000000; 0.989532;-0.144311;, + 0.000000; 0.989532;-0.144311;, + 0.000000; 0.989532;-0.144311;, + -0.999437; 0.000000; 0.033555;, + -0.999437; 0.000000; 0.033555;, + -0.999437; 0.000000; 0.033555;, + -0.999437; 0.000000; 0.033555;, + 0.000000; 0.989489;-0.144610;, + 0.000000; 0.989489;-0.144610;, + 0.000000; 0.989489;-0.144610;, + 0.000000; 0.989489;-0.144610;, + -0.954446; 0.000000;-0.298385;, + -0.954446; 0.000000;-0.298385;, + -0.954446; 0.000000;-0.298385;, + -0.954446; 0.000000;-0.298385;, + 0.000000;-0.989532;-0.144311;, + 0.000000;-0.989532;-0.144311;, + 0.000000;-0.989532;-0.144311;, + 0.000000;-0.989532;-0.144311;; + 116; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;, + 4;408;409;410;411;, + 4;412;413;414;415;, + 4;416;417;418;419;, + 4;420;421;422;423;, + 4;424;425;426;427;, + 4;428;429;430;431;, + 4;432;433;434;435;, + 4;436;437;438;439;, + 4;440;441;442;443;, + 4;444;445;446;447;, + 4;448;449;450;451;, + 4;452;453;454;455;, + 4;456;457;458;459;, + 4;460;461;462;463;; + } //End of Mesh Normals + MeshMaterialList { //Mesh Material List + 1; + 1; + 0;; + Material Default_Material { + 0.800000; 0.800000; 0.800000; 0.800000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Mesh Material List + MeshTextureCoords { //Mesh UV Coordinates + 464; + 0.444664; 0.882740;, + 0.453010; 0.994603;, + 0.352139; 0.990704;, + 0.370352; 0.882084;, + 0.699615; 0.826957;, + 0.888198; 0.826957;, + 0.888198; 0.999617;, + 0.699615; 0.999617;, + 0.566940; 0.877116;, + 0.559308; 0.768256;, + 0.664340; 0.764336;, + 0.671138; 0.868138;, + 0.999617; 0.397190;, + 0.811034; 0.397190;, + 0.811034; 0.271762;, + 0.999617; 0.271762;, + 0.566940; 0.877116;, + 0.565483; 0.991269;, + 0.453010; 0.994603;, + 0.444664; 0.882740;, + 0.370352; 0.882084;, + 0.352139; 0.990704;, + 0.243744; 0.976452;, + 0.255729; 0.872295;, + 0.447331; 0.770867;, + 0.444664; 0.882740;, + 0.370352; 0.882084;, + 0.373731; 0.773298;, + 0.565483; 0.991269;, + 0.566940; 0.877116;, + 0.671138; 0.868138;, + 0.670488; 0.977139;, + 0.559308; 0.768256;, + 0.566940; 0.877116;, + 0.444664; 0.882740;, + 0.447331; 0.770867;, + 0.373731; 0.773298;, + 0.370352; 0.882084;, + 0.255729; 0.872295;, + 0.261819; 0.766836;, + 0.694945; 0.168323;, + 0.694945; 0.057246;, + 0.784866; 0.057246;, + 0.784866; 0.168323;, + 0.978885; 0.802852;, + 0.978885; 0.908930;, + 0.888965; 0.908930;, + 0.888965; 0.802852;, + 0.980864; 0.057246;, + 0.980864; 0.168323;, + 0.890944; 0.168323;, + 0.890944; 0.057246;, + 0.995043; 0.999617;, + 0.888965; 0.999617;, + 0.888965; 0.909696;, + 0.995043; 0.909696;, + 0.588867; 0.168323;, + 0.588867; 0.057246;, + 0.694945; 0.057246;, + 0.694945; 0.168323;, + 0.784866; 0.168323;, + 0.784866; 0.057246;, + 0.890944; 0.057246;, + 0.890944; 0.168323;, + 0.581893; 0.381313;, + 0.525981; 0.490259;, + 0.379618; 0.402841;, + 0.398054; 0.301018;, + 0.815523; 0.662938;, + 0.815524; 0.728486;, + 0.769623; 0.748548;, + 0.769623; 0.642876;, + 0.048873; 0.480128;, + 0.006488; 0.386718;, + 0.167529; 0.313647;, + 0.194276; 0.403737;, + 0.988636; 0.730470;, + 0.896211; 0.730470;, + 0.896211; 0.660198;, + 0.988636; 0.660198;, + 0.723019; 0.642876;, + 0.769623; 0.642876;, + 0.769623; 0.748548;, + 0.723019; 0.748548;, + 0.398054; 0.301018;, + 0.379618; 0.402841;, + 0.194276; 0.403737;, + 0.167529; 0.313647;, + 0.877077; 0.662938;, + 0.877077; 0.728486;, + 0.815524; 0.728486;, + 0.815523; 0.662938;, + 0.357048; 0.517540;, + 0.216152; 0.507657;, + 0.194276; 0.403737;, + 0.379618; 0.402841;, + 0.216152; 0.507657;, + 0.120216; 0.568830;, + 0.048873; 0.480128;, + 0.194276; 0.403737;, + 0.379618; 0.402841;, + 0.525981; 0.490259;, + 0.444034; 0.577428;, + 0.357048; 0.517540;, + 0.362490; 0.686881;, + 0.215162; 0.682739;, + 0.251936; 0.612341;, + 0.315469; 0.601729;, + 0.357048; 0.517540;, + 0.444034; 0.577428;, + 0.362490; 0.686881;, + 0.315469; 0.601729;, + 0.315469; 0.601729;, + 0.251936; 0.612341;, + 0.216152; 0.507657;, + 0.357048; 0.517540;, + 0.251936; 0.612341;, + 0.215162; 0.682739;, + 0.120216; 0.568830;, + 0.216152; 0.507657;, + 0.882221; 0.248633;, + 0.854668; 0.246226;, + 0.860426; 0.180315;, + 0.887978; 0.182722;, + 0.854668; 0.246226;, + 0.811034; 0.225788;, + 0.836391; 0.169090;, + 0.860426; 0.180315;, + 0.955560; 0.229325;, + 0.928738; 0.236069;, + 0.913594; 0.175833;, + 0.940417; 0.169090;, + 0.928738; 0.236069;, + 0.882221; 0.248633;, + 0.887978; 0.182722;, + 0.913594; 0.175833;, + 0.568666; 0.188259;, + 0.570943; 0.215822;, + 0.522758; 0.215822;, + 0.520482; 0.188259;, + 0.557028; 0.187492;, + 0.557028; 0.159835;, + 0.583256; 0.155869;, + 0.583256; 0.183526;, + 0.831256; 0.582510;, + 0.811034; 0.563643;, + 0.853460; 0.518170;, + 0.873682; 0.537037;, + 0.941763; 0.626056;, + 0.893812; 0.623471;, + 0.917809; 0.562573;, + 0.941763; 0.563864;, + 0.893812; 0.623471;, + 0.868081; 0.613331;, + 0.892078; 0.552433;, + 0.917809; 0.562573;, + 0.868081; 0.613331;, + 0.831256; 0.582510;, + 0.873682; 0.537037;, + 0.892078; 0.552433;, + 0.680049; 0.227106;, + 0.680049; 0.254763;, + 0.632028; 0.254763;, + 0.632028; 0.227106;, + 0.631262; 0.227106;, + 0.631262; 0.254763;, + 0.607273; 0.254763;, + 0.607273; 0.227106;, + 0.151813; 0.952191;, + 0.112345; 0.947279;, + 0.113514; 0.904716;, + 0.158003; 0.906790;, + 0.112345; 0.947279;, + 0.077106; 0.948022;, + 0.069721; 0.907057;, + 0.113514; 0.904716;, + 0.077106; 0.948022;, + 0.041465; 0.957980;, + 0.021003; 0.917204;, + 0.069721; 0.907057;, + 0.189475; 0.963315;, + 0.151813; 0.952191;, + 0.158003; 0.906790;, + 0.212875; 0.914749;, + 0.563441; 0.216588;, + 0.563441; 0.263118;, + 0.520482; 0.263118;, + 0.520482; 0.216588;, + 0.758717; 0.826190;, + 0.758717; 0.792862;, + 0.808077; 0.792862;, + 0.808077; 0.826190;, + 0.160570; 0.844684;, + 0.116458; 0.842962;, + 0.117818; 0.795850;, + 0.145830; 0.795143;, + 0.116458; 0.842962;, + 0.069466; 0.841189;, + 0.076449; 0.791324;, + 0.117818; 0.795850;, + 0.069466; 0.841189;, + 0.014746; 0.837740;, + 0.047872; 0.785711;, + 0.076449; 0.791324;, + 0.209296; 0.833892;, + 0.160570; 0.844684;, + 0.145830; 0.795143;, + 0.184389; 0.782622;, + 0.069721; 0.907057;, + 0.021003; 0.917204;, + 0.014746; 0.837740;, + 0.069466; 0.841189;, + 0.212875; 0.914749;, + 0.158003; 0.906790;, + 0.160570; 0.844684;, + 0.209296; 0.833892;, + 0.696701; 0.623144;, + 0.663486; 0.624673;, + 0.640785; 0.404303;, + 0.699058; 0.401620;, + 0.556261; 0.154243;, + 0.556261; 0.187492;, + 0.520482; 0.187492;, + 0.520482; 0.154243;, + 0.113514; 0.904716;, + 0.069721; 0.907057;, + 0.069466; 0.841189;, + 0.116458; 0.842962;, + 0.696269; 0.621054;, + 0.663054; 0.622583;, + 0.640352; 0.402213;, + 0.698626; 0.399530;, + 0.158003; 0.906790;, + 0.113514; 0.904716;, + 0.116458; 0.842962;, + 0.160570; 0.844684;, + 0.621714; 0.314631;, + 0.680049; 0.314631;, + 0.680049; 0.367630;, + 0.621714; 0.367630;, + 0.663054; 0.622583;, + 0.627632; 0.627630;, + 0.587883; 0.409689;, + 0.640352; 0.402213;, + 0.844623; 0.792862;, + 0.844623; 0.826112;, + 0.808843; 0.826112;, + 0.808843; 0.792862;, + 0.732005; 0.622825;, + 0.696269; 0.621054;, + 0.698626; 0.399530;, + 0.751560; 0.402153;, + 0.764905; 0.627630;, + 0.732005; 0.622825;, + 0.751560; 0.402153;, + 0.809283; 0.410584;, + 0.699615; 0.773191;, + 0.757950; 0.773191;, + 0.757950; 0.826190;, + 0.699615; 0.826190;, + 0.663486; 0.624673;, + 0.628065; 0.629720;, + 0.588315; 0.411779;, + 0.640785; 0.404303;, + 0.732437; 0.624915;, + 0.696701; 0.623144;, + 0.699058; 0.401620;, + 0.751992; 0.404243;, + 0.765338; 0.629720;, + 0.732437; 0.624915;, + 0.751992; 0.404243;, + 0.809715; 0.412674;, + 0.697254; 0.619480;, + 0.664039; 0.621009;, + 0.641336; 0.400639;, + 0.699610; 0.397956;, + 0.680049; 0.193089;, + 0.680049; 0.226339;, + 0.644269; 0.226339;, + 0.644269; 0.193089;, + 0.680049; 0.255529;, + 0.680049; 0.313865;, + 0.627050; 0.313865;, + 0.627050; 0.255529;, + 0.664039; 0.621009;, + 0.628617; 0.626056;, + 0.588867; 0.408115;, + 0.641336; 0.400639;, + 0.732989; 0.621251;, + 0.697254; 0.619480;, + 0.699610; 0.397956;, + 0.752544; 0.400579;, + 0.765890; 0.626056;, + 0.732989; 0.621251;, + 0.752544; 0.400579;, + 0.810267; 0.409010;, + 0.697253; 0.620613;, + 0.664039; 0.622143;, + 0.641336; 0.401773;, + 0.699610; 0.399090;, + 0.643503; 0.193089;, + 0.643503; 0.226339;, + 0.607723; 0.226339;, + 0.607723; 0.193089;, + 0.573481; 0.263885;, + 0.573481; 0.322220;, + 0.520482; 0.322220;, + 0.520482; 0.263885;, + 0.664039; 0.622143;, + 0.628617; 0.627190;, + 0.588867; 0.409249;, + 0.641336; 0.401773;, + 0.732989; 0.622384;, + 0.697253; 0.620613;, + 0.699610; 0.399090;, + 0.752544; 0.401713;, + 0.765890; 0.627190;, + 0.732989; 0.622384;, + 0.752544; 0.401713;, + 0.810267; 0.410144;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;; + } //End of Mesh UV Coordinates + XSkinMeshHeader { + 1; + 3; + 9; + } + SkinWeights { + "Armature_noga4"; + 24; + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + 0.000000,-1.000000,-0.000000, 0.000000, + -1.404690,-1.430863, 0.883390, 1.000000;; + } //End of Armature_noga4 Skin Weights + SkinWeights { + "Armature_noga2"; + 24; + 216, + 217, + 218, + 219, + 244, + 245, + 246, + 247, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 1.641199,-1.448169, 0.881825, 1.000000;; + } //End of Armature_noga2 Skin Weights + SkinWeights { + "Armature_hvost"; + 56; + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 224, + 225, + 226, + 227, + 232, + 233, + 234, + 235; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.698127,-0.052851, 0.714020, 0.000000, + -0.710717,-0.171780, 0.682183, 0.000000, + 0.086601,-0.983717,-0.157487, 0.000000, + -1.399654,-0.200846, 1.150453, 1.000000;; + } //End of Armature_hvost Skin Weights + SkinWeights { + "Armature_sheya"; + 24; + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.997121,-0.075824,-0.000243, 0.000000, + 0.075644, 0.994519, 0.072177, 0.000000, + -0.005231,-0.071988, 0.997392, 0.000000, + -0.170866,-1.720121,-0.152821, 1.000000;; + } //End of Armature_sheya Skin Weights + SkinWeights { + "Armature_head"; + 224; + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.959864, 0.280464, 0.000000, + -0.000000,-0.280465, 0.959864, 0.000000, + -0.039910,-2.530474,-0.704059, 1.000000;; + } //End of Armature_head Skin Weights + SkinWeights { + "Armature_zubi"; + 24; + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.954399, 0.298535, 0.000000, + -0.000000,-0.298535, 0.954399, 0.000000, + -0.095552,-3.607529,-0.236531, 1.000000;; + } //End of Armature_zubi Skin Weights + SkinWeights { + "Armature_Body"; + 40; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.996529,-0.083252, 0.000000, + 0.000000, 0.083252, 0.996529, 0.000000, + -0.039910, 1.507776, 0.102992, 1.000000;; + } //End of Armature_Body Skin Weights + SkinWeights { + "Armature_noga3"; + 24; + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -1.404690,-1.429884,-0.864167, 1.000000;; + } //End of Armature_noga3 Skin Weights + SkinWeights { + "Armature_noga1"; + 24; + 220, + 221, + 222, + 223, + 228, + 229, + 230, + 231, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 1.641199,-1.466174,-0.824358, 1.000000;; + } //End of Armature_noga1 Skin Weights + } //End of Mesh Mesh + } //End of Cube +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 136; + 0;3; -19.739037, 0.216398, 0.218101;;, + 1;3; -19.739037, 0.216398, 0.218101;;, + 2;3; -19.739037, 0.216398, 0.218101;;, + 3;3; -19.739037, 0.216398, 0.218101;;, + 4;3; -19.739037, 0.216398, 0.218101;;, + 5;3; -19.739037, 0.216398, 0.218101;;, + 6;3; -19.739037, 0.216398, 0.218101;;, + 7;3; -19.739037, 0.216398, 0.218101;;, + 8;3; -19.739037, 0.216398, 0.218101;;, + 9;3; -19.739037, 0.216398, 0.218101;;, + 10;3; -19.739037, 0.216398, 0.218101;;, + 11;3; -19.739037, 0.216398, 0.218101;;, + 12;3; -19.739037, 0.216398, 0.218101;;, + 13;3; -19.739037, 0.216398, 0.218101;;, + 14;3; -19.739037, 0.216398, 0.218101;;, + 15;3; -19.739037, 0.216398, 0.218101;;, + 16;3; -19.739037, 0.216398, 0.218101;;, + 17;3; -19.739037, 0.216398, 0.218101;;, + 18;3; -19.739037, 0.216398, 0.218101;;, + 19;3; -19.739037, 0.216398, 0.218101;;, + 20;3; -19.739037, 0.216398, 0.218101;;, + 21;3; -19.739037, 0.216398, 0.218101;;, + 22;3; -19.739037, 0.216398, 0.218101;;, + 23;3; -19.739037, 0.216398, 0.218101;;, + 24;3; -19.739037, 0.216398, 0.218101;;, + 25;3; -19.739037, 0.216398, 0.218101;;, + 26;3; -19.739037, 0.216398, 0.218101;;, + 27;3; -19.739037, 0.216398, 0.218101;;, + 28;3; -19.739037, 0.216398, 0.218101;;, + 29;3; -19.739037, 0.216398, 0.218101;;, + 30;3; -19.739037, 0.216398, 0.218101;;, + 31;3; -19.739037, 0.216398, 0.218101;;, + 32;3; -19.739037, 0.216398, 0.218101;;, + 33;3; -19.739037, 0.216398, 0.218101;;, + 34;3; -19.739037, 0.216398, 0.218101;;, + 35;3; -19.739037, 0.216398, 0.218101;;, + 36;3; -19.739037, 0.216398, 0.218101;;, + 37;3; -19.739037, 0.216398, 0.218101;;, + 38;3; -19.739037, 0.216398, 0.218101;;, + 39;3; -19.739037, 0.216398, 0.218101;;, + 40;3; -19.739037, 0.216398, 0.218101;;, + 41;3; -19.739037, 0.216398, 0.218101;;, + 42;3; -19.739037, 0.216398, 0.218101;;, + 43;3; -19.739037, 0.216398, 0.218101;;, + 44;3; -19.739037, 0.216398, 0.218101;;, + 45;3; -19.739037, 0.216398, 0.218101;;, + 46;3; -19.739037, 0.216398, 0.218101;;, + 47;3; -19.739037, 0.216398, 0.218101;;, + 48;3; -19.739037, 0.216398, 0.218101;;, + 49;3; -19.739037, 0.216398, 0.218101;;, + 50;3; -19.739037, 0.216398, 0.218101;;, + 51;3; -19.739037, 0.216398, 0.218101;;, + 52;3; -19.739037, 0.216398, 0.218101;;, + 53;3; -19.739037, 0.216398, 0.218101;;, + 54;3; -19.739037, 0.216398, 0.218101;;, + 55;3; -19.739037, 0.216398, 0.218101;;, + 56;3; -19.739037, 0.216398, 0.218101;;, + 57;3; -19.739037, 0.216398, 0.218101;;, + 58;3; -19.739037, 0.216398, 0.218101;;, + 59;3; -19.739037, 0.216398, 0.218101;;, + 60;3; -19.739037, 0.216398, 0.218101;;, + 61;3; -19.739037, 0.216398, 0.218101;;, + 62;3; -19.739037, 0.216398, 0.218101;;, + 63;3; -19.739037, 0.216398, 0.218101;;, + 64;3; -19.739037, 0.216398, 0.218101;;, + 65;3; -19.739037, 0.216398, 0.218101;;, + 66;3; -19.739037, 0.216398, 0.218101;;, + 67;3; -19.739037, 0.216398, 0.218101;;, + 68;3; -19.739037, 0.216398, 0.218101;;, + 69;3; -19.739037, 0.216398, 0.218101;;, + 70;3; -19.739037, 0.216398, 0.218101;;, + 71;3; -19.739037, 0.216398, 0.218101;;, + 72;3; -19.739037, 0.216398, 0.218101;;, + 73;3; -19.739037, 0.216398, 0.218101;;, + 74;3; -19.739037, 0.216398, 0.218101;;, + 75;3; -19.739037, 0.216398, 0.218101;;, + 76;3; -19.739037, 0.216398, 0.218101;;, + 77;3; -19.739037, 0.216398, 0.218101;;, + 78;3; -19.739037, 0.216398, 0.218101;;, + 79;3; -19.739037, 0.216398, 0.218101;;, + 80;3; -19.739037, 0.216398, 0.218101;;, + 81;3; -19.739037, 0.216398, 0.218101;;, + 82;3; -19.739037, 0.216398, 0.218101;;, + 83;3; -19.739037, 0.216398, 0.218101;;, + 84;3; -19.739037, 0.216398, 0.218101;;, + 85;3; -19.739037, 0.216398, 0.218101;;, + 86;3; -19.739037, 0.216398, 0.218101;;, + 87;3; -19.739037, 0.216398, 0.218101;;, + 88;3; -19.739037, 0.216398, 0.218101;;, + 89;3; -19.739037, 0.216398, 0.218101;;, + 90;3; -19.739037, 0.216398, 0.218101;;, + 91;3; -19.739037, 0.216398, 0.218101;;, + 92;3; -19.739037, 0.216398, 0.218101;;, + 93;3; -19.739037, 0.216398, 0.218101;;, + 94;3; -19.739037, 0.216398, 0.218101;;, + 95;3; -19.739037, 0.216398, 0.218101;;, + 96;3; -19.739037, 0.216398, 0.218101;;, + 97;3; -19.739037, 0.216398, 0.218101;;, + 98;3; -19.739037, 0.216398, 0.218101;;, + 99;3; -19.739037, 0.216398, 0.218101;;, + 100;3; -19.739037, 0.216398, 0.218101;;, + 101;3; -19.739037, 0.216398, 0.218101;;, + 102;3; -19.739037, 0.216398, 0.218101;;, + 103;3; -19.739037, 0.216398, 0.218101;;, + 104;3; -19.739037, 0.216398, 0.218101;;, + 105;3; -19.739037, 0.216398, 0.218101;;, + 106;3; -19.739037, 0.216398, 0.218101;;, + 107;3; -19.739037, 0.216398, 0.218101;;, + 108;3; -19.739037, 0.216398, 0.218101;;, + 109;3; -19.739037, 0.216398, 0.218101;;, + 110;3; -19.739037, 0.216398, 0.218101;;, + 111;3; -19.739037, 0.216398, 0.218101;;, + 112;3; -19.739037, 0.216398, 0.218101;;, + 113;3; -19.739037, 0.216398, 0.218101;;, + 114;3; -19.739037, 0.216398, 0.218101;;, + 115;3; -19.739037, 0.216398, 0.218101;;, + 116;3; -19.739037, 0.216398, 0.218101;;, + 117;3; -19.739037, 0.216398, 0.218101;;, + 118;3; -19.739037, 0.216398, 0.218101;;, + 119;3; -19.739037, 0.216398, 0.218101;;, + 120;3; -19.739037, 0.216398, 0.218101;;, + 121;3; -19.739037, 0.216398, 0.218101;;, + 122;3; -19.739037, 0.216398, 0.218101;;, + 123;3; -19.739037, 0.216398, 0.218101;;, + 124;3; -19.739037, 0.216398, 0.218101;;, + 125;3; -19.739037, 0.216398, 0.218101;;, + 126;3; -19.739037, 0.216398, 0.218101;;, + 127;3; -19.739037, 0.216398, 0.218101;;, + 128;3; -19.739037, 0.216398, 0.218101;;, + 129;3; -19.739037, 0.216398, 0.218101;;, + 130;3; -19.739037, 0.216398, 0.218101;;, + 131;3; -19.739037, 0.216398, 0.218101;;, + 132;3; -19.739037, 0.216398, 0.218101;;, + 133;3; -19.739037, 0.216398, 0.218101;;, + 134;3; -19.739037, 0.216398, 0.218101;;, + 135;3; -19.739037, 0.216398, 0.218101;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 136; + 0;3; 3.749036, 3.749036, 3.749036;;, + 1;3; 3.749036, 3.749036, 3.749036;;, + 2;3; 3.749036, 3.749036, 3.749036;;, + 3;3; 3.749036, 3.749036, 3.749036;;, + 4;3; 3.749036, 3.749036, 3.749036;;, + 5;3; 3.749036, 3.749036, 3.749036;;, + 6;3; 3.749036, 3.749036, 3.749036;;, + 7;3; 3.749036, 3.749036, 3.749036;;, + 8;3; 3.749036, 3.749036, 3.749036;;, + 9;3; 3.749036, 3.749036, 3.749036;;, + 10;3; 3.749036, 3.749036, 3.749036;;, + 11;3; 3.749036, 3.749036, 3.749036;;, + 12;3; 3.749036, 3.749036, 3.749036;;, + 13;3; 3.749036, 3.749036, 3.749036;;, + 14;3; 3.749036, 3.749036, 3.749036;;, + 15;3; 3.749036, 3.749036, 3.749036;;, + 16;3; 3.749036, 3.749036, 3.749036;;, + 17;3; 3.749036, 3.749036, 3.749036;;, + 18;3; 3.749036, 3.749036, 3.749036;;, + 19;3; 3.749036, 3.749036, 3.749036;;, + 20;3; 3.749036, 3.749036, 3.749036;;, + 21;3; 3.749036, 3.749036, 3.749036;;, + 22;3; 3.749036, 3.749036, 3.749036;;, + 23;3; 3.749036, 3.749036, 3.749036;;, + 24;3; 3.749036, 3.749036, 3.749036;;, + 25;3; 3.749036, 3.749036, 3.749036;;, + 26;3; 3.749036, 3.749036, 3.749036;;, + 27;3; 3.749036, 3.749036, 3.749036;;, + 28;3; 3.749036, 3.749036, 3.749036;;, + 29;3; 3.749036, 3.749036, 3.749036;;, + 30;3; 3.749036, 3.749036, 3.749036;;, + 31;3; 3.749036, 3.749036, 3.749036;;, + 32;3; 3.749036, 3.749036, 3.749036;;, + 33;3; 3.749036, 3.749036, 3.749036;;, + 34;3; 3.749036, 3.749036, 3.749036;;, + 35;3; 3.749036, 3.749036, 3.749036;;, + 36;3; 3.749036, 3.749036, 3.749036;;, + 37;3; 3.749036, 3.749036, 3.749036;;, + 38;3; 3.749036, 3.749036, 3.749036;;, + 39;3; 3.749036, 3.749036, 3.749036;;, + 40;3; 3.749036, 3.749036, 3.749036;;, + 41;3; 3.749036, 3.749036, 3.749036;;, + 42;3; 3.749036, 3.749036, 3.749036;;, + 43;3; 3.749036, 3.749036, 3.749036;;, + 44;3; 3.749036, 3.749036, 3.749036;;, + 45;3; 3.749036, 3.749036, 3.749036;;, + 46;3; 3.749036, 3.749036, 3.749036;;, + 47;3; 3.749036, 3.749036, 3.749036;;, + 48;3; 3.749036, 3.749036, 3.749036;;, + 49;3; 3.749036, 3.749036, 3.749036;;, + 50;3; 3.749036, 3.749036, 3.749036;;, + 51;3; 3.749036, 3.749036, 3.749036;;, + 52;3; 3.749036, 3.749036, 3.749036;;, + 53;3; 3.749036, 3.749036, 3.749036;;, + 54;3; 3.749036, 3.749036, 3.749036;;, + 55;3; 3.749036, 3.749036, 3.749036;;, + 56;3; 3.749036, 3.749036, 3.749036;;, + 57;3; 3.749036, 3.749036, 3.749036;;, + 58;3; 3.749036, 3.749036, 3.749036;;, + 59;3; 3.749036, 3.749036, 3.749036;;, + 60;3; 3.749036, 3.749036, 3.749036;;, + 61;3; 3.749036, 3.749036, 3.749036;;, + 62;3; 3.749036, 3.749036, 3.749036;;, + 63;3; 3.749036, 3.749036, 3.749036;;, + 64;3; 3.749036, 3.749036, 3.749036;;, + 65;3; 3.749036, 3.749036, 3.749036;;, + 66;3; 3.749036, 3.749036, 3.749036;;, + 67;3; 3.749036, 3.749036, 3.749036;;, + 68;3; 3.749036, 3.749036, 3.749036;;, + 69;3; 3.749036, 3.749036, 3.749036;;, + 70;3; 3.749036, 3.749036, 3.749036;;, + 71;3; 3.749036, 3.749036, 3.749036;;, + 72;3; 3.749036, 3.749036, 3.749036;;, + 73;3; 3.749036, 3.749036, 3.749036;;, + 74;3; 3.749036, 3.749036, 3.749036;;, + 75;3; 3.749036, 3.749036, 3.749036;;, + 76;3; 3.749036, 3.749036, 3.749036;;, + 77;3; 3.749036, 3.749036, 3.749036;;, + 78;3; 3.749036, 3.749036, 3.749036;;, + 79;3; 3.749036, 3.749036, 3.749036;;, + 80;3; 3.749036, 3.749036, 3.749036;;, + 81;3; 3.749036, 3.749036, 3.749036;;, + 82;3; 3.749036, 3.749036, 3.749036;;, + 83;3; 3.749036, 3.749036, 3.749036;;, + 84;3; 3.749036, 3.749036, 3.749036;;, + 85;3; 3.749036, 3.749036, 3.749036;;, + 86;3; 3.749036, 3.749036, 3.749036;;, + 87;3; 3.749036, 3.749036, 3.749036;;, + 88;3; 3.749036, 3.749036, 3.749036;;, + 89;3; 3.749036, 3.749036, 3.749036;;, + 90;3; 3.749036, 3.749036, 3.749036;;, + 91;3; 3.749036, 3.749036, 3.749036;;, + 92;3; 3.749036, 3.749036, 3.749036;;, + 93;3; 3.749036, 3.749036, 3.749036;;, + 94;3; 3.749036, 3.749036, 3.749036;;, + 95;3; 3.749036, 3.749036, 3.749036;;, + 96;3; 3.749036, 3.749036, 3.749036;;, + 97;3; 3.749036, 3.749036, 3.749036;;, + 98;3; 3.749036, 3.749036, 3.749036;;, + 99;3; 3.749036, 3.749036, 3.749036;;, + 100;3; 3.749036, 3.749036, 3.749036;;, + 101;3; 3.749036, 3.749036, 3.749036;;, + 102;3; 3.749036, 3.749036, 3.749036;;, + 103;3; 3.749036, 3.749036, 3.749036;;, + 104;3; 3.749036, 3.749036, 3.749036;;, + 105;3; 3.749036, 3.749036, 3.749036;;, + 106;3; 3.749036, 3.749036, 3.749036;;, + 107;3; 3.749036, 3.749036, 3.749036;;, + 108;3; 3.749036, 3.749036, 3.749036;;, + 109;3; 3.749036, 3.749036, 3.749036;;, + 110;3; 3.749036, 3.749036, 3.749036;;, + 111;3; 3.749036, 3.749036, 3.749036;;, + 112;3; 3.749036, 3.749036, 3.749036;;, + 113;3; 3.749036, 3.749036, 3.749036;;, + 114;3; 3.749036, 3.749036, 3.749036;;, + 115;3; 3.749036, 3.749036, 3.749036;;, + 116;3; 3.749036, 3.749036, 3.749036;;, + 117;3; 3.749036, 3.749036, 3.749036;;, + 118;3; 3.749036, 3.749036, 3.749036;;, + 119;3; 3.749036, 3.749036, 3.749036;;, + 120;3; 3.749036, 3.749036, 3.749036;;, + 121;3; 3.749036, 3.749036, 3.749036;;, + 122;3; 3.749036, 3.749036, 3.749036;;, + 123;3; 3.749036, 3.749036, 3.749036;;, + 124;3; 3.749036, 3.749036, 3.749036;;, + 125;3; 3.749036, 3.749036, 3.749036;;, + 126;3; 3.749036, 3.749036, 3.749036;;, + 127;3; 3.749036, 3.749036, 3.749036;;, + 128;3; 3.749036, 3.749036, 3.749036;;, + 129;3; 3.749036, 3.749036, 3.749036;;, + 130;3; 3.749036, 3.749036, 3.749036;;, + 131;3; 3.749036, 3.749036, 3.749036;;, + 132;3; 3.749036, 3.749036, 3.749036;;, + 133;3; 3.749036, 3.749036, 3.749036;;, + 134;3; 3.749036, 3.749036, 3.749036;;, + 135;3; 3.749036, 3.749036, 3.749036;;; + } + } + Animation { + {Armature_Body} + AnimationKey { //Position + 2; + 136; + 0;3; 5.378092,-1.647068, 2.876912;;, + 1;3; 5.378092,-1.647068, 2.876912;;, + 2;3; 5.378092,-1.647068, 2.876912;;, + 3;3; 5.378092,-1.647068, 2.876912;;, + 4;3; 5.378092,-1.647068, 2.876912;;, + 5;3; 5.378092,-1.647068, 2.876912;;, + 6;3; 5.378092,-1.647068, 2.876912;;, + 7;3; 5.378092,-1.647068, 2.876912;;, + 8;3; 5.378092,-1.647068, 2.876912;;, + 9;3; 5.378092,-1.647068, 2.876912;;, + 10;3; 5.378092,-1.647068, 2.876912;;, + 11;3; 5.378092,-1.647068, 2.876912;;, + 12;3; 5.378092,-1.647068, 2.876912;;, + 13;3; 5.378092,-1.647068, 2.876912;;, + 14;3; 5.378092,-1.647068, 2.876912;;, + 15;3; 5.378092,-1.647068, 2.876912;;, + 16;3; 5.378092,-1.647068, 2.876912;;, + 17;3; 5.378092,-1.647068, 2.876912;;, + 18;3; 5.378092,-1.647068, 2.876912;;, + 19;3; 5.378092,-1.647068, 2.876912;;, + 20;3; 5.378092,-1.647068, 2.876912;;, + 21;3; 5.378092,-1.647068, 2.876912;;, + 22;3; 5.378092,-1.647068, 2.876912;;, + 23;3; 5.378092,-1.647068, 2.876912;;, + 24;3; 5.378092,-1.647068, 2.876912;;, + 25;3; 5.378092,-1.647068, 2.876912;;, + 26;3; 5.378092,-1.647068, 2.876912;;, + 27;3; 5.378092,-1.647068, 2.876912;;, + 28;3; 5.378092,-1.647068, 2.876912;;, + 29;3; 5.378092,-1.647068, 2.876912;;, + 30;3; 5.378092,-1.647068, 2.876912;;, + 31;3; 5.378092,-1.647068, 2.876912;;, + 32;3; 5.378092,-1.647068, 2.876912;;, + 33;3; 5.378092,-1.647068, 2.876912;;, + 34;3; 5.378092,-1.647068, 2.876912;;, + 35;3; 5.378092,-1.647068, 2.876912;;, + 36;3; 5.378092,-1.647068, 2.882412;;, + 37;3; 5.378092,-1.647068, 2.898830;;, + 38;3; 5.378092,-1.647068, 2.924675;;, + 39;3; 5.378092,-1.647068, 2.956158;;, + 40;3; 5.378092,-1.647068, 2.987640;;, + 41;3; 5.378092,-1.647068, 3.013484;;, + 42;3; 5.378092,-1.647068, 3.029901;;, + 43;3; 5.378092,-1.647068, 3.035401;;, + 44;3; 5.378092,-1.647068, 3.031038;;, + 45;3; 5.378092,-1.647068, 3.017950;;, + 46;3; 5.378092,-1.647068, 2.996935;;, + 47;3; 5.378092,-1.647068, 2.970201;;, + 48;3; 5.378092,-1.647068, 2.941358;;, + 49;3; 5.378092,-1.647068, 2.914623;;, + 50;3; 5.378092,-1.647068, 2.893608;;, + 51;3; 5.378092,-1.647068, 2.880520;;, + 52;3; 5.378092,-1.647068, 2.876157;;, + 53;3; 5.378092,-1.647068, 2.886195;;, + 54;3; 5.378092,-1.647068, 2.915410;;, + 55;3; 5.378092,-1.647068, 2.957406;;, + 56;3; 5.378092,-1.647068, 2.999403;;, + 57;3; 5.378092,-1.647068, 3.028617;;, + 58;3; 5.378092,-1.647068, 3.038655;;, + 59;3; 5.378092,-1.647068, 3.031317;;, + 60;3; 5.378092,-1.647068, 3.009612;;, + 61;3; 5.378092,-1.647068, 2.976541;;, + 62;3; 5.378092,-1.647069, 2.939030;;, + 63;3; 5.378092,-1.647069, 2.905957;;, + 64;3; 5.378092,-1.647068, 2.884250;;, + 65;3; 5.378092,-1.647068, 2.876912;;, + 66;3; 5.378092,-1.647068, 2.876912;;, + 67;3; 5.378092,-1.647068, 2.876912;;, + 68;3; 5.378092,-1.647068, 2.876912;;, + 69;3; 5.378092,-1.647068, 2.876912;;, + 70;3; 5.378092,-1.647068, 2.876912;;, + 71;3; 5.378092,-1.647068, 2.876912;;, + 72;3; 5.378092,-1.647068, 2.876912;;, + 73;3; 5.378092,-1.647068, 2.876912;;, + 74;3; 5.378092,-1.647068, 2.876912;;, + 75;3; 5.378092,-1.647068, 2.876912;;, + 76;3; 5.378092,-1.647068, 2.876912;;, + 77;3; 5.378092,-1.647068, 2.876912;;, + 78;3; 5.378092,-1.647068, 2.876912;;, + 79;3; 5.378092,-1.647068, 2.876912;;, + 80;3; 5.378092,-1.647068, 2.876912;;, + 81;3; 5.378092,-1.647068, 2.876912;;, + 82;3; 5.378092,-1.647068, 2.876912;;, + 83;3; 5.378092,-1.647068, 2.876912;;, + 84;3; 5.378092,-1.647068, 2.876912;;, + 85;3; 5.378092,-1.647068, 2.876912;;, + 86;3; 5.378092,-1.647068, 2.876912;;, + 87;3; 5.378092,-1.647068, 2.876912;;, + 88;3; 5.378092,-1.647068, 2.876912;;, + 89;3; 5.378092,-1.647068, 2.876912;;, + 90;3; 5.378092,-1.647068, 2.876912;;, + 91;3; 5.378092,-1.647068, 2.876912;;, + 92;3; 5.378092,-1.647068, 2.876912;;, + 93;3; 5.378092,-1.647068, 2.876912;;, + 94;3; 5.378092,-1.647068, 2.876912;;, + 95;3; 5.378092,-1.647068, 2.876912;;, + 96;3; 5.378092,-1.647068, 2.876912;;, + 97;3; 5.378092,-1.647068, 2.876912;;, + 98;3; 5.378092,-1.647068, 2.876912;;, + 99;3; 5.378092,-1.647068, 2.876912;;, + 100;3; 5.378092,-1.647068, 2.876912;;, + 101;3; 5.378092,-1.647068, 2.876912;;, + 102;3; 5.378092,-1.647068, 2.876912;;, + 103;3; 5.378092,-1.647068, 2.876912;;, + 104;3; 5.378092,-1.647068, 2.876912;;, + 105;3; 5.378092,-1.647068, 2.876912;;, + 106;3; 5.378092,-1.647068, 2.882412;;, + 107;3; 5.378092,-1.647068, 2.898830;;, + 108;3; 5.378092,-1.647068, 2.924675;;, + 109;3; 5.378092,-1.647068, 2.956157;;, + 110;3; 5.378092,-1.647068, 2.987640;;, + 111;3; 5.378092,-1.647068, 3.013484;;, + 112;3; 5.378092,-1.647068, 3.029901;;, + 113;3; 5.378092,-1.647068, 3.035401;;, + 114;3; 5.378092,-1.647068, 3.030918;;, + 115;3; 5.378092,-1.647068, 3.017950;;, + 116;3; 5.378092,-1.647068, 2.999916;;, + 117;3; 5.378092,-1.647068, 2.975391;;, + 118;3; 5.378092,-1.647068, 2.946747;;, + 119;3; 5.378092,-1.647068, 2.918379;;, + 120;3; 5.378092,-1.647068, 2.895288;;, + 121;3; 5.378092,-1.647068, 2.880877;;, + 122;3; 5.378092,-1.647068, 2.876157;;, + 123;3; 5.378092,-1.647068, 2.886195;;, + 124;3; 5.378092,-1.647068, 2.915409;;, + 125;3; 5.378092,-1.647068, 2.957406;;, + 126;3; 5.378092,-1.647068, 2.999403;;, + 127;3; 5.378092,-1.647068, 3.028617;;, + 128;3; 5.378092,-1.647068, 3.038655;;, + 129;3; 5.378092,-1.647068, 3.031318;;, + 130;3; 5.378092,-1.647069, 3.009614;;, + 131;3; 5.378092,-1.647069, 2.976547;;, + 132;3; 5.378092,-1.647069, 2.939038;;, + 133;3; 5.378092,-1.647069, 2.905964;;, + 134;3; 5.378092,-1.647069, 2.884252;;, + 135;3; 5.378092,-1.647068, 2.876912;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 1;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 2;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 3;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 4;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 5;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 6;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 7;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 8;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 9;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 10;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 11;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 12;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 13;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 14;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 15;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 16;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 17;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 18;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 19;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 20;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 21;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 22;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 23;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 24;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 25;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 26;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 27;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 28;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 29;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 30;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 31;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 32;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 33;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 34;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 35;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 36;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 37;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 38;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 39;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 40;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 41;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 42;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 43;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 44;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 45;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 46;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 47;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 48;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 49;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 50;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 51;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 52;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 53;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 54;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 55;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 56;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 57;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 58;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 59;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 60;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 61;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 62;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 63;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 64;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 65;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 66;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 67;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 68;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 69;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 70;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 71;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 72;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 73;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 74;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 75;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 76;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 77;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 78;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 79;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 80;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 81;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 82;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 83;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 84;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 85;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 86;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 87;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 88;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 89;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 90;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 91;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 92;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 93;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 94;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 95;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 96;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 97;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 98;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 99;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 100;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 101;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 102;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 103;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 104;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 105;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 106;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 107;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 108;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 109;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 110;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 111;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 112;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 113;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 114;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 115;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 116;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 117;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 118;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 119;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 120;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 121;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 122;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 123;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 124;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 125;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 126;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 127;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 128;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 129;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 130;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 131;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 132;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 133;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 134;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 135;4; -0.999132, 0.041662, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 136; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga3} + AnimationKey { //Position + 2; + 136; + 0;3; 0.824256,-0.011078,-1.204985;;, + 1;3; 0.824256,-0.011078,-1.204985;;, + 2;3; 0.824256,-0.011078,-1.204985;;, + 3;3; 0.824256,-0.011078,-1.204985;;, + 4;3; 0.824256,-0.011078,-1.204985;;, + 5;3; 0.824256,-0.011078,-1.204985;;, + 6;3; 0.824256,-0.011078,-1.204985;;, + 7;3; 0.824256,-0.011078,-1.204985;;, + 8;3; 0.824256,-0.011078,-1.204985;;, + 9;3; 0.824256,-0.011078,-1.204985;;, + 10;3; 0.824256,-0.011078,-1.204985;;, + 11;3; 0.824256,-0.011078,-1.204985;;, + 12;3; 0.824256,-0.011078,-1.204985;;, + 13;3; 0.824256,-0.011078,-1.204985;;, + 14;3; 0.824256,-0.011078,-1.204985;;, + 15;3; 0.824256,-0.011078,-1.204985;;, + 16;3; 0.824256,-0.011078,-1.204985;;, + 17;3; 0.824256,-0.011078,-1.204985;;, + 18;3; 0.824256,-0.011078,-1.204985;;, + 19;3; 0.824256,-0.011078,-1.204985;;, + 20;3; 0.824256,-0.011078,-1.204985;;, + 21;3; 0.824256,-0.011078,-1.204985;;, + 22;3; 0.824256,-0.011078,-1.204985;;, + 23;3; 0.824256,-0.011078,-1.204985;;, + 24;3; 0.824256,-0.011078,-1.204985;;, + 25;3; 0.824256,-0.011078,-1.204985;;, + 26;3; 0.824256,-0.011078,-1.204985;;, + 27;3; 0.824256,-0.011078,-1.204985;;, + 28;3; 0.824256,-0.011078,-1.204985;;, + 29;3; 0.824256,-0.011078,-1.204985;;, + 30;3; 0.824256,-0.011078,-1.204985;;, + 31;3; 0.824256,-0.011078,-1.204985;;, + 32;3; 0.824256,-0.011078,-1.204985;;, + 33;3; 0.824256,-0.011078,-1.204985;;, + 34;3; 0.824256,-0.011078,-1.204985;;, + 35;3; 0.824256,-0.011078,-1.204985;;, + 36;3; 0.824256,-0.011078,-1.204985;;, + 37;3; 0.824256,-0.011078,-1.204985;;, + 38;3; 0.824256,-0.011078,-1.204985;;, + 39;3; 0.824256,-0.011078,-1.204985;;, + 40;3; 0.824256,-0.011078,-1.204985;;, + 41;3; 0.824256,-0.011078,-1.204985;;, + 42;3; 0.824256,-0.011078,-1.204985;;, + 43;3; 0.824256,-0.011078,-1.204985;;, + 44;3; 0.824256,-0.011078,-1.204985;;, + 45;3; 0.824256,-0.011078,-1.204985;;, + 46;3; 0.824256,-0.011078,-1.204985;;, + 47;3; 0.824256,-0.011078,-1.204985;;, + 48;3; 0.824256,-0.011078,-1.204985;;, + 49;3; 0.824256,-0.011078,-1.204985;;, + 50;3; 0.824256,-0.011078,-1.204985;;, + 51;3; 0.824256,-0.011078,-1.204985;;, + 52;3; 0.824256,-0.011078,-1.204985;;, + 53;3; 0.824256,-0.011078,-1.204985;;, + 54;3; 0.824256,-0.011078,-1.204985;;, + 55;3; 0.824256,-0.011078,-1.204985;;, + 56;3; 0.824256,-0.011078,-1.204985;;, + 57;3; 0.824256,-0.011078,-1.204985;;, + 58;3; 0.824256,-0.011078,-1.204985;;, + 59;3; 0.824256,-0.011078,-1.204985;;, + 60;3; 0.824256,-0.011078,-1.204985;;, + 61;3; 0.824256,-0.011078,-1.204985;;, + 62;3; 0.824256,-0.011078,-1.204985;;, + 63;3; 0.824256,-0.011078,-1.204985;;, + 64;3; 0.824256,-0.011078,-1.204985;;, + 65;3; 0.824256,-0.011078,-1.204985;;, + 66;3; 0.824256,-0.011078,-1.204985;;, + 67;3; 0.824256,-0.011078,-1.204985;;, + 68;3; 0.824256,-0.011078,-1.204985;;, + 69;3; 0.824256,-0.011078,-1.204985;;, + 70;3; 0.824256,-0.011078,-1.204985;;, + 71;3; 0.824256,-0.011078,-1.204985;;, + 72;3; 0.824256,-0.011078,-1.204985;;, + 73;3; 0.824256,-0.011078,-1.204985;;, + 74;3; 0.824256,-0.011078,-1.204985;;, + 75;3; 0.824256,-0.011078,-1.204985;;, + 76;3; 0.824256,-0.011078,-1.204985;;, + 77;3; 0.824256,-0.011078,-1.204985;;, + 78;3; 0.824256,-0.011078,-1.204985;;, + 79;3; 0.824256,-0.011078,-1.204985;;, + 80;3; 0.824256,-0.011078,-1.204985;;, + 81;3; 0.824256,-0.011078,-1.204985;;, + 82;3; 0.824256,-0.011078,-1.204985;;, + 83;3; 0.824256,-0.011078,-1.204985;;, + 84;3; 0.824256,-0.011078,-1.204985;;, + 85;3; 0.824256,-0.011078,-1.204985;;, + 86;3; 0.824256,-0.011078,-1.204985;;, + 87;3; 0.824256,-0.011078,-1.204985;;, + 88;3; 0.824256,-0.011078,-1.204985;;, + 89;3; 0.824256,-0.011078,-1.204985;;, + 90;3; 0.824256,-0.011078,-1.204985;;, + 91;3; 0.824256,-0.011078,-1.204985;;, + 92;3; 0.824256,-0.011078,-1.204985;;, + 93;3; 0.824256,-0.011078,-1.204985;;, + 94;3; 0.824256,-0.011078,-1.204985;;, + 95;3; 0.824256,-0.011078,-1.204985;;, + 96;3; 0.824256,-0.011078,-1.204985;;, + 97;3; 0.824256,-0.011078,-1.204985;;, + 98;3; 0.824256,-0.011078,-1.204985;;, + 99;3; 0.824256,-0.011078,-1.204985;;, + 100;3; 0.824256,-0.011078,-1.204985;;, + 101;3; 0.824256,-0.011078,-1.204985;;, + 102;3; 0.824256,-0.011078,-1.204985;;, + 103;3; 0.824256,-0.011078,-1.204985;;, + 104;3; 0.824256,-0.011078,-1.204985;;, + 105;3; 0.824256,-0.011078,-1.204985;;, + 106;3; 0.824256,-0.011078,-1.204985;;, + 107;3; 0.824256,-0.011078,-1.204985;;, + 108;3; 0.824256,-0.011078,-1.204985;;, + 109;3; 0.824256,-0.011078,-1.204985;;, + 110;3; 0.824256,-0.011078,-1.204985;;, + 111;3; 0.824256,-0.011078,-1.204985;;, + 112;3; 0.824256,-0.011078,-1.204985;;, + 113;3; 0.824256,-0.011078,-1.204985;;, + 114;3; 0.824256,-0.011078,-1.204985;;, + 115;3; 0.824256,-0.011078,-1.204985;;, + 116;3; 0.824256,-0.011078,-1.204985;;, + 117;3; 0.824256,-0.011078,-1.204985;;, + 118;3; 0.824256,-0.011078,-1.204985;;, + 119;3; 0.824256,-0.011078,-1.204985;;, + 120;3; 0.824256,-0.011078,-1.204985;;, + 121;3; 0.824256,-0.011078,-1.204985;;, + 122;3; 0.824256,-0.011078,-1.204985;;, + 123;3; 0.824256,-0.011078,-1.204985;;, + 124;3; 0.824256,-0.011078,-1.204985;;, + 125;3; 0.824256,-0.011078,-1.204985;;, + 126;3; 0.824256,-0.011078,-1.204985;;, + 127;3; 0.824256,-0.011078,-1.204985;;, + 128;3; 0.824256,-0.011078,-1.204985;;, + 129;3; 0.824256,-0.011078,-1.204985;;, + 130;3; 0.824256,-0.011078,-1.204985;;, + 131;3; 0.824256,-0.011078,-1.204985;;, + 132;3; 0.824256,-0.011078,-1.204985;;, + 133;3; 0.824256,-0.011078,-1.204985;;, + 134;3; 0.824256,-0.011078,-1.204985;;, + 135;3; 0.824256,-0.011078,-1.204985;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.471419,-0.525048, 0.471419,-0.525048;;, + 37;4; -0.449585,-0.538928, 0.449585,-0.538928;;, + 38;4; -0.415216,-0.560776, 0.415216,-0.560775;;, + 39;4; -0.373354,-0.587385, 0.373354,-0.587385;;, + 40;4; -0.331496,-0.613991, 0.331496,-0.613991;;, + 41;4; -0.297134,-0.635832, 0.297134,-0.635832;;, + 42;4; -0.275307,-0.649706, 0.275307,-0.649706;;, + 43;4; -0.267994,-0.654354, 0.267994,-0.654354;;, + 44;4; -0.271164,-0.651497, 0.271164,-0.651497;;, + 45;4; -0.280754,-0.642868, 0.280754,-0.642868;;, + 46;4; -0.296731,-0.628532, 0.296731,-0.628532;;, + 47;4; -0.318782,-0.608809, 0.318782,-0.608809;;, + 48;4; -0.346239,-0.584351, 0.346239,-0.584351;;, + 49;4; -0.378024,-0.556181, 0.378024,-0.556181;;, + 50;4; -0.412665,-0.525678, 0.412665,-0.525678;;, + 51;4; -0.448397,-0.494478, 0.448398,-0.494477;;, + 52;4; -0.483345,-0.464307, 0.483345,-0.464307;;, + 53;4; -0.515728,-0.436788, 0.515728,-0.436788;;, + 54;4; -0.544052,-0.413272, 0.544052,-0.413272;;, + 55;4; -0.567204,-0.394746, 0.567204,-0.394746;;, + 56;4; -0.584482,-0.381824, 0.584482,-0.381824;;, + 57;4; -0.595539,-0.374790, 0.595539,-0.374790;;, + 58;4; -0.600308,-0.373672, 0.600308,-0.373671;;, + 59;4; -0.596120,-0.381769, 0.596120,-0.381769;;, + 60;4; -0.580435,-0.402142, 0.580435,-0.402142;;, + 61;4; -0.555540,-0.432097, 0.555540,-0.432097;;, + 62;4; -0.526829,-0.465563, 0.526829,-0.465563;;, + 63;4; -0.501294,-0.494832, 0.501294,-0.494832;;, + 64;4; -0.484447,-0.513952, 0.484447,-0.513952;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 78;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 79;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 80;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 81;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 82;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 83;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 84;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 85;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 86;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 87;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 88;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 89;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 90;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 91;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 92;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 93;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 94;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 95;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 96;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 97;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 98;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 99;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.463301,-0.526860, 0.463301,-0.526859;;, + 107;4; -0.417252,-0.546134, 0.417252,-0.546134;;, + 108;4; -0.344789,-0.576451, 0.344789,-0.576451;;, + 109;4; -0.256546,-0.613358, 0.256546,-0.613358;;, + 110;4; -0.168312,-0.650257, 0.168312,-0.650257;;, + 111;4; -0.095870,-0.680556, 0.095870,-0.680556;;, + 112;4; -0.049840,-0.699813, 0.049840,-0.699813;;, + 113;4; -0.034414,-0.706269, 0.034414,-0.706269;;, + 114;4; -0.037872,-0.703537, 0.037872,-0.703537;;, + 115;4; -0.057302,-0.688805, 0.057302,-0.688805;;, + 116;4; -0.091541,-0.663016, 0.091541,-0.663016;;, + 117;4; -0.137489,-0.628455, 0.137490,-0.628455;;, + 118;4; -0.191915,-0.587762, 0.191915,-0.587762;;, + 119;4; -0.251696,-0.543478, 0.251696,-0.543478;;, + 120;4; -0.313906,-0.497971, 0.313906,-0.497971;;, + 121;4; -0.375876,-0.453394, 0.375877,-0.453394;;, + 122;4; -0.435236,-0.411649, 0.435236,-0.411649;;, + 123;4; -0.489928,-0.374380, 0.489928,-0.374380;;, + 124;4; -0.538212,-0.342968, 0.538212,-0.342968;;, + 125;4; -0.578647,-0.318547, 0.578647,-0.318547;;, + 126;4; -0.610074,-0.302025, 0.610074,-0.302024;;, + 127;4; -0.631585,-0.294102, 0.631585,-0.294102;;, + 128;4; -0.642492,-0.295303, 0.642492,-0.295303;;, + 129;4; -0.639410,-0.310234, 0.639410,-0.310233;;, + 130;4; -0.619509,-0.342661, 0.619509,-0.342661;;, + 131;4; -0.585929,-0.388513, 0.585929,-0.388513;;, + 132;4; -0.546281,-0.438858, 0.546281,-0.438858;;, + 133;4; -0.510571,-0.482497, 0.510571,-0.482497;;, + 134;4; -0.486826,-0.510862, 0.486826,-0.510862;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 136; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga1} + AnimationKey { //Position + 2; + 136; + 0;3; 0.784448, 3.021216,-1.494725;;, + 1;3; 0.784448, 3.021216,-1.494725;;, + 2;3; 0.784448, 3.021216,-1.494725;;, + 3;3; 0.784448, 3.021216,-1.494725;;, + 4;3; 0.784448, 3.021216,-1.494725;;, + 5;3; 0.784448, 3.021216,-1.494725;;, + 6;3; 0.784448, 3.021216,-1.494725;;, + 7;3; 0.784448, 3.021216,-1.494725;;, + 8;3; 0.784448, 3.021216,-1.494725;;, + 9;3; 0.784448, 3.021216,-1.494725;;, + 10;3; 0.784448, 3.021216,-1.494725;;, + 11;3; 0.784448, 3.021216,-1.494725;;, + 12;3; 0.784448, 3.021216,-1.494725;;, + 13;3; 0.784448, 3.021216,-1.494725;;, + 14;3; 0.784448, 3.021216,-1.494725;;, + 15;3; 0.784448, 3.021216,-1.494725;;, + 16;3; 0.784448, 3.021216,-1.494725;;, + 17;3; 0.784448, 3.021216,-1.494725;;, + 18;3; 0.784448, 3.021216,-1.494725;;, + 19;3; 0.784448, 3.021216,-1.494725;;, + 20;3; 0.784448, 3.021216,-1.494725;;, + 21;3; 0.784448, 3.021216,-1.494725;;, + 22;3; 0.784448, 3.021216,-1.494725;;, + 23;3; 0.784448, 3.021216,-1.494725;;, + 24;3; 0.784448, 3.021216,-1.494725;;, + 25;3; 0.784448, 3.021216,-1.494725;;, + 26;3; 0.784448, 3.021216,-1.494725;;, + 27;3; 0.784448, 3.021216,-1.494725;;, + 28;3; 0.784448, 3.021216,-1.494725;;, + 29;3; 0.784448, 3.021216,-1.494725;;, + 30;3; 0.784448, 3.021216,-1.494725;;, + 31;3; 0.784448, 3.021216,-1.494725;;, + 32;3; 0.784448, 3.021216,-1.494725;;, + 33;3; 0.784448, 3.021216,-1.494725;;, + 34;3; 0.784448, 3.021216,-1.494725;;, + 35;3; 0.784448, 3.021216,-1.494725;;, + 36;3; 0.784448, 3.021216,-1.494725;;, + 37;3; 0.784448, 3.021216,-1.494725;;, + 38;3; 0.784448, 3.021216,-1.494725;;, + 39;3; 0.784448, 3.021216,-1.494725;;, + 40;3; 0.784448, 3.021216,-1.494725;;, + 41;3; 0.784448, 3.021216,-1.494725;;, + 42;3; 0.784448, 3.021216,-1.494725;;, + 43;3; 0.784448, 3.021216,-1.494725;;, + 44;3; 0.784448, 3.021216,-1.494725;;, + 45;3; 0.784448, 3.021216,-1.494725;;, + 46;3; 0.784448, 3.021216,-1.494725;;, + 47;3; 0.784448, 3.021216,-1.494725;;, + 48;3; 0.784448, 3.021216,-1.494725;;, + 49;3; 0.784448, 3.021216,-1.494725;;, + 50;3; 0.784448, 3.021216,-1.494725;;, + 51;3; 0.784448, 3.021216,-1.494725;;, + 52;3; 0.784448, 3.021216,-1.494725;;, + 53;3; 0.784448, 3.021216,-1.494725;;, + 54;3; 0.784448, 3.021216,-1.494725;;, + 55;3; 0.784448, 3.021216,-1.494725;;, + 56;3; 0.784448, 3.021216,-1.494725;;, + 57;3; 0.784448, 3.021216,-1.494725;;, + 58;3; 0.784448, 3.021216,-1.494725;;, + 59;3; 0.784448, 3.021216,-1.494725;;, + 60;3; 0.784448, 3.021216,-1.494725;;, + 61;3; 0.784448, 3.021216,-1.494725;;, + 62;3; 0.784448, 3.021216,-1.494725;;, + 63;3; 0.784448, 3.021216,-1.494725;;, + 64;3; 0.784448, 3.021216,-1.494725;;, + 65;3; 0.784448, 3.021216,-1.494725;;, + 66;3; 0.784448, 3.021216,-1.494725;;, + 67;3; 0.784448, 3.021216,-1.494725;;, + 68;3; 0.784448, 3.021216,-1.494725;;, + 69;3; 0.784448, 3.021216,-1.494725;;, + 70;3; 0.784448, 3.021216,-1.494725;;, + 71;3; 0.784448, 3.021216,-1.494725;;, + 72;3; 0.784448, 3.021216,-1.494725;;, + 73;3; 0.784448, 3.021216,-1.494725;;, + 74;3; 0.784448, 3.021216,-1.494725;;, + 75;3; 0.784448, 3.021216,-1.494725;;, + 76;3; 0.784448, 3.021216,-1.494725;;, + 77;3; 0.784448, 3.021216,-1.494725;;, + 78;3; 0.784448, 3.021216,-1.494725;;, + 79;3; 0.784448, 3.021216,-1.494725;;, + 80;3; 0.784448, 3.021216,-1.494725;;, + 81;3; 0.784448, 3.021216,-1.494725;;, + 82;3; 0.784448, 3.021216,-1.494725;;, + 83;3; 0.784448, 3.021216,-1.494725;;, + 84;3; 0.784448, 3.021216,-1.494725;;, + 85;3; 0.784448, 3.021216,-1.494725;;, + 86;3; 0.784448, 3.021216,-1.494725;;, + 87;3; 0.784448, 3.021216,-1.494725;;, + 88;3; 0.784448, 3.021216,-1.494725;;, + 89;3; 0.784448, 3.021216,-1.494725;;, + 90;3; 0.784448, 3.021216,-1.494725;;, + 91;3; 0.784448, 3.021216,-1.494725;;, + 92;3; 0.784448, 3.021216,-1.494725;;, + 93;3; 0.784448, 3.021216,-1.494725;;, + 94;3; 0.784448, 3.021216,-1.494725;;, + 95;3; 0.784448, 3.021216,-1.494725;;, + 96;3; 0.784448, 3.021216,-1.494725;;, + 97;3; 0.784448, 3.021216,-1.494725;;, + 98;3; 0.784448, 3.021216,-1.494725;;, + 99;3; 0.784448, 3.021216,-1.494725;;, + 100;3; 0.784448, 3.021216,-1.494725;;, + 101;3; 0.784448, 3.021216,-1.494725;;, + 102;3; 0.784448, 3.021216,-1.494725;;, + 103;3; 0.784448, 3.021216,-1.494725;;, + 104;3; 0.784448, 3.021216,-1.494725;;, + 105;3; 0.784448, 3.021216,-1.494725;;, + 106;3; 0.784448, 3.021216,-1.494725;;, + 107;3; 0.784448, 3.021216,-1.494725;;, + 108;3; 0.784448, 3.021216,-1.494725;;, + 109;3; 0.784448, 3.021216,-1.494725;;, + 110;3; 0.784448, 3.021216,-1.494725;;, + 111;3; 0.784448, 3.021216,-1.494725;;, + 112;3; 0.784448, 3.021216,-1.494725;;, + 113;3; 0.784448, 3.021216,-1.494725;;, + 114;3; 0.784448, 3.021216,-1.494725;;, + 115;3; 0.784448, 3.021216,-1.494725;;, + 116;3; 0.784448, 3.021216,-1.494725;;, + 117;3; 0.784448, 3.021216,-1.494725;;, + 118;3; 0.784448, 3.021216,-1.494725;;, + 119;3; 0.784448, 3.021216,-1.494725;;, + 120;3; 0.784448, 3.021216,-1.494725;;, + 121;3; 0.784448, 3.021216,-1.494725;;, + 122;3; 0.784448, 3.021216,-1.494725;;, + 123;3; 0.784448, 3.021216,-1.494725;;, + 124;3; 0.784448, 3.021216,-1.494725;;, + 125;3; 0.784448, 3.021216,-1.494725;;, + 126;3; 0.784448, 3.021216,-1.494725;;, + 127;3; 0.784448, 3.021216,-1.494725;;, + 128;3; 0.784448, 3.021216,-1.494725;;, + 129;3; 0.784448, 3.021216,-1.494725;;, + 130;3; 0.784448, 3.021216,-1.494725;;, + 131;3; 0.784448, 3.021216,-1.494725;;, + 132;3; 0.784448, 3.021216,-1.494725;;, + 133;3; 0.784448, 3.021216,-1.494725;;, + 134;3; 0.784448, 3.021216,-1.494725;;, + 135;3; 0.784448, 3.021216,-1.494725;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.483955,-0.513539, 0.483955,-0.513539;;, + 37;4; -0.499536,-0.493071, 0.499536,-0.493071;;, + 38;4; -0.524060,-0.460853, 0.524060,-0.460853;;, + 39;4; -0.553930,-0.421610, 0.553930,-0.421610;;, + 40;4; -0.583796,-0.382370, 0.583796,-0.382370;;, + 41;4; -0.608313,-0.350158, 0.608313,-0.350158;;, + 42;4; -0.623887,-0.329697, 0.623887,-0.329697;;, + 43;4; -0.629105,-0.322842, 0.629105,-0.322841;;, + 44;4; -0.626395,-0.325558, 0.626395,-0.325558;;, + 45;4; -0.618208,-0.333776, 0.618207,-0.333776;;, + 46;4; -0.604601,-0.347469, 0.604601,-0.347469;;, + 47;4; -0.585875,-0.366370, 0.585875,-0.366370;;, + 48;4; -0.562643,-0.389905, 0.562643,-0.389905;;, + 49;4; -0.535871,-0.417154, 0.535871,-0.417154;;, + 50;4; -0.506861,-0.446856, 0.506861,-0.446856;;, + 51;4; -0.477161,-0.477500, 0.477161,-0.477500;;, + 52;4; -0.448405,-0.507479, 0.448405,-0.507479;;, + 53;4; -0.422131,-0.535269, 0.422131,-0.535268;;, + 54;4; -0.399618,-0.559587, 0.399618,-0.559587;;, + 55;4; -0.381808,-0.579482, 0.381808,-0.579482;;, + 56;4; -0.369282,-0.594349, 0.369282,-0.594349;;, + 57;4; -0.362313,-0.603892, 0.362313,-0.603892;;, + 58;4; -0.360931,-0.608053, 0.360931,-0.608053;;, + 59;4; -0.367377,-0.605275, 0.367377,-0.605275;;, + 60;4; -0.383708,-0.594080, 0.383708,-0.594080;;, + 61;4; -0.407762,-0.576122, 0.407762,-0.576122;;, + 62;4; -0.434653,-0.555326, 0.434653,-0.555326;;, + 63;4; -0.458181,-0.536793, 0.458181,-0.536793;;, + 64;4; -0.473553,-0.524551, 0.473553,-0.524551;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 78;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 79;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 80;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 81;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 82;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 83;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 84;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 85;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 86;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 87;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 88;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 89;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 90;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 91;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 92;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 93;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 94;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 95;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 96;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 97;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 98;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 99;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.486441,-0.505692, 0.486441,-0.505691;;, + 107;4; -0.509428,-0.461814, 0.509428,-0.461814;;, + 108;4; -0.545587,-0.392767, 0.545587,-0.392767;;, + 109;4; -0.589608,-0.308682, 0.589608,-0.308682;;, + 110;4; -0.633619,-0.224607, 0.633619,-0.224607;;, + 111;4; -0.669755,-0.155581, 0.669755,-0.155581;;, + 112;4; -0.692721,-0.111723, 0.692721,-0.111723;;, + 113;4; -0.700419,-0.097025, 0.700419,-0.097025;;, + 114;4; -0.696763,-0.100406, 0.696763,-0.100406;;, + 115;4; -0.676592,-0.119091, 0.676592,-0.119091;;, + 116;4; -0.641210,-0.152012, 0.641210,-0.152012;;, + 117;4; -0.593929,-0.196363, 0.593929,-0.196363;;, + 118;4; -0.538312,-0.249035, 0.538312,-0.249035;;, + 119;4; -0.477783,-0.307026, 0.477783,-0.307026;;, + 120;4; -0.415539,-0.367521, 0.415539,-0.367521;;, + 121;4; -0.354482,-0.427953, 0.354482,-0.427953;;, + 122;4; -0.297180,-0.486038, 0.297180,-0.486038;;, + 123;4; -0.245847,-0.539794, 0.245847,-0.539794;;, + 124;4; -0.202350,-0.587542, 0.202350,-0.587542;;, + 125;4; -0.168222,-0.627892, 0.168222,-0.627892;;, + 126;4; -0.144686,-0.659719, 0.144686,-0.659719;;, + 127;4; -0.132693,-0.682144, 0.132693,-0.682144;;, + 128;4; -0.132952,-0.694495, 0.132953,-0.694495;;, + 129;4; -0.153888,-0.692321, 0.153888,-0.692321;;, + 130;4; -0.202733,-0.671710, 0.202733,-0.671710;;, + 131;4; -0.273188,-0.636020, 0.273188,-0.636020;;, + 132;4; -0.351280,-0.593466, 0.351280,-0.593466;;, + 133;4; -0.419352,-0.554921, 0.419352,-0.554921;;, + 134;4; -0.463768,-0.529189, 0.463768,-0.529189;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 136; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga4} + AnimationKey { //Position + 2; + 136; + 0;3; -0.923299,-0.011159,-1.205961;;, + 1;3; -0.923299,-0.011159,-1.205961;;, + 2;3; -0.923299,-0.011159,-1.205961;;, + 3;3; -0.923299,-0.011159,-1.205961;;, + 4;3; -0.923299,-0.011159,-1.205961;;, + 5;3; -0.923299,-0.011159,-1.205961;;, + 6;3; -0.923299,-0.011159,-1.205961;;, + 7;3; -0.923299,-0.011159,-1.205961;;, + 8;3; -0.923299,-0.011159,-1.205961;;, + 9;3; -0.923299,-0.011159,-1.205961;;, + 10;3; -0.923299,-0.011159,-1.205961;;, + 11;3; -0.923299,-0.011159,-1.205961;;, + 12;3; -0.923299,-0.011159,-1.205961;;, + 13;3; -0.923299,-0.011159,-1.205961;;, + 14;3; -0.923299,-0.011159,-1.205961;;, + 15;3; -0.923299,-0.011159,-1.205961;;, + 16;3; -0.923299,-0.011159,-1.205961;;, + 17;3; -0.923299,-0.011159,-1.205961;;, + 18;3; -0.923299,-0.011159,-1.205961;;, + 19;3; -0.923299,-0.011159,-1.205961;;, + 20;3; -0.923299,-0.011159,-1.205961;;, + 21;3; -0.923299,-0.011159,-1.205961;;, + 22;3; -0.923299,-0.011159,-1.205961;;, + 23;3; -0.923299,-0.011159,-1.205961;;, + 24;3; -0.923299,-0.011159,-1.205961;;, + 25;3; -0.923299,-0.011159,-1.205961;;, + 26;3; -0.923299,-0.011159,-1.205961;;, + 27;3; -0.923299,-0.011159,-1.205961;;, + 28;3; -0.923299,-0.011159,-1.205961;;, + 29;3; -0.923299,-0.011159,-1.205961;;, + 30;3; -0.923299,-0.011159,-1.205961;;, + 31;3; -0.923299,-0.011159,-1.205961;;, + 32;3; -0.923299,-0.011159,-1.205961;;, + 33;3; -0.923299,-0.011159,-1.205961;;, + 34;3; -0.923299,-0.011159,-1.205961;;, + 35;3; -0.923299,-0.011159,-1.205961;;, + 36;3; -0.923299,-0.011159,-1.205961;;, + 37;3; -0.923299,-0.011159,-1.205961;;, + 38;3; -0.923299,-0.011159,-1.205961;;, + 39;3; -0.923299,-0.011159,-1.205961;;, + 40;3; -0.923299,-0.011159,-1.205961;;, + 41;3; -0.923299,-0.011159,-1.205961;;, + 42;3; -0.923299,-0.011159,-1.205961;;, + 43;3; -0.923299,-0.011159,-1.205961;;, + 44;3; -0.923299,-0.011159,-1.205961;;, + 45;3; -0.923299,-0.011159,-1.205961;;, + 46;3; -0.923299,-0.011159,-1.205961;;, + 47;3; -0.923299,-0.011159,-1.205961;;, + 48;3; -0.923299,-0.011159,-1.205961;;, + 49;3; -0.923299,-0.011159,-1.205961;;, + 50;3; -0.923299,-0.011159,-1.205961;;, + 51;3; -0.923299,-0.011159,-1.205961;;, + 52;3; -0.923299,-0.011159,-1.205961;;, + 53;3; -0.923299,-0.011159,-1.205961;;, + 54;3; -0.923299,-0.011159,-1.205961;;, + 55;3; -0.923299,-0.011159,-1.205961;;, + 56;3; -0.923299,-0.011159,-1.205961;;, + 57;3; -0.923299,-0.011159,-1.205961;;, + 58;3; -0.923299,-0.011159,-1.205961;;, + 59;3; -0.923299,-0.011159,-1.205961;;, + 60;3; -0.923299,-0.011159,-1.205961;;, + 61;3; -0.923299,-0.011159,-1.205961;;, + 62;3; -0.923299,-0.011159,-1.205961;;, + 63;3; -0.923299,-0.011159,-1.205961;;, + 64;3; -0.923299,-0.011159,-1.205961;;, + 65;3; -0.923299,-0.011159,-1.205961;;, + 66;3; -0.923299,-0.011159,-1.205961;;, + 67;3; -0.923299,-0.011159,-1.205961;;, + 68;3; -0.923299,-0.011159,-1.205961;;, + 69;3; -0.923299,-0.011159,-1.205961;;, + 70;3; -0.923299,-0.011159,-1.205961;;, + 71;3; -0.923299,-0.011159,-1.205961;;, + 72;3; -0.923299,-0.011159,-1.205961;;, + 73;3; -0.923299,-0.011159,-1.205961;;, + 74;3; -0.923299,-0.011159,-1.205961;;, + 75;3; -0.923299,-0.011159,-1.205961;;, + 76;3; -0.923299,-0.011159,-1.205961;;, + 77;3; -0.923299,-0.011159,-1.205961;;, + 78;3; -0.923299,-0.011159,-1.205961;;, + 79;3; -0.923299,-0.011159,-1.205961;;, + 80;3; -0.923299,-0.011159,-1.205961;;, + 81;3; -0.923299,-0.011159,-1.205961;;, + 82;3; -0.923299,-0.011159,-1.205961;;, + 83;3; -0.923299,-0.011159,-1.205961;;, + 84;3; -0.923299,-0.011159,-1.205961;;, + 85;3; -0.923299,-0.011159,-1.205961;;, + 86;3; -0.923299,-0.011159,-1.205961;;, + 87;3; -0.923299,-0.011159,-1.205961;;, + 88;3; -0.923299,-0.011159,-1.205961;;, + 89;3; -0.923299,-0.011159,-1.205961;;, + 90;3; -0.923299,-0.011159,-1.205961;;, + 91;3; -0.923299,-0.011159,-1.205961;;, + 92;3; -0.923299,-0.011159,-1.205961;;, + 93;3; -0.923299,-0.011159,-1.205961;;, + 94;3; -0.923299,-0.011159,-1.205961;;, + 95;3; -0.923299,-0.011159,-1.205961;;, + 96;3; -0.923299,-0.011159,-1.205961;;, + 97;3; -0.923299,-0.011159,-1.205961;;, + 98;3; -0.923299,-0.011159,-1.205961;;, + 99;3; -0.923299,-0.011159,-1.205961;;, + 100;3; -0.923299,-0.011159,-1.205961;;, + 101;3; -0.923299,-0.011159,-1.205961;;, + 102;3; -0.923299,-0.011159,-1.205961;;, + 103;3; -0.923299,-0.011159,-1.205961;;, + 104;3; -0.923299,-0.011159,-1.205961;;, + 105;3; -0.923299,-0.011159,-1.205961;;, + 106;3; -0.923299,-0.011159,-1.205961;;, + 107;3; -0.923299,-0.011159,-1.205961;;, + 108;3; -0.923299,-0.011159,-1.205961;;, + 109;3; -0.923299,-0.011159,-1.205961;;, + 110;3; -0.923299,-0.011159,-1.205961;;, + 111;3; -0.923299,-0.011159,-1.205961;;, + 112;3; -0.923299,-0.011159,-1.205961;;, + 113;3; -0.923299,-0.011159,-1.205961;;, + 114;3; -0.923299,-0.011159,-1.205961;;, + 115;3; -0.923299,-0.011159,-1.205961;;, + 116;3; -0.923299,-0.011159,-1.205961;;, + 117;3; -0.923299,-0.011159,-1.205961;;, + 118;3; -0.923299,-0.011159,-1.205961;;, + 119;3; -0.923299,-0.011159,-1.205961;;, + 120;3; -0.923299,-0.011159,-1.205961;;, + 121;3; -0.923299,-0.011159,-1.205961;;, + 122;3; -0.923299,-0.011159,-1.205961;;, + 123;3; -0.923299,-0.011159,-1.205961;;, + 124;3; -0.923299,-0.011159,-1.205961;;, + 125;3; -0.923299,-0.011159,-1.205961;;, + 126;3; -0.923299,-0.011159,-1.205961;;, + 127;3; -0.923299,-0.011159,-1.205961;;, + 128;3; -0.923299,-0.011159,-1.205961;;, + 129;3; -0.923299,-0.011159,-1.205961;;, + 130;3; -0.923299,-0.011159,-1.205961;;, + 131;3; -0.923299,-0.011159,-1.205961;;, + 132;3; -0.923299,-0.011159,-1.205961;;, + 133;3; -0.923299,-0.011159,-1.205961;;, + 134;3; -0.923299,-0.011159,-1.205961;;, + 135;3; -0.923299,-0.011159,-1.205961;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.482184,-0.516822, 0.482185,-0.516822;;, + 37;4; -0.492450,-0.506118, 0.492450,-0.506118;;, + 38;4; -0.508534,-0.489186, 0.508534,-0.489186;;, + 39;4; -0.527984,-0.468405, 0.527984,-0.468405;;, + 40;4; -0.547196,-0.447367, 0.547196,-0.447367;;, + 41;4; -0.562604,-0.429702, 0.562604,-0.429702;;, + 42;4; -0.571844,-0.417885, 0.571844,-0.417885;;, + 43;4; -0.574016,-0.412923, 0.574016,-0.412923;;, + 44;4; -0.569663,-0.413978, 0.569663,-0.413978;;, + 45;4; -0.559287,-0.420193, 0.559287,-0.420193;;, + 46;4; -0.542949,-0.431542, 0.542949,-0.431542;;, + 47;4; -0.520977,-0.447777, 0.520977,-0.447776;;, + 48;4; -0.494044,-0.468360, 0.494044,-0.468360;;, + 49;4; -0.463210,-0.492430, 0.463210,-0.492430;;, + 50;4; -0.429904,-0.518806, 0.429904,-0.518806;;, + 51;4; -0.395827,-0.546074, 0.395827,-0.546074;;, + 52;4; -0.362775,-0.572726, 0.362775,-0.572726;;, + 53;4; -0.332436,-0.597335, 0.332436,-0.597335;;, + 54;4; -0.306220,-0.618699, 0.306220,-0.618698;;, + 55;4; -0.285160,-0.635924, 0.285160,-0.635924;;, + 56;4; -0.269898,-0.648444, 0.269898,-0.648443;;, + 57;4; -0.260736,-0.655978, 0.260736,-0.655978;;, + 58;4; -0.257707,-0.658473, 0.257707,-0.658473;;, + 59;4; -0.267733,-0.652210, 0.267733,-0.652210;;, + 60;4; -0.297392,-0.633683, 0.297392,-0.633683;;, + 61;4; -0.342579,-0.605457, 0.342579,-0.605457;;, + 62;4; -0.393836,-0.573438, 0.393836,-0.573438;;, + 63;4; -0.439033,-0.545202, 0.439033,-0.545202;;, + 64;4; -0.468704,-0.526665, 0.468704,-0.526665;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 78;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 79;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 80;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 81;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 82;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 83;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 84;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 85;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 86;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 87;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 88;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 89;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 90;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 91;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 92;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 93;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 94;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 95;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 96;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 97;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 98;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 99;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.486744,-0.509400, 0.486744,-0.509400;;, + 107;4; -0.510455,-0.476386, 0.510455,-0.476386;;, + 108;4; -0.547311,-0.423935, 0.547311,-0.423935;;, + 109;4; -0.591333,-0.359126, 0.591333,-0.359126;;, + 110;4; -0.633927,-0.292779, 0.633927,-0.292779;;, + 111;4; -0.666718,-0.235944, 0.666718,-0.235944;;, + 112;4; -0.684263,-0.196259, 0.684263,-0.196259;;, + 113;4; -0.684609,-0.176946, 0.684609,-0.176946;;, + 114;4; -0.672960,-0.172187, 0.672960,-0.172187;;, + 115;4; -0.645206,-0.185654, 0.645206,-0.185654;;, + 116;4; -0.601532,-0.214884, 0.601532,-0.214884;;, + 117;4; -0.544660,-0.255951, 0.544660,-0.255951;;, + 118;4; -0.478481,-0.305578, 0.478481,-0.305578;;, + 119;4; -0.406739,-0.360603, 0.406739,-0.360603;;, + 120;4; -0.332928,-0.418069, 0.332928,-0.418069;;, + 121;4; -0.260224,-0.475279, 0.260224,-0.475279;;, + 122;4; -0.191436,-0.529837, 0.191436,-0.529837;;, + 123;4; -0.128993,-0.579668, 0.128993,-0.579668;;, + 124;4; -0.074942,-0.623014, 0.074942,-0.623014;;, + 125;4; -0.030964,-0.658422, 0.030964,-0.658422;;, + 126;4; 0.001591,-0.684719,-0.001591,-0.684719;;, + 127;4; 0.021676,-0.700988,-0.021675,-0.700988;;, + 128;4; 0.028506,-0.706532,-0.028506,-0.706532;;, + 129;4; 0.005515,-0.698107,-0.005515,-0.698107;;, + 130;4; -0.062432,-0.673232, 0.062432,-0.673232;;, + 131;4; -0.165922,-0.635355, 0.165922,-0.635355;;, + 132;4; -0.283421,-0.592296, 0.283422,-0.592296;;, + 133;4; -0.387246,-0.554146, 0.387246,-0.554146;;, + 134;4; -0.455581,-0.528956, 0.455581,-0.528956;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 136; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga2} + AnimationKey { //Position + 2; + 136; + 0;3; -0.921735, 3.022715,-1.476782;;, + 1;3; -0.921735, 3.022715,-1.476782;;, + 2;3; -0.921735, 3.022715,-1.476782;;, + 3;3; -0.921735, 3.022715,-1.476782;;, + 4;3; -0.921735, 3.022715,-1.476782;;, + 5;3; -0.921735, 3.022715,-1.476782;;, + 6;3; -0.921735, 3.022715,-1.476782;;, + 7;3; -0.921735, 3.022715,-1.476782;;, + 8;3; -0.921735, 3.022715,-1.476782;;, + 9;3; -0.921735, 3.022715,-1.476782;;, + 10;3; -0.921735, 3.022715,-1.476782;;, + 11;3; -0.921735, 3.022715,-1.476782;;, + 12;3; -0.921735, 3.022715,-1.476782;;, + 13;3; -0.921735, 3.022715,-1.476782;;, + 14;3; -0.921735, 3.022715,-1.476782;;, + 15;3; -0.921735, 3.022715,-1.476782;;, + 16;3; -0.921735, 3.022715,-1.476782;;, + 17;3; -0.921735, 3.022715,-1.476782;;, + 18;3; -0.921735, 3.022715,-1.476782;;, + 19;3; -0.921735, 3.022715,-1.476782;;, + 20;3; -0.921735, 3.022715,-1.476782;;, + 21;3; -0.921735, 3.022715,-1.476782;;, + 22;3; -0.921735, 3.022715,-1.476782;;, + 23;3; -0.921735, 3.022715,-1.476782;;, + 24;3; -0.921735, 3.022715,-1.476782;;, + 25;3; -0.921735, 3.022715,-1.476782;;, + 26;3; -0.921735, 3.022715,-1.476782;;, + 27;3; -0.921735, 3.022715,-1.476782;;, + 28;3; -0.921735, 3.022715,-1.476782;;, + 29;3; -0.921735, 3.022715,-1.476782;;, + 30;3; -0.921735, 3.022715,-1.476782;;, + 31;3; -0.921735, 3.022715,-1.476782;;, + 32;3; -0.921735, 3.022715,-1.476782;;, + 33;3; -0.921735, 3.022715,-1.476782;;, + 34;3; -0.921735, 3.022715,-1.476782;;, + 35;3; -0.921735, 3.022715,-1.476782;;, + 36;3; -0.921735, 3.022715,-1.476782;;, + 37;3; -0.921735, 3.022715,-1.476782;;, + 38;3; -0.921735, 3.022716,-1.476782;;, + 39;3; -0.921735, 3.022715,-1.476782;;, + 40;3; -0.921735, 3.022715,-1.476782;;, + 41;3; -0.921735, 3.022715,-1.476782;;, + 42;3; -0.921735, 3.022715,-1.476782;;, + 43;3; -0.921735, 3.022715,-1.476782;;, + 44;3; -0.921735, 3.022715,-1.476782;;, + 45;3; -0.921735, 3.022715,-1.476782;;, + 46;3; -0.921735, 3.022715,-1.476782;;, + 47;3; -0.921735, 3.022715,-1.476782;;, + 48;3; -0.921735, 3.022715,-1.476782;;, + 49;3; -0.921735, 3.022715,-1.476782;;, + 50;3; -0.921735, 3.022715,-1.476782;;, + 51;3; -0.921735, 3.022715,-1.476782;;, + 52;3; -0.921735, 3.022715,-1.476782;;, + 53;3; -0.921735, 3.022715,-1.476782;;, + 54;3; -0.921735, 3.022715,-1.476782;;, + 55;3; -0.921735, 3.022715,-1.476782;;, + 56;3; -0.921735, 3.022715,-1.476782;;, + 57;3; -0.921735, 3.022715,-1.476782;;, + 58;3; -0.921735, 3.022715,-1.476782;;, + 59;3; -0.921735, 3.022715,-1.476782;;, + 60;3; -0.921735, 3.022716,-1.476782;;, + 61;3; -0.921735, 3.022715,-1.476782;;, + 62;3; -0.921735, 3.022715,-1.476782;;, + 63;3; -0.921735, 3.022715,-1.476782;;, + 64;3; -0.921735, 3.022715,-1.476782;;, + 65;3; -0.921735, 3.022715,-1.476782;;, + 66;3; -0.921735, 3.022715,-1.476782;;, + 67;3; -0.921735, 3.022715,-1.476782;;, + 68;3; -0.921735, 3.022715,-1.476782;;, + 69;3; -0.921735, 3.022715,-1.476782;;, + 70;3; -0.921735, 3.022715,-1.476782;;, + 71;3; -0.921735, 3.022715,-1.476782;;, + 72;3; -0.921735, 3.022715,-1.476782;;, + 73;3; -0.921735, 3.022715,-1.476782;;, + 74;3; -0.921735, 3.022715,-1.476782;;, + 75;3; -0.921735, 3.022715,-1.476782;;, + 76;3; -0.921735, 3.022715,-1.476782;;, + 77;3; -0.921735, 3.022715,-1.476782;;, + 78;3; -0.921735, 3.022715,-1.476782;;, + 79;3; -0.921735, 3.022715,-1.476782;;, + 80;3; -0.921735, 3.022715,-1.476782;;, + 81;3; -0.921735, 3.022715,-1.476782;;, + 82;3; -0.921735, 3.022715,-1.476782;;, + 83;3; -0.921735, 3.022715,-1.476782;;, + 84;3; -0.921735, 3.022715,-1.476782;;, + 85;3; -0.921735, 3.022715,-1.476782;;, + 86;3; -0.921735, 3.022715,-1.476782;;, + 87;3; -0.921735, 3.022715,-1.476782;;, + 88;3; -0.921735, 3.022715,-1.476782;;, + 89;3; -0.921735, 3.022715,-1.476782;;, + 90;3; -0.921735, 3.022715,-1.476782;;, + 91;3; -0.921735, 3.022715,-1.476782;;, + 92;3; -0.921735, 3.022715,-1.476782;;, + 93;3; -0.921735, 3.022715,-1.476782;;, + 94;3; -0.921735, 3.022715,-1.476782;;, + 95;3; -0.921735, 3.022715,-1.476782;;, + 96;3; -0.921735, 3.022715,-1.476782;;, + 97;3; -0.921735, 3.022715,-1.476782;;, + 98;3; -0.921735, 3.022715,-1.476782;;, + 99;3; -0.921735, 3.022715,-1.476782;;, + 100;3; -0.921735, 3.022715,-1.476782;;, + 101;3; -0.921735, 3.022715,-1.476782;;, + 102;3; -0.921735, 3.022715,-1.476782;;, + 103;3; -0.921735, 3.022715,-1.476782;;, + 104;3; -0.921735, 3.022715,-1.476782;;, + 105;3; -0.921735, 3.022715,-1.476782;;, + 106;3; -0.921735, 3.022715,-1.476782;;, + 107;3; -0.921735, 3.022715,-1.476782;;, + 108;3; -0.921735, 3.022715,-1.476782;;, + 109;3; -0.921735, 3.022715,-1.476782;;, + 110;3; -0.921735, 3.022715,-1.476782;;, + 111;3; -0.921735, 3.022716,-1.476782;;, + 112;3; -0.921735, 3.022715,-1.476782;;, + 113;3; -0.921735, 3.022715,-1.476782;;, + 114;3; -0.921735, 3.022715,-1.476782;;, + 115;3; -0.921735, 3.022715,-1.476782;;, + 116;3; -0.921735, 3.022715,-1.476782;;, + 117;3; -0.921735, 3.022715,-1.476782;;, + 118;3; -0.921735, 3.022715,-1.476782;;, + 119;3; -0.921735, 3.022715,-1.476782;;, + 120;3; -0.921735, 3.022715,-1.476782;;, + 121;3; -0.921735, 3.022716,-1.476782;;, + 122;3; -0.921735, 3.022715,-1.476782;;, + 123;3; -0.921735, 3.022715,-1.476782;;, + 124;3; -0.921735, 3.022716,-1.476782;;, + 125;3; -0.921735, 3.022715,-1.476782;;, + 126;3; -0.921735, 3.022715,-1.476782;;, + 127;3; -0.921735, 3.022715,-1.476782;;, + 128;3; -0.921735, 3.022715,-1.476782;;, + 129;3; -0.921735, 3.022715,-1.476782;;, + 130;3; -0.921735, 3.022715,-1.476782;;, + 131;3; -0.921735, 3.022715,-1.476782;;, + 132;3; -0.921735, 3.022715,-1.476782;;, + 133;3; -0.921735, 3.022715,-1.476782;;, + 134;3; -0.921735, 3.022715,-1.476782;;, + 135;3; -0.921735, 3.022715,-1.476782;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.473719,-0.524120, 0.473719,-0.524120;;, + 37;4; -0.458727,-0.535209, 0.458727,-0.535209;;, + 38;4; -0.435075,-0.552608, 0.435075,-0.552608;;, + 39;4; -0.406169,-0.573697, 0.406169,-0.573697;;, + 40;4; -0.377103,-0.594610, 0.377103,-0.594610;;, + 41;4; -0.352997,-0.611510, 0.352997,-0.611510;;, + 42;4; -0.337312,-0.621841, 0.337312,-0.621841;;, + 43;4; -0.331432,-0.624622, 0.331432,-0.624622;;, + 44;4; -0.333325,-0.621077, 0.333325,-0.621077;;, + 45;4; -0.340931,-0.612412, 0.340931,-0.612412;;, + 46;4; -0.354217,-0.598676, 0.354217,-0.598676;;, + 47;4; -0.372897,-0.580147, 0.372897,-0.580147;;, + 48;4; -0.396367,-0.557394, 0.396367,-0.557394;;, + 49;4; -0.423659,-0.531316, 0.423659,-0.531316;;, + 50;4; -0.453455,-0.503126, 0.453455,-0.503126;;, + 51;4; -0.484175,-0.474267, 0.484175,-0.474267;;, + 52;4; -0.514143,-0.446263, 0.514143,-0.446263;;, + 53;4; -0.541771,-0.420551, 0.541771,-0.420551;;, + 54;4; -0.565727,-0.398327, 0.565727,-0.398327;;, + 55;4; -0.585025,-0.380470, 0.585025,-0.380470;;, + 56;4; -0.599041,-0.367527, 0.599041,-0.367527;;, + 57;4; -0.607470,-0.359756, 0.607470,-0.359756;;, + 58;4; -0.610260,-0.357187, 0.610260,-0.357187;;, + 59;4; -0.604294,-0.364590, 0.604294,-0.364590;;, + 60;4; -0.586645,-0.386491, 0.586645,-0.386491;;, + 61;4; -0.559756,-0.419860, 0.559756,-0.419860;;, + 62;4; -0.529254,-0.457710, 0.529254,-0.457710;;, + 63;4; -0.502359,-0.491084, 0.502359,-0.491084;;, + 64;4; -0.484704,-0.512991, 0.484704,-0.512991;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 78;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 79;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 80;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 81;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 82;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 83;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 84;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 85;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 86;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 87;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 88;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 89;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 90;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 91;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 92;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 93;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 94;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 95;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 96;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 97;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 98;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 99;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.469165,-0.526653, 0.469165,-0.526653;;, + 107;4; -0.440481,-0.545184, 0.440481,-0.545184;;, + 108;4; -0.395022,-0.574008, 0.395022,-0.574008;;, + 109;4; -0.339069,-0.608472, 0.339069,-0.608472;;, + 110;4; -0.282145,-0.641872, 0.282145,-0.641872;;, + 111;4; -0.233920,-0.667669, 0.233920,-0.667669;;, + 112;4; -0.201026,-0.681605, 0.201026,-0.681605;;, + 113;4; -0.186209,-0.682148, 0.186209,-0.682148;;, + 114;4; -0.184293,-0.673407, 0.184293,-0.673407;;, + 115;4; -0.198654,-0.652224, 0.198654,-0.652224;;, + 116;4; -0.227327,-0.618733, 0.227327,-0.618733;;, + 117;4; -0.266944,-0.575073, 0.266944,-0.575073;;, + 118;4; -0.314446,-0.524234, 0.314446,-0.524234;;, + 119;4; -0.366879,-0.469097, 0.366879,-0.469097;;, + 120;4; -0.421477,-0.412351, 0.421477,-0.412351;;, + 121;4; -0.475720,-0.356442, 0.475720,-0.356442;;, + 122;4; -0.527372,-0.303537, 0.527372,-0.303537;;, + 123;4; -0.574491,-0.255505, 0.574491,-0.255505;;, + 124;4; -0.615439,-0.213925, 0.615439,-0.213925;;, + 125;4; -0.648861,-0.180093, 0.648861,-0.180093;;, + 126;4; -0.673667,-0.155048, 0.673667,-0.155048;;, + 127;4; -0.689003,-0.139597, 0.689003,-0.139597;;, + 128;4; -0.694228,-0.134342, 0.694228,-0.134342;;, + 129;4; -0.684464,-0.151844, 0.684464,-0.151844;;, + 130;4; -0.655615,-0.203585, 0.655615,-0.203585;;, + 131;4; -0.611676,-0.282402, 0.611676,-0.282402;;, + 132;4; -0.561774,-0.371862, 0.561774,-0.371861;;, + 133;4; -0.517651,-0.450858, 0.517651,-0.450858;;, + 134;4; -0.488588,-0.502807, 0.488588,-0.502807;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 136; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_hvost} + AnimationKey { //Position + 2; + 136; + 0;3; 0.105165,-0.291279, 0.358470;;, + 1;3; 0.105165,-0.291279, 0.358470;;, + 2;3; 0.105165,-0.291279, 0.358470;;, + 3;3; 0.105165,-0.291279, 0.358470;;, + 4;3; 0.105165,-0.291279, 0.358470;;, + 5;3; 0.105165,-0.291279, 0.358470;;, + 6;3; 0.105165,-0.291279, 0.358470;;, + 7;3; 0.105165,-0.291279, 0.358470;;, + 8;3; 0.105165,-0.291279, 0.358470;;, + 9;3; 0.105165,-0.291279, 0.358470;;, + 10;3; 0.105165,-0.291279, 0.358470;;, + 11;3; 0.105165,-0.291279, 0.358470;;, + 12;3; 0.105165,-0.291279, 0.358470;;, + 13;3; 0.105165,-0.291279, 0.358470;;, + 14;3; 0.105165,-0.291279, 0.358470;;, + 15;3; 0.105165,-0.291279, 0.358470;;, + 16;3; 0.105165,-0.291279, 0.358470;;, + 17;3; 0.105165,-0.291279, 0.358470;;, + 18;3; 0.105165,-0.291279, 0.358470;;, + 19;3; 0.105165,-0.291279, 0.358470;;, + 20;3; 0.105165,-0.291279, 0.358470;;, + 21;3; 0.105165,-0.291279, 0.358470;;, + 22;3; 0.105165,-0.291279, 0.358470;;, + 23;3; 0.105165,-0.291279, 0.358470;;, + 24;3; 0.105165,-0.291279, 0.358470;;, + 25;3; 0.105165,-0.291279, 0.358470;;, + 26;3; 0.105165,-0.291279, 0.358470;;, + 27;3; 0.105165,-0.291279, 0.358470;;, + 28;3; 0.105165,-0.291279, 0.358470;;, + 29;3; 0.105165,-0.291279, 0.358470;;, + 30;3; 0.105165,-0.291279, 0.358470;;, + 31;3; 0.105165,-0.291279, 0.358470;;, + 32;3; 0.105165,-0.291279, 0.358470;;, + 33;3; 0.105165,-0.291279, 0.358470;;, + 34;3; 0.105165,-0.291279, 0.358470;;, + 35;3; 0.105165,-0.291279, 0.358470;;, + 36;3; 0.105165,-0.291279, 0.358470;;, + 37;3; 0.105165,-0.291279, 0.358470;;, + 38;3; 0.105165,-0.291279, 0.358470;;, + 39;3; 0.105165,-0.291279, 0.358470;;, + 40;3; 0.105165,-0.291279, 0.358470;;, + 41;3; 0.105165,-0.291279, 0.358470;;, + 42;3; 0.105165,-0.291279, 0.358470;;, + 43;3; 0.105165,-0.291279, 0.358470;;, + 44;3; 0.105165,-0.291279, 0.358470;;, + 45;3; 0.105165,-0.291279, 0.358470;;, + 46;3; 0.105165,-0.291279, 0.358470;;, + 47;3; 0.105165,-0.291279, 0.358470;;, + 48;3; 0.105165,-0.291279, 0.358470;;, + 49;3; 0.105165,-0.291279, 0.358470;;, + 50;3; 0.105165,-0.291279, 0.358470;;, + 51;3; 0.105165,-0.291279, 0.358470;;, + 52;3; 0.105165,-0.291279, 0.358470;;, + 53;3; 0.105165,-0.291279, 0.358470;;, + 54;3; 0.105165,-0.291279, 0.358470;;, + 55;3; 0.105165,-0.291279, 0.358470;;, + 56;3; 0.105165,-0.291279, 0.358470;;, + 57;3; 0.105165,-0.291279, 0.358470;;, + 58;3; 0.105165,-0.291279, 0.358470;;, + 59;3; 0.105165,-0.291279, 0.358470;;, + 60;3; 0.105165,-0.291279, 0.358470;;, + 61;3; 0.105165,-0.291279, 0.358470;;, + 62;3; 0.105165,-0.291279, 0.358470;;, + 63;3; 0.105165,-0.291279, 0.358470;;, + 64;3; 0.105165,-0.291279, 0.358470;;, + 65;3; 0.105165,-0.291279, 0.358470;;, + 66;3; 0.105165,-0.291279, 0.358470;;, + 67;3; 0.105165,-0.291279, 0.358470;;, + 68;3; 0.105165,-0.291279, 0.358470;;, + 69;3; 0.105165,-0.291279, 0.358470;;, + 70;3; 0.105165,-0.291279, 0.358470;;, + 71;3; 0.105165,-0.291279, 0.358470;;, + 72;3; 0.105165,-0.291279, 0.358470;;, + 73;3; 0.105165,-0.291279, 0.358470;;, + 74;3; 0.105165,-0.291279, 0.358470;;, + 75;3; 0.105165,-0.291279, 0.358470;;, + 76;3; 0.105165,-0.291279, 0.358470;;, + 77;3; 0.105165,-0.291279, 0.358470;;, + 78;3; 0.105165,-0.291279, 0.358470;;, + 79;3; 0.105165,-0.291279, 0.358470;;, + 80;3; 0.105165,-0.291279, 0.358470;;, + 81;3; 0.105165,-0.291279, 0.358470;;, + 82;3; 0.105165,-0.291279, 0.358470;;, + 83;3; 0.105165,-0.291279, 0.358470;;, + 84;3; 0.105165,-0.291279, 0.358470;;, + 85;3; 0.105165,-0.291279, 0.358470;;, + 86;3; 0.105165,-0.291279, 0.358470;;, + 87;3; 0.105165,-0.291279, 0.358470;;, + 88;3; 0.105165,-0.291279, 0.358470;;, + 89;3; 0.105165,-0.291279, 0.358470;;, + 90;3; 0.105165,-0.291279, 0.358470;;, + 91;3; 0.105165,-0.291279, 0.358470;;, + 92;3; 0.105165,-0.291279, 0.358470;;, + 93;3; 0.105165,-0.291279, 0.358470;;, + 94;3; 0.105165,-0.291279, 0.358470;;, + 95;3; 0.105165,-0.291279, 0.358470;;, + 96;3; 0.105165,-0.291279, 0.358470;;, + 97;3; 0.105165,-0.291279, 0.358470;;, + 98;3; 0.105165,-0.291279, 0.358470;;, + 99;3; 0.105165,-0.291279, 0.358470;;, + 100;3; 0.105165,-0.291279, 0.358470;;, + 101;3; 0.105165,-0.291279, 0.358470;;, + 102;3; 0.105165,-0.291279, 0.358470;;, + 103;3; 0.105165,-0.291279, 0.358470;;, + 104;3; 0.105165,-0.291279, 0.358470;;, + 105;3; 0.105165,-0.291279, 0.358470;;, + 106;3; 0.105165,-0.291279, 0.358470;;, + 107;3; 0.105165,-0.291279, 0.358470;;, + 108;3; 0.105165,-0.291279, 0.358470;;, + 109;3; 0.105165,-0.291279, 0.358470;;, + 110;3; 0.105165,-0.291279, 0.358470;;, + 111;3; 0.105165,-0.291279, 0.358470;;, + 112;3; 0.105165,-0.291279, 0.358470;;, + 113;3; 0.105165,-0.291279, 0.358470;;, + 114;3; 0.105165,-0.291279, 0.358470;;, + 115;3; 0.105165,-0.291279, 0.358470;;, + 116;3; 0.105165,-0.291279, 0.358470;;, + 117;3; 0.105165,-0.291279, 0.358470;;, + 118;3; 0.105165,-0.291279, 0.358470;;, + 119;3; 0.105165,-0.291279, 0.358470;;, + 120;3; 0.105165,-0.291279, 0.358470;;, + 121;3; 0.105165,-0.291279, 0.358470;;, + 122;3; 0.105165,-0.291279, 0.358470;;, + 123;3; 0.105165,-0.291279, 0.358470;;, + 124;3; 0.105165,-0.291279, 0.358470;;, + 125;3; 0.105165,-0.291279, 0.358470;;, + 126;3; 0.105165,-0.291279, 0.358470;;, + 127;3; 0.105165,-0.291279, 0.358470;;, + 128;3; 0.105165,-0.291279, 0.358470;;, + 129;3; 0.105165,-0.291279, 0.358470;;, + 130;3; 0.105165,-0.291279, 0.358470;;, + 131;3; 0.105165,-0.291279, 0.358470;;, + 132;3; 0.105165,-0.291279, 0.358470;;, + 133;3; 0.105165,-0.291279, 0.358470;;, + 134;3; 0.105165,-0.291279, 0.358470;;, + 135;3; 0.105165,-0.291279, 0.358470;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 1;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 2;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 3;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 4;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 5;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 6;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 7;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 8;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 9;4; -0.561014,-0.723949, 0.238921,-0.306999;;, + 10;4; -0.575060,-0.690426, 0.184552,-0.358451;;, + 11;4; -0.594567,-0.641346, 0.106104,-0.432044;;, + 12;4; -0.612765,-0.590529, 0.027051,-0.504947;;, + 13;4; -0.623212,-0.552233,-0.028979,-0.554504;;, + 14;4; -0.622945,-0.533953,-0.050020,-0.569504;;, + 15;4; -0.602096,-0.542017,-0.018023,-0.528442;;, + 16;4; -0.552670,-0.580372, 0.080254,-0.414877;;, + 17;4; -0.484828,-0.639724, 0.222965,-0.253333;;, + 18;4; -0.418300,-0.700808, 0.366270,-0.092486;;, + 19;4; -0.372482,-0.743929, 0.466192, 0.019170;;, + 20;4; -0.356823,-0.758866, 0.500575, 0.057496;;, + 21;4; -0.374538,-0.756775, 0.478970, 0.026669;;, + 22;4; -0.424425,-0.750892, 0.418140,-0.060142;;, + 23;4; -0.488475,-0.743339, 0.340039,-0.171601;;, + 24;4; -0.538373,-0.737448, 0.279186,-0.258430;;, + 25;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 26;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 27;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 28;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 29;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 30;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 31;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 32;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 33;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 34;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 35;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 36;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 37;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 38;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 39;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 40;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 41;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 42;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 43;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 44;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 45;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 46;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 47;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 48;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 49;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 50;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 51;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 52;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 53;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 54;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 55;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 56;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 57;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 58;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 59;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 60;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 61;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 62;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 63;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 64;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 65;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 66;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 67;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 68;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 69;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 70;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 71;4; -0.535274,-0.734089, 0.278584,-0.256249;;, + 72;4; -0.472375,-0.728553, 0.340072,-0.157917;;, + 73;4; -0.373158,-0.715527, 0.432069,-0.006370;;, + 74;4; -0.253969,-0.691881, 0.533281, 0.168995;;, + 75;4; -0.137653,-0.656171, 0.617367, 0.329535;;, + 76;4; -0.043608,-0.609320, 0.664455, 0.444255;;, + 77;4; 0.018224,-0.553672, 0.666527, 0.498859;;, + 78;4; 0.072989,-0.480623, 0.641269, 0.526461;;, + 79;4; 0.126603,-0.405510, 0.612225, 0.550007;;, + 80;4; 0.142409,-0.374454, 0.591492, 0.550778;;, + 81;4; 0.010358,-0.333466, 0.444038, 0.568002;;, + 82;4; -0.259884,-0.256623, 0.141437, 0.613428;;, + 83;4; -0.379890,-0.232545,-0.020516, 0.616913;;, + 84;4; -0.372974,-0.253638,-0.048164, 0.581873;;, + 85;4; -0.371218,-0.280405,-0.063925, 0.535909;;, + 86;4; -0.374319,-0.312239,-0.068399, 0.480151;;, + 87;4; -0.381838,-0.348358,-0.062484, 0.416061;;, + 88;4; -0.393205,-0.387811,-0.047375, 0.345415;;, + 89;4; -0.407725,-0.429513,-0.024540, 0.270246;;, + 90;4; -0.424611,-0.472281, 0.004336, 0.192764;;, + 91;4; -0.443016,-0.514898, 0.037430, 0.115252;;, + 92;4; -0.462079,-0.556169, 0.072865, 0.039947;;, + 93;4; -0.480964,-0.594981, 0.108810,-0.031057;;, + 94;4; -0.498900,-0.630348, 0.143556,-0.095902;;, + 95;4; -0.515206,-0.661438, 0.175579,-0.153017;;, + 96;4; -0.529309,-0.687595, 0.203581,-0.201149;;, + 97;4; -0.540751,-0.708328, 0.226500,-0.239360;;, + 98;4; -0.549181,-0.723307, 0.243510,-0.267005;;, + 99;4; -0.554349,-0.732341, 0.254005,-0.283697;;, + 100;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 101;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 102;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 103;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 104;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 105;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 106;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 107;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 108;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 109;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 110;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 111;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 112;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 113;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 114;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 115;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 116;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 117;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 118;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 119;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 120;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 121;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 122;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 123;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 124;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 125;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 126;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 127;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 128;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 129;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 130;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 131;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 132;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 133;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 134;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 135;4; -0.556095,-0.735353, 0.257568,-0.289268;;; + } + AnimationKey { //Scale + 1; + 136; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_sheya} + AnimationKey { //Position + 2; + 136; + 0;3; 0.000000, 3.238709,-0.013816;;, + 1;3; 0.000000, 3.238709,-0.013816;;, + 2;3; 0.000000, 3.236990,-0.034342;;, + 3;3; 0.000000, 3.231916,-0.094984;;, + 4;3; 0.000000, 3.224207,-0.187240;;, + 5;3; 0.000000, 3.215480,-0.291771;;, + 6;3; 0.000000, 3.207790,-0.383908;;, + 7;3; 0.000000, 3.202737,-0.444412;;, + 8;3; 0.000000, 3.201027,-0.464880;;, + 9;3; 0.000000, 3.201027,-0.464880;;, + 10;3; 0.000000, 3.201027,-0.464880;;, + 11;3; 0.000000, 3.201027,-0.464880;;, + 12;3; 0.000000, 3.201027,-0.464880;;, + 13;3; 0.000000, 3.201027,-0.464880;;, + 14;3; 0.000000, 3.201027,-0.464880;;, + 15;3; 0.000000, 3.201027,-0.464880;;, + 16;3; 0.000000, 3.201027,-0.464880;;, + 17;3; 0.000000, 3.201027,-0.464880;;, + 18;3; 0.000000, 3.201027,-0.464880;;, + 19;3; 0.000000, 3.201027,-0.464880;;, + 20;3; 0.000000, 3.201027,-0.464880;;, + 21;3; 0.000000, 3.201027,-0.464880;;, + 22;3; 0.000000, 3.201027,-0.464880;;, + 23;3; 0.000000, 3.201027,-0.464880;;, + 24;3; 0.000000, 3.201027,-0.464880;;, + 25;3; 0.000000, 3.201027,-0.464880;;, + 26;3; 0.000000, 3.203358,-0.436993;;, + 27;3; 0.000000, 3.210135,-0.355884;;, + 28;3; 0.000000, 3.219868,-0.239348;;, + 29;3; 0.000000, 3.229601,-0.122812;;, + 30;3; 0.000000, 3.236378,-0.041703;;, + 31;3; 0.000000, 3.238709,-0.013816;;, + 32;3; 0.000000, 3.238709,-0.013816;;, + 33;3; 0.000000, 3.238709,-0.013816;;, + 34;3; 0.000000, 3.238709,-0.013816;;, + 35;3; 0.000000, 3.238709,-0.013816;;, + 36;3; 0.000000, 3.238709,-0.013816;;, + 37;3; 0.000000, 3.238709,-0.013816;;, + 38;3; 0.000000, 3.238709,-0.013816;;, + 39;3; 0.000000, 3.238709,-0.013816;;, + 40;3; 0.000000, 3.238709,-0.013816;;, + 41;3; 0.000000, 3.238709,-0.013816;;, + 42;3; 0.000000, 3.238709,-0.013816;;, + 43;3; 0.000000, 3.238709,-0.013816;;, + 44;3; 0.000000, 3.238709,-0.013816;;, + 45;3; 0.000000, 3.238709,-0.013816;;, + 46;3; 0.000000, 3.238709,-0.013816;;, + 47;3; 0.000000, 3.238709,-0.013816;;, + 48;3; 0.000000, 3.238709,-0.013816;;, + 49;3; 0.000000, 3.238709,-0.013816;;, + 50;3; 0.000000, 3.238709,-0.013816;;, + 51;3; 0.000000, 3.238709,-0.013816;;, + 52;3; 0.000000, 3.238709,-0.013816;;, + 53;3; 0.000000, 3.238709,-0.013816;;, + 54;3; 0.000000, 3.238709,-0.013816;;, + 55;3; 0.000000, 3.238709,-0.013816;;, + 56;3; 0.000000, 3.238709,-0.013816;;, + 57;3; 0.000000, 3.238709,-0.013816;;, + 58;3; 0.000000, 3.238709,-0.013816;;, + 59;3; 0.000000, 3.238709,-0.013816;;, + 60;3; 0.000000, 3.238709,-0.013816;;, + 61;3; 0.000000, 3.238709,-0.013816;;, + 62;3; 0.000000, 3.238709,-0.013816;;, + 63;3; 0.000000, 3.238709,-0.013816;;, + 64;3; 0.000000, 3.238709,-0.013816;;, + 65;3; 0.000000, 3.238709,-0.013816;;, + 66;3; 0.000000, 3.238709,-0.013816;;, + 67;3; 0.000000, 3.238709,-0.013816;;, + 68;3; 0.000000, 3.238709,-0.013816;;, + 69;3; 0.000000, 3.238709,-0.013816;;, + 70;3; 0.000000, 3.238709,-0.013816;;, + 71;3; 0.000000, 3.238709,-0.013816;;, + 72;3; 0.000000, 3.238709,-0.013816;;, + 73;3; 0.000000, 3.238709,-0.013816;;, + 74;3; 0.000000, 3.238709,-0.013816;;, + 75;3; 0.000000, 3.238709,-0.013816;;, + 76;3; 0.000000, 3.238709,-0.013816;;, + 77;3; 0.000000, 3.238709,-0.013816;;, + 78;3; 0.000000, 3.238709,-0.013816;;, + 79;3; 0.000000, 3.238709,-0.013816;;, + 80;3; 0.000000, 3.238709,-0.013816;;, + 81;3; 0.000000, 3.238709,-0.013816;;, + 82;3; 0.000000, 3.238709,-0.013816;;, + 83;3; 0.000000, 3.238709,-0.013816;;, + 84;3; 0.000000, 3.238709,-0.013816;;, + 85;3; 0.000000, 3.238709,-0.013816;;, + 86;3; 0.000000, 3.238709,-0.013816;;, + 87;3; 0.000000, 3.238709,-0.013816;;, + 88;3; 0.000000, 3.238709,-0.013816;;, + 89;3; 0.000000, 3.238709,-0.013816;;, + 90;3; 0.000000, 3.238709,-0.013816;;, + 91;3; 0.000000, 3.238709,-0.013816;;, + 92;3; 0.000000, 3.238709,-0.013816;;, + 93;3; 0.000000, 3.238709,-0.013816;;, + 94;3; 0.000000, 3.238709,-0.013816;;, + 95;3; 0.000000, 3.238709,-0.013816;;, + 96;3; 0.000000, 3.238709,-0.013816;;, + 97;3; 0.000000, 3.238709,-0.013816;;, + 98;3; 0.000000, 3.238709,-0.013816;;, + 99;3; 0.000000, 3.238709,-0.013816;;, + 100;3; 0.000000, 3.238709,-0.013816;;, + 101;3; 0.000000, 3.238709,-0.013816;;, + 102;3; 0.000000, 3.238709,-0.013816;;, + 103;3; 0.000000, 3.238709,-0.013816;;, + 104;3; 0.000000, 3.238709,-0.013816;;, + 105;3; 0.000000, 3.238709,-0.013816;;, + 106;3; 0.000000, 3.238709,-0.013816;;, + 107;3; 0.000000, 3.238709,-0.013816;;, + 108;3; 0.000000, 3.238709,-0.013816;;, + 109;3; 0.000000, 3.238709,-0.013816;;, + 110;3; 0.000000, 3.238709,-0.013816;;, + 111;3; 0.000000, 3.238709,-0.013816;;, + 112;3; 0.000000, 3.238709,-0.013816;;, + 113;3; 0.000000, 3.238709,-0.013816;;, + 114;3; 0.000000, 3.238709,-0.013816;;, + 115;3; 0.000000, 3.238709,-0.013816;;, + 116;3; 0.000000, 3.238709,-0.013816;;, + 117;3; 0.000000, 3.238709,-0.013816;;, + 118;3; 0.000000, 3.238709,-0.013816;;, + 119;3; 0.000000, 3.238709,-0.013816;;, + 120;3; 0.000000, 3.238709,-0.013816;;, + 121;3; 0.000000, 3.238709,-0.013816;;, + 122;3; 0.000000, 3.238709,-0.013816;;, + 123;3; 0.000000, 3.238709,-0.013816;;, + 124;3; 0.000000, 3.238709,-0.013816;;, + 125;3; 0.000000, 3.238709,-0.013816;;, + 126;3; 0.000000, 3.238709,-0.013816;;, + 127;3; 0.000000, 3.238709,-0.013816;;, + 128;3; 0.000000, 3.238709,-0.013816;;, + 129;3; 0.000000, 3.238709,-0.013816;;, + 130;3; 0.000000, 3.238709,-0.013816;;, + 131;3; 0.000000, 3.238709,-0.013816;;, + 132;3; 0.000000, 3.238709,-0.013816;;, + 133;3; 0.000000, 3.238709,-0.013816;;, + 134;3; 0.000000, 3.238709,-0.013816;;, + 135;3; 0.000000, 3.238709,-0.013816;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 1;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 2;4; -0.976686,-0.085962, 0.015156, 0.033999;;, + 3;4; -0.957666,-0.146060, 0.017070, 0.032575;;, + 4;4; -0.928699,-0.237482, 0.019992, 0.030406;;, + 5;4; -0.895855,-0.341063, 0.023310, 0.027945;;, + 6;4; -0.866900,-0.432362, 0.026237, 0.025775;;, + 7;4; -0.847893,-0.492318, 0.028156, 0.024351;;, + 8;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 9;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 10;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 11;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 12;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 13;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 14;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 15;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 16;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 17;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 18;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 19;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 20;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 21;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 22;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 23;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 24;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 25;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 26;4; -0.850219,-0.484965, 0.027922, 0.024525;;, + 27;4; -0.875686,-0.404590, 0.025353, 0.026432;;, + 28;4; -0.912292,-0.289110, 0.021657, 0.029175;;, + 29;4; -0.948897,-0.173630, 0.017961, 0.031917;;, + 30;4; -0.974365,-0.093255, 0.015392, 0.033825;;, + 31;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 32;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 33;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 34;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 35;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 36;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 37;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 38;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 39;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 40;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 41;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 42;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 43;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 44;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 45;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 46;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 47;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 48;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 49;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 50;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 51;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 52;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 53;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 54;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 55;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 56;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 57;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 58;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 59;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 60;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 61;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 62;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 63;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 64;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 65;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 66;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 67;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 68;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 69;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 70;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 71;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 72;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 73;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 74;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 75;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 76;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 77;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 78;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 79;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 80;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 81;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 82;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 83;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 84;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 85;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 86;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 87;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 88;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 89;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 90;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 91;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 92;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 93;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 94;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 95;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 96;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 97;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 98;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 99;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 100;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 101;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 102;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 103;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 104;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 105;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 106;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 107;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 108;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 109;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 110;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 111;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 112;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 113;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 114;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 115;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 116;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 117;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 118;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 119;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 120;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 121;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 122;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 123;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 124;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 125;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 126;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 127;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 128;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 129;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 130;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 131;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 132;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 133;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 134;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 135;4; -0.983117,-0.065618, 0.014510, 0.034480;;; + } + AnimationKey { //Scale + 1; + 136; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_head} + AnimationKey { //Position + 2; + 136; + 0;3; 0.067776, 0.891274, 0.002915;;, + 1;3; 0.067776, 0.891274, 0.002915;;, + 2;3; 0.067776, 0.891274, 0.002915;;, + 3;3; 0.067776, 0.891274, 0.002916;;, + 4;3; 0.067776, 0.891274, 0.002916;;, + 5;3; 0.067776, 0.891274, 0.002916;;, + 6;3; 0.067776, 0.891274, 0.002916;;, + 7;3; 0.067776, 0.891274, 0.002916;;, + 8;3; 0.067776, 0.891274, 0.002915;;, + 9;3; 0.067776, 0.891274, 0.002915;;, + 10;3; 0.067776, 0.891274, 0.002915;;, + 11;3; 0.067776, 0.891274, 0.002915;;, + 12;3; 0.067776, 0.891274, 0.002915;;, + 13;3; 0.067776, 0.891274, 0.002915;;, + 14;3; 0.067776, 0.891274, 0.002915;;, + 15;3; 0.067776, 0.891274, 0.002915;;, + 16;3; 0.067776, 0.891274, 0.002915;;, + 17;3; 0.067776, 0.891274, 0.002915;;, + 18;3; 0.067776, 0.891274, 0.002915;;, + 19;3; 0.067776, 0.891274, 0.002915;;, + 20;3; 0.067776, 0.891274, 0.002915;;, + 21;3; 0.067776, 0.891274, 0.002915;;, + 22;3; 0.067776, 0.891274, 0.002915;;, + 23;3; 0.067776, 0.891274, 0.002915;;, + 24;3; 0.067776, 0.891274, 0.002915;;, + 25;3; 0.067776, 0.891274, 0.002915;;, + 26;3; 0.067776, 0.891274, 0.002915;;, + 27;3; 0.067777, 0.891274, 0.002915;;, + 28;3; 0.067776, 0.891274, 0.002916;;, + 29;3; 0.067776, 0.891274, 0.002915;;, + 30;3; 0.067776, 0.891274, 0.002916;;, + 31;3; 0.067776, 0.891274, 0.002915;;, + 32;3; 0.067776, 0.891274, 0.002915;;, + 33;3; 0.067776, 0.891274, 0.002915;;, + 34;3; 0.067776, 0.891274, 0.002915;;, + 35;3; 0.067776, 0.891274, 0.002915;;, + 36;3; 0.067776, 0.891274, 0.002915;;, + 37;3; 0.067776, 0.891274, 0.002916;;, + 38;3; 0.067777, 0.891274, 0.002916;;, + 39;3; 0.067776, 0.891274, 0.002915;;, + 40;3; 0.067776, 0.891274, 0.002915;;, + 41;3; 0.067776, 0.891274, 0.002915;;, + 42;3; 0.067776, 0.891274, 0.002915;;, + 43;3; 0.067776, 0.891274, 0.002915;;, + 44;3; 0.067776, 0.891274, 0.002915;;, + 45;3; 0.067777, 0.891274, 0.002915;;, + 46;3; 0.067776, 0.891274, 0.002915;;, + 47;3; 0.067777, 0.891274, 0.002915;;, + 48;3; 0.067777, 0.891274, 0.002915;;, + 49;3; 0.067776, 0.891274, 0.002915;;, + 50;3; 0.067777, 0.891274, 0.002915;;, + 51;3; 0.067776, 0.891274, 0.002915;;, + 52;3; 0.067776, 0.891274, 0.002915;;, + 53;3; 0.067776, 0.891274, 0.002915;;, + 54;3; 0.067776, 0.891274, 0.002915;;, + 55;3; 0.067776, 0.891274, 0.002916;;, + 56;3; 0.067776, 0.891274, 0.002915;;, + 57;3; 0.067776, 0.891274, 0.002915;;, + 58;3; 0.067777, 0.891274, 0.002916;;, + 59;3; 0.067776, 0.891274, 0.002915;;, + 60;3; 0.067777, 0.891274, 0.002915;;, + 61;3; 0.067776, 0.891274, 0.002915;;, + 62;3; 0.067777, 0.891274, 0.002915;;, + 63;3; 0.067777, 0.891274, 0.002915;;, + 64;3; 0.067777, 0.891274, 0.002915;;, + 65;3; 0.067776, 0.891274, 0.002915;;, + 66;3; 0.067776, 0.891274, 0.002915;;, + 67;3; 0.067776, 0.891274, 0.002915;;, + 68;3; 0.067776, 0.891274, 0.002915;;, + 69;3; 0.067776, 0.891274, 0.002915;;, + 70;3; 0.067776, 0.891274, 0.002915;;, + 71;3; 0.067776, 0.891274, 0.002915;;, + 72;3; 0.067776, 0.891274, 0.002915;;, + 73;3; 0.067776, 0.891274, 0.002915;;, + 74;3; 0.067776, 0.891274, 0.002915;;, + 75;3; 0.067776, 0.891274, 0.002915;;, + 76;3; 0.067776, 0.891274, 0.002915;;, + 77;3; 0.067776, 0.891274, 0.002915;;, + 78;3; 0.067776, 0.891274, 0.002915;;, + 79;3; 0.067776, 0.891274, 0.002915;;, + 80;3; 0.067776, 0.891274, 0.002915;;, + 81;3; 0.067776, 0.891274, 0.002915;;, + 82;3; 0.067776, 0.891274, 0.002915;;, + 83;3; 0.067776, 0.891274, 0.002915;;, + 84;3; 0.067776, 0.891274, 0.002915;;, + 85;3; 0.067776, 0.891274, 0.002915;;, + 86;3; 0.067776, 0.891274, 0.002915;;, + 87;3; 0.067776, 0.891274, 0.002915;;, + 88;3; 0.067776, 0.891274, 0.002915;;, + 89;3; 0.067776, 0.891274, 0.002915;;, + 90;3; 0.067776, 0.891274, 0.002915;;, + 91;3; 0.067776, 0.891274, 0.002915;;, + 92;3; 0.067776, 0.891274, 0.002915;;, + 93;3; 0.067776, 0.891274, 0.002915;;, + 94;3; 0.067776, 0.891274, 0.002915;;, + 95;3; 0.067776, 0.891274, 0.002915;;, + 96;3; 0.067776, 0.891274, 0.002915;;, + 97;3; 0.067776, 0.891274, 0.002915;;, + 98;3; 0.067776, 0.891274, 0.002915;;, + 99;3; 0.067776, 0.891274, 0.002915;;, + 100;3; 0.067776, 0.891274, 0.002915;;, + 101;3; 0.067776, 0.891274, 0.002915;;, + 102;3; 0.067776, 0.891274, 0.002915;;, + 103;3; 0.067776, 0.891274, 0.002915;;, + 104;3; 0.067776, 0.891274, 0.002915;;, + 105;3; 0.067776, 0.891274, 0.002915;;, + 106;3; 0.067776, 0.891274, 0.002915;;, + 107;3; 0.067776, 0.891274, 0.002916;;, + 108;3; 0.067777, 0.891274, 0.002916;;, + 109;3; 0.067776, 0.891274, 0.002915;;, + 110;3; 0.067776, 0.891274, 0.002915;;, + 111;3; 0.067776, 0.891274, 0.002915;;, + 112;3; 0.067776, 0.891274, 0.002915;;, + 113;3; 0.067776, 0.891274, 0.002915;;, + 114;3; 0.067776, 0.891274, 0.002915;;, + 115;3; 0.067777, 0.891274, 0.002915;;, + 116;3; 0.067777, 0.891274, 0.002915;;, + 117;3; 0.067776, 0.891274, 0.002915;;, + 118;3; 0.067777, 0.891274, 0.002915;;, + 119;3; 0.067777, 0.891274, 0.002915;;, + 120;3; 0.067776, 0.891274, 0.002915;;, + 121;3; 0.067777, 0.891274, 0.002915;;, + 122;3; 0.067776, 0.891274, 0.002915;;, + 123;3; 0.067776, 0.891274, 0.002915;;, + 124;3; 0.067776, 0.891274, 0.002915;;, + 125;3; 0.067776, 0.891274, 0.002916;;, + 126;3; 0.067776, 0.891274, 0.002915;;, + 127;3; 0.067776, 0.891274, 0.002915;;, + 128;3; 0.067777, 0.891274, 0.002916;;, + 129;3; 0.067776, 0.891274, 0.002915;;, + 130;3; 0.067776, 0.891274, 0.002915;;, + 131;3; 0.067777, 0.891274, 0.002915;;, + 132;3; 0.067776, 0.891274, 0.002915;;, + 133;3; 0.067777, 0.891274, 0.002915;;, + 134;3; 0.067777, 0.891274, 0.002915;;, + 135;3; 0.067776, 0.891274, 0.002915;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 1;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 2;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 3;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 4;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 5;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 6;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 7;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 8;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 9;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 10;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 11;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 12;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 13;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 14;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 15;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 16;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 17;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 18;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 19;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 20;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 21;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 22;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 23;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 24;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 25;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 26;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 27;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 28;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 29;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 30;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 31;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 32;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 33;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 34;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 35;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 36;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 37;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 38;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 39;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 40;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 41;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 42;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 43;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 44;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 45;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 46;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 47;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 48;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 49;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 50;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 51;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 52;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 53;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 54;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 55;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 56;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 57;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 58;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 59;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 60;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 61;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 62;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 63;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 64;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 65;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 66;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 67;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 68;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 69;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 70;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 71;4; -0.993396,-0.093970, 0.003706,-0.037410;;, + 72;4; -0.992585,-0.059156, 0.002434,-0.036511;;, + 73;4; -0.991349,-0.006118, 0.000497,-0.035141;;, + 74;4; -0.989946, 0.054035,-0.001699,-0.033587;;, + 75;4; -0.988710, 0.107069,-0.003636,-0.032217;;, + 76;4; -0.987899, 0.141879,-0.004908,-0.031318;;, + 77;4; -0.987625, 0.153647,-0.005337,-0.031014;;, + 78;4; -0.987650, 0.152567,-0.005298,-0.031042;;, + 79;4; -0.987726, 0.149304,-0.005179,-0.031126;;, + 80;4; -0.987853, 0.143842,-0.004979,-0.031267;;, + 81;4; -0.988031, 0.136199,-0.004700,-0.031464;;, + 82;4; -0.988258, 0.126432,-0.004343,-0.031717;;, + 83;4; -0.988533, 0.114647,-0.003913,-0.032021;;, + 84;4; -0.988851, 0.101005,-0.003415,-0.032373;;, + 85;4; -0.989207, 0.085729,-0.002857,-0.032768;;, + 86;4; -0.989594, 0.069101,-0.002250,-0.033197;;, + 87;4; -0.990005, 0.051460,-0.001605,-0.033653;;, + 88;4; -0.990431, 0.033191,-0.000938,-0.034125;;, + 89;4; -0.990862, 0.014709,-0.000263,-0.034602;;, + 90;4; -0.991288,-0.003560, 0.000404,-0.035074;;, + 91;4; -0.991699,-0.021201, 0.001048,-0.035530;;, + 92;4; -0.992087,-0.037828, 0.001656,-0.035959;;, + 93;4; -0.992443,-0.053103, 0.002213,-0.036354;;, + 94;4; -0.992761,-0.066744, 0.002712,-0.036706;;, + 95;4; -0.993036,-0.078528, 0.003142,-0.037011;;, + 96;4; -0.993263,-0.088294, 0.003499,-0.037263;;, + 97;4; -0.993441,-0.095936, 0.003778,-0.037460;;, + 98;4; -0.993569,-0.101397, 0.003977,-0.037601;;, + 99;4; -0.993645,-0.104660, 0.004096,-0.037686;;, + 100;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 101;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 102;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 103;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 104;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 105;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 106;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 107;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 108;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 109;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 110;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 111;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 112;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 113;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 114;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 115;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 116;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 117;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 118;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 119;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 120;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 121;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 122;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 123;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 124;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 125;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 126;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 127;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 128;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 129;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 130;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 131;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 132;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 133;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 134;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 135;4; -0.993670,-0.105740, 0.004136,-0.037714;;; + } + AnimationKey { //Scale + 1; + 136; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_zubi} + AnimationKey { //Position + 2; + 136; + 0;3; 0.194650, 1.828288,-0.748248;;, + 1;3; 0.194650, 1.828288,-0.748248;;, + 2;3; 0.194650, 1.828288,-0.748248;;, + 3;3; 0.194649, 1.828288,-0.748248;;, + 4;3; 0.194650, 1.828288,-0.748248;;, + 5;3; 0.194650, 1.828288,-0.748248;;, + 6;3; 0.194649, 1.828288,-0.748248;;, + 7;3; 0.194650, 1.828288,-0.748248;;, + 8;3; 0.194650, 1.828288,-0.748248;;, + 9;3; 0.194650, 1.828288,-0.748248;;, + 10;3; 0.194650, 1.828288,-0.748248;;, + 11;3; 0.194650, 1.828288,-0.748248;;, + 12;3; 0.194650, 1.828288,-0.748248;;, + 13;3; 0.194650, 1.828288,-0.748248;;, + 14;3; 0.194650, 1.828288,-0.748248;;, + 15;3; 0.194650, 1.828288,-0.748248;;, + 16;3; 0.194650, 1.828288,-0.748248;;, + 17;3; 0.194650, 1.828288,-0.748248;;, + 18;3; 0.194650, 1.828288,-0.748248;;, + 19;3; 0.194650, 1.828288,-0.748248;;, + 20;3; 0.194650, 1.828288,-0.748248;;, + 21;3; 0.194650, 1.828288,-0.748248;;, + 22;3; 0.194650, 1.828288,-0.748248;;, + 23;3; 0.194650, 1.828288,-0.748248;;, + 24;3; 0.194650, 1.828288,-0.748248;;, + 25;3; 0.194650, 1.828288,-0.748248;;, + 26;3; 0.194650, 1.828288,-0.748248;;, + 27;3; 0.194650, 1.828288,-0.748248;;, + 28;3; 0.194650, 1.828288,-0.748248;;, + 29;3; 0.194650, 1.828288,-0.748248;;, + 30;3; 0.194650, 1.828288,-0.748248;;, + 31;3; 0.194650, 1.828288,-0.748248;;, + 32;3; 0.194650, 1.828288,-0.748248;;, + 33;3; 0.194650, 1.828288,-0.748248;;, + 34;3; 0.194650, 1.828288,-0.748248;;, + 35;3; 0.194650, 1.828288,-0.748248;;, + 36;3; 0.194650, 1.828288,-0.748248;;, + 37;3; 0.194650, 1.828288,-0.748248;;, + 38;3; 0.194650, 1.828288,-0.748248;;, + 39;3; 0.194650, 1.828288,-0.748248;;, + 40;3; 0.194650, 1.828288,-0.748248;;, + 41;3; 0.194650, 1.828288,-0.748248;;, + 42;3; 0.194650, 1.828288,-0.748248;;, + 43;3; 0.194650, 1.828288,-0.748248;;, + 44;3; 0.194650, 1.828288,-0.748248;;, + 45;3; 0.194651, 1.828288,-0.748248;;, + 46;3; 0.194650, 1.828288,-0.748248;;, + 47;3; 0.194650, 1.828288,-0.748248;;, + 48;3; 0.194650, 1.828288,-0.748248;;, + 49;3; 0.194650, 1.828288,-0.748248;;, + 50;3; 0.194650, 1.828288,-0.748248;;, + 51;3; 0.194650, 1.828288,-0.748248;;, + 52;3; 0.194650, 1.828288,-0.748248;;, + 53;3; 0.194650, 1.828288,-0.748248;;, + 54;3; 0.194650, 1.828288,-0.748248;;, + 55;3; 0.194650, 1.828288,-0.748248;;, + 56;3; 0.194650, 1.828288,-0.748248;;, + 57;3; 0.194650, 1.828288,-0.748248;;, + 58;3; 0.194650, 1.828288,-0.748248;;, + 59;3; 0.194650, 1.828288,-0.748248;;, + 60;3; 0.194650, 1.828288,-0.748248;;, + 61;3; 0.194650, 1.828288,-0.748248;;, + 62;3; 0.194650, 1.828288,-0.748248;;, + 63;3; 0.194651, 1.828288,-0.748249;;, + 64;3; 0.194650, 1.828288,-0.748248;;, + 65;3; 0.194650, 1.828288,-0.748248;;, + 66;3; 0.194650, 1.828288,-0.748248;;, + 67;3; 0.194650, 1.828288,-0.748248;;, + 68;3; 0.194650, 1.828288,-0.748248;;, + 69;3; 0.194650, 1.828288,-0.748248;;, + 70;3; 0.194650, 1.828288,-0.748248;;, + 71;3; 0.193824, 1.826865,-0.718989;;, + 72;3; 0.191380, 1.822641,-0.632490;;, + 73;3; 0.187655, 1.816186,-0.500793;;, + 74;3; 0.183428, 1.808853,-0.351470;;, + 75;3; 0.179702, 1.802391,-0.219807;;, + 76;3; 0.177257, 1.798159,-0.133348;;, + 77;3; 0.176431, 1.796732,-0.104106;;, + 78;3; 0.176538, 1.796916,-0.107892;;, + 79;3; 0.176887, 1.797517,-0.120255;;, + 80;3; 0.177464, 1.798515,-0.140691;;, + 81;3; 0.178165, 1.799728,-0.165500;;, + 82;3; 0.178872, 1.800950,-0.190476;;, + 83;3; 0.179610, 1.802228,-0.216583;;, + 84;3; 0.180459, 1.803698,-0.246602;;, + 85;3; 0.181415, 1.805352,-0.280384;;, + 86;3; 0.182468, 1.807176,-0.317636;;, + 87;3; 0.183607, 1.809149,-0.357892;;, + 88;3; 0.184812, 1.811236,-0.400490;;, + 89;3; 0.186059, 1.813397,-0.444573;;, + 90;3; 0.187319, 1.815581,-0.489110;;, + 91;3; 0.188559, 1.817731,-0.532954;;, + 92;3; 0.189747, 1.819790,-0.574925;;, + 93;3; 0.190850, 1.821702,-0.613904;;, + 94;3; 0.191840, 1.823419,-0.648918;;, + 95;3; 0.192697, 1.824904,-0.679203;;, + 96;3; 0.193405, 1.826131,-0.704224;;, + 97;3; 0.193955, 1.827084,-0.723676;;, + 98;3; 0.194345, 1.827759,-0.737448;;, + 99;3; 0.194575, 1.828157,-0.745585;;, + 100;3; 0.194650, 1.828288,-0.748248;;, + 101;3; 0.194650, 1.828288,-0.748248;;, + 102;3; 0.194650, 1.828288,-0.748248;;, + 103;3; 0.194650, 1.828288,-0.748248;;, + 104;3; 0.194650, 1.828288,-0.748248;;, + 105;3; 0.194650, 1.828288,-0.748248;;, + 106;3; 0.194650, 1.828288,-0.748248;;, + 107;3; 0.194650, 1.828288,-0.748248;;, + 108;3; 0.194650, 1.828288,-0.748248;;, + 109;3; 0.194650, 1.828288,-0.748248;;, + 110;3; 0.194650, 1.828288,-0.748248;;, + 111;3; 0.194650, 1.828288,-0.748248;;, + 112;3; 0.194650, 1.828288,-0.748248;;, + 113;3; 0.194650, 1.828288,-0.748248;;, + 114;3; 0.194650, 1.828288,-0.748248;;, + 115;3; 0.194651, 1.828288,-0.748248;;, + 116;3; 0.194651, 1.828288,-0.748248;;, + 117;3; 0.194650, 1.828288,-0.748248;;, + 118;3; 0.194650, 1.828288,-0.748248;;, + 119;3; 0.194650, 1.828288,-0.748248;;, + 120;3; 0.194650, 1.828288,-0.748248;;, + 121;3; 0.194650, 1.828288,-0.748248;;, + 122;3; 0.194650, 1.828288,-0.748248;;, + 123;3; 0.194650, 1.828288,-0.748248;;, + 124;3; 0.194650, 1.828288,-0.748248;;, + 125;3; 0.194650, 1.828288,-0.748248;;, + 126;3; 0.194650, 1.828288,-0.748248;;, + 127;3; 0.194650, 1.828288,-0.748248;;, + 128;3; 0.194650, 1.828288,-0.748248;;, + 129;3; 0.194650, 1.828288,-0.748248;;, + 130;3; 0.194650, 1.828288,-0.748248;;, + 131;3; 0.194650, 1.828288,-0.748248;;, + 132;3; 0.194650, 1.828288,-0.748248;;, + 133;3; 0.194650, 1.828288,-0.748248;;, + 134;3; 0.194650, 1.828288,-0.748248;;, + 135;3; 0.194650, 1.828288,-0.748248;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 1;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 2;4; -0.992483,-0.108459, 0.004226,-0.037868;;, + 3;4; -0.987374,-0.131655, 0.005069,-0.038267;;, + 4;4; -0.979333,-0.168163, 0.006395,-0.038895;;, + 5;4; -0.969538,-0.212625, 0.008010,-0.039660;;, + 6;4; -0.959745,-0.257081, 0.009625,-0.040425;;, + 7;4; -0.951705,-0.293573, 0.010950,-0.041053;;, + 8;4; -0.946598,-0.316754, 0.011792,-0.041453;;, + 9;4; -0.944887,-0.324521, 0.012074,-0.041586;;, + 10;4; -0.946901,-0.314574, 0.011713,-0.041409;;, + 11;4; -0.952859,-0.285148, 0.010644,-0.040884;;, + 12;4; -0.961938,-0.240314, 0.009015,-0.040084;;, + 13;4; -0.972235,-0.189461, 0.007168,-0.039177;;, + 14;4; -0.981313,-0.144627, 0.005539,-0.038377;;, + 15;4; -0.987272,-0.115201, 0.004470,-0.037852;;, + 16;4; -0.989286,-0.105254, 0.004109,-0.037675;;, + 17;4; -0.986277,-0.121439, 0.004697,-0.037973;;, + 18;4; -0.977802,-0.167028, 0.006353,-0.038813;;, + 19;4; -0.966921,-0.225564, 0.008480,-0.039892;;, + 20;4; -0.958446,-0.271154, 0.010136,-0.040732;;, + 21;4; -0.955437,-0.287339, 0.010724,-0.041030;;, + 22;4; -0.959701,-0.261762, 0.009795,-0.040541;;, + 23;4; -0.971097,-0.194805, 0.007362,-0.039270;;, + 24;4; -0.983146,-0.127683, 0.004923,-0.038018;;, + 25;4; -0.989057,-0.101707, 0.003979,-0.037578;;, + 26;4; -0.990877,-0.101289, 0.003965,-0.037632;;, + 27;4; -0.992338,-0.100979, 0.003954,-0.037676;;, + 28;4; -0.993349,-0.100790, 0.003947,-0.037707;;, + 29;4; -0.993913,-0.100706, 0.003944,-0.037725;;, + 30;4; -0.994145,-0.100686, 0.003944,-0.037732;;, + 31;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 32;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 33;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 34;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 35;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 36;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 37;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 38;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 39;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 40;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 41;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 42;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 43;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 44;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 45;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 46;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 47;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 48;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 49;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 50;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 51;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 52;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 53;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 54;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 55;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 56;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 57;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 58;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 59;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 60;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 61;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 62;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 63;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 64;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 65;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 66;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 67;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 68;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 69;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 70;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 71;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 72;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 73;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 74;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 75;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 76;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 77;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 78;4; -0.991164,-0.115356, 0.004477,-0.037994;;, + 79;4; -0.982629,-0.156671, 0.005978,-0.038725;;, + 80;4; -0.971671,-0.209714, 0.007904,-0.039663;;, + 81;4; -0.963137,-0.251026, 0.009405,-0.040394;;, + 82;4; -0.960107,-0.265695, 0.009938,-0.040654;;, + 83;4; -0.960339,-0.264571, 0.009897,-0.040634;;, + 84;4; -0.961041,-0.261174, 0.009774,-0.040574;;, + 85;4; -0.962213,-0.255501, 0.009568,-0.040474;;, + 86;4; -0.963842,-0.247611, 0.009281,-0.040334;;, + 87;4; -0.965901,-0.237644, 0.008919,-0.040158;;, + 88;4; -0.968341,-0.225834, 0.008490,-0.039949;;, + 89;4; -0.971092,-0.212518, 0.008006,-0.039713;;, + 90;4; -0.974064,-0.198131, 0.007484,-0.039458;;, + 91;4; -0.977151,-0.183188, 0.006941,-0.039194;;, + 92;4; -0.980238,-0.168245, 0.006398,-0.038930;;, + 93;4; -0.983210,-0.153859, 0.005875,-0.038675;;, + 94;4; -0.985961,-0.140543, 0.005392,-0.038439;;, + 95;4; -0.988400,-0.128734, 0.004963,-0.038230;;, + 96;4; -0.990459,-0.118768, 0.004601,-0.038054;;, + 97;4; -0.992089,-0.110879, 0.004314,-0.037915;;, + 98;4; -0.993261,-0.105206, 0.004108,-0.037814;;, + 99;4; -0.993963,-0.101810, 0.003985,-0.037754;;, + 100;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 101;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 102;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 103;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 104;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 105;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 106;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 107;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 108;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 109;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 110;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 111;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 112;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 113;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 114;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 115;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 116;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 117;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 118;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 119;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 120;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 121;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 122;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 123;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 124;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 125;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 126;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 127;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 128;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 129;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 130;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 131;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 132;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 133;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 134;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 135;4; -0.994195,-0.100686, 0.003944,-0.037734;;; + } + AnimationKey { //Scale + 1; + 136; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Cube} + AnimationKey { //Position + 2; + 136; + 0;3; 0.274003,-0.357581,11.859126;;, + 1;3; 0.274003,-0.357581,11.859126;;, + 2;3; 0.274003,-0.357581,11.859126;;, + 3;3; 0.274003,-0.357581,11.859126;;, + 4;3; 0.274003,-0.357581,11.859126;;, + 5;3; 0.274003,-0.357581,11.859126;;, + 6;3; 0.274003,-0.357581,11.859126;;, + 7;3; 0.274003,-0.357581,11.859126;;, + 8;3; 0.274003,-0.357581,11.859126;;, + 9;3; 0.274003,-0.357581,11.859126;;, + 10;3; 0.274003,-0.357581,11.859126;;, + 11;3; 0.274003,-0.357581,11.859126;;, + 12;3; 0.274003,-0.357581,11.859126;;, + 13;3; 0.274003,-0.357581,11.859126;;, + 14;3; 0.274003,-0.357581,11.859126;;, + 15;3; 0.274003,-0.357581,11.859126;;, + 16;3; 0.274003,-0.357581,11.859126;;, + 17;3; 0.274003,-0.357581,11.859126;;, + 18;3; 0.274003,-0.357581,11.859126;;, + 19;3; 0.274003,-0.357581,11.859126;;, + 20;3; 0.274003,-0.357581,11.859126;;, + 21;3; 0.274003,-0.357581,11.859126;;, + 22;3; 0.274003,-0.357581,11.859126;;, + 23;3; 0.274003,-0.357581,11.859126;;, + 24;3; 0.274003,-0.357581,11.859126;;, + 25;3; 0.274003,-0.357581,11.859126;;, + 26;3; 0.274003,-0.357581,11.859126;;, + 27;3; 0.274003,-0.357581,11.859126;;, + 28;3; 0.274003,-0.357581,11.859126;;, + 29;3; 0.274003,-0.357581,11.859126;;, + 30;3; 0.274003,-0.357581,11.859126;;, + 31;3; 0.274003,-0.357581,11.859126;;, + 32;3; 0.274003,-0.357581,11.859126;;, + 33;3; 0.274003,-0.357581,11.859126;;, + 34;3; 0.274003,-0.357581,11.859126;;, + 35;3; 0.274003,-0.357581,11.859126;;, + 36;3; 0.274003,-0.357581,11.859126;;, + 37;3; 0.274003,-0.357581,11.859126;;, + 38;3; 0.274003,-0.357581,11.859126;;, + 39;3; 0.274003,-0.357581,11.859126;;, + 40;3; 0.274003,-0.357581,11.859126;;, + 41;3; 0.274003,-0.357581,11.859126;;, + 42;3; 0.274003,-0.357581,11.859126;;, + 43;3; 0.274003,-0.357581,11.859126;;, + 44;3; 0.274003,-0.357581,11.859126;;, + 45;3; 0.274003,-0.357581,11.859126;;, + 46;3; 0.274003,-0.357581,11.859126;;, + 47;3; 0.274003,-0.357581,11.859126;;, + 48;3; 0.274003,-0.357581,11.859126;;, + 49;3; 0.274003,-0.357581,11.859126;;, + 50;3; 0.274003,-0.357581,11.859126;;, + 51;3; 0.274003,-0.357581,11.859126;;, + 52;3; 0.274003,-0.357581,11.859126;;, + 53;3; 0.274003,-0.357581,11.859126;;, + 54;3; 0.274003,-0.357581,11.859126;;, + 55;3; 0.274003,-0.357581,11.859126;;, + 56;3; 0.274003,-0.357581,11.859126;;, + 57;3; 0.274003,-0.357581,11.859126;;, + 58;3; 0.274003,-0.357581,11.859126;;, + 59;3; 0.274003,-0.357581,11.859126;;, + 60;3; 0.274003,-0.357581,11.859126;;, + 61;3; 0.274003,-0.357581,11.859126;;, + 62;3; 0.274003,-0.357581,11.859126;;, + 63;3; 0.274003,-0.357581,11.859126;;, + 64;3; 0.274003,-0.357581,11.859126;;, + 65;3; 0.274003,-0.357581,11.859126;;, + 66;3; 0.274003,-0.357581,11.859126;;, + 67;3; 0.274003,-0.357581,11.859126;;, + 68;3; 0.274003,-0.357581,11.859126;;, + 69;3; 0.274003,-0.357581,11.859126;;, + 70;3; 0.274003,-0.357581,11.859126;;, + 71;3; 0.274003,-0.357581,11.859126;;, + 72;3; 0.274003,-0.357581,11.859126;;, + 73;3; 0.274003,-0.357581,11.859126;;, + 74;3; 0.274003,-0.357581,11.859126;;, + 75;3; 0.274003,-0.357581,11.859126;;, + 76;3; 0.274003,-0.357581,11.859126;;, + 77;3; 0.274003,-0.357581,11.859126;;, + 78;3; 0.274003,-0.357581,11.859126;;, + 79;3; 0.274003,-0.357581,11.859126;;, + 80;3; 0.274003,-0.357581,11.859126;;, + 81;3; 0.274003,-0.357581,11.859126;;, + 82;3; 0.274003,-0.357581,11.859126;;, + 83;3; 0.274003,-0.357581,11.859126;;, + 84;3; 0.274003,-0.357581,11.859126;;, + 85;3; 0.274003,-0.357581,11.859126;;, + 86;3; 0.274003,-0.357581,11.859126;;, + 87;3; 0.274003,-0.357581,11.859126;;, + 88;3; 0.274003,-0.357581,11.859126;;, + 89;3; 0.274003,-0.357581,11.859126;;, + 90;3; 0.274003,-0.357581,11.859126;;, + 91;3; 0.274003,-0.357581,11.859126;;, + 92;3; 0.274003,-0.357581,11.859126;;, + 93;3; 0.274003,-0.357581,11.859126;;, + 94;3; 0.274003,-0.357581,11.859126;;, + 95;3; 0.274003,-0.357581,11.859126;;, + 96;3; 0.274003,-0.357581,11.859126;;, + 97;3; 0.274003,-0.357581,11.859126;;, + 98;3; 0.274003,-0.357581,11.859126;;, + 99;3; 0.274003,-0.357581,11.859126;;, + 100;3; 0.274003,-0.357581,11.859126;;, + 101;3; 0.274003,-0.357581,11.859126;;, + 102;3; 0.274003,-0.357581,11.859126;;, + 103;3; 0.274003,-0.357581,11.859126;;, + 104;3; 0.274003,-0.357581,11.859126;;, + 105;3; 0.274003,-0.357581,11.859126;;, + 106;3; 0.274003,-0.357581,11.859126;;, + 107;3; 0.274003,-0.357581,11.859126;;, + 108;3; 0.274003,-0.357581,11.859126;;, + 109;3; 0.274003,-0.357581,11.859126;;, + 110;3; 0.274003,-0.357581,11.859126;;, + 111;3; 0.274003,-0.357581,11.859126;;, + 112;3; 0.274003,-0.357581,11.859126;;, + 113;3; 0.274003,-0.357581,11.859126;;, + 114;3; 0.274003,-0.357581,11.859126;;, + 115;3; 0.274003,-0.357581,11.859126;;, + 116;3; 0.274003,-0.357581,11.859126;;, + 117;3; 0.274003,-0.357581,11.859126;;, + 118;3; 0.274003,-0.357581,11.859126;;, + 119;3; 0.274003,-0.357581,11.859126;;, + 120;3; 0.274003,-0.357581,11.859126;;, + 121;3; 0.274003,-0.357581,11.859126;;, + 122;3; 0.274003,-0.357581,11.859126;;, + 123;3; 0.274003,-0.357581,11.859126;;, + 124;3; 0.274003,-0.357581,11.859126;;, + 125;3; 0.274003,-0.357581,11.859126;;, + 126;3; 0.274003,-0.357581,11.859126;;, + 127;3; 0.274003,-0.357581,11.859126;;, + 128;3; 0.274003,-0.357581,11.859126;;, + 129;3; 0.274003,-0.357581,11.859126;;, + 130;3; 0.274003,-0.357581,11.859126;;, + 131;3; 0.274003,-0.357581,11.859126;;, + 132;3; 0.274003,-0.357581,11.859126;;, + 133;3; 0.274003,-0.357581,11.859126;;, + 134;3; 0.274003,-0.357581,11.859126;;, + 135;3; 0.274003,-0.357581,11.859126;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 136; + 0;3; 3.749036, 3.749036, 3.749036;;, + 1;3; 3.749036, 3.749036, 3.749036;;, + 2;3; 3.749036, 3.749036, 3.749036;;, + 3;3; 3.749036, 3.749036, 3.749036;;, + 4;3; 3.749036, 3.749036, 3.749036;;, + 5;3; 3.749036, 3.749036, 3.749036;;, + 6;3; 3.749036, 3.749036, 3.749036;;, + 7;3; 3.749036, 3.749036, 3.749036;;, + 8;3; 3.749036, 3.749036, 3.749036;;, + 9;3; 3.749036, 3.749036, 3.749036;;, + 10;3; 3.749036, 3.749036, 3.749036;;, + 11;3; 3.749036, 3.749036, 3.749036;;, + 12;3; 3.749036, 3.749036, 3.749036;;, + 13;3; 3.749036, 3.749036, 3.749036;;, + 14;3; 3.749036, 3.749036, 3.749036;;, + 15;3; 3.749036, 3.749036, 3.749036;;, + 16;3; 3.749036, 3.749036, 3.749036;;, + 17;3; 3.749036, 3.749036, 3.749036;;, + 18;3; 3.749036, 3.749036, 3.749036;;, + 19;3; 3.749036, 3.749036, 3.749036;;, + 20;3; 3.749036, 3.749036, 3.749036;;, + 21;3; 3.749036, 3.749036, 3.749036;;, + 22;3; 3.749036, 3.749036, 3.749036;;, + 23;3; 3.749036, 3.749036, 3.749036;;, + 24;3; 3.749036, 3.749036, 3.749036;;, + 25;3; 3.749036, 3.749036, 3.749036;;, + 26;3; 3.749036, 3.749036, 3.749036;;, + 27;3; 3.749036, 3.749036, 3.749036;;, + 28;3; 3.749036, 3.749036, 3.749036;;, + 29;3; 3.749036, 3.749036, 3.749036;;, + 30;3; 3.749036, 3.749036, 3.749036;;, + 31;3; 3.749036, 3.749036, 3.749036;;, + 32;3; 3.749036, 3.749036, 3.749036;;, + 33;3; 3.749036, 3.749036, 3.749036;;, + 34;3; 3.749036, 3.749036, 3.749036;;, + 35;3; 3.749036, 3.749036, 3.749036;;, + 36;3; 3.749036, 3.749036, 3.749036;;, + 37;3; 3.749036, 3.749036, 3.749036;;, + 38;3; 3.749036, 3.749036, 3.749036;;, + 39;3; 3.749036, 3.749036, 3.749036;;, + 40;3; 3.749036, 3.749036, 3.749036;;, + 41;3; 3.749036, 3.749036, 3.749036;;, + 42;3; 3.749036, 3.749036, 3.749036;;, + 43;3; 3.749036, 3.749036, 3.749036;;, + 44;3; 3.749036, 3.749036, 3.749036;;, + 45;3; 3.749036, 3.749036, 3.749036;;, + 46;3; 3.749036, 3.749036, 3.749036;;, + 47;3; 3.749036, 3.749036, 3.749036;;, + 48;3; 3.749036, 3.749036, 3.749036;;, + 49;3; 3.749036, 3.749036, 3.749036;;, + 50;3; 3.749036, 3.749036, 3.749036;;, + 51;3; 3.749036, 3.749036, 3.749036;;, + 52;3; 3.749036, 3.749036, 3.749036;;, + 53;3; 3.749036, 3.749036, 3.749036;;, + 54;3; 3.749036, 3.749036, 3.749036;;, + 55;3; 3.749036, 3.749036, 3.749036;;, + 56;3; 3.749036, 3.749036, 3.749036;;, + 57;3; 3.749036, 3.749036, 3.749036;;, + 58;3; 3.749036, 3.749036, 3.749036;;, + 59;3; 3.749036, 3.749036, 3.749036;;, + 60;3; 3.749036, 3.749036, 3.749036;;, + 61;3; 3.749036, 3.749036, 3.749036;;, + 62;3; 3.749036, 3.749036, 3.749036;;, + 63;3; 3.749036, 3.749036, 3.749036;;, + 64;3; 3.749036, 3.749036, 3.749036;;, + 65;3; 3.749036, 3.749036, 3.749036;;, + 66;3; 3.749036, 3.749036, 3.749036;;, + 67;3; 3.749036, 3.749036, 3.749036;;, + 68;3; 3.749036, 3.749036, 3.749036;;, + 69;3; 3.749036, 3.749036, 3.749036;;, + 70;3; 3.749036, 3.749036, 3.749036;;, + 71;3; 3.749036, 3.749036, 3.749036;;, + 72;3; 3.749036, 3.749036, 3.749036;;, + 73;3; 3.749036, 3.749036, 3.749036;;, + 74;3; 3.749036, 3.749036, 3.749036;;, + 75;3; 3.749036, 3.749036, 3.749036;;, + 76;3; 3.749036, 3.749036, 3.749036;;, + 77;3; 3.749036, 3.749036, 3.749036;;, + 78;3; 3.749036, 3.749036, 3.749036;;, + 79;3; 3.749036, 3.749036, 3.749036;;, + 80;3; 3.749036, 3.749036, 3.749036;;, + 81;3; 3.749036, 3.749036, 3.749036;;, + 82;3; 3.749036, 3.749036, 3.749036;;, + 83;3; 3.749036, 3.749036, 3.749036;;, + 84;3; 3.749036, 3.749036, 3.749036;;, + 85;3; 3.749036, 3.749036, 3.749036;;, + 86;3; 3.749036, 3.749036, 3.749036;;, + 87;3; 3.749036, 3.749036, 3.749036;;, + 88;3; 3.749036, 3.749036, 3.749036;;, + 89;3; 3.749036, 3.749036, 3.749036;;, + 90;3; 3.749036, 3.749036, 3.749036;;, + 91;3; 3.749036, 3.749036, 3.749036;;, + 92;3; 3.749036, 3.749036, 3.749036;;, + 93;3; 3.749036, 3.749036, 3.749036;;, + 94;3; 3.749036, 3.749036, 3.749036;;, + 95;3; 3.749036, 3.749036, 3.749036;;, + 96;3; 3.749036, 3.749036, 3.749036;;, + 97;3; 3.749036, 3.749036, 3.749036;;, + 98;3; 3.749036, 3.749036, 3.749036;;, + 99;3; 3.749036, 3.749036, 3.749036;;, + 100;3; 3.749036, 3.749036, 3.749036;;, + 101;3; 3.749036, 3.749036, 3.749036;;, + 102;3; 3.749036, 3.749036, 3.749036;;, + 103;3; 3.749036, 3.749036, 3.749036;;, + 104;3; 3.749036, 3.749036, 3.749036;;, + 105;3; 3.749036, 3.749036, 3.749036;;, + 106;3; 3.749036, 3.749036, 3.749036;;, + 107;3; 3.749036, 3.749036, 3.749036;;, + 108;3; 3.749036, 3.749036, 3.749036;;, + 109;3; 3.749036, 3.749036, 3.749036;;, + 110;3; 3.749036, 3.749036, 3.749036;;, + 111;3; 3.749036, 3.749036, 3.749036;;, + 112;3; 3.749036, 3.749036, 3.749036;;, + 113;3; 3.749036, 3.749036, 3.749036;;, + 114;3; 3.749036, 3.749036, 3.749036;;, + 115;3; 3.749036, 3.749036, 3.749036;;, + 116;3; 3.749036, 3.749036, 3.749036;;, + 117;3; 3.749036, 3.749036, 3.749036;;, + 118;3; 3.749036, 3.749036, 3.749036;;, + 119;3; 3.749036, 3.749036, 3.749036;;, + 120;3; 3.749036, 3.749036, 3.749036;;, + 121;3; 3.749036, 3.749036, 3.749036;;, + 122;3; 3.749036, 3.749036, 3.749036;;, + 123;3; 3.749036, 3.749036, 3.749036;;, + 124;3; 3.749036, 3.749036, 3.749036;;, + 125;3; 3.749036, 3.749036, 3.749036;;, + 126;3; 3.749036, 3.749036, 3.749036;;, + 127;3; 3.749036, 3.749036, 3.749036;;, + 128;3; 3.749036, 3.749036, 3.749036;;, + 129;3; 3.749036, 3.749036, 3.749036;;, + 130;3; 3.749036, 3.749036, 3.749036;;, + 131;3; 3.749036, 3.749036, 3.749036;;, + 132;3; 3.749036, 3.749036, 3.749036;;, + 133;3; 3.749036, 3.749036, 3.749036;;, + 134;3; 3.749036, 3.749036, 3.749036;;, + 135;3; 3.749036, 3.749036, 3.749036;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs/models/mobs_dirt_monster.png b/mods/mobs/models/mobs_dirt_monster.png new file mode 100644 index 0000000..14da90b Binary files /dev/null and b/mods/mobs/models/mobs_dirt_monster.png differ diff --git a/mods/mobs/models/mobs_dungeon_master.png b/mods/mobs/models/mobs_dungeon_master.png new file mode 100644 index 0000000..dbc9584 Binary files /dev/null and b/mods/mobs/models/mobs_dungeon_master.png differ diff --git a/mods/mobs/models/mobs_dungeon_master.x b/mods/mobs/models/mobs_dungeon_master.x new file mode 100644 index 0000000..613536a --- /dev/null +++ b/mods/mobs/models/mobs_dungeon_master.x @@ -0,0 +1,2830 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature_root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.013544,-0.083633, 1.540002, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 0.996330, 0.085600, 0.000000, 0.000000, + 0.085600,-0.996329,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.692679, 1.523193, 0.000000, 1.000000;; + } + } //End of Armature_Bone_001 + Frame Armature_Bone_002 { + FrameTransformMatrix { + 0.996330,-0.085600, 0.000000, 0.000000, + -0.085600,-0.996329,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + -0.714786, 1.523193, 0.000000, 1.000000;; + } + } //End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + -0.000000, 0.000001,-1.000000, 0.000000, + 0.449504,-0.650638, 0.000000, 1.000000;; + } + } //End of Armature_Bone_003 + Frame Armature_Bone_004 { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + -0.000000, 0.000001,-1.000000, 0.000000, + -0.478980,-0.650638, 0.000000, 1.000000;; + } + } //End of Armature_Bone_004 + Frame Armature_Bone_005 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 1.402718,-0.262646, 1.000000;; + } + } //End of Armature_Bone_005 + } //End of Armature_root + Frame Cube_004 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { //Cube_010 Mesh + 144; + 0.318756; 0.789709; 3.232342;, + 0.318756;-0.016418; 3.232342;, + 0.318756;-0.016418; 3.887055;, + 0.318756; 0.789709; 3.887055;, + 0.318756;-0.016418; 3.232342;, + -0.348305;-0.016418; 3.232342;, + -0.348305;-0.016418; 3.887055;, + 0.318756;-0.016418; 3.887055;, + -0.348305;-0.016418; 3.232342;, + -0.348305; 0.789709; 3.232342;, + -0.348305; 0.789709; 3.887055;, + -0.348305;-0.016418; 3.887055;, + -0.348305; 0.789709; 3.232342;, + 0.318756; 0.789709; 3.232342;, + 0.318756; 0.789709; 3.887055;, + -0.348305; 0.789709; 3.887055;, + -0.348305; 0.789709; 3.232342;, + -0.348305;-0.016418; 3.232342;, + 0.318756;-0.016418; 3.232342;, + 0.318756; 0.789709; 3.232342;, + 0.318756; 0.789709; 3.887055;, + 0.318756;-0.016418; 3.887055;, + -0.348305;-0.016418; 3.887055;, + -0.348305; 0.789709; 3.887055;, + -0.705105; 0.178616; 1.633796;, + -0.705105;-0.325428; 1.633796;, + -0.705105;-0.325428; 3.633796;, + -0.705105; 0.178616; 3.633796;, + -0.705105;-0.325428; 1.633796;, + -1.047768;-0.325428; 1.633796;, + -1.047768;-0.325428; 3.633796;, + -0.705105;-0.325428; 3.633796;, + -1.047768;-0.325428; 1.633796;, + -1.047768; 0.178616; 1.633796;, + -1.047768; 0.178616; 3.633796;, + -1.047768;-0.325428; 3.633796;, + -1.047768; 0.178616; 1.633796;, + -0.705105; 0.178616; 1.633796;, + -0.705105; 0.178616; 3.633796;, + -1.047768; 0.178616; 3.633796;, + -1.047768; 0.178616; 1.633796;, + -1.047768;-0.325428; 1.633796;, + -0.705105;-0.325428; 1.633796;, + -0.705105; 0.178616; 1.633796;, + -0.705105; 0.178616; 3.633796;, + -0.705105;-0.325428; 3.633796;, + -1.047768;-0.325428; 3.633796;, + -1.047768; 0.178616; 3.633796;, + 0.677945;-0.325428; 3.633796;, + 0.677945;-0.325429; 1.633796;, + 0.677945; 0.178616; 1.633796;, + 0.677945; 0.178616; 3.633796;, + 1.020608;-0.325428; 3.633796;, + 1.020608;-0.325429; 1.633796;, + 0.677945;-0.325429; 1.633796;, + 0.677945;-0.325428; 3.633796;, + 1.020608; 0.178616; 3.633796;, + 1.020608; 0.178616; 1.633796;, + 1.020608;-0.325429; 1.633796;, + 1.020608;-0.325428; 3.633796;, + 0.677945; 0.178616; 3.633796;, + 0.677945; 0.178616; 1.633796;, + 1.020608; 0.178616; 1.633796;, + 1.020608; 0.178616; 3.633796;, + 0.677945;-0.325429; 1.633796;, + 1.020608;-0.325429; 1.633796;, + 1.020608; 0.178616; 1.633796;, + 0.677945; 0.178616; 1.633796;, + 1.020608;-0.325428; 3.633796;, + 0.677945;-0.325428; 3.633796;, + 0.677945; 0.178616; 3.633796;, + 1.020608; 0.178616; 3.633796;, + 0.301218;-0.337135; 1.403617;, + 0.301218;-0.337135; 0.551304;, + 0.301218; 0.166909; 0.551303;, + 0.301218; 0.166909; 1.403617;, + 0.643881;-0.337135; 1.403617;, + 0.643881;-0.337135; 0.551304;, + 0.301218;-0.337135; 0.551304;, + 0.301218;-0.337135; 1.403617;, + 0.643881; 0.166909; 1.403617;, + 0.643881; 0.166909; 0.551303;, + 0.643881;-0.337135; 0.551304;, + 0.643881;-0.337135; 1.403617;, + 0.301218; 0.166909; 1.403617;, + 0.301218; 0.166909; 0.551303;, + 0.643881; 0.166909; 0.551303;, + 0.643881; 0.166909; 1.403617;, + 0.301218;-0.337135; 0.551304;, + 0.643881;-0.337135; 0.551304;, + 0.643881; 0.166909; 0.551303;, + 0.301218; 0.166909; 0.551303;, + 0.643881;-0.337135; 1.403617;, + 0.301218;-0.337135; 1.403617;, + 0.301218; 0.166909; 1.403617;, + 0.643881; 0.166909; 1.403617;, + -0.284914; 0.166909; 1.403617;, + -0.284914; 0.166909; 0.551303;, + -0.284914;-0.337135; 0.551304;, + -0.284914;-0.337135; 1.403617;, + -0.627577; 0.166909; 1.403617;, + -0.627577; 0.166909; 0.551303;, + -0.284914; 0.166909; 0.551303;, + -0.284914; 0.166909; 1.403617;, + -0.627577;-0.337135; 1.403617;, + -0.627577;-0.337135; 0.551304;, + -0.627577; 0.166909; 0.551303;, + -0.627577; 0.166909; 1.403617;, + -0.284914;-0.337135; 1.403617;, + -0.284914;-0.337135; 0.551304;, + -0.627577;-0.337135; 0.551304;, + -0.627577;-0.337135; 1.403617;, + -0.284914; 0.166909; 0.551303;, + -0.627577; 0.166909; 0.551303;, + -0.627577;-0.337135; 0.551304;, + -0.284914;-0.337135; 0.551304;, + -0.627577; 0.166909; 1.403617;, + -0.284914; 0.166909; 1.403617;, + -0.284914;-0.337135; 1.403617;, + -0.627577;-0.337135; 1.403617;, + 0.665053; 0.418757; 1.363851;, + 0.665052;-0.399357; 1.363851;, + 0.665052;-0.399357; 3.791156;, + 0.665053; 0.418757; 3.791156;, + 0.665052;-0.399357; 1.363851;, + -0.694601;-0.399357; 1.363851;, + -0.694601;-0.399357; 3.791156;, + 0.665052;-0.399357; 3.791156;, + -0.694601;-0.399357; 1.363851;, + -0.694601; 0.418757; 1.363851;, + -0.694601; 0.418757; 3.791156;, + -0.694601;-0.399357; 3.791156;, + -0.694601; 0.418757; 1.363851;, + 0.665053; 0.418757; 1.363851;, + 0.665053; 0.418757; 3.791156;, + -0.694601; 0.418757; 3.791156;, + -0.694601; 0.418757; 1.363851;, + -0.694601;-0.399357; 1.363851;, + 0.665052;-0.399357; 1.363851;, + 0.665053; 0.418757; 1.363851;, + 0.665053; 0.418757; 3.791156;, + 0.665052;-0.399357; 3.791156;, + -0.694601;-0.399357; 3.791156;, + -0.694601; 0.418757; 3.791156;; + 36; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;; + MeshNormals { //Cube_010 Normals + 144; + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000; 1.000000;, + -0.000000;-0.000000; 1.000000;, + -0.000000;-0.000000; 1.000000;, + -0.000000;-0.000000; 1.000000;; + 36; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;; + } //End of Cube_010 Normals + MeshMaterialList { //Cube_010 Material List + 1; + 36; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Cube_010 Material List + MeshTextureCoords { //Cube_010 UV Coordinates + 144; + 0.387426; 0.459860;, + 0.094289; 0.459861;, + 0.094288; 0.286103;, + 0.387425; 0.286102;, + 0.059786; 0.262016;, + 0.418026; 0.261439;, + 0.418026; 0.433032;, + 0.059786; 0.433610;, + 0.389470; 0.458599;, + 0.095582; 0.458598;, + 0.094832; 0.288305;, + 0.388720; 0.288306;, + 0.417249; 0.254044;, + 0.059948; 0.254044;, + 0.059948; 0.055927;, + 0.417249; 0.055927;, + 0.419848; 0.262019;, + 0.419848; 0.457484;, + 0.059357; 0.457485;, + 0.059357; 0.262019;, + 0.058928; 0.455355;, + 0.058928; 0.259888;, + 0.419832; 0.259888;, + 0.419832; 0.455355;, + 0.202332; 0.663934;, + 0.202332; 0.543673;, + 0.822669; 0.543673;, + 0.822669; 0.663933;, + 0.202981; 0.662859;, + 0.202981; 0.542598;, + 0.823317; 0.542598;, + 0.823317; 0.662858;, + 0.000739; 0.691902;, + 0.000739; 0.542773;, + 0.728975; 0.542773;, + 0.728975; 0.691902;, + 0.030510; 0.562226;, + 0.030510; 0.441965;, + 0.650847; 0.441965;, + 0.650847; 0.562226;, + 0.033201; 0.715150;, + 0.033201; 0.564904;, + 0.228521; 0.564904;, + 0.228521; 0.715150;, + 0.430636; 0.539772;, + 0.430636; 0.688205;, + 0.237674; 0.688205;, + 0.237674; 0.539772;, + 0.822669; 0.543673;, + 0.202332; 0.543673;, + 0.202332; 0.663934;, + 0.822669; 0.663933;, + 0.823317; 0.542598;, + 0.202981; 0.542598;, + 0.202981; 0.662859;, + 0.823317; 0.662858;, + 0.728975; 0.542773;, + 0.000739; 0.542773;, + 0.000739; 0.691902;, + 0.728975; 0.691902;, + 0.650847; 0.441965;, + 0.030510; 0.441965;, + 0.030510; 0.562226;, + 0.650847; 0.562226;, + 0.228521; 0.564904;, + 0.033201; 0.564904;, + 0.033201; 0.715150;, + 0.228521; 0.715150;, + 0.237674; 0.688205;, + 0.430636; 0.688205;, + 0.430636; 0.539772;, + 0.237674; 0.539772;, + 0.748471; 0.491562;, + 0.747890; 0.636872;, + 0.866287; 0.636872;, + 0.866868; 0.491562;, + 0.873832; 0.491802;, + 0.873832; 0.636858;, + 0.962763; 0.636858;, + 0.962763; 0.491802;, + 0.747989; 0.490711;, + 0.747989; 0.636113;, + 0.865800; 0.636482;, + 0.865800; 0.491080;, + 0.616586; 0.490156;, + 0.616586; 0.639542;, + 0.741276; 0.639912;, + 0.741276; 0.490526;, + 0.865800; 0.740186;, + 0.865800; 0.640286;, + 0.745723; 0.640286;, + 0.745723; 0.740186;, + 0.866661; 0.488915;, + 0.866661; 0.387572;, + 0.746584; 0.387572;, + 0.746584; 0.488915;, + 0.736344; 0.489306;, + 0.736344; 0.642007;, + 0.865321; 0.642007;, + 0.865321; 0.489306;, + 0.866972; 0.489546;, + 0.866972; 0.642541;, + 0.966818; 0.642541;, + 0.966818; 0.489546;, + 0.735819; 0.488455;, + 0.735819; 0.642172;, + 0.864157; 0.642541;, + 0.864157; 0.488825;, + 0.607233; 0.488825;, + 0.607233; 0.638211;, + 0.732937; 0.638580;, + 0.732937; 0.489194;, + 0.864157; 0.742441;, + 0.864157; 0.642541;, + 0.733349; 0.642541;, + 0.733349; 0.742441;, + 0.865096; 0.486660;, + 0.865096; 0.385316;, + 0.734288; 0.385316;, + 0.734288; 0.486660;, + 0.707025; 0.460657;, + 0.520830; 0.459733;, + 0.520830; 0.042592;, + 0.707025; 0.043516;, + 0.998302; 0.458761;, + 0.521381; 0.458761;, + 0.521381; 0.041735;, + 0.998302; 0.041735;, + 0.996909; 0.458865;, + 0.809286; 0.458288;, + 0.809287; 0.043455;, + 0.996911; 0.044033;, + 0.997038; 0.458464;, + 0.521559; 0.458463;, + 0.521559; 0.043516;, + 0.997039; 0.043516;, + 0.995549; 0.309499;, + 0.995549; 0.458510;, + 0.518634; 0.458509;, + 0.518634; 0.309498;, + 0.520935; 0.199387;, + 0.520935; 0.040936;, + 0.996415; 0.040936;, + 0.996415; 0.199387;; + } //End of Cube_010 UV Coordinates + XSkinMeshHeader { + 6; + 18; + 6; + } + SkinWeights { + "Armature_Bone_003"; + 72; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 0.000128, + 0.000000, + 0.000000, + 0.000000, + 0.000050, + 0.000000, + 0.000000, + 0.000128, + 0.000000, + 0.000000, + 0.000000, + 0.000050, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000050, + 0.000128, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 0.999758, + 1.000000, + 0.997048, + 0.990071, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.990071, + 0.997048, + 1.000000, + 0.999758, + 1.000000, + 1.000000, + 1.000000, + 0.990071, + 1.000000, + 0.999758, + 0.997048, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000001, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000001, 0.000000, + -0.463048, 1.430443, 0.083633, 1.000000;; + } //End of Armature_Bone_003 Skin Weights + SkinWeights { + "Armature_root"; + 78; + 49, + 50, + 54, + 61, + 64, + 67, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000018, + 0.009929, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.009929, + 0.000018, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.009929, + 0.000000, + 0.000000, + 0.000018, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.013544,-2.081081,-0.083634, 1.000000;; + } //End of Armature_root Skin Weights + SkinWeights { + "Armature_Bone_004"; + 72; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000242, + 0.000000, + 0.002934, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.002934, + 0.000000, + 0.000242, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000242, + 0.002934, + 0.000000, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 0.998068, + 0.999999, + 1.000000, + 1.000000, + 0.999920, + 0.999974, + 0.999999, + 0.998068, + 0.999999, + 1.000000, + 0.999974, + 0.999920, + 1.000000, + 0.999999, + 0.999974, + 1.000000, + 0.998068, + 1.000000, + 0.999999, + 0.999920; + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000001, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000001, 0.000000, + 0.465436, 1.430442, 0.083633, 1.000000;; + } //End of Armature_Bone_004 Skin Weights + SkinWeights { + "Armature_Bone_002"; + 72; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.001932, + 0.000001, + 0.000000, + 0.000000, + 0.000080, + 0.000026, + 0.000001, + 0.001932, + 0.000001, + 0.000000, + 0.000026, + 0.000080, + 0.000000, + 0.000001, + 0.000026, + 0.000000, + 0.001932, + 0.000000, + 0.000001, + 0.000080; + 0.996330,-0.085600, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.085600,-0.996330, 0.000000, 0.000000, + 1.007194, 3.531019, 0.083633, 1.000000;; + } //End of Armature_Bone_002 Skin Weights + SkinWeights { + "Armature_Bone_005"; + 48; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000004, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000004, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000004; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.013544,-0.179013,-3.483799, 1.000000;; + } //End of Armature_Bone_005 Skin Weights + SkinWeights { + "Armature_Bone_001"; + 48; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95; + 0.999872, + 1.000000, + 1.000000, + 1.000000, + 0.999950, + 1.000000, + 1.000000, + 0.999872, + 0.999996, + 0.999999, + 1.000000, + 0.999950, + 1.000000, + 1.000000, + 0.999999, + 0.999996, + 1.000000, + 1.000000, + 0.999999, + 1.000000, + 0.999950, + 0.999872, + 1.000000, + 0.999996, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 0.996330, 0.085600, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + 0.085600,-0.996330, 0.000000, 0.000000, + -1.012157, 3.530593, 0.083633, 1.000000;; + } //End of Armature_Bone_001 Skin Weights + } //End of Cube_010 Mesh + } //End of Cube_004 + } //End of Armature +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 51; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_root} + AnimationKey { //Position + 2; + 51; + 0;3; 0.013544,-0.083633, 1.540002;;, + 1;3; 0.013544,-0.083633, 1.540002;;, + 2;3; 0.013544,-0.083633, 1.540002;;, + 3;3; 0.013544,-0.083633, 1.540002;;, + 4;3; 0.013544,-0.083633, 1.540002;;, + 5;3; 0.013544,-0.083633, 1.540002;;, + 6;3; 0.013544,-0.083633, 1.540002;;, + 7;3; 0.013544,-0.083633, 1.540002;;, + 8;3; 0.013544,-0.083633, 1.540002;;, + 9;3; 0.013544,-0.083633, 1.540002;;, + 10;3; 0.013544,-0.083633, 1.540002;;, + 11;3; 0.013544,-0.083633, 1.540002;;, + 12;3; 0.013544,-0.083633, 1.540002;;, + 13;3; 0.013544,-0.083633, 1.540002;;, + 14;3; 0.013544,-0.083633, 1.540002;;, + 15;3; 0.013544,-0.083633, 1.540002;;, + 16;3; 0.013544,-0.083633, 1.540002;;, + 17;3; 0.013544,-0.083633, 1.540002;;, + 18;3; 0.013544,-0.083633, 1.540002;;, + 19;3; 0.013544,-0.083633, 1.540002;;, + 20;3; 0.013544,-0.083633, 1.540002;;, + 21;3; 0.013544,-0.083633, 1.540002;;, + 22;3; 0.013544,-0.083633, 1.540002;;, + 23;3; 0.013544,-0.083633, 1.540002;;, + 24;3; 0.013544,-0.083633, 1.540002;;, + 25;3; 0.013544,-0.083633, 1.540002;;, + 26;3; 0.013544,-0.083633, 1.540002;;, + 27;3; 0.013544,-0.083633, 1.540002;;, + 28;3; 0.013544,-0.083633, 1.540002;;, + 29;3; 0.013544,-0.083633, 1.540002;;, + 30;3; 0.013544,-0.083633, 1.540002;;, + 31;3; 0.013544,-0.083633, 1.540002;;, + 32;3; 0.013544,-0.083633, 1.540002;;, + 33;3; 0.013544,-0.083633, 1.540002;;, + 34;3; 0.013544,-0.083633, 1.540002;;, + 35;3; 0.013544,-0.083633, 1.540002;;, + 36;3; 0.013544,-0.083633, 1.540002;;, + 37;3; 0.013544,-0.083633, 1.540002;;, + 38;3; 0.013544,-0.083633, 1.540002;;, + 39;3; 0.013544,-0.083633, 1.540002;;, + 40;3; 0.013544,-0.083633, 1.540002;;, + 41;3; 0.013544,-0.083633, 1.540002;;, + 42;3; 0.013544,-0.083633, 1.540002;;, + 43;3; 0.013544,-0.083633, 1.540002;;, + 44;3; 0.013544,-0.083633, 1.540002;;, + 45;3; 0.013544,-0.083633, 1.540002;;, + 46;3; 0.013544,-0.083633, 1.540002;;, + 47;3; 0.013544,-0.083633, 1.540002;;, + 48;3; 0.013544,-0.083633, 1.540002;;, + 49;3; 0.013544,-0.083633, 1.540002;;, + 50;3; 0.013544,-0.083633, 1.540002;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 2;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 3;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 4;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 5;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 6;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 7;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 9;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 10;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 11;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 12;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 13;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 14;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 16;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 17;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 18;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 19;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 20;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 21;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 22;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 23;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 24;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 25;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 26;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 27;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 28;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 29;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 30;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 31;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 32;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 33;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 34;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 35;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 36;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 37;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 38;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 39;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 40;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 42;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 43;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 44;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 45;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 46;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 47;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 48;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 49;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 50;4; -0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { //Position + 2; + 51; + 0;3; 0.692679, 1.523193, 0.000000;;, + 1;3; 0.692679, 1.523193, 0.000000;;, + 2;3; 0.692679, 1.523193, 0.000000;;, + 3;3; 0.692679, 1.523193, 0.000000;;, + 4;3; 0.692679, 1.523193, 0.000000;;, + 5;3; 0.692679, 1.523193, 0.000000;;, + 6;3; 0.692679, 1.523193, 0.000000;;, + 7;3; 0.692679, 1.523193, 0.000000;;, + 8;3; 0.692679, 1.523193, 0.000000;;, + 9;3; 0.692679, 1.523193, 0.000000;;, + 10;3; 0.692679, 1.523193, 0.000000;;, + 11;3; 0.692679, 1.523193, 0.000000;;, + 12;3; 0.692679, 1.523193, 0.000000;;, + 13;3; 0.692679, 1.523193, 0.000000;;, + 14;3; 0.692679, 1.523193, 0.000000;;, + 15;3; 0.692679, 1.523193, 0.000000;;, + 16;3; 0.692679, 1.523193, 0.000000;;, + 17;3; 0.692679, 1.523193, 0.000000;;, + 18;3; 0.692679, 1.523193, 0.000000;;, + 19;3; 0.692679, 1.523193, 0.000000;;, + 20;3; 0.692679, 1.523193, 0.000000;;, + 21;3; 0.692679, 1.523193, 0.000000;;, + 22;3; 0.692679, 1.523193, 0.000000;;, + 23;3; 0.692679, 1.523193, 0.000000;;, + 24;3; 0.692679, 1.523193, 0.000000;;, + 25;3; 0.692679, 1.523193, 0.000000;;, + 26;3; 0.692679, 1.523193, 0.000000;;, + 27;3; 0.692679, 1.523193, 0.000000;;, + 28;3; 0.692679, 1.523193, 0.000000;;, + 29;3; 0.692679, 1.523193, 0.000000;;, + 30;3; 0.692679, 1.523193, 0.000000;;, + 31;3; 0.692679, 1.523193, 0.000000;;, + 32;3; 0.692679, 1.523193, 0.000000;;, + 33;3; 0.692679, 1.523193, 0.000000;;, + 34;3; 0.692679, 1.523193, 0.000000;;, + 35;3; 0.692679, 1.523193, 0.000000;;, + 36;3; 0.692679, 1.523193, 0.000000;;, + 37;3; 0.692679, 1.523193, 0.000000;;, + 38;3; 0.692679, 1.523193, 0.000000;;, + 39;3; 0.692679, 1.523193, 0.000000;;, + 40;3; 0.692679, 1.523193, 0.000000;;, + 41;3; 0.692679, 1.523193, 0.000000;;, + 42;3; 0.692679, 1.523193, 0.000000;;, + 43;3; 0.692679, 1.523193, 0.000000;;, + 44;3; 0.692679, 1.523193, 0.000000;;, + 45;3; 0.692679, 1.523193, 0.000000;;, + 46;3; 0.692679, 1.523193, 0.000000;;, + 47;3; 0.692679, 1.523193, 0.000000;;, + 48;3; 0.692679, 1.523193, 0.000000;;, + 49;3; 0.692679, 1.523193, 0.000000;;, + 50;3; 0.692679, 1.523193, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -0.000000, 0.999054, 0.043483, 0.000000;;, + 1;4; -0.000000, 0.999054, 0.043483, 0.000000;;, + 2;4; -0.002786, 0.998997, 0.043893,-0.000311;;, + 3;4; -0.010065, 0.998846, 0.045127,-0.000920;;, + 4;4; -0.017323, 0.998682, 0.047110,-0.001040;;, + 5;4; -0.020088, 0.998523, 0.049636,-0.000842;;, + 6;4; -0.018689, 0.998359, 0.052361,-0.000658;;, + 7;4; -0.014500, 0.998211, 0.054887,-0.000453;;, + 8;4; -0.008418, 0.998097, 0.056873,-0.000262;;, + 9;4; -0.002308, 0.998029, 0.058110,-0.000095;;, + 10;4; 0.002359, 0.998007, 0.058522, 0.000050;;, + 11;4; 0.006399, 0.998054, 0.058190, 0.000214;;, + 12;4; 0.010483, 0.998189, 0.057189, 0.000409;;, + 13;4; 0.013328, 0.998365, 0.055560, 0.000560;;, + 14;4; 0.014240, 0.998526, 0.053427, 0.000611;;, + 15;4; 0.013361, 0.998670, 0.051008, 0.000573;;, + 16;4; 0.010801, 0.998803, 0.048589, 0.000463;;, + 17;4; 0.007120, 0.998914, 0.046454, 0.000305;;, + 18;4; 0.003440, 0.998994, 0.044821, 0.000148;;, + 19;4; 0.000880, 0.999040, 0.043816, 0.000038;;, + 20;4; -0.000000, 0.999054, 0.043483, 0.000000;;, + 21;4; 0.018035, 0.997872, 0.043432, 0.000785;;, + 22;4; 0.065205, 0.994781, 0.043298, 0.002838;;, + 23;4; 0.112371, 0.991689, 0.043163, 0.004891;;, + 24;4; 0.130403, 0.990507, 0.043111, 0.005676;;, + 25;4; 0.121352, 0.990507, 0.043111, 0.005282;;, + 26;4; 0.094337, 0.990507, 0.043111, 0.004106;;, + 27;4; 0.051808, 0.990507, 0.043111, 0.002255;;, + 28;4; -0.000000, 0.990507, 0.043111, 0.000000;;, + 29;4; -0.051808, 0.990507, 0.043111,-0.002255;;, + 30;4; -0.094338, 0.990507, 0.043111,-0.004106;;, + 31;4; -0.121352, 0.990507, 0.043111,-0.005282;;, + 32;4; -0.130403, 0.990507, 0.043111,-0.005676;;, + 33;4; -0.126687, 0.991693, 0.043073,-0.005509;;, + 34;4; -0.108005, 0.994795, 0.042975,-0.004685;;, + 35;4; -0.065065, 0.997896, 0.042877,-0.002811;;, + 36;4; -0.000000, 0.999082, 0.042839, 0.000000;;, + 37;4; 0.120436, 0.986490, 0.042299, 0.005178;;, + 38;4; 0.276464, 0.957580, 0.041060, 0.011891;;, + 39;4; 0.341430, 0.938931, 0.040260, 0.014640;;, + 40;4; 0.341438, 0.934855, 0.008219, 0.003024;;, + 41;4; 0.340581, 0.936196,-0.059903,-0.021794;;, + 42;4; 0.340108, 0.935297,-0.091824,-0.033391;;, + 43;4; 0.340866, 0.926626,-0.010721,-0.004014;;, + 44;4; 0.339248, 0.913310, 0.162947, 0.058982;;, + 45;4; 0.330009, 0.907523, 0.244160, 0.088785;;, + 46;4; 0.275994, 0.920184, 0.216318, 0.076868;;, + 47;4; 0.157556, 0.953297, 0.143541, 0.044720;;, + 48;4; 0.043241, 0.986416, 0.070721, 0.012386;;, + 49;4; -0.000000, 0.999082, 0.042839, 0.000000;;, + 50;4; -0.000000, 0.999082, 0.042839, 0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { //Position + 2; + 51; + 0;3; -0.714786, 1.523193, 0.000000;;, + 1;3; -0.714786, 1.523193, 0.000000;;, + 2;3; -0.714786, 1.523193, 0.000000;;, + 3;3; -0.714786, 1.523193, 0.000000;;, + 4;3; -0.714786, 1.523193, 0.000000;;, + 5;3; -0.714786, 1.523193, 0.000000;;, + 6;3; -0.714786, 1.523193, 0.000000;;, + 7;3; -0.714786, 1.523193, 0.000000;;, + 8;3; -0.714786, 1.523193, 0.000000;;, + 9;3; -0.714786, 1.523193, 0.000000;;, + 10;3; -0.714786, 1.523193, 0.000000;;, + 11;3; -0.714786, 1.523193, 0.000000;;, + 12;3; -0.714786, 1.523193, 0.000000;;, + 13;3; -0.714786, 1.523193, 0.000000;;, + 14;3; -0.714786, 1.523193, 0.000000;;, + 15;3; -0.714786, 1.523193, 0.000000;;, + 16;3; -0.714786, 1.523193, 0.000000;;, + 17;3; -0.714786, 1.523193, 0.000000;;, + 18;3; -0.714786, 1.523193, 0.000000;;, + 19;3; -0.714786, 1.523193, 0.000000;;, + 20;3; -0.714786, 1.523193, 0.000000;;, + 21;3; -0.714786, 1.523193, 0.000000;;, + 22;3; -0.714786, 1.523193, 0.000000;;, + 23;3; -0.714786, 1.523193, 0.000000;;, + 24;3; -0.714786, 1.523193, 0.000000;;, + 25;3; -0.714786, 1.523193, 0.000000;;, + 26;3; -0.714786, 1.523193, 0.000000;;, + 27;3; -0.714786, 1.523193, 0.000000;;, + 28;3; -0.714786, 1.523193, 0.000000;;, + 29;3; -0.714786, 1.523193, 0.000000;;, + 30;3; -0.714786, 1.523193, 0.000000;;, + 31;3; -0.714786, 1.523193, 0.000000;;, + 32;3; -0.714786, 1.523193, 0.000000;;, + 33;3; -0.714786, 1.523193, 0.000000;;, + 34;3; -0.714786, 1.523193, 0.000000;;, + 35;3; -0.714786, 1.523193, 0.000000;;, + 36;3; -0.714786, 1.523193, 0.000000;;, + 37;3; -0.714786, 1.523193, 0.000000;;, + 38;3; -0.714786, 1.523193, 0.000000;;, + 39;3; -0.714786, 1.523193, 0.000000;;, + 40;3; -0.714786, 1.523193, 0.000000;;, + 41;3; -0.714786, 1.523193, 0.000000;;, + 42;3; -0.714786, 1.523193, 0.000000;;, + 43;3; -0.714786, 1.523193, 0.000000;;, + 44;3; -0.714786, 1.523193, 0.000000;;, + 45;3; -0.714786, 1.523193, 0.000000;;, + 46;3; -0.714786, 1.523193, 0.000000;;, + 47;3; -0.714786, 1.523193, 0.000000;;, + 48;3; -0.714786, 1.523193, 0.000000;;, + 49;3; -0.714786, 1.523193, 0.000000;;, + 50;3; -0.714786, 1.523193, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -0.000000, 0.999110,-0.042196, 0.000000;;, + 1;4; -0.000000, 0.999110,-0.042196, 0.000000;;, + 2;4; 0.000704, 0.999095,-0.042530,-0.000030;;, + 3;4; 0.002688, 0.999050,-0.043530,-0.000115;;, + 4;4; 0.005236, 0.998976,-0.045136,-0.000224;;, + 5;4; 0.007220, 0.998879,-0.047179,-0.000310;;, + 6;4; 0.007924, 0.998770,-0.049383,-0.000340;;, + 7;4; 0.006508, 0.998640,-0.051425,-0.000298;;, + 8;4; 0.002376, 0.998489,-0.053027,-0.000169;;, + 9;4; -0.002908, 0.998369,-0.054024, 0.000011;;, + 10;4; -0.007235, 0.998326,-0.054356, 0.000183;;, + 11;4; -0.011320, 0.998359,-0.054088, 0.000391;;, + 12;4; -0.015247, 0.998449,-0.053278, 0.000624;;, + 13;4; -0.016679, 0.998551,-0.051959, 0.000715;;, + 14;4; -0.015923, 0.998656,-0.050234, 0.000683;;, + 15;4; -0.013685, 0.998770,-0.048279, 0.000587;;, + 16;4; -0.010274, 0.998882,-0.046323, 0.000441;;, + 17;4; -0.006406, 0.998979,-0.044597, 0.000275;;, + 18;4; -0.002996, 0.999051,-0.043278, 0.000128;;, + 19;4; -0.000757, 0.999095,-0.042466, 0.000032;;, + 20;4; -0.000000, 0.999110,-0.042196, 0.000000;;, + 21;4; -0.018036, 0.997928,-0.042146, 0.000762;;, + 22;4; -0.065209, 0.994836,-0.042014, 0.002754;;, + 23;4; -0.112377, 0.991744,-0.041884, 0.004746;;, + 24;4; -0.130410, 0.990562,-0.041835, 0.005508;;, + 25;4; -0.121359, 0.990562,-0.041835, 0.005126;;, + 26;4; -0.094343, 0.990562,-0.041835, 0.003985;;, + 27;4; -0.051811, 0.990562,-0.041835, 0.002188;;, + 28;4; -0.000000, 0.990562,-0.041835, 0.000000;;, + 29;4; 0.051811, 0.990562,-0.041835,-0.002188;;, + 30;4; 0.094343, 0.990562,-0.041835,-0.003984;;, + 31;4; 0.121359, 0.990562,-0.041835,-0.005125;;, + 32;4; 0.130410, 0.990562,-0.041835,-0.005508;;, + 33;4; 0.112382, 0.991740,-0.041974,-0.004746;;, + 34;4; 0.065231, 0.994822,-0.042337,-0.002753;;, + 35;4; 0.018053, 0.997904,-0.042701,-0.000761;;, + 36;4; -0.000000, 0.999082,-0.042839, 0.000000;;, + 37;4; 0.083385, 0.985795,-0.042270,-0.003592;;, + 38;4; 0.261893, 0.955695,-0.040979,-0.011274;;, + 39;4; 0.345980, 0.937264,-0.040189,-0.014835;;, + 40;4; 0.346156, 0.933706,-0.010684,-0.003973;;, + 41;4; 0.345424, 0.934834, 0.052066, 0.019224;;, + 42;4; 0.344990, 0.934584, 0.081436, 0.030061;;, + 43;4; 0.345701, 0.928801, 0.012686, 0.004769;;, + 44;4; 0.344806, 0.919766,-0.134517,-0.049452;;, + 45;4; 0.338064, 0.915821,-0.203345,-0.075062;;, + 46;4; 0.285075, 0.927335,-0.181147,-0.064951;;, + 47;4; 0.163548, 0.957448,-0.123111,-0.037771;;, + 48;4; 0.045024, 0.987565,-0.065056,-0.010458;;, + 49;4; -0.000000, 0.999082,-0.042839, 0.000000;;, + 50;4; -0.000000, 0.999082,-0.042839, 0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { //Position + 2; + 51; + 0;3; 0.449504,-0.650638, 0.000000;;, + 1;3; 0.449504,-0.650638, 0.000000;;, + 2;3; 0.449504,-0.650638, 0.000000;;, + 3;3; 0.449504,-0.650638, 0.000000;;, + 4;3; 0.449504,-0.650638, 0.000000;;, + 5;3; 0.449504,-0.650638, 0.000000;;, + 6;3; 0.449504,-0.650638, 0.000000;;, + 7;3; 0.449504,-0.650638, 0.000000;;, + 8;3; 0.449504,-0.650638, 0.000000;;, + 9;3; 0.449504,-0.650638, 0.000000;;, + 10;3; 0.449504,-0.650638, 0.000000;;, + 11;3; 0.449504,-0.650638, 0.000000;;, + 12;3; 0.449504,-0.650638, 0.000000;;, + 13;3; 0.449504,-0.650638, 0.000000;;, + 14;3; 0.449504,-0.650638, 0.000000;;, + 15;3; 0.449504,-0.650638, 0.000000;;, + 16;3; 0.449504,-0.650638, 0.000000;;, + 17;3; 0.449504,-0.650638, 0.000000;;, + 18;3; 0.449504,-0.650638, 0.000000;;, + 19;3; 0.449504,-0.650638, 0.000000;;, + 20;3; 0.449504,-0.650638, 0.000000;;, + 21;3; 0.449504,-0.650638, 0.000000;;, + 22;3; 0.449504,-0.650638, 0.000000;;, + 23;3; 0.449504,-0.650638, 0.000000;;, + 24;3; 0.449504,-0.650638, 0.000000;;, + 25;3; 0.449504,-0.650638, 0.000000;;, + 26;3; 0.449504,-0.650638, 0.000000;;, + 27;3; 0.449504,-0.650638, 0.000000;;, + 28;3; 0.449504,-0.650638, 0.000000;;, + 29;3; 0.449504,-0.650638, 0.000000;;, + 30;3; 0.449504,-0.650638, 0.000000;;, + 31;3; 0.449504,-0.650638, 0.000000;;, + 32;3; 0.449504,-0.650638, 0.000000;;, + 33;3; 0.449504,-0.650638, 0.000000;;, + 34;3; 0.449504,-0.650638, 0.000000;;, + 35;3; 0.449504,-0.650638, 0.000000;;, + 36;3; 0.449504,-0.650638, 0.000000;;, + 37;3; 0.449504,-0.650638, 0.000000;;, + 38;3; 0.449504,-0.650638, 0.000000;;, + 39;3; 0.449504,-0.650638, 0.000000;;, + 40;3; 0.449504,-0.650638, 0.000000;;, + 41;3; 0.449504,-0.650638, 0.000000;;, + 42;3; 0.449504,-0.650638, 0.000000;;, + 43;3; 0.449504,-0.650638, 0.000000;;, + 44;3; 0.449504,-0.650638, 0.000000;;, + 45;3; 0.449504,-0.650638, 0.000000;;, + 46;3; 0.449504,-0.650638, 0.000000;;, + 47;3; 0.449504,-0.650638, 0.000000;;, + 48;3; 0.449504,-0.650638, 0.000000;;, + 49;3; 0.449504,-0.650638, 0.000000;;, + 50;3; 0.449504,-0.650638, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 21;4; -0.018053, 0.998817,-0.000000,-0.000000;;, + 22;4; -0.065268, 0.995722,-0.000000,-0.000000;;, + 23;4; -0.112478, 0.992628,-0.000000,-0.000000;;, + 24;4; -0.130527, 0.991445,-0.000000,-0.000000;;, + 25;4; -0.121468, 0.991445,-0.000000,-0.000000;;, + 26;4; -0.094427, 0.991445,-0.000000,-0.000000;;, + 27;4; -0.051857, 0.991445,-0.000000,-0.000000;;, + 28;4; -0.000000, 0.991445,-0.000000,-0.000000;;, + 29;4; 0.051857, 0.991445,-0.000000,-0.000000;;, + 30;4; 0.094426, 0.991445,-0.000000,-0.000000;;, + 31;4; 0.121467, 0.991445,-0.000000,-0.000000;;, + 32;4; 0.130526, 0.991445,-0.000000,-0.000000;;, + 33;4; 0.112480, 0.992628,-0.000000,-0.000000;;, + 34;4; 0.065279, 0.995722,-0.000000,-0.000000;;, + 35;4; 0.018062, 0.998817,-0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000,-0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { //Position + 2; + 51; + 0;3; -0.478980,-0.650638, 0.000000;;, + 1;3; -0.478980,-0.650638, 0.000000;;, + 2;3; -0.478980,-0.650638, 0.000000;;, + 3;3; -0.478980,-0.650638, 0.000000;;, + 4;3; -0.478980,-0.650638, 0.000000;;, + 5;3; -0.478980,-0.650638, 0.000000;;, + 6;3; -0.478980,-0.650638, 0.000000;;, + 7;3; -0.478980,-0.650638, 0.000000;;, + 8;3; -0.478980,-0.650638, 0.000000;;, + 9;3; -0.478980,-0.650638, 0.000000;;, + 10;3; -0.478980,-0.650638, 0.000000;;, + 11;3; -0.478980,-0.650638, 0.000000;;, + 12;3; -0.478980,-0.650638, 0.000000;;, + 13;3; -0.478980,-0.650638, 0.000000;;, + 14;3; -0.478980,-0.650638, 0.000000;;, + 15;3; -0.478980,-0.650638, 0.000000;;, + 16;3; -0.478980,-0.650638, 0.000000;;, + 17;3; -0.478980,-0.650638, 0.000000;;, + 18;3; -0.478980,-0.650638, 0.000000;;, + 19;3; -0.478980,-0.650638, 0.000000;;, + 20;3; -0.478980,-0.650638, 0.000000;;, + 21;3; -0.478980,-0.650638, 0.000000;;, + 22;3; -0.478980,-0.650638, 0.000000;;, + 23;3; -0.478980,-0.650638, 0.000000;;, + 24;3; -0.478980,-0.650638, 0.000000;;, + 25;3; -0.478980,-0.650638, 0.000000;;, + 26;3; -0.478980,-0.650638, 0.000000;;, + 27;3; -0.478980,-0.650638, 0.000000;;, + 28;3; -0.478980,-0.650638, 0.000000;;, + 29;3; -0.478980,-0.650638, 0.000000;;, + 30;3; -0.478980,-0.650638, 0.000000;;, + 31;3; -0.478980,-0.650638, 0.000000;;, + 32;3; -0.478980,-0.650638, 0.000000;;, + 33;3; -0.478980,-0.650638, 0.000000;;, + 34;3; -0.478980,-0.650638, 0.000000;;, + 35;3; -0.478980,-0.650638, 0.000000;;, + 36;3; -0.478980,-0.650638, 0.000000;;, + 37;3; -0.478980,-0.650638, 0.000000;;, + 38;3; -0.478980,-0.650638, 0.000000;;, + 39;3; -0.478980,-0.650638, 0.000000;;, + 40;3; -0.478980,-0.650638, 0.000000;;, + 41;3; -0.478980,-0.650638, 0.000000;;, + 42;3; -0.478980,-0.650638, 0.000000;;, + 43;3; -0.478980,-0.650638, 0.000000;;, + 44;3; -0.478980,-0.650638, 0.000000;;, + 45;3; -0.478980,-0.650638, 0.000000;;, + 46;3; -0.478980,-0.650638, 0.000000;;, + 47;3; -0.478980,-0.650638, 0.000000;;, + 48;3; -0.478980,-0.650638, 0.000000;;, + 49;3; -0.478980,-0.650638, 0.000000;;, + 50;3; -0.478980,-0.650638, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 21;4; 0.018052, 0.998817,-0.000000,-0.000000;;, + 22;4; 0.065267, 0.995722,-0.000000,-0.000000;;, + 23;4; 0.112477, 0.992628,-0.000000,-0.000000;;, + 24;4; 0.130526, 0.991445,-0.000000,-0.000000;;, + 25;4; 0.121467, 0.991445,-0.000000,-0.000000;;, + 26;4; 0.094426, 0.991445,-0.000000,-0.000000;;, + 27;4; 0.051856, 0.991445,-0.000000,-0.000000;;, + 28;4; -0.000000, 0.991445,-0.000000,-0.000000;;, + 29;4; -0.051857, 0.991445,-0.000000,-0.000000;;, + 30;4; -0.094427, 0.991445,-0.000000,-0.000000;;, + 31;4; -0.121468, 0.991445,-0.000000,-0.000000;;, + 32;4; -0.130527, 0.991445,-0.000000,-0.000000;;, + 33;4; -0.112481, 0.992628,-0.000000,-0.000000;;, + 34;4; -0.065280, 0.995722,-0.000000,-0.000000;;, + 35;4; -0.018062, 0.998817,-0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000,-0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_005} + AnimationKey { //Position + 2; + 51; + 0;3; 0.000000, 1.402718,-0.262646;;, + 1;3; 0.000000, 1.402718,-0.262646;;, + 2;3; 0.000000, 1.402718,-0.262646;;, + 3;3; 0.000000, 1.402718,-0.262646;;, + 4;3; 0.000000, 1.402718,-0.262646;;, + 5;3; 0.000000, 1.402718,-0.262646;;, + 6;3; 0.000000, 1.402718,-0.262646;;, + 7;3; 0.000000, 1.402718,-0.262646;;, + 8;3; 0.000000, 1.402718,-0.262646;;, + 9;3; 0.000000, 1.402718,-0.262646;;, + 10;3; 0.000000, 1.402718,-0.262646;;, + 11;3; 0.000000, 1.402718,-0.262646;;, + 12;3; 0.000000, 1.402718,-0.262646;;, + 13;3; 0.000000, 1.402718,-0.262646;;, + 14;3; 0.000000, 1.402718,-0.262646;;, + 15;3; 0.000000, 1.402718,-0.262646;;, + 16;3; 0.000000, 1.402718,-0.262646;;, + 17;3; 0.000000, 1.402718,-0.262646;;, + 18;3; 0.000000, 1.402718,-0.262646;;, + 19;3; 0.000000, 1.402718,-0.262646;;, + 20;3; 0.000000, 1.402718,-0.262646;;, + 21;3; 0.000000, 1.402718,-0.262646;;, + 22;3; 0.000000, 1.402718,-0.262646;;, + 23;3; 0.000000, 1.402718,-0.262646;;, + 24;3; 0.000000, 1.402718,-0.262646;;, + 25;3; 0.000000, 1.402718,-0.262646;;, + 26;3; 0.000000, 1.402718,-0.262646;;, + 27;3; 0.000000, 1.402718,-0.262646;;, + 28;3; 0.000000, 1.402718,-0.262646;;, + 29;3; 0.000000, 1.402718,-0.262646;;, + 30;3; 0.000000, 1.402718,-0.262646;;, + 31;3; 0.000000, 1.402718,-0.262646;;, + 32;3; 0.000000, 1.402718,-0.262646;;, + 33;3; 0.000000, 1.402718,-0.262646;;, + 34;3; 0.000000, 1.402718,-0.262646;;, + 35;3; 0.000000, 1.402718,-0.262646;;, + 36;3; 0.000000, 1.402718,-0.262646;;, + 37;3; 0.000000, 1.402718,-0.262646;;, + 38;3; 0.000000, 1.402718,-0.262646;;, + 39;3; 0.000000, 1.402718,-0.262646;;, + 40;3; 0.000000, 1.402718,-0.262646;;, + 41;3; 0.000000, 1.402718,-0.262646;;, + 42;3; 0.000000, 1.402718,-0.262646;;, + 43;3; 0.000000, 1.402718,-0.262646;;, + 44;3; 0.000000, 1.402718,-0.262646;;, + 45;3; 0.000000, 1.402718,-0.262646;;, + 46;3; 0.000000, 1.402718,-0.262646;;, + 47;3; 0.000000, 1.402718,-0.262646;;, + 48;3; 0.000000, 1.402718,-0.262646;;, + 49;3; 0.000000, 1.402718,-0.262646;;, + 50;3; 0.000000, 1.402718,-0.262646;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 1;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 2;4; -0.706531,-0.707666,-0.000000, 0.000000;;, + 3;4; -0.704805,-0.709343,-0.000000, 0.000000;;, + 4;4; -0.702032,-0.712035,-0.000000, 0.000000;;, + 5;4; -0.698505,-0.715460,-0.000000, 0.000000;;, + 6;4; -0.694700,-0.719156,-0.000000, 0.000000;;, + 7;4; -0.691173,-0.722581,-0.000000, 0.000000;;, + 8;4; -0.688400,-0.725274,-0.000000, 0.000000;;, + 9;4; -0.686673,-0.726951,-0.000000, 0.000000;;, + 10;4; -0.686098,-0.727509,-0.000000, 0.000000;;, + 11;4; -0.686563,-0.727057,-0.000000, 0.000000;;, + 12;4; -0.687965,-0.725696,-0.000000, 0.000000;;, + 13;4; -0.690244,-0.723483,-0.000000, 0.000000;;, + 14;4; -0.693225,-0.720588,-0.000000, 0.000000;;, + 15;4; -0.696602,-0.717308,-0.000000, 0.000000;;, + 16;4; -0.699979,-0.714029,-0.000000, 0.000000;;, + 17;4; -0.702960,-0.711134,-0.000000, 0.000000;;, + 18;4; -0.705239,-0.708920,-0.000000, 0.000000;;, + 19;4; -0.706641,-0.707559,-0.000000, 0.000000;;, + 20;4; -0.707107,-0.707107,-0.000000, 0.000000;;, + 21;4; -0.706907,-0.706907,-0.006243, 0.006243;;, + 22;4; -0.706386,-0.706385,-0.022573, 0.022573;;, + 23;4; -0.705864,-0.705864,-0.038903, 0.038903;;, + 24;4; -0.705664,-0.705664,-0.045146, 0.045146;;, + 25;4; -0.705665,-0.705665,-0.042301, 0.042301;;, + 26;4; -0.705672,-0.705672,-0.033810, 0.033810;;, + 27;4; -0.705691,-0.705691,-0.020443, 0.020443;;, + 28;4; -0.705730,-0.705730,-0.004159, 0.004159;;, + 29;4; -0.705794,-0.705794, 0.012125,-0.012125;;, + 30;4; -0.705887,-0.705887, 0.025492,-0.025492;;, + 31;4; -0.706006,-0.706006, 0.033983,-0.033983;;, + 32;4; -0.706147,-0.706147, 0.036828,-0.036828;;, + 33;4; -0.706376,-0.706376, 0.031735,-0.031735;;, + 34;4; -0.706715,-0.706715, 0.018415,-0.018415;;, + 35;4; -0.707004,-0.707004, 0.005093,-0.005093;;, + 36;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 37;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 38;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 39;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 40;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 41;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 42;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 43;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 44;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 45;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 46;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 47;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 48;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 49;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 50;4; -0.707107,-0.707107, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Cube_004} + AnimationKey { //Position + 2; + 51; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs/models/mobs_oerkki.png b/mods/mobs/models/mobs_oerkki.png new file mode 100644 index 0000000..a2791fa Binary files /dev/null and b/mods/mobs/models/mobs_oerkki.png differ diff --git a/mods/mobs/models/mobs_oerkki.x b/mods/mobs/models/mobs_oerkki.x new file mode 100644 index 0000000..93f1701 --- /dev/null +++ b/mods/mobs/models/mobs_oerkki.x @@ -0,0 +1,3858 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.004457,-0.009078, 0.009382, 1.000000;; + } + Frame Armature_root { + FrameTransformMatrix { + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature_Right_Hand { + FrameTransformMatrix { + 0.986046,-0.166475, 0.000000, 0.000000, + -0.166475,-0.986046,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + -0.290493, 2.355259, 0.000000, 1.000000;; + } + } //End of Armature_Right_Hand + Frame Armature_Bone_002 { + FrameTransformMatrix { + 0.984885, 0.173207, 0.000000, 0.000000, + 0.173208,-0.984885,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 0.259914, 2.347614, 0.000000, 1.000000;; + } + } //End of Armature_Bone_002 + Frame Armature_back { + FrameTransformMatrix { + 0.999771, 0.021400,-0.000000, 0.000000, + 0.021400,-0.999771,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -0.013083, 2.483388,-0.152575, 1.000000;; + } + } //End of Armature_back + Frame Armature_root_001 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.108388, 3.011908,-0.000000, 1.000000;; + } + } //End of Armature_root_001 + Frame Armature_root_002 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -0.157125, 2.995103,-0.000000, 1.000000;; + } + } //End of Armature_root_002 + } //End of Armature_root + Frame Plane { + FrameTransformMatrix { + 0.800000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.006223, 0.000000,-0.013009, 1.000000;; + } + Mesh { //Plane_009 Mesh + 328; + -0.264941;-0.186165; 3.341238;, + -0.103393;-0.186165; 3.341238;, + -0.103393;-0.186165; 3.179691;, + -0.264941;-0.186165; 3.179691;, + -0.240167;-0.190033; 2.271265;, + 0.225248;-0.190033; 2.271265;, + 0.225248;-0.190033; 2.500485;, + -0.240167;-0.190033; 2.500485;, + -0.240167;-0.190033; 2.271265;, + -0.240167; 0.208188; 2.271265;, + 0.225248; 0.208188; 2.271265;, + 0.225248;-0.190033; 2.271265;, + 0.225248;-0.190033; 2.271265;, + 0.225248; 0.208188; 2.271265;, + 0.225248; 0.208188; 2.500485;, + 0.225248;-0.190033; 2.500485;, + -0.240167; 0.208188; 2.271265;, + -0.240167;-0.190033; 2.271265;, + -0.240167;-0.190033; 2.500485;, + -0.240167; 0.208188; 2.500485;, + 0.225248; 0.208188; 2.271265;, + -0.240167; 0.208188; 2.271265;, + -0.240167; 0.208188; 2.500485;, + 0.225248; 0.208188; 2.500485;, + -0.343863;-0.278758; 0.009591;, + -0.343863; 0.296914; 0.009591;, + -0.343863; 0.296914; 2.500485;, + -0.343863;-0.278758; 2.500485;, + -0.343863; 0.296914; 0.009591;, + 0.328944; 0.296914; 0.009591;, + 0.328944; 0.296914; 2.500485;, + -0.343863; 0.296914; 2.500485;, + 0.328944; 0.296914; 0.009591;, + 0.328944;-0.278758; 0.009591;, + 0.328944;-0.278758; 2.500485;, + 0.328944; 0.296914; 2.500485;, + 0.328944;-0.278758; 0.009591;, + -0.343863;-0.278758; 0.009591;, + -0.343863;-0.278758; 2.500485;, + 0.328944;-0.278758; 2.500485;, + -0.240167;-0.190033; 2.500485;, + 0.225248;-0.190033; 2.500485;, + 0.328944;-0.278758; 2.500485;, + -0.343863;-0.278758; 2.500485;, + -0.343863;-0.278758; 0.009591;, + 0.328944;-0.278758; 0.009591;, + 0.328944; 0.296914; 0.009591;, + -0.343863; 0.296914; 0.009591;, + 0.225248; 0.208188; 2.500485;, + -0.240167; 0.208188; 2.500485;, + -0.343863; 0.296914; 2.500485;, + 0.328944; 0.296914; 2.500485;, + -0.240167; 0.208188; 2.500485;, + -0.240167;-0.190033; 2.500485;, + -0.343863;-0.278758; 2.500485;, + -0.343863; 0.296914; 2.500485;, + 0.225248;-0.190033; 2.500485;, + 0.225248; 0.208188; 2.500485;, + 0.328944; 0.296914; 2.500485;, + 0.328944;-0.278758; 2.500485;, + 0.066079;-0.186165; 3.341238;, + 0.227626;-0.186165; 3.341238;, + 0.227626;-0.186165; 3.179691;, + 0.066079;-0.186165; 3.179691;, + -0.756877;-0.170174; 1.267350;, + -0.756877; 0.188330; 1.267350;, + -0.756877; 0.188330; 2.204780;, + -0.756877;-0.170174; 2.204780;, + -0.756877; 0.188330; 1.267350;, + -0.398373; 0.188330; 1.267350;, + -0.398373; 0.188330; 2.204780;, + -0.756877; 0.188330; 2.204780;, + -0.398373; 0.188330; 1.267350;, + -0.398373;-0.170174; 1.267350;, + -0.398373;-0.170174; 2.204780;, + -0.398373; 0.188330; 2.204780;, + -0.398373;-0.170174; 1.267350;, + -0.756877;-0.170174; 1.267350;, + -0.756877;-0.170174; 2.204780;, + -0.398373;-0.170174; 2.204780;, + -0.398373;-0.170174; 1.267350;, + -0.398373; 0.188330; 1.267350;, + -0.756877; 0.188330; 1.267350;, + -0.756877;-0.170174; 1.267350;, + -0.810406;-0.223703; 2.204780;, + -0.344844;-0.223703; 2.204780;, + -0.398373;-0.170174; 2.204780;, + -0.756877;-0.170174; 2.204780;, + -0.810406;-0.223703; 2.495205;, + -0.344844;-0.223703; 2.495205;, + -0.344844;-0.223703; 2.204780;, + -0.810406;-0.223703; 2.204780;, + -0.344844; 0.241859; 2.204780;, + -0.810406; 0.241859; 2.204780;, + -0.756877; 0.188330; 2.204780;, + -0.398373; 0.188330; 2.204780;, + -0.810406; 0.241859; 2.204780;, + -0.810406;-0.223703; 2.204780;, + -0.756877;-0.170174; 2.204780;, + -0.756877; 0.188330; 2.204780;, + -0.344844;-0.223703; 2.204780;, + -0.344844; 0.241859; 2.204780;, + -0.398373; 0.188330; 2.204780;, + -0.398373;-0.170174; 2.204780;, + -0.810406;-0.223703; 2.495205;, + -0.810406; 0.241859; 2.495205;, + -0.344844; 0.241859; 2.495205;, + -0.344844;-0.223703; 2.495205;, + -0.344844;-0.223703; 2.495205;, + -0.344844; 0.241859; 2.495205;, + -0.344844; 0.241859; 2.204780;, + -0.344844;-0.223703; 2.204780;, + -0.810406; 0.241859; 2.495205;, + -0.810406;-0.223703; 2.495205;, + -0.810406;-0.223703; 2.204780;, + -0.810406; 0.241859; 2.204780;, + -0.344844; 0.241859; 2.495205;, + -0.810406; 0.241859; 2.495205;, + -0.810406; 0.241859; 2.204780;, + -0.344844; 0.241859; 2.204780;, + 0.748465;-0.170174; 1.267350;, + 0.748465; 0.188330; 1.267350;, + 0.389960; 0.188330; 1.267350;, + 0.389960;-0.170174; 1.267350;, + 0.748465;-0.170174; 1.267350;, + 0.389960;-0.170174; 1.267350;, + 0.389960;-0.170174; 2.204780;, + 0.748465;-0.170174; 2.204780;, + 0.748465; 0.188330; 1.267350;, + 0.748465;-0.170174; 1.267350;, + 0.748465;-0.170174; 2.204780;, + 0.748465; 0.188330; 2.204780;, + 0.389960; 0.188330; 1.267350;, + 0.748465; 0.188330; 1.267350;, + 0.748465; 0.188330; 2.204780;, + 0.389960; 0.188330; 2.204780;, + 0.801994; 0.241859; 2.495205;, + 0.336431; 0.241859; 2.495205;, + 0.336431; 0.241859; 2.204780;, + 0.801994; 0.241859; 2.204780;, + 0.336431; 0.241859; 2.495205;, + 0.336431;-0.223703; 2.495205;, + 0.336431;-0.223703; 2.204780;, + 0.336431; 0.241859; 2.204780;, + 0.801994;-0.223703; 2.495205;, + 0.801994; 0.241859; 2.495205;, + 0.801994; 0.241859; 2.204780;, + 0.801994;-0.223703; 2.204780;, + 0.389960;-0.170174; 1.267350;, + 0.389960; 0.188330; 1.267350;, + 0.389960; 0.188330; 2.204780;, + 0.389960;-0.170174; 2.204780;, + 0.336431;-0.223703; 2.495205;, + 0.336431; 0.241859; 2.495205;, + 0.801994; 0.241859; 2.495205;, + 0.801994;-0.223703; 2.495205;, + 0.801994;-0.223703; 2.204780;, + 0.801994; 0.241859; 2.204780;, + 0.748465; 0.188330; 2.204780;, + 0.748465;-0.170174; 2.204780;, + 0.336431; 0.241859; 2.204780;, + 0.336431;-0.223703; 2.204780;, + 0.389960;-0.170174; 2.204780;, + 0.389960; 0.188330; 2.204780;, + 0.801994; 0.241859; 2.204780;, + 0.336431; 0.241859; 2.204780;, + 0.389960; 0.188330; 2.204780;, + 0.748465; 0.188330; 2.204780;, + 0.336431;-0.223703; 2.495205;, + 0.801994;-0.223703; 2.495205;, + 0.801994;-0.223703; 2.204780;, + 0.336431;-0.223703; 2.204780;, + 0.336431;-0.223703; 2.204780;, + 0.801994;-0.223703; 2.204780;, + 0.748465;-0.170174; 2.204780;, + 0.389960;-0.170174; 2.204780;, + -1.003181;-0.315065; 0.315260;, + -1.003181; 0.351327; 0.315260;, + -1.003181; 0.351327; 2.746741;, + -1.003181;-0.315065; 2.746741;, + -1.003181; 0.351327; 0.315260;, + -0.791421; 0.351327; 0.315260;, + -0.791421; 0.351327; 2.563308;, + -1.003181; 0.351327; 2.746741;, + -0.791421; 0.351327; 0.315260;, + -0.791421;-0.315065; 0.315260;, + -0.791421;-0.315065; 2.563308;, + -0.791421; 0.351327; 2.563308;, + -0.791421;-0.315065; 0.315260;, + -1.003181;-0.315065; 0.315260;, + -1.003181;-0.315065; 2.746741;, + -0.791421;-0.315065; 2.563308;, + -0.791421;-0.315065; 0.315260;, + -0.791421; 0.351327; 0.315260;, + -1.003181; 0.351327; 0.315260;, + -1.003181;-0.315065; 0.315260;, + -0.514026;-0.315065; 2.746741;, + -0.302267;-0.315065; 2.563308;, + -0.791421;-0.315065; 2.563308;, + -1.003181;-0.315065; 2.746741;, + -0.514026;-0.315065; 3.804539;, + -0.302267;-0.315065; 3.587476;, + -0.302267;-0.315065; 2.563308;, + -0.514026;-0.315065; 2.746741;, + -0.514026; 0.351327; 2.746741;, + -0.514026;-0.315065; 2.746741;, + -1.003181;-0.315065; 2.746741;, + -1.003181; 0.351327; 2.746741;, + -0.302267;-0.315065; 2.563308;, + -0.302267; 0.351327; 2.563308;, + -0.791421; 0.351327; 2.563308;, + -0.791421;-0.315065; 2.563308;, + -0.302267; 0.351327; 2.563308;, + -0.514026; 0.351327; 2.746741;, + -1.003181; 0.351327; 2.746741;, + -0.791421; 0.351327; 2.563308;, + 0.522487;-0.315065; 3.804539;, + 0.306120;-0.315065; 3.587476;, + -0.302267;-0.315065; 3.587476;, + -0.514026;-0.315065; 3.804539;, + -0.514026; 0.351327; 3.804539;, + -0.514026;-0.315065; 3.804539;, + -0.514026;-0.315065; 2.746741;, + -0.514026; 0.351327; 2.746741;, + -0.302267; 0.351327; 3.587476;, + -0.514026; 0.351327; 3.804539;, + -0.514026; 0.351327; 2.746741;, + -0.302267; 0.351327; 2.563308;, + -0.302267;-0.315065; 3.587476;, + -0.302267; 0.351327; 3.587476;, + -0.302267; 0.351327; 2.563308;, + -0.302267;-0.315065; 2.563308;, + 0.522487;-0.315065; 2.747673;, + 0.306120;-0.315065; 2.564813;, + 0.306120;-0.315065; 3.587476;, + 0.522487;-0.315065; 3.804539;, + 0.522487; 0.351327; 3.804539;, + 0.522487;-0.315065; 3.804539;, + -0.514026;-0.315065; 3.804539;, + -0.514026; 0.351327; 3.804539;, + 0.306120; 0.351327; 3.587476;, + 0.522487; 0.351327; 3.804539;, + -0.514026; 0.351327; 3.804539;, + -0.302267; 0.351327; 3.587476;, + 0.306120;-0.315065; 3.587476;, + 0.306120; 0.351327; 3.587476;, + -0.302267; 0.351327; 3.587476;, + -0.302267;-0.315065; 3.587476;, + 1.002260;-0.315065; 2.747673;, + 0.805352;-0.315065; 2.564813;, + 0.306120;-0.315065; 2.564813;, + 0.522487;-0.315065; 2.747673;, + 0.306120;-0.315065; 2.564813;, + 0.306120; 0.351327; 2.564813;, + 0.306120; 0.351327; 3.587476;, + 0.306120;-0.315065; 3.587476;, + 0.522487; 0.351327; 2.747673;, + 0.522487;-0.315065; 2.747673;, + 0.522487;-0.315065; 3.804539;, + 0.522487; 0.351327; 3.804539;, + 0.306120; 0.351327; 2.564813;, + 0.522487; 0.351327; 2.747673;, + 0.522487; 0.351327; 3.804539;, + 0.306120; 0.351327; 3.587476;, + 1.002260;-0.315065; 0.313008;, + 0.805352;-0.315065; 0.312940;, + 0.805352;-0.315065; 2.564813;, + 1.002260;-0.315065; 2.747673;, + 1.002260; 0.351327; 2.747673;, + 1.002260;-0.315065; 2.747673;, + 0.522487;-0.315065; 2.747673;, + 0.522487; 0.351327; 2.747673;, + 0.805352; 0.351327; 2.564813;, + 1.002260; 0.351327; 2.747673;, + 0.522487; 0.351327; 2.747673;, + 0.306120; 0.351327; 2.564813;, + 0.805352;-0.315065; 2.564813;, + 0.805352; 0.351327; 2.564813;, + 0.306120; 0.351327; 2.564813;, + 0.306120;-0.315065; 2.564813;, + 1.002260;-0.315065; 0.313008;, + 1.002260; 0.351327; 0.313008;, + 0.805352; 0.351327; 0.312940;, + 0.805352;-0.315065; 0.312940;, + 0.805352; 0.351327; 0.312940;, + 1.002260; 0.351327; 0.313008;, + 1.002260; 0.351327; 2.747673;, + 0.805352; 0.351327; 2.564813;, + 0.805352;-0.315065; 0.312940;, + 0.805352; 0.351327; 0.312940;, + 0.805352; 0.351327; 2.564813;, + 0.805352;-0.315065; 2.564813;, + 1.002260; 0.351327; 0.313008;, + 1.002260;-0.315065; 0.313008;, + 1.002260;-0.315065; 2.747673;, + 1.002260; 0.351327; 2.747673;, + 0.306120; 0.351327; 3.587476;, + -0.302267; 0.351327; 3.587476;, + -0.302267; 0.351327; 2.563308;, + 0.306120; 0.351327; 2.564813;, + -0.302267; 0.351327; 0.328521;, + 0.306120; 0.351327; 0.330025;, + 0.306120; 0.351327; 2.564813;, + -0.302267; 0.351327; 2.563308;, + 0.805352; 0.351327; 0.312940;, + 0.805352; 0.351327; 2.564813;, + 0.306120; 0.351327; 2.564813;, + 0.306120; 0.351327; 0.330025;, + -0.302267; 0.351327; 2.563308;, + -0.791421; 0.351327; 2.563308;, + -0.791421; 0.351327; 0.315260;, + -0.302267; 0.351327; 0.328521;, + -0.306120; 0.294175; 3.587476;, + 0.302267; 0.294175; 3.587476;, + 0.302267; 0.294175; 2.563308;, + -0.306120; 0.294175; 2.564813;, + 0.302267; 0.294175; 0.328521;, + -0.306120; 0.294175; 0.330025;, + -0.306120; 0.294175; 2.564813;, + 0.302267; 0.294175; 2.563308;, + -0.805353; 0.294175; 0.312940;, + -0.805353; 0.294175; 2.564813;, + -0.306120; 0.294175; 2.564813;, + -0.306120; 0.294175; 0.330025;, + 0.302267; 0.294175; 2.563308;, + 0.791421; 0.294175; 2.563308;, + 0.791421; 0.294175; 0.315260;, + 0.302267; 0.294175; 0.328521;; + 82; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;; + MeshNormals { //Plane_009 Normals + 328; + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000344; 0.000000;-1.000000;, + 0.000344; 0.000000;-1.000000;, + 0.000344; 0.000000;-1.000000;, + 0.000344; 0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;; + 82; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;; + } //End of Plane_009 Normals + MeshMaterialList { //Plane_009 Material List + 1; + 82; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Plane_009 Material List + MeshTextureCoords { //Plane_009 UV Coordinates + 328; + 0.590104; 0.824304;, + 0.684339; 0.824304;, + 0.684339; 0.918540;, + 0.590104; 0.918540;, + 0.083084; 0.002736;, + 0.083084; 0.002736;, + 0.083084; 0.002736;, + 0.083084; 0.002736;, + 0.125368; 0.490119;, + 0.220998; 0.490119;, + 0.220998; 0.601885;, + 0.125368; 0.601885;, + 0.220998; 0.574180;, + 0.125368; 0.574180;, + 0.125368; 0.519134;, + 0.220998; 0.519134;, + 0.147080; 0.595536;, + 0.147080; 0.499906;, + 0.202125; 0.499906;, + 0.202125; 0.595536;, + 0.146076; 0.601885;, + 0.146076; 0.490119;, + 0.201122; 0.490119;, + 0.201122; 0.601885;, + 0.829089; 0.044516;, + 0.983477; 0.044516;, + 0.983477; 0.762585;, + 0.829089; 0.762585;, + 0.813932; 0.043009;, + 0.994371; 0.043009;, + 0.994371; 0.761078;, + 0.813932; 0.761078;, + 0.827629; 0.043009;, + 0.982018; 0.043009;, + 0.982018; 0.761078;, + 0.827629; 0.761078;, + 0.988587; 0.818148;, + 0.815138; 0.818148;, + 0.815138; 0.115436;, + 0.988587; 0.115436;, + 0.184396; 0.491532;, + 0.184396; 0.603298;, + 0.163090; 0.628199;, + 0.163090; 0.466630;, + 0.746600; 0.513391;, + 0.746600; 0.778189;, + 0.520031; 0.778190;, + 0.520031; 0.513391;, + 0.163222; 0.602319;, + 0.163222; 0.490553;, + 0.184529; 0.465652;, + 0.184529; 0.627221;, + 0.161564; 0.595141;, + 0.161564; 0.499511;, + 0.186466; 0.478204;, + 0.186466; 0.616447;, + 0.186336; 0.500163;, + 0.186336; 0.595793;, + 0.161434; 0.617100;, + 0.161434; 0.478857;, + 0.590103; 0.824304;, + 0.684339; 0.824304;, + 0.684339; 0.918539;, + 0.590104; 0.918540;, + 0.700007; 0.967919;, + 0.700007; 0.858136;, + 0.987072; 0.858136;, + 0.987072; 0.967919;, + 0.700007; 0.969657;, + 0.700007; 0.859874;, + 0.987072; 0.859874;, + 0.987072; 0.969657;, + 0.700007; 0.967792;, + 0.700007; 0.858009;, + 0.987072; 0.858009;, + 0.987072; 0.967792;, + 0.700007; 0.969530;, + 0.700007; 0.859747;, + 0.987072; 0.859747;, + 0.987072; 0.969530;, + 0.897067; 0.969657;, + 0.787284; 0.969657;, + 0.787284; 0.859874;, + 0.897067; 0.859874;, + 0.866803; 0.495976;, + 0.937974; 0.495976;, + 0.929684; 0.506969;, + 0.874959; 0.506955;, + 0.868177; 0.493911;, + 0.939769; 0.493911;, + 0.939769; 0.553131;, + 0.868177; 0.553131;, + 0.938927; 0.549502;, + 0.867756; 0.549502;, + 0.876047; 0.538508;, + 0.930772; 0.538522;, + 0.938937; 0.548225;, + 0.867766; 0.548225;, + 0.876057; 0.537231;, + 0.930782; 0.537245;, + 0.868729; 0.496859;, + 0.939900; 0.496859;, + 0.931610; 0.507852;, + 0.876885; 0.507838;, + 0.867766; 0.571553;, + 0.867766; 0.476620;, + 0.939358; 0.476620;, + 0.939358; 0.571553;, + 0.867766; 0.493911;, + 0.939358; 0.493911;, + 0.939358; 0.553131;, + 0.867766; 0.553131;, + 0.882070; 0.572285;, + 0.882070; 0.477352;, + 0.926730; 0.477352;, + 0.926730; 0.572285;, + 0.939769; 0.551122;, + 0.868177; 0.551122;, + 0.868177; 0.491902;, + 0.939769; 0.491902;, + 0.897067; 0.969657;, + 0.787284; 0.969657;, + 0.787284; 0.859874;, + 0.897067; 0.859874;, + 0.700007; 0.969530;, + 0.700007; 0.859747;, + 0.987072; 0.859747;, + 0.987072; 0.969530;, + 0.700007; 0.967792;, + 0.700007; 0.858009;, + 0.987072; 0.858009;, + 0.987072; 0.967792;, + 0.700007; 0.969657;, + 0.700007; 0.859874;, + 0.987072; 0.859874;, + 0.987072; 0.969657;, + 0.939769; 0.551122;, + 0.868177; 0.551122;, + 0.868177; 0.491902;, + 0.939769; 0.491902;, + 0.882070; 0.572285;, + 0.882070; 0.477352;, + 0.926730; 0.477352;, + 0.926730; 0.572285;, + 0.867766; 0.493911;, + 0.939358; 0.493911;, + 0.939358; 0.553131;, + 0.867766; 0.553131;, + 0.700007; 0.967919;, + 0.700007; 0.858136;, + 0.987072; 0.858136;, + 0.987072; 0.967919;, + 0.867766; 0.571553;, + 0.867766; 0.476620;, + 0.939358; 0.476620;, + 0.939358; 0.571553;, + 0.868729; 0.496859;, + 0.939900; 0.496859;, + 0.931610; 0.507852;, + 0.876885; 0.507838;, + 0.938937; 0.548225;, + 0.867766; 0.548225;, + 0.876057; 0.537231;, + 0.930782; 0.537245;, + 0.938927; 0.549502;, + 0.867756; 0.549502;, + 0.876047; 0.538508;, + 0.930772; 0.538522;, + 0.868177; 0.493911;, + 0.939769; 0.493911;, + 0.939769; 0.553131;, + 0.868177; 0.553131;, + 0.866803; 0.495976;, + 0.937974; 0.495976;, + 0.929684; 0.506969;, + 0.874959; 0.506955;, + 0.103963; 0.380808;, + 0.103963; 0.203072;, + 0.752472; 0.203072;, + 0.752472; 0.380808;, + 0.100685; 0.369755;, + 0.098221; 0.303170;, + 0.606799; 0.303124;, + 0.650386; 0.369755;, + 0.117449; 0.202819;, + 0.117449; 0.025083;, + 0.717034; 0.025083;, + 0.717034; 0.202819;, + 0.102377; 0.617822;, + 0.104464; 0.552160;, + 0.661450; 0.550091;, + 0.603217; 0.617823;, + 0.679364; 0.385480;, + 0.679364; 0.563216;, + 0.622885; 0.563216;, + 0.622885; 0.385480;, + 0.676160; 0.130421;, + 0.676159; 0.205144;, + 0.590739; 0.106532;, + 0.590739; 0.031810;, + 0.448501; 0.692908;, + 0.390608; 0.749388;, + 0.117449; 0.749388;, + 0.166373; 0.692908;, + 0.548351; 0.171150;, + 0.726087; 0.171150;, + 0.726087; 0.301614;, + 0.548351; 0.301614;, + 0.641753; 0.371055;, + 0.641753; 0.548791;, + 0.511288; 0.548791;, + 0.511288; 0.371055;, + 0.729588; 0.563216;, + 0.680664; 0.506737;, + 0.680664; 0.376272;, + 0.729588; 0.432751;, + 0.737833; 0.317205;, + 0.679940; 0.259497;, + 0.679940; 0.097232;, + 0.737833; 0.040753;, + 0.383486; 0.028454;, + 0.383486; 0.206190;, + 0.101357; 0.206190;, + 0.101357; 0.028454;, + 0.375536; 0.684708;, + 0.433430; 0.741188;, + 0.151301; 0.741188;, + 0.102377; 0.684709;, + 0.375537; 0.371055;, + 0.375537; 0.548791;, + 0.102377; 0.548791;, + 0.102377; 0.371055;, + 0.166220; 0.691608;, + 0.117449; 0.633900;, + 0.390207; 0.633900;, + 0.448100; 0.691608;, + 0.315381; 0.303860;, + 0.137645; 0.303860;, + 0.137645; 0.027408;, + 0.315381; 0.027408;, + 0.785280; 0.376460;, + 0.727387; 0.434168;, + 0.727387; 0.157716;, + 0.785280; 0.214195;, + 0.534337; 0.385480;, + 0.534337; 0.563216;, + 0.372072; 0.563216;, + 0.372072; 0.385480;, + 0.711585; 0.735744;, + 0.662796; 0.683243;, + 0.662750; 0.550091;, + 0.711541; 0.607782;, + 0.316681; 0.205144;, + 0.316681; 0.027408;, + 0.589439; 0.027408;, + 0.589439; 0.205144;, + 0.088891; 0.563216;, + 0.088891; 0.385480;, + 0.370772; 0.385480;, + 0.370772; 0.563216;, + 0.316681; 0.303860;, + 0.365452; 0.246152;, + 0.647332; 0.246152;, + 0.589439; 0.303860;, + 0.105206; 0.683409;, + 0.102377; 0.619185;, + 0.593508; 0.619123;, + 0.635692; 0.683409;, + 0.548351; 0.028454;, + 0.726087; 0.028454;, + 0.726087; 0.156416;, + 0.548351; 0.156416;, + 0.621585; 0.487177;, + 0.618235; 0.558770;, + 0.535637; 0.461037;, + 0.535637; 0.385480;, + 0.509988; 0.371055;, + 0.509988; 0.548791;, + 0.376836; 0.548791;, + 0.376836; 0.371055;, + 0.695570; 0.371055;, + 0.695570; 0.548791;, + 0.643053; 0.548791;, + 0.643053; 0.371055;, + 0.136796; 0.384180;, + 0.139107; 0.321101;, + 0.678640; 0.318505;, + 0.618236; 0.384180;, + 0.103963; 0.559844;, + 0.103963; 0.382108;, + 0.704568; 0.382108;, + 0.704568; 0.559844;, + 0.103963; 0.201772;, + 0.103963; 0.024037;, + 0.753321; 0.024036;, + 0.753321; 0.201773;, + 0.547051; 0.301614;, + 0.384786; 0.301614;, + 0.384786; 0.028454;, + 0.547051; 0.028856;, + 0.117449; 0.366384;, + 0.117850; 0.204119;, + 0.713898; 0.204119;, + 0.713497; 0.366384;, + 0.117449; 0.500836;, + 0.718053; 0.500836;, + 0.718053; 0.367684;, + 0.122006; 0.367684;, + 0.717033; 0.502136;, + 0.717033; 0.632601;, + 0.117449; 0.632601;, + 0.120986; 0.502136;, + 0.547051; 0.291078;, + 0.384786; 0.291078;, + 0.384786; 0.017919;, + 0.547051; 0.018320;, + 0.117449; 0.355848;, + 0.117850; 0.193583;, + 0.713898; 0.193583;, + 0.713497; 0.355848;, + 0.117449; 0.490300;, + 0.718053; 0.490300;, + 0.718053; 0.357148;, + 0.122006; 0.357148;, + 0.717033; 0.491600;, + 0.717033; 0.622065;, + 0.117449; 0.622065;, + 0.120986; 0.491601;; + } //End of Plane_009 UV Coordinates + XSkinMeshHeader { + 3; + 9; + 6; + } + SkinWeights { + "Armature_back"; + 319; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 65, + 66, + 67, + 68, + 70, + 71, + 74, + 75, + 78, + 79, + 82, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327; + 0.000021, + 0.000000, + 0.000000, + 0.000000, + 0.000037, + 0.004535, + 0.000000, + 0.000001, + 0.000037, + 0.000000, + 0.000000, + 0.004535, + 0.004535, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000037, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000039, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000039, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000039, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000039, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000011, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000011, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000011, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.799817, 0.017120,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.021400,-0.999771, 0.000000, 0.000000, + -0.046566, 2.495971,-0.152575, 1.000000;; + } //End of Armature_back Skin Weights + SkinWeights { + "Armature_Bone_002"; + 124; + 5, + 6, + 10, + 11, + 12, + 13, + 14, + 15, + 20, + 23, + 30, + 34, + 35, + 39, + 41, + 42, + 48, + 51, + 56, + 57, + 58, + 59, + 69, + 72, + 73, + 76, + 80, + 81, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 232, + 233, + 248, + 249, + 250, + 251, + 252, + 253, + 256, + 257, + 260, + 261, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 286, + 287, + 290, + 291, + 294, + 295, + 299, + 302, + 305, + 306, + 314, + 319, + 324, + 325; + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 0.787908, 0.138566,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + 0.173208,-0.984885, 0.000000, 0.000000, + -0.670992, 2.278846,-0.000000, 1.000000;; + } //End of Armature_Bone_002 Skin Weights + SkinWeights { + "Armature_Right_Hand"; + 56; + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999989, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999989, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999989, + 1.000000, + 1.000000; + 0.788837,-0.133180, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.166475,-0.986046, 0.000000, 0.000000, + 0.674561, 2.287896,-0.000000, 1.000000;; + } //End of Armature_Right_Hand Skin Weights + SkinWeights { + "Armature_root_001"; + 4; + 60, + 61, + 62, + 63; + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.800000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.114611,-3.024917,-0.000000, 1.000000;; + } //End of Armature_root_001 Skin Weights + SkinWeights { + "Armature_root_002"; + 4; + 0, + 1, + 2, + 3; + 0.999979, + 1.000000, + 1.000000, + 1.000000; + 0.800000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.150902,-3.008112,-0.000000, 1.000000;; + } //End of Armature_root_002 Skin Weights + SkinWeights { + "Armature_root"; + 64; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63; + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.999963, + 0.995465, + 1.000000, + 0.999999, + 0.999963, + 1.000000, + 1.000000, + 0.995465, + 0.995465, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999963, + 0.999999, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999961, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999961, + 1.000000, + 0.999999, + 1.000000, + 1.000000, + 0.999961, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 0.999961, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 0.800000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.006223,-0.013009,-0.000000, 1.000000;; + } //End of Armature_root Skin Weights + } //End of Plane_009 Mesh + } //End of Plane + } //End of Armature +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 50; + 0;3; 0.004457,-0.009078, 0.009382;;, + 1;3; 0.004457,-0.009078, 0.009382;;, + 2;3; 0.004457,-0.009078, 0.009382;;, + 3;3; 0.004457,-0.009078, 0.009382;;, + 4;3; 0.004457,-0.009078, 0.009382;;, + 5;3; 0.004457,-0.009078, 0.009382;;, + 6;3; 0.004457,-0.009078, 0.009382;;, + 7;3; 0.004457,-0.009078, 0.009382;;, + 8;3; 0.004457,-0.009078, 0.009382;;, + 9;3; 0.004457,-0.009078, 0.009382;;, + 10;3; 0.004457,-0.009078, 0.009382;;, + 11;3; 0.004457,-0.009078, 0.009382;;, + 12;3; 0.004457,-0.009078, 0.009382;;, + 13;3; 0.004457,-0.009078, 0.009382;;, + 14;3; 0.004457,-0.009078, 0.009382;;, + 15;3; 0.004457,-0.009078, 0.009382;;, + 16;3; 0.004457,-0.009078, 0.009382;;, + 17;3; 0.004457,-0.009078, 0.009382;;, + 18;3; 0.004457,-0.009078, 0.009382;;, + 19;3; 0.004457,-0.009078, 0.009382;;, + 20;3; 0.004457,-0.009078, 0.009382;;, + 21;3; 0.004457,-0.009078, 0.009382;;, + 22;3; 0.004457,-0.009078, 0.009382;;, + 23;3; 0.004457,-0.009078, 0.009382;;, + 24;3; 0.004457,-0.009078, 0.009382;;, + 25;3; 0.004457,-0.009078, 0.009382;;, + 26;3; 0.004457,-0.009078, 0.009382;;, + 27;3; 0.004457,-0.009078, 0.009382;;, + 28;3; 0.004457,-0.009078, 0.009382;;, + 29;3; 0.004457,-0.009078, 0.009382;;, + 30;3; 0.004457,-0.009078, 0.009382;;, + 31;3; 0.004457,-0.009078, 0.009382;;, + 32;3; 0.004457,-0.009078, 0.009382;;, + 33;3; 0.004457,-0.009078, 0.009382;;, + 34;3; 0.004457,-0.009078, 0.009382;;, + 35;3; 0.004457,-0.009078, 0.009382;;, + 36;3; 0.004457,-0.009078, 0.009382;;, + 37;3; 0.004457,-0.009078, 0.009382;;, + 38;3; 0.004457,-0.009078, 0.009382;;, + 39;3; 0.004457,-0.009078, 0.009382;;, + 40;3; 0.004457,-0.009078, 0.009382;;, + 41;3; 0.004457,-0.009078, 0.009382;;, + 42;3; 0.004457,-0.009078, 0.009382;;, + 43;3; 0.004457,-0.009078, 0.009382;;, + 44;3; 0.004457,-0.009078, 0.009382;;, + 45;3; 0.004457,-0.009078, 0.009382;;, + 46;3; 0.004457,-0.009078, 0.009382;;, + 47;3; 0.004457,-0.009078, 0.009382;;, + 48;3; 0.004457,-0.009078, 0.009382;;, + 49;3; 0.004457,-0.009078, 0.009382;;; + } + AnimationKey { //Rotation + 0; + 50; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 50; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_root} + AnimationKey { //Position + 2; + 50; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.067862;;, + 2;3; 0.000000, 0.000000, 0.137716;;, + 3;3; 0.000000, 0.000000, 0.196372;;, + 4;3; 0.000000, 0.000000, 0.236159;;, + 5;3; 0.000000, 0.000000, 0.250800;;, + 6;3; 0.000000,-0.000000, 0.242481;;, + 7;3; 0.000000,-0.000000, 0.217369;;, + 8;3; 0.000000,-0.000000, 0.175960;;, + 9;3; 0.000000,-0.000000, 0.120071;;, + 10;3; 0.000000,-0.000000, 0.053144;;, + 11;3; 0.000000,-0.000000,-0.019800;;, + 12;3; 0.000000,-0.000000,-0.092744;;, + 13;3; 0.000000, 0.000000,-0.159671;;, + 14;3; 0.000000, 0.000000,-0.215560;;, + 15;3; 0.000000, 0.000000,-0.256968;;, + 16;3; 0.000000, 0.000000,-0.282081;;, + 17;3; 0.000000, 0.000000,-0.290400;;, + 18;3; 0.000000,-0.000000,-0.277947;;, + 19;3; 0.000000,-0.000000,-0.244260;;, + 20;3; 0.000000,-0.000000,-0.194118;;, + 21;3; 0.000000,-0.000000,-0.132041;;, + 22;3; 0.000000,-0.000000,-0.063637;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 50; + 0;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 1;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 2;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 3;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 4;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 5;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 6;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 7;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 8;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 9;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 10;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 11;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 12;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 13;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 14;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 15;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 16;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 17;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 18;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 19;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 20;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 21;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 22;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 23;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 24;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 25;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 26;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 27;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 28;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 29;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 30;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 31;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 32;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 33;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 34;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 35;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 36;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 37;4; -0.000000, 0.000000, 0.726457, 0.687212;;, + 38;4; -0.000000, 0.000000, 0.726457, 0.687212;;, + 39;4; -0.000000, 0.000000, 0.726457, 0.687212;;, + 40;4; -0.000000, 0.000000, 0.726457, 0.687212;;, + 41;4; -0.000000, 0.000000, 0.726457, 0.687212;;, + 42;4; -0.000000, 0.000000, 0.726457, 0.687212;;, + 43;4; -0.000000, 0.000000, 0.726457, 0.687212;;, + 44;4; -0.000000, 0.000000, 0.726457, 0.687212;;, + 45;4; -0.000000, 0.000000, 0.726457, 0.687212;;, + 46;4; -0.000000, 0.000000, 0.726457, 0.687212;;, + 47;4; -0.000000, 0.000000, 0.726457, 0.687212;;, + 48;4; -0.000000, 0.000000, 0.726457, 0.687212;;, + 49;4; -0.000000, 0.000000, 0.726457, 0.687212;;; + } + AnimationKey { //Scale + 1; + 50; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Right_Hand} + AnimationKey { //Position + 2; + 50; + 0;3; -0.290493, 2.355259, 0.000000;;, + 1;3; -0.290493, 2.355259, 0.000000;;, + 2;3; -0.290493, 2.355259, 0.000000;;, + 3;3; -0.290493, 2.355259, 0.000000;;, + 4;3; -0.290493, 2.355259, 0.000000;;, + 5;3; -0.290493, 2.355259, 0.000000;;, + 6;3; -0.290493, 2.355259, 0.000000;;, + 7;3; -0.290493, 2.355259, 0.000000;;, + 8;3; -0.290493, 2.355259, 0.000000;;, + 9;3; -0.290493, 2.355259, 0.000000;;, + 10;3; -0.290493, 2.355259, 0.000000;;, + 11;3; -0.290493, 2.355259, 0.000000;;, + 12;3; -0.290493, 2.355259, 0.000000;;, + 13;3; -0.290493, 2.355259, 0.000000;;, + 14;3; -0.290493, 2.355259, 0.000000;;, + 15;3; -0.290493, 2.355259, 0.000000;;, + 16;3; -0.290493, 2.355259, 0.000000;;, + 17;3; -0.290493, 2.355259, 0.000000;;, + 18;3; -0.290493, 2.355259, 0.000000;;, + 19;3; -0.290493, 2.355259, 0.000000;;, + 20;3; -0.290493, 2.355259, 0.000000;;, + 21;3; -0.290493, 2.355259, 0.000000;;, + 22;3; -0.290493, 2.355259, 0.000000;;, + 23;3; -0.290493, 2.355259, 0.000000;;, + 24;3; -0.290496, 2.355064,-0.001203;;, + 25;3; -0.290496, 2.355064,-0.001203;;, + 26;3; -0.290496, 2.355064,-0.001203;;, + 27;3; -0.290496, 2.355064,-0.001203;;, + 28;3; -0.290496, 2.355064,-0.001203;;, + 29;3; -0.290496, 2.355064,-0.001203;;, + 30;3; -0.290496, 2.355064,-0.001203;;, + 31;3; -0.290496, 2.355064,-0.001203;;, + 32;3; -0.290496, 2.355064,-0.001203;;, + 33;3; -0.290496, 2.355064,-0.001203;;, + 34;3; -0.290496, 2.355064,-0.001203;;, + 35;3; -0.290496, 2.355064,-0.001203;;, + 36;3; -0.290496, 2.355064,-0.001203;;, + 37;3; -0.290496, 2.355065,-0.001203;;, + 38;3; -0.290496, 2.355065,-0.001203;;, + 39;3; -0.290496, 2.355065,-0.001203;;, + 40;3; -0.290496, 2.355065,-0.001203;;, + 41;3; -0.290496, 2.355065,-0.001203;;, + 42;3; -0.290496, 2.355065,-0.001203;;, + 43;3; -0.290496, 2.355065,-0.001203;;, + 44;3; -0.290496, 2.355065,-0.001203;;, + 45;3; -0.290496, 2.355065,-0.001203;;, + 46;3; -0.290496, 2.355065,-0.001203;;, + 47;3; -0.290496, 2.355065,-0.001203;;, + 48;3; -0.290496, 2.355065,-0.001203;;, + 49;3; -0.290496, 2.355065,-0.001203;;; + } + AnimationKey { //Rotation + 0; + 50; + 0;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 1;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 2;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 3;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 4;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 5;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 6;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 7;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 8;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 9;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 10;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 11;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 12;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 13;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 14;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 15;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 16;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 17;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 18;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 19;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 20;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 21;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 22;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 23;4; -0.000000, 0.996505,-0.083529, 0.000000;;, + 24;4; -0.159024, 0.983765,-0.082462, 0.010852;;, + 25;4; -0.159024, 0.983765,-0.082462, 0.010852;;, + 26;4; -0.159024, 0.983765,-0.082462, 0.010852;;, + 27;4; -0.159024, 0.983765,-0.082462, 0.010852;;, + 28;4; -0.159024, 0.983765,-0.082462, 0.010852;;, + 29;4; -0.159024, 0.983765,-0.082462, 0.010852;;, + 30;4; -0.159024, 0.983765,-0.082462, 0.010852;;, + 31;4; -0.159024, 0.983765,-0.082462, 0.010852;;, + 32;4; -0.159024, 0.983765,-0.082462, 0.010852;;, + 33;4; -0.159024, 0.983765,-0.082462, 0.010852;;, + 34;4; -0.159024, 0.983765,-0.082462, 0.010852;;, + 35;4; -0.159024, 0.983765,-0.082462, 0.010852;;, + 36;4; -0.159024, 0.983765,-0.082462, 0.010852;;, + 37;4; -0.703772, 0.706324,-0.059206, 0.048025;;, + 38;4; -0.697387, 0.712289,-0.059561, 0.047525;;, + 39;4; -0.684270, 0.724913,-0.060311, 0.046411;;, + 40;4; -0.678183, 0.730801,-0.060660, 0.045887;;, + 41;4; -0.681625, 0.727351,-0.060437, 0.046175;;, + 42;4; -0.691644, 0.717311,-0.059789, 0.047016;;, + 43;4; -0.706047, 0.702877,-0.058857, 0.048224;;, + 44;4; -0.720450, 0.688444,-0.057925, 0.049433;;, + 45;4; -0.730469, 0.678404,-0.057277, 0.050273;;, + 46;4; -0.733911, 0.674954,-0.057055, 0.050562;;, + 47;4; -0.726631, 0.682531,-0.057574, 0.049950;;, + 48;4; -0.711052, 0.698746,-0.058686, 0.048638;;, + 49;4; -0.703772, 0.706324,-0.059206, 0.048025;;; + } + AnimationKey { //Scale + 1; + 50; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { //Position + 2; + 50; + 0;3; 0.259914, 2.347614, 0.000000;;, + 1;3; 0.259914, 2.347614, 0.000000;;, + 2;3; 0.259914, 2.347614, 0.000000;;, + 3;3; 0.259914, 2.347614, 0.000000;;, + 4;3; 0.259914, 2.347614, 0.000000;;, + 5;3; 0.259914, 2.347614, 0.000000;;, + 6;3; 0.259914, 2.347614, 0.000000;;, + 7;3; 0.259914, 2.347614, 0.000000;;, + 8;3; 0.259914, 2.347614, 0.000000;;, + 9;3; 0.259914, 2.347614, 0.000000;;, + 10;3; 0.259914, 2.347614, 0.000000;;, + 11;3; 0.259914, 2.347614, 0.000000;;, + 12;3; 0.259914, 2.347614, 0.000000;;, + 13;3; 0.259914, 2.347614, 0.000000;;, + 14;3; 0.259914, 2.347614, 0.000000;;, + 15;3; 0.259914, 2.347614, 0.000000;;, + 16;3; 0.259914, 2.347614, 0.000000;;, + 17;3; 0.259914, 2.347614, 0.000000;;, + 18;3; 0.259914, 2.347614, 0.000000;;, + 19;3; 0.259914, 2.347614, 0.000000;;, + 20;3; 0.259914, 2.347614, 0.000000;;, + 21;3; 0.259914, 2.347614, 0.000000;;, + 22;3; 0.259914, 2.347614, 0.000000;;, + 23;3; 0.259914, 2.347614, 0.000000;;, + 24;3; 0.259911, 2.347808, 0.001203;;, + 25;3; 0.259911, 2.347808, 0.001203;;, + 26;3; 0.259911, 2.347808, 0.001203;;, + 27;3; 0.259911, 2.347808, 0.001203;;, + 28;3; 0.259911, 2.347808, 0.001203;;, + 29;3; 0.259911, 2.347808, 0.001203;;, + 30;3; 0.259911, 2.347808, 0.001203;;, + 31;3; 0.259911, 2.347808, 0.001203;;, + 32;3; 0.259911, 2.347808, 0.001203;;, + 33;3; 0.259911, 2.347808, 0.001203;;, + 34;3; 0.259911, 2.347808, 0.001203;;, + 35;3; 0.259911, 2.347808, 0.001203;;, + 36;3; 0.259911, 2.347808, 0.001203;;, + 37;3; 0.259911, 2.347809, 0.001203;;, + 38;3; 0.259911, 2.347809, 0.001203;;, + 39;3; 0.259911, 2.347809, 0.001203;;, + 40;3; 0.259911, 2.347809, 0.001203;;, + 41;3; 0.259911, 2.347809, 0.001203;;, + 42;3; 0.259911, 2.347809, 0.001203;;, + 43;3; 0.259911, 2.347809, 0.001203;;, + 44;3; 0.259911, 2.347809, 0.001203;;, + 45;3; 0.259911, 2.347809, 0.001203;;, + 46;3; 0.259911, 2.347809, 0.001203;;, + 47;3; 0.259911, 2.347809, 0.001203;;, + 48;3; 0.259911, 2.347809, 0.001203;;, + 49;3; 0.259911, 2.347809, 0.001203;;; + } + AnimationKey { //Rotation + 0; + 50; + 0;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 1;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 2;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 3;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 4;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 5;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 6;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 7;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 8;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 9;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 10;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 11;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 12;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 13;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 14;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 15;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 16;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 17;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 18;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 19;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 20;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 21;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 22;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 23;4; -0.000000, 0.996214, 0.086933, 0.000000;;, + 24;4; -0.158993, 0.983478, 0.085821,-0.011298;;, + 25;4; -0.158993, 0.983478, 0.085821,-0.011298;;, + 26;4; -0.158993, 0.983478, 0.085821,-0.011298;;, + 27;4; -0.158993, 0.983478, 0.085821,-0.011298;;, + 28;4; -0.158993, 0.983478, 0.085821,-0.011298;;, + 29;4; -0.158993, 0.983478, 0.085821,-0.011298;;, + 30;4; -0.158993, 0.983478, 0.085821,-0.011298;;, + 31;4; -0.158993, 0.983478, 0.085821,-0.011298;;, + 32;4; -0.158993, 0.983478, 0.085821,-0.011298;;, + 33;4; -0.158993, 0.983478, 0.085821,-0.011298;;, + 34;4; -0.158993, 0.983478, 0.085821,-0.011298;;, + 35;4; -0.158993, 0.983478, 0.085821,-0.011298;;, + 36;4; -0.158993, 0.983478, 0.085821,-0.011298;;, + 37;4; -0.694552, 0.715031, 0.062396,-0.049354;;, + 38;4; -0.692475, 0.716912, 0.062529,-0.049186;;, + 39;4; -0.688216, 0.720832, 0.062807,-0.048826;;, + 40;4; -0.683196, 0.725494, 0.063136,-0.048391;;, + 41;4; -0.678075, 0.730271, 0.063474,-0.047942;;, + 42;4; -0.673260, 0.734774, 0.063792,-0.047517;;, + 43;4; -0.669052, 0.738712, 0.064070,-0.047145;;, + 44;4; -0.665715, 0.741833, 0.064291,-0.046850;;, + 45;4; -0.663506, 0.743896, 0.064436,-0.046656;;, + 46;4; -0.662702, 0.744646, 0.064489,-0.046585;;, + 47;4; -0.670395, 0.737492, 0.063984,-0.047254;;, + 48;4; -0.686858, 0.722185, 0.062902,-0.048685;;, + 49;4; -0.694552, 0.715031, 0.062396,-0.049354;;; + } + AnimationKey { //Scale + 1; + 50; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_back} + AnimationKey { //Position + 2; + 50; + 0;3; -0.013083, 2.483388,-0.152575;;, + 1;3; -0.013083, 2.483388,-0.152575;;, + 2;3; -0.013083, 2.483388,-0.152575;;, + 3;3; -0.013083, 2.483388,-0.152575;;, + 4;3; -0.013083, 2.483388,-0.152575;;, + 5;3; -0.013083, 2.483388,-0.152575;;, + 6;3; -0.013083, 2.483388,-0.152575;;, + 7;3; -0.013083, 2.483388,-0.152575;;, + 8;3; -0.013083, 2.483388,-0.152575;;, + 9;3; -0.013083, 2.483388,-0.152575;;, + 10;3; -0.013083, 2.483388,-0.152575;;, + 11;3; -0.013083, 2.483388,-0.152575;;, + 12;3; -0.013083, 2.483388,-0.152575;;, + 13;3; -0.013083, 2.483388,-0.152575;;, + 14;3; -0.013083, 2.483388,-0.152575;;, + 15;3; -0.013083, 2.483388,-0.152575;;, + 16;3; -0.013083, 2.483388,-0.152575;;, + 17;3; -0.013083, 2.483388,-0.152575;;, + 18;3; -0.013083, 2.483388,-0.152575;;, + 19;3; -0.013083, 2.483388,-0.152575;;, + 20;3; -0.013083, 2.483388,-0.152575;;, + 21;3; -0.013083, 2.483388,-0.152575;;, + 22;3; -0.013083, 2.483388,-0.152575;;, + 23;3; -0.013083, 2.483388,-0.152575;;, + 24;3; -0.013083, 2.483388,-0.152575;;, + 25;3; -0.013083, 2.483388,-0.152575;;, + 26;3; -0.013083, 2.483388,-0.152575;;, + 27;3; -0.013083, 2.483388,-0.152575;;, + 28;3; -0.013083, 2.483388,-0.152575;;, + 29;3; -0.013083, 2.483388,-0.152575;;, + 30;3; -0.013083, 2.483388,-0.152575;;, + 31;3; -0.013083, 2.483388,-0.152575;;, + 32;3; -0.013083, 2.483388,-0.152575;;, + 33;3; -0.013083, 2.483388,-0.152575;;, + 34;3; -0.013083, 2.483388,-0.152575;;, + 35;3; -0.013083, 2.483388,-0.152575;;, + 36;3; -0.013083, 2.483388,-0.152575;;, + 37;3; -0.013083, 2.483388,-0.152575;;, + 38;3; -0.013083, 2.483388,-0.152575;;, + 39;3; -0.013083, 2.483388,-0.152575;;, + 40;3; -0.013083, 2.483388,-0.152575;;, + 41;3; -0.013083, 2.483388,-0.152575;;, + 42;3; -0.013083, 2.483388,-0.152575;;, + 43;3; -0.013083, 2.483388,-0.152575;;, + 44;3; -0.013083, 2.483388,-0.152575;;, + 45;3; -0.013083, 2.483388,-0.152575;;, + 46;3; -0.013083, 2.483388,-0.152575;;, + 47;3; -0.013083, 2.483388,-0.152575;;, + 48;3; -0.013083, 2.483388,-0.152575;;, + 49;3; -0.013083, 2.483388,-0.152575;;; + } + AnimationKey { //Rotation + 0; + 50; + 0;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 1;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 2;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 3;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 4;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 5;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 6;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 7;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 8;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 9;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 10;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 11;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 12;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 13;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 14;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 15;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 16;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 17;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 18;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 19;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 20;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 21;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 22;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 23;4; -0.000000, 0.999943, 0.010701,-0.000000;;, + 24;4; 0.130519, 0.991388, 0.010609, 0.001397;;, + 25;4; 0.168031, 0.986326, 0.010555, 0.001797;;, + 26;4; 0.192937, 0.982312, 0.010512, 0.002064;;, + 27;4; 0.207254, 0.979400, 0.010481, 0.002218;;, + 28;4; 0.213957, 0.977524, 0.010461, 0.002290;;, + 29;4; 0.216150, 0.976531, 0.010450, 0.002313;;, + 30;4; 0.216427, 0.976240, 0.010447, 0.002316;;, + 31;4; 0.216150, 0.976619, 0.010451, 0.002313;;, + 32;4; 0.213954, 0.977830, 0.010464, 0.002290;;, + 33;4; 0.207242, 0.979956, 0.010487, 0.002218;;, + 34;4; 0.192910, 0.983007, 0.010520, 0.002064;;, + 35;4; 0.167995, 0.986883, 0.010561, 0.001797;;, + 36;4; 0.130519, 0.991388, 0.010609, 0.001397;;, + 37;4; 0.056614, 0.998339, 0.010684, 0.000606;;, + 38;4; 0.058708, 0.998193, 0.010682, 0.000628;;, + 39;4; 0.063994, 0.997824, 0.010678, 0.000685;;, + 40;4; 0.070663, 0.997358, 0.010673, 0.000756;;, + 41;4; 0.076873, 0.996924, 0.010669, 0.000823;;, + 42;4; 0.081185, 0.996623, 0.010665, 0.000869;;, + 43;4; 0.082728, 0.996515, 0.010664, 0.000885;;, + 44;4; 0.081115, 0.996515, 0.010664, 0.000903;;, + 45;4; 0.076422, 0.996515, 0.010664, 0.000953;;, + 46;4; 0.069674, 0.996515, 0.010664, 0.001025;;, + 47;4; 0.062927, 0.996515, 0.010664, 0.001097;;, + 48;4; 0.058233, 0.996515, 0.010664, 0.001147;;, + 49;4; 0.056620, 0.996515, 0.010664, 0.001165;;; + } + AnimationKey { //Scale + 1; + 50; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_root_001} + AnimationKey { //Position + 2; + 50; + 0;3; 0.108388, 3.011908,-0.000000;;, + 1;3; 0.108388, 3.011908,-0.000000;;, + 2;3; 0.108388, 3.011908,-0.000000;;, + 3;3; 0.108388, 3.011908,-0.000000;;, + 4;3; 0.108388, 3.011908,-0.000000;;, + 5;3; 0.108388, 3.011908,-0.000000;;, + 6;3; 0.108388, 3.011908,-0.000000;;, + 7;3; 0.108388, 3.011908,-0.000000;;, + 8;3; 0.108388, 3.011908,-0.000000;;, + 9;3; 0.108388, 3.011908,-0.000000;;, + 10;3; 0.108388, 3.011908,-0.000000;;, + 11;3; 0.108388, 3.011908,-0.000000;;, + 12;3; 0.108388, 3.011908,-0.000000;;, + 13;3; 0.108388, 3.011908,-0.000000;;, + 14;3; 0.108388, 3.011908,-0.000000;;, + 15;3; 0.108388, 3.011908,-0.000000;;, + 16;3; 0.108388, 3.011908,-0.000000;;, + 17;3; 0.108388, 3.011908,-0.000000;;, + 18;3; 0.108388, 3.011908,-0.000000;;, + 19;3; 0.108388, 3.011908,-0.000000;;, + 20;3; 0.108388, 3.011908,-0.000000;;, + 21;3; 0.108388, 3.011908,-0.000000;;, + 22;3; 0.108388, 3.011908,-0.000000;;, + 23;3; 0.108388, 3.011908,-0.000000;;, + 24;3; 0.108388, 3.011908,-0.000000;;, + 25;3; 0.108388, 3.011908,-0.000000;;, + 26;3; 0.108388, 3.011908,-0.000000;;, + 27;3; 0.108388, 3.011908,-0.000000;;, + 28;3; 0.108388, 3.011908,-0.000000;;, + 29;3; 0.108388, 3.011908,-0.000000;;, + 30;3; 0.108388, 3.011908,-0.000000;;, + 31;3; 0.108388, 3.011908,-0.000000;;, + 32;3; 0.108388, 3.011908,-0.000000;;, + 33;3; 0.108388, 3.011908,-0.000000;;, + 34;3; 0.108388, 3.011908,-0.000000;;, + 35;3; 0.108388, 3.011908,-0.000000;;, + 36;3; 0.108388, 3.011908,-0.000000;;, + 37;3; 0.108388, 3.011908,-0.000000;;, + 38;3; 0.111282, 3.014802, 0.002893;;, + 39;3; 0.102914, 3.006433,-0.005475;;, + 40;3; 0.100667, 3.004187,-0.007722;;, + 41;3; 0.117499, 3.021019, 0.009111;;, + 42;3; 0.107302, 3.010822,-0.001086;;, + 43;3; 0.105187, 3.008707,-0.003202;;, + 44;3; 0.101925, 3.005445,-0.006463;;, + 45;3; 0.116975, 3.020495, 0.008586;;, + 46;3; 0.110424, 3.013944, 0.002036;;, + 47;3; 0.119450, 3.022970, 0.011062;;, + 48;3; 0.118807, 3.022327, 0.010418;;, + 49;3; 0.108388, 3.011908,-0.000000;;; + } + AnimationKey { //Rotation + 0; + 50; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 50; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_root_002} + AnimationKey { //Position + 2; + 50; + 0;3; -0.157125, 2.995103,-0.000000;;, + 1;3; -0.157125, 2.995103,-0.000000;;, + 2;3; -0.157125, 2.995103,-0.000000;;, + 3;3; -0.157125, 2.995103,-0.000000;;, + 4;3; -0.157125, 2.995103,-0.000000;;, + 5;3; -0.157125, 2.995103,-0.000000;;, + 6;3; -0.157125, 2.995103,-0.000000;;, + 7;3; -0.157125, 2.995103,-0.000000;;, + 8;3; -0.157125, 2.995103,-0.000000;;, + 9;3; -0.157125, 2.995103,-0.000000;;, + 10;3; -0.157125, 2.995103,-0.000000;;, + 11;3; -0.157125, 2.995103,-0.000000;;, + 12;3; -0.157125, 2.995103,-0.000000;;, + 13;3; -0.157125, 2.995103,-0.000000;;, + 14;3; -0.157125, 2.995103,-0.000000;;, + 15;3; -0.157125, 2.995103,-0.000000;;, + 16;3; -0.157125, 2.995103,-0.000000;;, + 17;3; -0.157125, 2.995103,-0.000000;;, + 18;3; -0.157125, 2.995103,-0.000000;;, + 19;3; -0.157125, 2.995103,-0.000000;;, + 20;3; -0.157125, 2.995103,-0.000000;;, + 21;3; -0.157125, 2.995103,-0.000000;;, + 22;3; -0.157125, 2.995103,-0.000000;;, + 23;3; -0.157125, 2.995103,-0.000000;;, + 24;3; -0.157125, 2.995103,-0.000000;;, + 25;3; -0.157125, 2.995103,-0.000000;;, + 26;3; -0.157125, 2.995103,-0.000000;;, + 27;3; -0.157125, 2.995103,-0.000000;;, + 28;3; -0.157125, 2.995103,-0.000000;;, + 29;3; -0.157125, 2.995103,-0.000000;;, + 30;3; -0.157125, 2.995103,-0.000000;;, + 31;3; -0.157125, 2.995103,-0.000000;;, + 32;3; -0.157125, 2.995103,-0.000000;;, + 33;3; -0.157125, 2.995103,-0.000000;;, + 34;3; -0.157125, 2.995103,-0.000000;;, + 35;3; -0.157125, 2.995103,-0.000000;;, + 36;3; -0.157125, 2.995103,-0.000000;;, + 37;3; -0.157125, 2.995103,-0.000000;;, + 38;3; -0.154231, 2.998278,-0.000000;;, + 39;3; -0.162599, 2.996521,-0.000000;;, + 40;3; -0.164846, 2.997358,-0.000000;;, + 41;3; -0.148014, 3.013568,-0.000000;;, + 42;3; -0.158211, 2.983142,-0.000000;;, + 43;3; -0.160326, 2.976145,-0.000000;;, + 44;3; -0.163588, 2.992257,-0.000000;;, + 45;3; -0.148538, 2.988948,-0.000000;;, + 46;3; -0.155088, 2.985346,-0.000000;;, + 47;3; -0.146063, 2.997540,-0.000000;;, + 48;3; -0.146706, 2.989561,-0.000000;;, + 49;3; -0.157125, 2.995103,-0.000000;;; + } + AnimationKey { //Rotation + 0; + 50; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 50; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Plane} + AnimationKey { //Position + 2; + 50; + 0;3; -0.006223, 0.000000,-0.013009;;, + 1;3; -0.006223, 0.000000,-0.013009;;, + 2;3; -0.006223, 0.000000,-0.013009;;, + 3;3; -0.006223, 0.000000,-0.013009;;, + 4;3; -0.006223, 0.000000,-0.013009;;, + 5;3; -0.006223, 0.000000,-0.013009;;, + 6;3; -0.006223, 0.000000,-0.013009;;, + 7;3; -0.006223, 0.000000,-0.013009;;, + 8;3; -0.006223, 0.000000,-0.013009;;, + 9;3; -0.006223, 0.000000,-0.013009;;, + 10;3; -0.006223, 0.000000,-0.013009;;, + 11;3; -0.006223, 0.000000,-0.013009;;, + 12;3; -0.006223, 0.000000,-0.013009;;, + 13;3; -0.006223, 0.000000,-0.013009;;, + 14;3; -0.006223, 0.000000,-0.013009;;, + 15;3; -0.006223, 0.000000,-0.013009;;, + 16;3; -0.006223, 0.000000,-0.013009;;, + 17;3; -0.006223, 0.000000,-0.013009;;, + 18;3; -0.006223, 0.000000,-0.013009;;, + 19;3; -0.006223, 0.000000,-0.013009;;, + 20;3; -0.006223, 0.000000,-0.013009;;, + 21;3; -0.006223, 0.000000,-0.013009;;, + 22;3; -0.006223, 0.000000,-0.013009;;, + 23;3; -0.006223, 0.000000,-0.013009;;, + 24;3; -0.006223, 0.000000,-0.013009;;, + 25;3; -0.006223, 0.000000,-0.013009;;, + 26;3; -0.006223, 0.000000,-0.013009;;, + 27;3; -0.006223, 0.000000,-0.013009;;, + 28;3; -0.006223, 0.000000,-0.013009;;, + 29;3; -0.006223, 0.000000,-0.013009;;, + 30;3; -0.006223, 0.000000,-0.013009;;, + 31;3; -0.006223, 0.000000,-0.013009;;, + 32;3; -0.006223, 0.000000,-0.013009;;, + 33;3; -0.006223, 0.000000,-0.013009;;, + 34;3; -0.006223, 0.000000,-0.013009;;, + 35;3; -0.006223, 0.000000,-0.013009;;, + 36;3; -0.006223, 0.000000,-0.013009;;, + 37;3; -0.006223, 0.000000,-0.013009;;, + 38;3; -0.006223, 0.000000,-0.013009;;, + 39;3; -0.006223, 0.000000,-0.013009;;, + 40;3; -0.006223, 0.000000,-0.013009;;, + 41;3; -0.006223, 0.000000,-0.013009;;, + 42;3; -0.006223, 0.000000,-0.013009;;, + 43;3; -0.006223, 0.000000,-0.013009;;, + 44;3; -0.006223, 0.000000,-0.013009;;, + 45;3; -0.006223, 0.000000,-0.013009;;, + 46;3; -0.006223, 0.000000,-0.013009;;, + 47;3; -0.006223, 0.000000,-0.013009;;, + 48;3; -0.006223, 0.000000,-0.013009;;, + 49;3; -0.006223, 0.000000,-0.013009;;; + } + AnimationKey { //Rotation + 0; + 50; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 50; + 0;3; 0.800000, 1.000000, 1.000000;;, + 1;3; 0.800000, 1.000000, 1.000000;;, + 2;3; 0.800000, 1.000000, 1.000000;;, + 3;3; 0.800000, 1.000000, 1.000000;;, + 4;3; 0.800000, 1.000000, 1.000000;;, + 5;3; 0.800000, 1.000000, 1.000000;;, + 6;3; 0.800000, 1.000000, 1.000000;;, + 7;3; 0.800000, 1.000000, 1.000000;;, + 8;3; 0.800000, 1.000000, 1.000000;;, + 9;3; 0.800000, 1.000000, 1.000000;;, + 10;3; 0.800000, 1.000000, 1.000000;;, + 11;3; 0.800000, 1.000000, 1.000000;;, + 12;3; 0.800000, 1.000000, 1.000000;;, + 13;3; 0.800000, 1.000000, 1.000000;;, + 14;3; 0.800000, 1.000000, 1.000000;;, + 15;3; 0.800000, 1.000000, 1.000000;;, + 16;3; 0.800000, 1.000000, 1.000000;;, + 17;3; 0.800000, 1.000000, 1.000000;;, + 18;3; 0.800000, 1.000000, 1.000000;;, + 19;3; 0.800000, 1.000000, 1.000000;;, + 20;3; 0.800000, 1.000000, 1.000000;;, + 21;3; 0.800000, 1.000000, 1.000000;;, + 22;3; 0.800000, 1.000000, 1.000000;;, + 23;3; 0.800000, 1.000000, 1.000000;;, + 24;3; 0.800000, 1.000000, 1.000000;;, + 25;3; 0.800000, 1.000000, 1.000000;;, + 26;3; 0.800000, 1.000000, 1.000000;;, + 27;3; 0.800000, 1.000000, 1.000000;;, + 28;3; 0.800000, 1.000000, 1.000000;;, + 29;3; 0.800000, 1.000000, 1.000000;;, + 30;3; 0.800000, 1.000000, 1.000000;;, + 31;3; 0.800000, 1.000000, 1.000000;;, + 32;3; 0.800000, 1.000000, 1.000000;;, + 33;3; 0.800000, 1.000000, 1.000000;;, + 34;3; 0.800000, 1.000000, 1.000000;;, + 35;3; 0.800000, 1.000000, 1.000000;;, + 36;3; 0.800000, 1.000000, 1.000000;;, + 37;3; 0.800000, 1.000000, 1.000000;;, + 38;3; 0.800000, 1.000000, 1.000000;;, + 39;3; 0.800000, 1.000000, 1.000000;;, + 40;3; 0.800000, 1.000000, 1.000000;;, + 41;3; 0.800000, 1.000000, 1.000000;;, + 42;3; 0.800000, 1.000000, 1.000000;;, + 43;3; 0.800000, 1.000000, 1.000000;;, + 44;3; 0.800000, 1.000000, 1.000000;;, + 45;3; 0.800000, 1.000000, 1.000000;;, + 46;3; 0.800000, 1.000000, 1.000000;;, + 47;3; 0.800000, 1.000000, 1.000000;;, + 48;3; 0.800000, 1.000000, 1.000000;;, + 49;3; 0.800000, 1.000000, 1.000000;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs/models/mobs_pumba.png b/mods/mobs/models/mobs_pumba.png new file mode 100644 index 0000000..ce87f6a Binary files /dev/null and b/mods/mobs/models/mobs_pumba.png differ diff --git a/mods/mobs/models/mobs_pumba.x b/mods/mobs/models/mobs_pumba.x new file mode 100644 index 0000000..895ec42 --- /dev/null +++ b/mods/mobs/models/mobs_pumba.x @@ -0,0 +1,5316 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + -0.000234, 2.732761, 0.000000, 0.000000, + -2.732761,-0.000234, 0.000000, 0.000000, + 0.000000, 0.000000, 2.732761, 0.000000, + 0.164184,-2.791352, 4.770043, 1.000000;; + } + Frame Armature_body2 { + FrameTransformMatrix { + 0.087606,-0.000000,-0.996155, 0.000000, + 0.996155, 0.000000, 0.087606, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -0.155674, 0.000000, 0.000000, 1.000000;; + } + Frame Armature_head { + FrameTransformMatrix { + 0.000000, 0.000000, 1.000000, 0.000000, + 0.007902, 0.999969,-0.000000, 0.000000, + -0.999969, 0.007902, 0.000000, 0.000000, + -0.000000, 1.674146, 0.000000, 1.000000;; + } + } //End of Armature_head + Frame Armature_hvost { + FrameTransformMatrix { + -0.961313, 0.212562,-0.175201, 0.000000, + -0.203920,-0.976750,-0.066147, 0.000000, + -0.185188,-0.027861, 0.982308, 0.000000, + -0.371885,-0.304373,-0.053265, 1.000000;; + } + } //End of Armature_hvost + Frame Armature_noga3 { + FrameTransformMatrix { + 0.073289, 0.972682, 0.220268, 0.000000, + 0.997097,-0.076035, 0.004003, 0.000000, + 0.020641, 0.219336,-0.975431, 0.000000, + 0.532289,-0.143643, 0.710859, 1.000000;; + } + } //End of Armature_noga3 + Frame Armature_noga4 { + FrameTransformMatrix { + 0.073289, 0.972682, 0.220268, 0.000000, + 0.997097,-0.076035, 0.004003, 0.000000, + 0.020641, 0.219336,-0.975431, 0.000000, + 0.532289,-0.143643,-0.879248, 1.000000;; + } + } //End of Armature_noga4 + Frame Armature_noga2 { + FrameTransformMatrix { + 0.073289, 0.972682, 0.220268, 0.000000, + 0.997097,-0.076035, 0.004003, 0.000000, + 0.020641, 0.219335,-0.975431, 0.000000, + 0.700789, 1.772341,-0.879248, 1.000000;; + } + } //End of Armature_noga2 + Frame Armature_noga1 { + FrameTransformMatrix { + 0.073289, 0.972682, 0.220268, 0.000000, + 0.997097,-0.076035, 0.004003, 0.000000, + 0.020641, 0.219336,-0.975431, 0.000000, + 0.700789, 1.772341, 0.698612, 1.000000;; + } + } //End of Armature_noga1 + } //End of Armature_body2 + } //End of Armature + Frame Cube { + FrameTransformMatrix { + -0.000234, 2.732761, 0.000000, 0.000000, + -2.732761,-0.000234, 0.000000, 0.000000, + 0.000000, 0.000000, 2.732761, 0.000000, + -0.022274,-1.486684, 5.904222, 1.000000;; + } + Mesh { //Mesh Mesh + 408; + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000; 0.013041;, + -1.000000;-1.000000; 0.013041;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 0.013041;, + 1.782056;-1.000000;-1.494922;, + 1.782056; 1.000000;-1.494922;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000; 0.013041;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000; 0.013041;, + -1.000000; 1.000000; 0.013041;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 2.929399;-0.653627;-1.366374;, + 2.929399; 0.653627;-1.366374;, + 1.782056; 1.000000;-1.494922;, + 1.782056;-1.000000;-1.494922;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.782056; 1.000000;-1.494922;, + 1.782056; 1.000000; 1.000000;, + 1.782056; 1.000000; 1.000000;, + 1.782056;-1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.782056;-1.000000; 1.000000;, + 1.782056;-1.000000;-1.494922;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 3.192818;-0.423998;-0.769693;, + 3.192818; 0.423998;-0.769693;, + 2.929399; 0.653627;-1.366374;, + 2.929399;-0.653627;-1.366374;, + 2.389777;-0.653627; 0.653627;, + 2.929399;-0.653627;-1.366374;, + 1.782056;-1.000000;-1.494922;, + 1.782056;-1.000000; 1.000000;, + 1.782056; 1.000000; 1.000000;, + 1.782056; 1.000000;-1.494922;, + 2.929399; 0.653627;-1.366374;, + 2.389777; 0.653627; 0.653627;, + 2.389777; 0.653627; 0.653627;, + 2.389777;-0.653627; 0.653627;, + 1.782056;-1.000000; 1.000000;, + 1.782056; 1.000000; 1.000000;, + 3.363553;-0.423998;-0.551867;, + 3.363553; 0.423998;-0.551867;, + 3.192818; 0.423998;-0.769693;, + 3.192818;-0.423998;-0.769693;, + 2.389777; 0.653627; 0.653627;, + 2.929399; 0.653627;-1.366374;, + 3.192818; 0.423998;-0.769693;, + 2.653195; 0.423998; 0.296128;, + 2.653195; 0.423998; 0.296128;, + 2.653195;-0.423998; 0.296128;, + 2.389777;-0.653627; 0.653627;, + 2.389777; 0.653627; 0.653627;, + 2.653195;-0.423998; 0.296128;, + 3.192818;-0.423998;-0.769693;, + 2.929399;-0.653627;-1.366374;, + 2.389777;-0.653627; 0.653627;, + 3.363553; 0.423998;-0.551867;, + 3.363553;-0.423998;-0.551867;, + 3.363553;-0.423998; 0.296128;, + 3.363553; 0.423998; 0.296128;, + 3.363553; 0.423998; 0.296128;, + 3.363553;-0.423998; 0.296128;, + 2.653195;-0.423998; 0.296128;, + 2.653195; 0.423998; 0.296128;, + 3.363553;-0.423998; 0.296128;, + 3.363553;-0.423998;-0.551867;, + 3.192818;-0.423998;-0.769693;, + 2.653195;-0.423998; 0.296128;, + 2.653195; 0.423998; 0.296128;, + 3.192818; 0.423998;-0.769693;, + 3.363553; 0.423998;-0.551867;, + 3.363553; 0.423998; 0.296128;, + 2.944614;-0.144918;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.319240;, + 2.944614;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.645865;, + 2.944614;-0.144918;-0.645865;, + 3.271239; 0.200745;-0.645865;, + 3.271239;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 2.944614; 0.200745;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 2.944614; 0.200745;-0.319240;, + 3.271239;-0.144918;-0.645865;, + 3.271239; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 2.944614;-0.144918;-0.645865;, + 2.944614;-0.144918;-0.319240;, + 2.944614; 0.200745;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 3.271239;-0.144918;-0.319240;, + 3.271239; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 3.271239; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.319240;, + 2.944614; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.319240;, + 3.271239;-0.144918;-0.319240;, + 3.271239;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.645865;, + 2.944614;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.319240;, + 3.271239;-0.144918;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 3.271239; 0.200745;-0.645865;, + 3.271239; 0.200745;-0.645865;, + 3.271239; 0.200745;-0.319240;, + 3.158436;-0.843188; 0.129739;, + 3.158436;-0.935268; 0.129739;, + 3.057417;-0.935268; 0.129739;, + 3.057417;-0.843188; 0.129739;, + 2.944614; 0.200745;-0.319240;, + 2.944614; 0.647331;-0.319240;, + 3.271239; 0.647331;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 3.271239; 0.647331;-0.319240;, + 3.271239; 0.647331;-0.645865;, + 3.271239; 0.200745;-0.645865;, + 3.271239; 0.200745;-0.645865;, + 3.271239; 0.647331;-0.645865;, + 2.944614; 0.647331;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 2.944614; 0.647331;-0.645865;, + 2.944614; 0.647331;-0.319240;, + 2.944614; 0.200745;-0.319240;, + 3.063179; 0.860849; 0.129739;, + 3.063179; 0.942425; 0.129739;, + 3.152674; 0.942425; 0.129739;, + 3.152674; 0.860849; 0.129739;, + 3.271239;-0.144918;-0.319240;, + 3.271239;-0.591504;-0.319240;, + 2.944614;-0.591504;-0.319240;, + 2.944614;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.319240;, + 2.944614;-0.591504;-0.319240;, + 2.944614;-0.591504;-0.645865;, + 2.944614;-0.144918;-0.645865;, + 2.944614;-0.144918;-0.645865;, + 2.944614;-0.591504;-0.645865;, + 3.271239;-0.591504;-0.645865;, + 3.271239;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.645865;, + 3.271239;-0.591504;-0.645865;, + 3.271239;-0.591504;-0.319240;, + 3.271239;-0.144918;-0.319240;, + 2.944614; 0.945055;-0.645865;, + 3.271239; 0.945055;-0.645865;, + 3.271239; 0.945055;-0.319240;, + 2.944614; 0.945055;-0.319240;, + 3.152674; 0.860849; 0.129739;, + 3.152674; 0.942425; 0.129739;, + 3.271239; 0.945055;-0.319240;, + 3.271239; 0.647331;-0.319240;, + 3.271239; 0.647331;-0.319240;, + 3.271239; 0.945055;-0.319240;, + 3.271239; 0.945055;-0.645865;, + 3.271239; 0.647331;-0.645865;, + 3.271239; 0.647331;-0.645865;, + 3.271239; 0.945055;-0.645865;, + 2.944614; 0.945055;-0.645865;, + 2.944614; 0.647331;-0.645865;, + 2.944614; 0.647331;-0.645865;, + 2.944614; 0.945055;-0.645865;, + 2.944614; 0.945055;-0.319240;, + 2.944614; 0.647331;-0.319240;, + 3.271239;-0.889228;-0.645865;, + 2.944614;-0.889228;-0.645865;, + 2.944614;-0.889228;-0.319240;, + 3.271239;-0.889228;-0.319240;, + 3.158436;-0.843188; 0.129739;, + 3.057417;-0.843188; 0.129739;, + 2.944614;-0.591504;-0.319240;, + 3.271239;-0.591504;-0.319240;, + 2.944614;-0.591504;-0.319240;, + 2.944614;-0.889228;-0.319240;, + 2.944614;-0.889228;-0.645865;, + 2.944614;-0.591504;-0.645865;, + 2.944614;-0.591504;-0.645865;, + 2.944614;-0.889228;-0.645865;, + 3.271239;-0.889228;-0.645865;, + 3.271239;-0.591504;-0.645865;, + 3.271239;-0.591504;-0.645865;, + 3.271239;-0.889228;-0.645865;, + 3.271239;-0.889228;-0.319240;, + 3.271239;-0.591504;-0.319240;, + 3.063179; 0.860849; 0.129739;, + 3.152674; 0.860849; 0.129739;, + 3.271239; 0.647331;-0.319240;, + 2.944614; 0.647331;-0.319240;, + 3.158436;-0.935268; 0.129739;, + 3.158436;-0.843188; 0.129739;, + 3.271239;-0.591504;-0.319240;, + 3.271239;-0.889228;-0.319240;, + 3.271239;-0.889228;-0.319240;, + 2.944614;-0.889228;-0.319240;, + 3.057417;-0.935268; 0.129739;, + 3.158436;-0.935268; 0.129739;, + 3.063179; 0.942425; 0.129739;, + 3.063179; 0.860849; 0.129739;, + 2.944614; 0.647331;-0.319240;, + 2.944614; 0.945055;-0.319240;, + 2.944614; 0.945055;-0.319240;, + 3.271239; 0.945055;-0.319240;, + 3.152674; 0.942425; 0.129739;, + 3.063179; 0.942425; 0.129739;, + 3.057417;-0.843188; 0.129739;, + 3.057417;-0.935268; 0.129739;, + 2.944614;-0.889228;-0.319240;, + 2.944614;-0.591504;-0.319240;, + -0.905841;-0.958383;-2.117298;, + -0.905841;-0.605846;-2.117298;, + -0.905841;-0.605846;-1.011325;, + -0.905841;-0.958383;-1.011325;, + -0.905841;-0.605846;-2.117298;, + -0.553305;-0.605846;-2.117298;, + -0.553305;-0.605846;-1.011325;, + -0.905841;-0.605846;-1.011325;, + -0.553305;-0.605846;-2.117298;, + -0.553305;-0.958383;-2.117298;, + -0.553305;-0.958383;-1.011325;, + -0.553305;-0.605846;-1.011325;, + -0.553305;-0.958383;-2.117298;, + -0.905841;-0.958383;-2.117298;, + -0.905841;-0.958383;-1.011325;, + -0.553305;-0.958383;-1.011325;, + -0.553305;-0.958383;-2.117298;, + -0.553305;-0.605846;-2.117298;, + -0.905841;-0.605846;-2.117298;, + -0.905841;-0.958383;-2.117298;, + -0.905841;-0.958383;-1.011325;, + -0.905841;-0.605846;-1.011325;, + -0.553305;-0.605846;-1.011325;, + -0.553305;-0.958383;-1.011325;, + -0.905841; 0.626523;-2.117298;, + -0.905841; 0.979060;-2.117298;, + -0.905841; 0.979060;-1.011325;, + -0.905841; 0.626523;-1.011325;, + -0.905841; 0.979060;-2.117298;, + -0.553305; 0.979060;-2.117298;, + -0.553305; 0.979060;-1.011325;, + -0.905841; 0.979060;-1.011325;, + -0.553305; 0.979060;-2.117298;, + -0.553305; 0.626523;-2.117298;, + -0.553305; 0.626523;-1.011325;, + -0.553305; 0.979060;-1.011325;, + -0.553305; 0.626523;-2.117298;, + -0.905841; 0.626523;-2.117298;, + -0.905841; 0.626523;-1.011325;, + -0.553305; 0.626523;-1.011325;, + -0.553305; 0.626523;-2.117298;, + -0.553305; 0.979060;-2.117298;, + -0.905841; 0.979060;-2.117298;, + -0.905841; 0.626523;-2.117298;, + -0.905841; 0.626523;-1.011325;, + -0.905841; 0.979060;-1.011325;, + -0.553305; 0.979060;-1.011325;, + -0.553305; 0.626523;-1.011325;, + 1.029230; 0.626523;-2.117298;, + 1.029230; 0.979060;-2.117298;, + 1.029230; 0.979060;-1.011325;, + 1.029230; 0.626523;-1.011325;, + 1.029230; 0.979060;-2.117298;, + 1.381767; 0.979060;-2.117298;, + 1.381767; 0.979060;-1.011325;, + 1.029230; 0.979060;-1.011325;, + 1.381767; 0.979060;-2.117298;, + 1.381767; 0.626523;-2.117298;, + 1.381767; 0.626523;-1.011325;, + 1.381767; 0.979060;-1.011325;, + 1.381767; 0.626523;-2.117298;, + 1.029230; 0.626523;-2.117298;, + 1.029230; 0.626523;-1.011325;, + 1.381767; 0.626523;-1.011325;, + 1.381767; 0.626523;-2.117298;, + 1.381767; 0.979060;-2.117298;, + 1.029230; 0.979060;-2.117298;, + 1.029230; 0.626523;-2.117298;, + 1.029230; 0.626523;-1.011325;, + 1.029230; 0.979060;-1.011325;, + 1.381767; 0.979060;-1.011325;, + 1.381767; 0.626523;-1.011325;, + 1.029230;-0.968674;-2.117298;, + 1.029230;-0.616137;-2.117298;, + 1.029230;-0.616137;-1.011325;, + 1.029230;-0.968674;-1.011325;, + 1.029230;-0.616137;-2.117298;, + 1.381767;-0.616137;-2.117298;, + 1.381767;-0.616137;-1.011325;, + 1.029230;-0.616137;-1.011325;, + 1.381767;-0.616137;-2.117298;, + 1.381767;-0.968674;-2.117298;, + 1.381767;-0.968674;-1.011325;, + 1.381767;-0.616137;-1.011325;, + 1.381767;-0.968674;-2.117298;, + 1.029230;-0.968674;-2.117298;, + 1.029230;-0.968674;-1.011325;, + 1.381767;-0.968674;-1.011325;, + 1.381767;-0.968674;-2.117298;, + 1.381767;-0.616137;-2.117298;, + 1.029230;-0.616137;-2.117298;, + 1.029230;-0.968674;-2.117298;, + 1.029230;-0.968674;-1.011325;, + 1.029230;-0.616137;-1.011325;, + 1.381767;-0.616137;-1.011325;, + 1.381767;-0.968674;-1.011325;, + -1.798844;-0.135824;-0.084023;, + -1.798844; 0.174168;-0.084023;, + -1.798844; 0.174168; 0.225970;, + -1.798844;-0.135824; 0.225970;, + -1.798844; 0.174168;-0.084023;, + -0.975902; 0.174168;-0.272977;, + -0.975902; 0.174168; 0.037015;, + -1.798844; 0.174168; 0.225970;, + -0.975902; 0.174168;-0.272977;, + -0.975902;-0.135824;-0.272977;, + -0.975902;-0.135824; 0.037015;, + -0.975902; 0.174168; 0.037015;, + -0.975902;-0.135824;-0.272977;, + -1.798844;-0.135824;-0.084023;, + -1.798844;-0.135824; 0.225970;, + -0.975902;-0.135824; 0.037015;, + -0.975902;-0.135824;-0.272977;, + -0.975902; 0.174168;-0.272977;, + -1.798844; 0.174168;-0.084023;, + -1.798844;-0.135824;-0.084023;, + -1.798844;-0.135824; 0.225970;, + -1.798844; 0.174168; 0.225970;, + -0.975902; 0.174168; 0.037015;, + -0.975902;-0.135824; 0.037015;, + 1.449429;-0.717499; 0.974606;, + 1.643658;-0.708508; 0.974200;, + 1.649909;-0.819067; 1.747433;, + 1.455680;-0.828058; 1.747839;, + 1.643658;-0.708508; 0.974200;, + 1.653159;-0.915680; 0.931782;, + 1.662708;-1.100848; 1.398462;, + 1.649909;-0.819067; 1.747433;, + 1.653159;-0.915680; 0.931782;, + 1.458930;-0.924671; 0.932188;, + 1.468478;-1.109839; 1.398868;, + 1.662708;-1.100848; 1.398462;, + 1.458930;-0.924671; 0.932188;, + 1.449429;-0.717499; 0.974606;, + 1.455680;-0.828058; 1.747839;, + 1.468478;-1.109839; 1.398868;, + 1.458930;-0.924671; 0.932188;, + 1.653159;-0.915680; 0.931782;, + 1.643658;-0.708508; 0.974200;, + 1.449429;-0.717499; 0.974606;, + 1.455680;-0.828058; 1.747839;, + 1.649909;-0.819067; 1.747433;, + 1.662708;-1.100848; 1.398462;, + 1.468478;-1.109839; 1.398868;, + 1.405700; 0.856790; 0.983993;, + 1.596236; 0.818034; 0.984066;, + 1.645591; 1.061609; 1.662321;, + 1.455054; 1.100365; 1.662248;, + 1.596236; 0.818034; 0.984066;, + 1.633956; 1.003299; 0.888862;, + 1.693816; 1.298348; 1.290771;, + 1.645591; 1.061609; 1.662321;, + 1.633956; 1.003299; 0.888862;, + 1.443419; 1.042055; 0.888789;, + 1.503279; 1.337104; 1.290698;, + 1.693816; 1.298348; 1.290771;, + 1.443419; 1.042055; 0.888789;, + 1.405700; 0.856790; 0.983993;, + 1.455054; 1.100365; 1.662248;, + 1.503279; 1.337104; 1.290698;, + 1.443419; 1.042055; 0.888789;, + 1.633956; 1.003299; 0.888862;, + 1.596236; 0.818034; 0.984066;, + 1.405700; 0.856790; 0.983993;, + 1.455054; 1.100365; 1.662248;, + 1.645591; 1.061609; 1.662321;, + 1.693816; 1.298348; 1.290771;, + 1.503279; 1.337104; 1.290698;; + 102; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;; + MeshNormals { //Mesh Normals + 408; + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.534759; 0.000000;-0.845005;, + -0.534759; 0.000000;-0.845005;, + -0.534759; 0.000000;-0.845005;, + -0.534759; 0.000000;-0.845005;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.442530; 0.000000; 0.896754;, + -0.442530; 0.000000; 0.896754;, + -0.442530; 0.000000; 0.896754;, + -0.442530; 0.000000; 0.896754;, + 0.111343; 0.000000;-0.993782;, + 0.111343; 0.000000;-0.993782;, + 0.111343; 0.000000;-0.993782;, + 0.111343; 0.000000;-0.993782;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.914818; 0.000000;-0.403867;, + 0.914818; 0.000000;-0.403867;, + 0.914818; 0.000000;-0.403867;, + 0.914818; 0.000000;-0.403867;, + 0.371549;-0.927351; 0.044407;, + 0.371549;-0.927351; 0.044407;, + 0.371549;-0.927351; 0.044407;, + 0.371549;-0.927351; 0.044407;, + 0.371549; 0.927351; 0.044407;, + 0.371549; 0.927351; 0.044407;, + 0.371549; 0.927351; 0.044407;, + 0.371549; 0.927351; 0.044407;, + 0.495174; 0.000000; 0.868794;, + 0.495174; 0.000000; 0.868794;, + 0.495174; 0.000000; 0.868794;, + 0.495174; 0.000000; 0.868794;, + 0.787044; 0.000000;-0.616897;, + 0.787044; 0.000000;-0.616897;, + 0.787044; 0.000000;-0.616897;, + 0.787044; 0.000000;-0.616897;, + 0.588302; 0.782027; 0.205754;, + 0.588302; 0.782027; 0.205754;, + 0.588302; 0.782027; 0.205754;, + 0.588302; 0.782027; 0.205754;, + 0.805057; 0.000000; 0.593197;, + 0.805057; 0.000000; 0.593197;, + 0.805057; 0.000000; 0.593197;, + 0.805057; 0.000000; 0.593197;, + 0.588302;-0.782027; 0.205754;, + 0.588302;-0.782027; 0.205754;, + 0.588302;-0.782027; 0.205754;, + 0.588302;-0.782027; 0.205754;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.966856; 0.000000; 0.255323;, + 0.966856; 0.000000; 0.255323;, + 0.966856; 0.000000; 0.255323;, + 0.966856; 0.000000; 0.255323;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.872294; 0.488981;, + 0.000000; 0.872294; 0.488981;, + 0.000000; 0.872294; 0.488981;, + 0.000000; 0.872294; 0.488981;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.903080; 0.429472;, + 0.000000;-0.903080; 0.429472;, + 0.000000;-0.903080; 0.429472;, + 0.000000;-0.903080; 0.429472;, + 0.969858; 0.000000; 0.243670;, + 0.969858; 0.000000; 0.243670;, + 0.969858; 0.000000; 0.243670;, + 0.969858; 0.000000; 0.243670;, + 0.000000;-0.994784;-0.102009;, + 0.000000;-0.994784;-0.102009;, + 0.000000;-0.994784;-0.102009;, + 0.000000;-0.994784;-0.102009;, + -0.966856; 0.000000; 0.255323;, + -0.966856; 0.000000; 0.255323;, + -0.966856; 0.000000; 0.255323;, + -0.966856; 0.000000; 0.255323;, + 0.000000; 0.999983; 0.005858;, + 0.000000; 0.999983; 0.005858;, + 0.000000; 0.999983; 0.005858;, + 0.000000; 0.999983; 0.005858;, + -0.969858; 0.000000; 0.243669;, + -0.969858; 0.000000; 0.243669;, + -0.969858; 0.000000; 0.243669;, + -0.969858; 0.000000; 0.243669;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.223785; 0.000000;-0.974638;, + -0.223785; 0.000000;-0.974638;, + -0.223785; 0.000000;-0.974638;, + -0.223785; 0.000000;-0.974638;, + 0.223785; 0.000000; 0.974638;, + 0.223785; 0.000000; 0.974638;, + 0.223785; 0.000000; 0.974638;, + 0.223785; 0.000000; 0.974638;, + -0.045477; 0.988856; 0.141757;, + -0.045477; 0.988856; 0.141757;, + -0.045477; 0.988856; 0.141757;, + -0.045477; 0.988856; 0.141757;, + 0.998903; 0.046809;-0.001564;, + 0.998903; 0.046809;-0.001564;, + 0.998903; 0.046809;-0.001564;, + 0.998903; 0.046809;-0.001564;, + 0.042202;-0.928382;-0.369224;, + 0.042202;-0.928382;-0.369224;, + 0.042202;-0.928382;-0.369224;, + 0.042202;-0.928382;-0.369224;, + -0.998903;-0.046808; 0.001564;, + -0.998903;-0.046808; 0.001564;, + -0.998903;-0.046808; 0.001564;, + -0.998903;-0.046808; 0.001564;, + -0.011313; 0.200076;-0.979715;, + -0.011313; 0.200076;-0.979715;, + -0.011313; 0.200076;-0.979715;, + -0.011313; 0.200076;-0.979715;, + 0.037275;-0.776820; 0.628619;, + 0.037275;-0.776820; 0.628619;, + 0.037275;-0.776820; 0.628619;, + 0.037275;-0.776820; 0.628619;, + 0.187279; 0.920085;-0.344049;, + 0.187279; 0.920085;-0.344049;, + 0.187279; 0.920085;-0.344049;, + 0.187279; 0.920085;-0.344049;, + -0.979946; 0.199263;-0.000281;, + -0.979946; 0.199263;-0.000281;, + -0.979946; 0.199263;-0.000281;, + -0.979946; 0.199263;-0.000281;, + -0.159748;-0.784251; 0.599525;, + -0.159748;-0.784251; 0.599525;, + -0.159748;-0.784251; 0.599525;, + -0.159748;-0.784251; 0.599525;, + 0.979946;-0.199262; 0.000281;, + 0.979946;-0.199262; 0.000281;, + 0.979946;-0.199262; 0.000281;, + 0.979946;-0.199262; 0.000281;, + 0.089315; 0.440791; 0.893155;, + 0.089315; 0.440791; 0.893155;, + 0.089315; 0.440791; 0.893155;, + 0.089315; 0.440791; 0.893155;, + -0.166899;-0.821566;-0.545137;, + -0.166899;-0.821566;-0.545137;, + -0.166899;-0.821566;-0.545137;, + -0.166899;-0.821566;-0.545137;; + 102; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;; + } //End of Mesh Normals + MeshMaterialList { //Mesh Material List + 1; + 1; + 0;; + Material Default_Material { + 0.800000; 0.800000; 0.800000; 0.800000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Mesh Material List + MeshTextureCoords { //Mesh UV Coordinates + 408; + 0.386811; 0.472283;, + 0.272912; 0.618747;, + 0.227425; 0.549647;, + 0.299564; 0.438277;, + 0.272912; 0.618747;, + 0.082190; 0.676898;, + 0.050502; 0.456036;, + 0.227425; 0.549647;, + 0.522138; 0.121679;, + 0.417251; 0.121679;, + 0.417251; 0.073143;, + 0.522138; 0.073143;, + 0.396334; 0.265386;, + 0.386811; 0.472283;, + 0.299564; 0.438277;, + 0.181004; 0.294413;, + 0.396334; 0.265386;, + 0.603231; 0.274910;, + 0.593707; 0.481806;, + 0.386811; 0.472283;, + 0.299564; 0.438277;, + 0.227425; 0.549647;, + 0.050502; 0.456036;, + 0.181004; 0.294413;, + 0.503973; 0.182226;, + 0.435416; 0.182226;, + 0.417251; 0.121679;, + 0.522138; 0.121679;, + 0.750355; 0.507719;, + 0.987093; 0.687609;, + 0.960706; 0.838343;, + 0.716963; 0.603832;, + 0.716963; 0.603832;, + 0.458562; 0.612200;, + 0.423581; 0.504655;, + 0.750355; 0.507719;, + 0.458562; 0.612200;, + 0.226735; 0.850015;, + 0.191236; 0.703989;, + 0.423581; 0.504655;, + 0.491930; 0.216432;, + 0.447459; 0.216432;, + 0.435416; 0.182226;, + 0.503973; 0.182226;, + 0.492461; 0.693426;, + 0.392732; 0.954402;, + 0.226735; 0.850015;, + 0.458562; 0.612200;, + 0.716963; 0.603832;, + 0.960706; 0.838343;, + 0.802252; 0.955339;, + 0.691288; 0.690751;, + 0.691288; 0.690751;, + 0.492461; 0.693426;, + 0.458562; 0.612200;, + 0.716963; 0.603832;, + 0.491930; 0.230946;, + 0.447459; 0.230946;, + 0.447459; 0.216432;, + 0.491930; 0.216432;, + 0.691288; 0.690751;, + 0.802252; 0.955339;, + 0.707973; 0.950323;, + 0.691716; 0.787540;, + 0.691716; 0.787540;, + 0.493187; 0.787479;, + 0.492461; 0.693426;, + 0.691288; 0.690751;, + 0.493187; 0.787479;, + 0.486624; 0.943277;, + 0.392732; 0.954402;, + 0.492461; 0.693426;, + 0.637145; 0.955620;, + 0.553870; 0.954715;, + 0.554556; 0.858307;, + 0.637506; 0.861349;, + 0.637506; 0.861349;, + 0.554556; 0.858307;, + 0.493187; 0.787479;, + 0.691716; 0.787540;, + 0.554556; 0.858307;, + 0.553870; 0.954715;, + 0.486624; 0.943277;, + 0.493187; 0.787479;, + 0.691716; 0.787540;, + 0.707973; 0.950323;, + 0.637145; 0.955620;, + 0.637506; 0.861349;, + 0.136776; 0.106951;, + 0.175398; 0.107104;, + 0.176964; 0.144298;, + 0.136301; 0.144608;, + 0.132081; 0.106610;, + 0.131875; 0.071042;, + 0.136422; 0.071293;, + 0.136776; 0.106951;, + 0.175568; 0.219895;, + 0.137892; 0.219264;, + 0.136586; 0.182582;, + 0.177191; 0.182467;, + 0.181818; 0.144471;, + 0.182095; 0.182855;, + 0.177191; 0.182467;, + 0.176964; 0.144298;, + 0.136422; 0.071293;, + 0.174123; 0.070400;, + 0.175398; 0.107104;, + 0.136776; 0.106951;, + 0.136301; 0.144608;, + 0.176964; 0.144298;, + 0.177191; 0.182467;, + 0.136586; 0.182582;, + 0.178805; 0.070528;, + 0.180156; 0.107246;, + 0.175398; 0.107104;, + 0.174123; 0.070400;, + 0.176964; 0.144298;, + 0.175398; 0.107104;, + 0.180156; 0.107246;, + 0.181818; 0.144471;, + 0.136586; 0.182582;, + 0.137892; 0.219264;, + 0.133247; 0.219107;, + 0.131735; 0.182402;, + 0.136776; 0.106951;, + 0.136301; 0.144608;, + 0.131453; 0.144299;, + 0.132081; 0.106610;, + 0.131735; 0.182402;, + 0.131453; 0.144299;, + 0.136301; 0.144608;, + 0.136586; 0.182582;, + 0.182095; 0.182855;, + 0.180287; 0.220459;, + 0.175568; 0.219895;, + 0.177191; 0.182467;, + 0.376197; 0.227521;, + 0.376197; 0.238034;, + 0.364664; 0.238034;, + 0.364664; 0.227521;, + 0.181818; 0.144471;, + 0.239430; 0.142279;, + 0.240753; 0.187646;, + 0.182095; 0.182855;, + 0.182095; 0.182855;, + 0.240753; 0.187646;, + 0.229919; 0.226625;, + 0.180287; 0.220459;, + 0.178805; 0.070528;, + 0.228965; 0.068210;, + 0.228236; 0.104812;, + 0.180156; 0.107246;, + 0.180156; 0.107246;, + 0.228236; 0.104812;, + 0.239430; 0.142279;, + 0.181818; 0.144471;, + 0.365979; 0.226984;, + 0.365979; 0.217670;, + 0.376197; 0.217670;, + 0.376197; 0.226984;, + 0.131735; 0.182402;, + 0.073243; 0.184232;, + 0.075088; 0.140495;, + 0.131453; 0.144299;, + 0.131453; 0.144299;, + 0.075088; 0.140495;, + 0.085363; 0.103454;, + 0.132081; 0.106610;, + 0.132081; 0.106610;, + 0.085363; 0.103454;, + 0.084043; 0.071544;, + 0.131875; 0.071042;, + 0.133247; 0.219107;, + 0.085694; 0.225219;, + 0.073243; 0.184232;, + 0.131735; 0.182402;, + 0.253165; 0.098905;, + 0.263783; 0.073376;, + 0.293335; 0.096939;, + 0.267343; 0.121520;, + 0.300314; 0.167277;, + 0.306474; 0.173391;, + 0.271868; 0.208653;, + 0.240753; 0.187646;, + 0.240753; 0.187646;, + 0.271868; 0.208653;, + 0.257409; 0.238034;, + 0.229919; 0.226625;, + 0.228965; 0.068210;, + 0.263783; 0.073376;, + 0.253165; 0.098905;, + 0.228236; 0.104812;, + 0.228236; 0.104812;, + 0.253165; 0.098905;, + 0.267343; 0.121520;, + 0.239430; 0.142279;, + 0.053926; 0.074823;, + 0.063678; 0.101658;, + 0.046916; 0.118072;, + 0.026989; 0.093996;, + 0.012396; 0.160519;, + 0.013229; 0.150105;, + 0.075088; 0.140495;, + 0.073243; 0.184232;, + 0.075088; 0.140495;, + 0.046916; 0.118072;, + 0.063678; 0.101658;, + 0.085363; 0.103454;, + 0.085363; 0.103454;, + 0.063678; 0.101658;, + 0.053926; 0.074823;, + 0.084043; 0.071544;, + 0.085694; 0.225219;, + 0.053143; 0.238034;, + 0.039084; 0.202323;, + 0.073243; 0.184232;, + 0.299601; 0.157935;, + 0.300314; 0.167277;, + 0.240753; 0.187646;, + 0.239430; 0.142279;, + 0.004685; 0.166594;, + 0.012396; 0.160519;, + 0.073243; 0.184232;, + 0.039084; 0.202323;, + 0.026989; 0.093996;, + 0.046916; 0.118072;, + 0.007433; 0.142454;, + 0.000268; 0.134683;, + 0.305143; 0.151001;, + 0.299601; 0.157935;, + 0.239430; 0.142279;, + 0.267343; 0.121520;, + 0.267343; 0.121520;, + 0.293335; 0.096939;, + 0.313027; 0.145070;, + 0.305143; 0.151001;, + 0.013229; 0.150105;, + 0.007433; 0.142454;, + 0.046916; 0.118072;, + 0.075088; 0.140495;, + 0.674790; 0.390072;, + 0.623481; 0.390072;, + 0.625199; 0.074486;, + 0.676508; 0.074486;, + 0.828718; 0.390072;, + 0.777409; 0.390072;, + 0.779127; 0.074486;, + 0.830436; 0.074486;, + 0.777409; 0.390072;, + 0.726099; 0.390072;, + 0.727817; 0.074486;, + 0.779127; 0.074486;, + 0.726099; 0.390072;, + 0.674790; 0.390072;, + 0.676508; 0.074486;, + 0.727817; 0.074486;, + 0.376734; 0.197783;, + 0.416984; 0.197783;, + 0.416984; 0.238034;, + 0.376734; 0.238034;, + 0.338959; 0.032478;, + 0.379210; 0.032478;, + 0.379210; 0.072728;, + 0.338959; 0.072728;, + 0.672241; 0.389947;, + 0.620931; 0.389947;, + 0.622649; 0.074361;, + 0.673959; 0.074361;, + 0.826169; 0.389947;, + 0.774859; 0.389947;, + 0.776577; 0.074361;, + 0.827887; 0.074361;, + 0.774859; 0.389947;, + 0.723550; 0.389947;, + 0.725268; 0.074361;, + 0.776577; 0.074361;, + 0.723550; 0.389947;, + 0.672241; 0.389947;, + 0.673959; 0.074361;, + 0.725268; 0.074361;, + 0.932559; 0.503812;, + 0.972810; 0.503812;, + 0.972810; 0.544062;, + 0.932559; 0.544062;, + 0.416984; 0.156996;, + 0.416984; 0.197247;, + 0.376734; 0.197247;, + 0.376734; 0.156996;, + 0.675511; 0.387510;, + 0.624201; 0.387510;, + 0.625919; 0.071924;, + 0.677229; 0.071924;, + 0.829438; 0.387510;, + 0.778129; 0.387510;, + 0.779847; 0.071924;, + 0.831157; 0.071925;, + 0.778129; 0.387510;, + 0.726820; 0.387510;, + 0.728538; 0.071924;, + 0.779847; 0.071924;, + 0.726820; 0.387510;, + 0.675511; 0.387510;, + 0.677229; 0.071924;, + 0.728538; 0.071924;, + 0.932559; 0.287954;, + 0.972810; 0.287954;, + 0.972810; 0.328204;, + 0.932559; 0.328204;, + 0.972810; 0.463024;, + 0.972810; 0.503275;, + 0.932559; 0.503275;, + 0.932559; 0.463024;, + 0.673879; 0.389027;, + 0.622570; 0.389027;, + 0.624287; 0.073442;, + 0.675597; 0.073442;, + 0.827807; 0.389027;, + 0.776497; 0.389027;, + 0.778216; 0.073442;, + 0.829525; 0.073442;, + 0.776497; 0.389027;, + 0.725188; 0.389027;, + 0.726906; 0.073442;, + 0.778216; 0.073442;, + 0.725188; 0.389027;, + 0.673879; 0.389027;, + 0.675597; 0.073442;, + 0.726906; 0.073442;, + 0.379210; 0.073265;, + 0.379210; 0.113515;, + 0.338959; 0.113515;, + 0.338959; 0.073265;, + 0.932559; 0.287417;, + 0.932559; 0.247167;, + 0.972810; 0.247167;, + 0.972810; 0.287417;, + 0.967952; 0.328741;, + 0.967952; 0.364134;, + 0.932559; 0.364134;, + 0.932559; 0.328741;, + 0.879503; 0.118087;, + 0.879503; 0.214490;, + 0.845007; 0.206570;, + 0.845007; 0.110167;, + 0.967952; 0.462488;, + 0.932559; 0.462488;, + 0.932559; 0.427095;, + 0.967952; 0.427095;, + 0.914896; 0.214490;, + 0.914896; 0.118087;, + 0.949391; 0.110167;, + 0.949391; 0.206570;, + 0.914896; 0.214490;, + 0.879503; 0.214490;, + 0.879503; 0.118087;, + 0.914896; 0.118087;, + 0.949391; 0.110167;, + 0.984784; 0.110167;, + 0.984784; 0.206570;, + 0.949391; 0.206570;, + 0.118063; 0.784242;, + 0.116259; 0.796985;, + 0.037635; 0.759206;, + 0.056242; 0.733033;, + 0.116259; 0.796985;, + 0.147033; 0.813827;, + 0.062771; 0.835151;, + 0.037635; 0.759206;, + 0.147033; 0.813827;, + 0.130208; 0.785009;, + 0.133534; 0.733033;, + 0.162499; 0.739022;, + 0.130208; 0.785009;, + 0.118063; 0.784242;, + 0.056242; 0.733033;, + 0.133534; 0.733033;, + 0.130208; 0.785009;, + 0.147033; 0.813827;, + 0.116259; 0.796985;, + 0.118063; 0.784242;, + 0.196420; 0.835210;, + 0.196395; 0.858875;, + 0.141782; 0.858875;, + 0.141807; 0.835210;, + 0.092391; 0.909330;, + 0.079222; 0.905191;, + 0.115874; 0.835210;, + 0.141722; 0.852985;, + 0.079222; 0.905191;, + 0.061070; 0.933885;, + 0.037635; 0.850835;, + 0.115874; 0.835210;, + 0.061070; 0.933885;, + 0.090075; 0.921329;, + 0.141722; 0.932145;, + 0.131792; 0.959529;, + 0.090075; 0.921329;, + 0.092391; 0.909330;, + 0.141722; 0.852985;, + 0.141722; 0.932145;, + 0.090075; 0.921329;, + 0.061070; 0.933885;, + 0.079222; 0.905191;, + 0.092391; 0.909330;, + 0.141785; 0.959529;, + 0.141782; 0.935864;, + 0.195723; 0.935864;, + 0.195726; 0.959529;; + } //End of Mesh UV Coordinates + XSkinMeshHeader { + 1; + 3; + 7; + } + SkinWeights { + "Armature_noga3"; + 24; + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.975363, 0.011610, 0.220301, 0.000000, + -0.220268,-0.004003, 0.975431, 0.000000, + 0.012206,-0.999924,-0.001347, 0.000000, + 0.551675,-0.952433, 0.919341, 1.000000;; + } //End of Armature_noga3 Skin Weights + SkinWeights { + "Armature_body2"; + 28; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 28, + 29, + 34, + 35, + 38, + 39; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.087606, 0.996155, 0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -0.996155, 0.087606, 0.000000, 0.000000, + -0.357971, 0.667023,-0.068190, 1.000000;; + } //End of Armature_body2 Skin Weights + SkinWeights { + "Armature_noga4"; + 24; + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.975363, 0.011610, 0.220301, 0.000000, + -0.220268,-0.004003, 0.975431, 0.000000, + 0.012206,-0.999924,-0.001347, 0.000000, + 0.901926,-0.946068,-0.631700, 1.000000;; + } //End of Armature_noga4 Skin Weights + SkinWeights { + "Armature_head"; + 260; + 8, + 9, + 24, + 25, + 26, + 27, + 30, + 31, + 32, + 33, + 36, + 37, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000, 1.000000, 0.000000, 0.000000, + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.068190,-1.034611, 0.268365, 1.000000;; + } //End of Armature_head Skin Weights + SkinWeights { + "Armature_noga1"; + 24; + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.975363, 0.011610, 0.220301, 0.000000, + -0.220268,-0.004003, 0.975431, 0.000000, + 0.012206,-0.999924,-0.001347, 0.000000, + -1.321620,-0.974714, 0.483673, 1.000000;; + } //End of Armature_noga1 Skin Weights + SkinWeights { + "Armature_noga2"; + 24; + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.975363, 0.011610, 0.220301, 0.000000, + -0.220268,-0.004003, 0.975431, 0.000000, + 0.012206,-0.999924,-0.001347, 0.000000, + -0.974068,-0.968398,-1.055421, 1.000000;; + } //End of Armature_noga2 Skin Weights + SkinWeights { + "Armature_hvost"; + 24; + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.124841,-0.990569,-0.056459, 0.000000, + 0.006976, 0.057779,-0.998305, 0.000000, + 0.992152, 0.124235, 0.014123, 0.000000, + 0.191741,-0.950030,-0.068595, 1.000000;; + } //End of Armature_hvost Skin Weights + } //End of Mesh Mesh + } //End of Cube +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 102; + 0;3; 0.164184,-2.791352, 4.770043;;, + 1;3; 0.164184,-2.791352, 4.770043;;, + 2;3; 0.164184,-2.791352, 4.770043;;, + 3;3; 0.164184,-2.791352, 4.770043;;, + 4;3; 0.164184,-2.791352, 4.770043;;, + 5;3; 0.164184,-2.791352, 4.770043;;, + 6;3; 0.164184,-2.791352, 4.770043;;, + 7;3; 0.164184,-2.791352, 4.770043;;, + 8;3; 0.164184,-2.791352, 4.770043;;, + 9;3; 0.164184,-2.791352, 4.770043;;, + 10;3; 0.164184,-2.791352, 4.770043;;, + 11;3; 0.164184,-2.791352, 4.770043;;, + 12;3; 0.164184,-2.791352, 4.770043;;, + 13;3; 0.164184,-2.791352, 4.770043;;, + 14;3; 0.164184,-2.791352, 4.770043;;, + 15;3; 0.164184,-2.791352, 4.770043;;, + 16;3; 0.164184,-2.791352, 4.770043;;, + 17;3; 0.164184,-2.791352, 4.770043;;, + 18;3; 0.164184,-2.791352, 4.770043;;, + 19;3; 0.164184,-2.791352, 4.770043;;, + 20;3; 0.164184,-2.791352, 4.770043;;, + 21;3; 0.164184,-2.791352, 4.770043;;, + 22;3; 0.164184,-2.791352, 4.770043;;, + 23;3; 0.164184,-2.791352, 4.770043;;, + 24;3; 0.164184,-2.791352, 4.770043;;, + 25;3; 0.164184,-2.791352, 4.770043;;, + 26;3; 0.164184,-2.791352, 4.770043;;, + 27;3; 0.164184,-2.791352, 4.770043;;, + 28;3; 0.164184,-2.791352, 4.770043;;, + 29;3; 0.164184,-2.791352, 4.770043;;, + 30;3; 0.164184,-2.791352, 4.770043;;, + 31;3; 0.164184,-2.791352, 4.770043;;, + 32;3; 0.164184,-2.791352, 4.770043;;, + 33;3; 0.164184,-2.791352, 4.770043;;, + 34;3; 0.164184,-2.791352, 4.770043;;, + 35;3; 0.164184,-2.791352, 4.770043;;, + 36;3; 0.164184,-2.791352, 4.770043;;, + 37;3; 0.164184,-2.791352, 4.770043;;, + 38;3; 0.164184,-2.791352, 4.770043;;, + 39;3; 0.164184,-2.791352, 4.770043;;, + 40;3; 0.164184,-2.791352, 4.770043;;, + 41;3; 0.164184,-2.791352, 4.770043;;, + 42;3; 0.164184,-2.791352, 4.770043;;, + 43;3; 0.164184,-2.791352, 4.770043;;, + 44;3; 0.164184,-2.791352, 4.770043;;, + 45;3; 0.164184,-2.791352, 4.770043;;, + 46;3; 0.164184,-2.791352, 4.770043;;, + 47;3; 0.164184,-2.791352, 4.770043;;, + 48;3; 0.164184,-2.791352, 4.770043;;, + 49;3; 0.164184,-2.791352, 4.770043;;, + 50;3; 0.164184,-2.791352, 4.770043;;, + 51;3; 0.164184,-2.791352, 4.770043;;, + 52;3; 0.164184,-2.791352, 4.770043;;, + 53;3; 0.164184,-2.791352, 4.770043;;, + 54;3; 0.164184,-2.791352, 4.770043;;, + 55;3; 0.164184,-2.791352, 4.770043;;, + 56;3; 0.164184,-2.791352, 4.770043;;, + 57;3; 0.164184,-2.791352, 4.770043;;, + 58;3; 0.164184,-2.791352, 4.770043;;, + 59;3; 0.164184,-2.791352, 4.770043;;, + 60;3; 0.164184,-2.791352, 4.770043;;, + 61;3; 0.164184,-2.791352, 4.770043;;, + 62;3; 0.164184,-2.791352, 4.770043;;, + 63;3; 0.164184,-2.791352, 4.770043;;, + 64;3; 0.164184,-2.791352, 4.770043;;, + 65;3; 0.164184,-2.791352, 4.770043;;, + 66;3; 0.164184,-2.791352, 4.770043;;, + 67;3; 0.164184,-2.791352, 4.770043;;, + 68;3; 0.164184,-2.791352, 4.770043;;, + 69;3; 0.164184,-2.791352, 4.770043;;, + 70;3; 0.164184,-2.791352, 4.770043;;, + 71;3; 0.164184,-2.791352, 4.770043;;, + 72;3; 0.164184,-2.791352, 4.770043;;, + 73;3; 0.164184,-2.791352, 4.770043;;, + 74;3; 0.164184,-2.791352, 4.770043;;, + 75;3; 0.164184,-2.791352, 4.770043;;, + 76;3; 0.164184,-2.791352, 4.770043;;, + 77;3; 0.164184,-2.791352, 4.770043;;, + 78;3; 0.164184,-2.791352, 4.770043;;, + 79;3; 0.164184,-2.791352, 4.770043;;, + 80;3; 0.164184,-2.791352, 4.770043;;, + 81;3; 0.164184,-2.791352, 4.770043;;, + 82;3; 0.164184,-2.791352, 4.770043;;, + 83;3; 0.164184,-2.791352, 4.770043;;, + 84;3; 0.164184,-2.791352, 4.770043;;, + 85;3; 0.164184,-2.791352, 4.770043;;, + 86;3; 0.164184,-2.791352, 4.770043;;, + 87;3; 0.164184,-2.791352, 4.770043;;, + 88;3; 0.164184,-2.791352, 4.770043;;, + 89;3; 0.164184,-2.791352, 4.770043;;, + 90;3; 0.164184,-2.791352, 4.770043;;, + 91;3; 0.164184,-2.791352, 4.770043;;, + 92;3; 0.164184,-2.791352, 4.770043;;, + 93;3; 0.164184,-2.791352, 4.770043;;, + 94;3; 0.164184,-2.791352, 4.770043;;, + 95;3; 0.164184,-2.791352, 4.770043;;, + 96;3; 0.164184,-2.791352, 4.770043;;, + 97;3; 0.164184,-2.791352, 4.770043;;, + 98;3; 0.164184,-2.791352, 4.770043;;, + 99;3; 0.164184,-2.791352, 4.770043;;, + 100;3; 0.164184,-2.791352, 4.770043;;, + 101;3; 0.164184,-2.791352, 4.770043;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 1;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 2;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 3;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 4;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 5;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 6;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 7;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 8;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 9;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 10;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 11;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 12;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 13;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 14;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 15;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 16;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 17;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 18;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 19;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 20;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 21;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 22;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 23;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 24;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 25;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 26;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 27;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 28;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 29;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 30;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 31;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 32;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 33;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 34;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 35;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 36;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 37;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 38;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 39;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 40;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 41;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 42;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 43;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 44;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 45;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 46;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 47;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 48;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 49;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 50;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 51;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 52;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 53;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 54;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 55;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 56;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 57;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 58;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 59;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 60;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 61;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 62;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 63;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 64;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 65;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 66;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 67;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 68;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 69;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 70;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 71;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 72;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 73;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 74;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 75;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 76;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 77;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 78;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 79;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 80;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 81;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 82;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 83;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 84;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 85;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 86;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 87;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 88;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 89;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 90;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 91;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 92;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 93;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 94;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 95;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 96;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 97;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 98;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 99;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 100;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 101;4; -0.707076, 0.000000, 0.000000, 0.707137;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 2.732761, 2.732761, 2.732761;;, + 1;3; 2.732761, 2.732761, 2.732761;;, + 2;3; 2.732761, 2.732761, 2.732761;;, + 3;3; 2.732761, 2.732761, 2.732761;;, + 4;3; 2.732761, 2.732761, 2.732761;;, + 5;3; 2.732761, 2.732761, 2.732761;;, + 6;3; 2.732761, 2.732761, 2.732761;;, + 7;3; 2.732761, 2.732761, 2.732761;;, + 8;3; 2.732761, 2.732761, 2.732761;;, + 9;3; 2.732761, 2.732761, 2.732761;;, + 10;3; 2.732761, 2.732761, 2.732761;;, + 11;3; 2.732761, 2.732761, 2.732761;;, + 12;3; 2.732761, 2.732761, 2.732761;;, + 13;3; 2.732761, 2.732761, 2.732761;;, + 14;3; 2.732761, 2.732761, 2.732761;;, + 15;3; 2.732761, 2.732761, 2.732761;;, + 16;3; 2.732761, 2.732761, 2.732761;;, + 17;3; 2.732761, 2.732761, 2.732761;;, + 18;3; 2.732761, 2.732761, 2.732761;;, + 19;3; 2.732761, 2.732761, 2.732761;;, + 20;3; 2.732761, 2.732761, 2.732761;;, + 21;3; 2.732761, 2.732761, 2.732761;;, + 22;3; 2.732761, 2.732761, 2.732761;;, + 23;3; 2.732761, 2.732761, 2.732761;;, + 24;3; 2.732761, 2.732761, 2.732761;;, + 25;3; 2.732761, 2.732761, 2.732761;;, + 26;3; 2.732761, 2.732761, 2.732761;;, + 27;3; 2.732761, 2.732761, 2.732761;;, + 28;3; 2.732761, 2.732761, 2.732761;;, + 29;3; 2.732761, 2.732761, 2.732761;;, + 30;3; 2.732761, 2.732761, 2.732761;;, + 31;3; 2.732761, 2.732761, 2.732761;;, + 32;3; 2.732761, 2.732761, 2.732761;;, + 33;3; 2.732761, 2.732761, 2.732761;;, + 34;3; 2.732761, 2.732761, 2.732761;;, + 35;3; 2.732761, 2.732761, 2.732761;;, + 36;3; 2.732761, 2.732761, 2.732761;;, + 37;3; 2.732761, 2.732761, 2.732761;;, + 38;3; 2.732761, 2.732761, 2.732761;;, + 39;3; 2.732761, 2.732761, 2.732761;;, + 40;3; 2.732761, 2.732761, 2.732761;;, + 41;3; 2.732761, 2.732761, 2.732761;;, + 42;3; 2.732761, 2.732761, 2.732761;;, + 43;3; 2.732761, 2.732761, 2.732761;;, + 44;3; 2.732761, 2.732761, 2.732761;;, + 45;3; 2.732761, 2.732761, 2.732761;;, + 46;3; 2.732761, 2.732761, 2.732761;;, + 47;3; 2.732761, 2.732761, 2.732761;;, + 48;3; 2.732761, 2.732761, 2.732761;;, + 49;3; 2.732761, 2.732761, 2.732761;;, + 50;3; 2.732761, 2.732761, 2.732761;;, + 51;3; 2.732761, 2.732761, 2.732761;;, + 52;3; 2.732761, 2.732761, 2.732761;;, + 53;3; 2.732761, 2.732761, 2.732761;;, + 54;3; 2.732761, 2.732761, 2.732761;;, + 55;3; 2.732761, 2.732761, 2.732761;;, + 56;3; 2.732761, 2.732761, 2.732761;;, + 57;3; 2.732761, 2.732761, 2.732761;;, + 58;3; 2.732761, 2.732761, 2.732761;;, + 59;3; 2.732761, 2.732761, 2.732761;;, + 60;3; 2.732761, 2.732761, 2.732761;;, + 61;3; 2.732761, 2.732761, 2.732761;;, + 62;3; 2.732761, 2.732761, 2.732761;;, + 63;3; 2.732761, 2.732761, 2.732761;;, + 64;3; 2.732761, 2.732761, 2.732761;;, + 65;3; 2.732761, 2.732761, 2.732761;;, + 66;3; 2.732761, 2.732761, 2.732761;;, + 67;3; 2.732761, 2.732761, 2.732761;;, + 68;3; 2.732761, 2.732761, 2.732761;;, + 69;3; 2.732761, 2.732761, 2.732761;;, + 70;3; 2.732761, 2.732761, 2.732761;;, + 71;3; 2.732761, 2.732761, 2.732761;;, + 72;3; 2.732761, 2.732761, 2.732761;;, + 73;3; 2.732761, 2.732761, 2.732761;;, + 74;3; 2.732761, 2.732761, 2.732761;;, + 75;3; 2.732761, 2.732761, 2.732761;;, + 76;3; 2.732761, 2.732761, 2.732761;;, + 77;3; 2.732761, 2.732761, 2.732761;;, + 78;3; 2.732761, 2.732761, 2.732761;;, + 79;3; 2.732761, 2.732761, 2.732761;;, + 80;3; 2.732761, 2.732761, 2.732761;;, + 81;3; 2.732761, 2.732761, 2.732761;;, + 82;3; 2.732761, 2.732761, 2.732761;;, + 83;3; 2.732761, 2.732761, 2.732761;;, + 84;3; 2.732761, 2.732761, 2.732761;;, + 85;3; 2.732761, 2.732761, 2.732761;;, + 86;3; 2.732761, 2.732761, 2.732761;;, + 87;3; 2.732761, 2.732761, 2.732761;;, + 88;3; 2.732761, 2.732761, 2.732761;;, + 89;3; 2.732761, 2.732761, 2.732761;;, + 90;3; 2.732761, 2.732761, 2.732761;;, + 91;3; 2.732761, 2.732761, 2.732761;;, + 92;3; 2.732761, 2.732761, 2.732761;;, + 93;3; 2.732761, 2.732761, 2.732761;;, + 94;3; 2.732761, 2.732761, 2.732761;;, + 95;3; 2.732761, 2.732761, 2.732761;;, + 96;3; 2.732761, 2.732761, 2.732761;;, + 97;3; 2.732761, 2.732761, 2.732761;;, + 98;3; 2.732761, 2.732761, 2.732761;;, + 99;3; 2.732761, 2.732761, 2.732761;;, + 100;3; 2.732761, 2.732761, 2.732761;;, + 101;3; 2.732761, 2.732761, 2.732761;;; + } + } + Animation { + {Armature_body2} + AnimationKey { //Position + 2; + 102; + 0;3; -0.155674, 0.000000, 0.000000;;, + 1;3; -0.155674, 0.000000, 0.000000;;, + 2;3; -0.155674, 0.000000, 0.000000;;, + 3;3; -0.155674, 0.000000, 0.000000;;, + 4;3; -0.155674, 0.000000, 0.000000;;, + 5;3; -0.155674, 0.000000, 0.000000;;, + 6;3; -0.155674, 0.000000, 0.000000;;, + 7;3; -0.155674, 0.000000, 0.000000;;, + 8;3; -0.155674, 0.000000, 0.000000;;, + 9;3; -0.155674, 0.000000, 0.000000;;, + 10;3; -0.155674, 0.000000, 0.000000;;, + 11;3; -0.155674, 0.000000, 0.000000;;, + 12;3; -0.155674, 0.000000, 0.000000;;, + 13;3; -0.155674, 0.000000, 0.000000;;, + 14;3; -0.155674, 0.000000, 0.000000;;, + 15;3; -0.155674, 0.000000, 0.000000;;, + 16;3; -0.155674, 0.000000, 0.000000;;, + 17;3; -0.155674, 0.000000, 0.000000;;, + 18;3; -0.155674, 0.000000, 0.000000;;, + 19;3; -0.155674, 0.000000, 0.000000;;, + 20;3; -0.155674, 0.000000, 0.000000;;, + 21;3; -0.155674, 0.000000, 0.000000;;, + 22;3; -0.155674, 0.000000, 0.000000;;, + 23;3; -0.155674, 0.000000, 0.000000;;, + 24;3; -0.155674, 0.000000, 0.000000;;, + 25;3; -0.155674, 0.000000, 0.000000;;, + 26;3; -0.155674, 0.000000, 0.000000;;, + 27;3; -0.155674, 0.000000, 0.000000;;, + 28;3; -0.155674, 0.000000, 0.000000;;, + 29;3; -0.155674, 0.000000, 0.000000;;, + 30;3; -0.155674, 0.000000, 0.000000;;, + 31;3; -0.155674, 0.000000, 0.000000;;, + 32;3; -0.155674, 0.000000, 0.000000;;, + 33;3; -0.155674, 0.000000, 0.000000;;, + 34;3; -0.155674, 0.000000, 0.000000;;, + 35;3; -0.155674, 0.000000, 0.000000;;, + 36;3; -0.155674, 0.000000, 0.000000;;, + 37;3; -0.155674, 0.000000, 0.000000;;, + 38;3; -0.155674, 0.000000, 0.000000;;, + 39;3; -0.155674, 0.000000, 0.000000;;, + 40;3; -0.155674, 0.000000, 0.000000;;, + 41;3; -0.155674, 0.000000, 0.000000;;, + 42;3; -0.155674, 0.000000, 0.000000;;, + 43;3; -0.155674, 0.000000, 0.000000;;, + 44;3; -0.155674, 0.000000, 0.000000;;, + 45;3; -0.155674, 0.000000, 0.000000;;, + 46;3; -0.155674, 0.000000, 0.000000;;, + 47;3; -0.155674, 0.000000, 0.000000;;, + 48;3; -0.155674, 0.000000, 0.000000;;, + 49;3; -0.155674, 0.000000, 0.000000;;, + 50;3; -0.155674, 0.000000, 0.000000;;, + 51;3; -0.155674, 0.000000, 0.000000;;, + 52;3; -0.155674, 0.000000, 0.000000;;, + 53;3; -0.155674, 0.000000, 0.000000;;, + 54;3; -0.155674, 0.000000, 0.000000;;, + 55;3; -0.155674, 0.000000, 0.000000;;, + 56;3; -0.155674, 0.000000, 0.000000;;, + 57;3; -0.155674, 0.000000, 0.000000;;, + 58;3; -0.155674, 0.000000, 0.000000;;, + 59;3; -0.155674, 0.000000, 0.000000;;, + 60;3; -0.155674, 0.000000, 0.000000;;, + 61;3; -0.155674, 0.000000, 0.000000;;, + 62;3; -0.155674, 0.000000, 0.000000;;, + 63;3; -0.155674, 0.000000, 0.000000;;, + 64;3; -0.155674, 0.000000, 0.000000;;, + 65;3; -0.155674, 0.000000, 0.000000;;, + 66;3; -0.155674, 0.000000, 0.000000;;, + 67;3; -0.155674, 0.000000, 0.000000;;, + 68;3; -0.155674, 0.000000, 0.000000;;, + 69;3; -0.155674, 0.000000, 0.000000;;, + 70;3; -0.155674, 0.000000, 0.000000;;, + 71;3; -0.155675, 0.000000, 0.013041;;, + 72;3; -0.155675, 0.000000, 0.049769;;, + 73;3; -0.155674, 0.000000, 0.096925;;, + 74;3; -0.155674,-0.000000, 0.133652;;, + 75;3; -0.155674,-0.000000, 0.146692;;, + 76;3; -0.155674,-0.000000, 0.145010;;, + 77;3; -0.155674,-0.000000, 0.139965;;, + 78;3; -0.155674,-0.000000, 0.131865;;, + 79;3; -0.155674,-0.000000, 0.121561;;, + 80;3; -0.155674,-0.000000, 0.110444;;, + 81;3; -0.155674,-0.000000, 0.100140;;, + 82;3; -0.155674,-0.000000, 0.092041;;, + 83;3; -0.155674,-0.000000, 0.086996;;, + 84;3; -0.155674,-0.000000, 0.085315;;, + 85;3; -0.155674,-0.000000, 0.093929;;, + 86;3; -0.155674,-0.000000, 0.118191;;, + 87;3; -0.155674,-0.000000, 0.149343;;, + 88;3; -0.155674,-0.000000, 0.173605;;, + 89;3; -0.155674,-0.000000, 0.182218;;, + 90;3; -0.155674,-0.000000, 0.176670;;, + 91;3; -0.155674,-0.000000, 0.159839;;, + 92;3; -0.155674, 0.000000, 0.133860;;, + 93;3; -0.155675, 0.000000, 0.104420;;, + 94;3; -0.155674, 0.000000, 0.078076;;, + 95;3; -0.155674,-0.000000, 0.058822;;, + 96;3; -0.155674, 0.000000, 0.043558;;, + 97;3; -0.155674, 0.000000, 0.028825;;, + 98;3; -0.155675, 0.000000, 0.016073;;, + 99;3; -0.155675, 0.000000, 0.006782;;, + 100;3; -0.155674, 0.000000, 0.001560;;, + 101;3; -0.155674, 0.000000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 1;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 2;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 3;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 4;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 5;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 6;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 7;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 8;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 9;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 10;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 11;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 12;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 13;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 14;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 15;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 16;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 17;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 18;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 19;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 20;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 21;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 22;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 23;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 24;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 25;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 26;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 27;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 28;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 29;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 30;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 31;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 32;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 33;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 34;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 35;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 36;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 37;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 38;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 39;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 40;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 41;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 42;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 43;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 44;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 45;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 46;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 47;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 48;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 49;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 50;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 51;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 52;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 53;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 54;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 55;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 56;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 57;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 58;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 59;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 60;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 61;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 62;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 63;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 64;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 65;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 66;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 67;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 68;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 69;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 70;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 71;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 72;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 73;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 74;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 75;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 76;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 77;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 78;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 79;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 80;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 81;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 82;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 83;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 84;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 85;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 86;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 87;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 88;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 89;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 90;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 91;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 92;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 93;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 94;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 95;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 96;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 97;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 98;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 99;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 100;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 101;4; -0.521442, 0.521442, 0.477597,-0.477597;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga3} + AnimationKey { //Position + 2; + 102; + 0;3; 0.532289,-0.143643, 0.710859;;, + 1;3; 0.532289,-0.143643, 0.710859;;, + 2;3; 0.532289,-0.143643, 0.710859;;, + 3;3; 0.532289,-0.143643, 0.710859;;, + 4;3; 0.532289,-0.143643, 0.710859;;, + 5;3; 0.532289,-0.143643, 0.710859;;, + 6;3; 0.532289,-0.143643, 0.710859;;, + 7;3; 0.532289,-0.143643, 0.710859;;, + 8;3; 0.532289,-0.143643, 0.710859;;, + 9;3; 0.532289,-0.143643, 0.710859;;, + 10;3; 0.532289,-0.143643, 0.710859;;, + 11;3; 0.532289,-0.143643, 0.710859;;, + 12;3; 0.532289,-0.143643, 0.710859;;, + 13;3; 0.532289,-0.143643, 0.710859;;, + 14;3; 0.532289,-0.143643, 0.710859;;, + 15;3; 0.532289,-0.143643, 0.710859;;, + 16;3; 0.532289,-0.143643, 0.710859;;, + 17;3; 0.532289,-0.143643, 0.710859;;, + 18;3; 0.532289,-0.143643, 0.710859;;, + 19;3; 0.532289,-0.143643, 0.710859;;, + 20;3; 0.532289,-0.143643, 0.710859;;, + 21;3; 0.532289,-0.143643, 0.710859;;, + 22;3; 0.532289,-0.143643, 0.710859;;, + 23;3; 0.532289,-0.143643, 0.710859;;, + 24;3; 0.532289,-0.143643, 0.710859;;, + 25;3; 0.532289,-0.143643, 0.710859;;, + 26;3; 0.532289,-0.143643, 0.710859;;, + 27;3; 0.532289,-0.143643, 0.710859;;, + 28;3; 0.532289,-0.143643, 0.710859;;, + 29;3; 0.532289,-0.143643, 0.710859;;, + 30;3; 0.532289,-0.143643, 0.710859;;, + 31;3; 0.532289,-0.143643, 0.710859;;, + 32;3; 0.532289,-0.143643, 0.710859;;, + 33;3; 0.532289,-0.143643, 0.710859;;, + 34;3; 0.532289,-0.143643, 0.710859;;, + 35;3; 0.532289,-0.143643, 0.710859;;, + 36;3; 0.532289,-0.143643, 0.710859;;, + 37;3; 0.532289,-0.143643, 0.710859;;, + 38;3; 0.532289,-0.143643, 0.710859;;, + 39;3; 0.532289,-0.143643, 0.710859;;, + 40;3; 0.532289,-0.143643, 0.710859;;, + 41;3; 0.532289,-0.143643, 0.710859;;, + 42;3; 0.532289,-0.143643, 0.710859;;, + 43;3; 0.532289,-0.143643, 0.710859;;, + 44;3; 0.532289,-0.143643, 0.710859;;, + 45;3; 0.532289,-0.143643, 0.710859;;, + 46;3; 0.532289,-0.143643, 0.710859;;, + 47;3; 0.532289,-0.143643, 0.710859;;, + 48;3; 0.532289,-0.143643, 0.710859;;, + 49;3; 0.532289,-0.143643, 0.710859;;, + 50;3; 0.532289,-0.143643, 0.710859;;, + 51;3; 0.532289,-0.143643, 0.710859;;, + 52;3; 0.532289,-0.143643, 0.710859;;, + 53;3; 0.532289,-0.143643, 0.710859;;, + 54;3; 0.532289,-0.143643, 0.710859;;, + 55;3; 0.532289,-0.143643, 0.710859;;, + 56;3; 0.532289,-0.143643, 0.710859;;, + 57;3; 0.532289,-0.143643, 0.710859;;, + 58;3; 0.532289,-0.143643, 0.710859;;, + 59;3; 0.532289,-0.143643, 0.710859;;, + 60;3; 0.532289,-0.143643, 0.710859;;, + 61;3; 0.532289,-0.143643, 0.710859;;, + 62;3; 0.532289,-0.143643, 0.710859;;, + 63;3; 0.532289,-0.143643, 0.710859;;, + 64;3; 0.532289,-0.143643, 0.710859;;, + 65;3; 0.532289,-0.143643, 0.710859;;, + 66;3; 0.532289,-0.143643, 0.710859;;, + 67;3; 0.532289,-0.143643, 0.710859;;, + 68;3; 0.532289,-0.143643, 0.710859;;, + 69;3; 0.532289,-0.143643, 0.710859;;, + 70;3; 0.532289,-0.143643, 0.710859;;, + 71;3; 0.532289,-0.143643, 0.710859;;, + 72;3; 0.532289,-0.143644, 0.710859;;, + 73;3; 0.532289,-0.143644, 0.710859;;, + 74;3; 0.532289,-0.143643, 0.710859;;, + 75;3; 0.532289,-0.143643, 0.710859;;, + 76;3; 0.532289,-0.143644, 0.710859;;, + 77;3; 0.532289,-0.143643, 0.710859;;, + 78;3; 0.532289,-0.143643, 0.710859;;, + 79;3; 0.532289,-0.143644, 0.710859;;, + 80;3; 0.532289,-0.143643, 0.710859;;, + 81;3; 0.532289,-0.143643, 0.710859;;, + 82;3; 0.532289,-0.143644, 0.710859;;, + 83;3; 0.532289,-0.143643, 0.710859;;, + 84;3; 0.532289,-0.143643, 0.710859;;, + 85;3; 0.532289,-0.143643, 0.710859;;, + 86;3; 0.532289,-0.143643, 0.710859;;, + 87;3; 0.532289,-0.143644, 0.710859;;, + 88;3; 0.532289,-0.143643, 0.710859;;, + 89;3; 0.532289,-0.143643, 0.710859;;, + 90;3; 0.532289,-0.143644, 0.710859;;, + 91;3; 0.532289,-0.143643, 0.710859;;, + 92;3; 0.532289,-0.143643, 0.710859;;, + 93;3; 0.532289,-0.143643, 0.710859;;, + 94;3; 0.532289,-0.143644, 0.710859;;, + 95;3; 0.532289,-0.143643, 0.710859;;, + 96;3; 0.532289,-0.143644, 0.710859;;, + 97;3; 0.532289,-0.143643, 0.710859;;, + 98;3; 0.532289,-0.143643, 0.710859;;, + 99;3; 0.532289,-0.143644, 0.710859;;, + 100;3; 0.532289,-0.143643, 0.710859;;, + 101;3; 0.532289,-0.143643, 0.710859;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 1;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 2;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 3;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 4;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 5;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 6;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 7;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 8;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 9;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 10;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 11;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 12;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 13;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 14;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 15;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 16;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 17;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 18;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 19;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 20;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 21;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 22;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 23;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 24;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 25;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 26;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 27;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 28;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 29;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 30;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 31;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 32;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 33;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 34;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 35;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 36;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 37;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 38;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 39;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 40;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 41;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 42;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 43;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 44;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 45;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 46;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 47;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 48;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 49;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 50;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 51;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 52;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 53;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 54;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 55;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 56;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 57;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 58;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 59;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 60;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 61;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 62;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 63;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 64;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 65;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 66;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 67;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 68;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 69;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 70;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 71;4; -0.076249,-0.699385,-0.696587,-0.079400;;, + 72;4; -0.082977,-0.616503,-0.755460,-0.070282;;, + 73;4; -0.091621,-0.510132,-0.830999,-0.058570;;, + 74;4; -0.098353,-0.427291,-0.889827,-0.049447;;, + 75;4; -0.100743,-0.397872,-0.910722,-0.046209;;, + 76;4; -0.100385,-0.400798,-0.907565,-0.046529;;, + 77;4; -0.099304,-0.409646,-0.898028,-0.047496;;, + 78;4; -0.097497,-0.424442,-0.882083,-0.049113;;, + 79;4; -0.094976,-0.445092,-0.859841,-0.051369;;, + 80;4; -0.091773,-0.471343,-0.831583,-0.054238;;, + 81;4; -0.087942,-0.502754,-0.797792,-0.057672;;, + 82;4; -0.083565,-0.538673,-0.759182,-0.061598;;, + 83;4; -0.078748,-0.578230,-0.716701,-0.065923;;, + 84;4; -0.073623,-0.620356,-0.671512,-0.070529;;, + 85;4; -0.068342,-0.663828,-0.624942,-0.075283;;, + 86;4; -0.063064,-0.707339,-0.578410,-0.080041;;, + 87;4; -0.057951,-0.749580,-0.533331,-0.084660;;, + 88;4; -0.053153,-0.789325,-0.491032,-0.089007;;, + 89;4; -0.048802,-0.825501,-0.452669,-0.092964;;, + 90;4; -0.045003,-0.857233,-0.419185,-0.096435;;, + 91;4; -0.041838,-0.883862,-0.391287,-0.099347;;, + 92;4; -0.039361,-0.904942,-0.369452,-0.101654;;, + 93;4; -0.037602,-0.920214,-0.353954,-0.103325;;, + 94;4; -0.036573,-0.929575,-0.344897,-0.104350;;, + 95;4; -0.036271,-0.933049,-0.342250,-0.104732;;, + 96;4; -0.038638,-0.920872,-0.363238,-0.103416;;, + 97;4; -0.045417,-0.884355,-0.423275,-0.099456;;, + 98;4; -0.055130,-0.831547,-0.509292,-0.093729;;, + 99;4; -0.064823,-0.778549,-0.595258,-0.087993;;, + 100;4; -0.071553,-0.741566,-0.655092,-0.084005;;, + 101;4; -0.073863,-0.728827,-0.675668,-0.082636;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga4} + AnimationKey { //Position + 2; + 102; + 0;3; 0.532289,-0.143643,-0.879248;;, + 1;3; 0.532289,-0.143643,-0.879248;;, + 2;3; 0.532289,-0.143643,-0.879248;;, + 3;3; 0.532289,-0.143643,-0.879248;;, + 4;3; 0.532289,-0.143643,-0.879248;;, + 5;3; 0.532289,-0.143643,-0.879248;;, + 6;3; 0.532289,-0.143643,-0.879248;;, + 7;3; 0.532289,-0.143643,-0.879248;;, + 8;3; 0.532289,-0.143643,-0.879248;;, + 9;3; 0.532289,-0.143643,-0.879248;;, + 10;3; 0.532289,-0.143643,-0.879248;;, + 11;3; 0.532289,-0.143643,-0.879248;;, + 12;3; 0.532289,-0.143643,-0.879248;;, + 13;3; 0.532289,-0.143643,-0.879248;;, + 14;3; 0.532289,-0.143643,-0.879248;;, + 15;3; 0.532289,-0.143643,-0.879248;;, + 16;3; 0.532289,-0.143643,-0.879248;;, + 17;3; 0.532289,-0.143643,-0.879248;;, + 18;3; 0.532289,-0.143643,-0.879248;;, + 19;3; 0.532289,-0.143643,-0.879248;;, + 20;3; 0.532289,-0.143643,-0.879248;;, + 21;3; 0.532289,-0.143643,-0.879248;;, + 22;3; 0.532289,-0.143643,-0.879248;;, + 23;3; 0.532289,-0.143643,-0.879248;;, + 24;3; 0.532289,-0.143643,-0.879248;;, + 25;3; 0.532289,-0.143643,-0.879248;;, + 26;3; 0.532289,-0.143643,-0.879248;;, + 27;3; 0.532289,-0.143643,-0.879248;;, + 28;3; 0.532289,-0.143643,-0.879248;;, + 29;3; 0.532289,-0.143643,-0.879248;;, + 30;3; 0.532289,-0.143643,-0.879248;;, + 31;3; 0.532289,-0.143643,-0.879248;;, + 32;3; 0.532289,-0.143643,-0.879248;;, + 33;3; 0.532289,-0.143643,-0.879248;;, + 34;3; 0.532289,-0.143643,-0.879248;;, + 35;3; 0.532289,-0.143643,-0.879248;;, + 36;3; 0.532289,-0.143643,-0.879248;;, + 37;3; 0.532289,-0.143643,-0.879248;;, + 38;3; 0.532289,-0.143643,-0.879248;;, + 39;3; 0.532289,-0.143643,-0.879248;;, + 40;3; 0.532289,-0.143643,-0.879248;;, + 41;3; 0.532289,-0.143643,-0.879248;;, + 42;3; 0.532289,-0.143643,-0.879248;;, + 43;3; 0.532289,-0.143643,-0.879248;;, + 44;3; 0.532289,-0.143643,-0.879248;;, + 45;3; 0.532289,-0.143643,-0.879248;;, + 46;3; 0.532289,-0.143643,-0.879248;;, + 47;3; 0.532289,-0.143643,-0.879248;;, + 48;3; 0.532289,-0.143643,-0.879248;;, + 49;3; 0.532289,-0.143643,-0.879248;;, + 50;3; 0.532289,-0.143643,-0.879248;;, + 51;3; 0.532289,-0.143643,-0.879248;;, + 52;3; 0.532289,-0.143643,-0.879248;;, + 53;3; 0.532289,-0.143643,-0.879248;;, + 54;3; 0.532289,-0.143643,-0.879248;;, + 55;3; 0.532289,-0.143643,-0.879248;;, + 56;3; 0.532289,-0.143643,-0.879248;;, + 57;3; 0.532289,-0.143643,-0.879248;;, + 58;3; 0.532289,-0.143643,-0.879248;;, + 59;3; 0.532289,-0.143643,-0.879248;;, + 60;3; 0.532289,-0.143643,-0.879248;;, + 61;3; 0.532289,-0.143643,-0.879248;;, + 62;3; 0.532289,-0.143643,-0.879248;;, + 63;3; 0.532289,-0.143643,-0.879248;;, + 64;3; 0.532289,-0.143643,-0.879248;;, + 65;3; 0.532289,-0.143643,-0.879248;;, + 66;3; 0.532289,-0.143643,-0.879248;;, + 67;3; 0.532289,-0.143643,-0.879248;;, + 68;3; 0.532289,-0.143643,-0.879248;;, + 69;3; 0.532289,-0.143643,-0.879248;;, + 70;3; 0.532289,-0.143643,-0.879248;;, + 71;3; 0.532289,-0.143643,-0.879248;;, + 72;3; 0.532289,-0.143643,-0.879248;;, + 73;3; 0.532289,-0.143644,-0.879248;;, + 74;3; 0.532289,-0.143643,-0.879248;;, + 75;3; 0.532289,-0.143643,-0.879248;;, + 76;3; 0.532289,-0.143643,-0.879248;;, + 77;3; 0.532289,-0.143643,-0.879248;;, + 78;3; 0.532289,-0.143643,-0.879248;;, + 79;3; 0.532289,-0.143643,-0.879248;;, + 80;3; 0.532289,-0.143643,-0.879248;;, + 81;3; 0.532289,-0.143643,-0.879248;;, + 82;3; 0.532289,-0.143643,-0.879248;;, + 83;3; 0.532289,-0.143643,-0.879248;;, + 84;3; 0.532289,-0.143643,-0.879248;;, + 85;3; 0.532289,-0.143643,-0.879248;;, + 86;3; 0.532289,-0.143643,-0.879248;;, + 87;3; 0.532289,-0.143643,-0.879248;;, + 88;3; 0.532289,-0.143643,-0.879248;;, + 89;3; 0.532289,-0.143643,-0.879248;;, + 90;3; 0.532289,-0.143644,-0.879248;;, + 91;3; 0.532289,-0.143643,-0.879248;;, + 92;3; 0.532289,-0.143643,-0.879248;;, + 93;3; 0.532289,-0.143643,-0.879248;;, + 94;3; 0.532289,-0.143643,-0.879248;;, + 95;3; 0.532289,-0.143643,-0.879248;;, + 96;3; 0.532289,-0.143643,-0.879248;;, + 97;3; 0.532289,-0.143643,-0.879248;;, + 98;3; 0.532289,-0.143643,-0.879248;;, + 99;3; 0.532289,-0.143644,-0.879248;;, + 100;3; 0.532289,-0.143643,-0.879248;;, + 101;3; 0.532289,-0.143643,-0.879248;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 1;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 2;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 3;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 4;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 5;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 6;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 7;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 8;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 9;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 10;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 11;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 12;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 13;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 14;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 15;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 16;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 17;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 18;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 19;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 20;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 21;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 22;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 23;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 24;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 25;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 26;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 27;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 28;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 29;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 30;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 31;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 32;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 33;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 34;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 35;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 36;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 37;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 38;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 39;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 40;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 41;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 42;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 43;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 44;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 45;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 46;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 47;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 48;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 49;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 50;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 51;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 52;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 53;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 54;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 55;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 56;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 57;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 58;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 59;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 60;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 61;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 62;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 63;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 64;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 65;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 66;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 67;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 68;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 69;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 70;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 71;4; -0.070609,-0.746717,-0.646769,-0.084568;;, + 72;4; -0.061439,-0.797068,-0.565414,-0.090014;;, + 73;4; -0.049661,-0.861678,-0.461000,-0.097011;;, + 74;4; -0.040487,-0.911996,-0.379680,-0.102461;;, + 75;4; -0.037231,-0.929868,-0.350802,-0.104395;;, + 76;4; -0.037545,-0.927307,-0.353566,-0.104115;;, + 77;4; -0.038492,-0.919575,-0.361929,-0.103270;;, + 78;4; -0.040078,-0.906660,-0.375924,-0.101859;;, + 79;4; -0.042293,-0.888662,-0.395471,-0.099893;;, + 80;4; -0.045112,-0.865822,-0.420343,-0.097397;;, + 81;4; -0.048488,-0.838547,-0.450135,-0.094417;;, + 82;4; -0.052354,-0.807433,-0.484245,-0.091017;;, + 83;4; -0.056618,-0.773265,-0.521865,-0.087284;;, + 84;4; -0.061167,-0.737002,-0.562000,-0.083322;;, + 85;4; -0.065871,-0.699737,-0.603507,-0.079250;;, + 86;4; -0.070592,-0.662633,-0.645161,-0.075196;;, + 87;4; -0.075189,-0.626848,-0.685733,-0.071288;;, + 88;4; -0.079532,-0.593461,-0.724070,-0.067642;;, + 89;4; -0.083506,-0.563413,-0.759158,-0.064362;;, + 90;4; -0.087017,-0.537466,-0.790169,-0.061531;;, + 91;4; -0.089994,-0.516186,-0.816476,-0.059211;;, + 92;4; -0.092388,-0.499954,-0.837651,-0.057444;;, + 93;4; -0.094171,-0.488984,-0.853441,-0.056253;;, + 94;4; -0.095331,-0.483348,-0.863743,-0.055645;;, + 95;4; -0.095870,-0.483014,-0.868570,-0.055618;;, + 96;4; -0.094687,-0.499943,-0.858279,-0.057485;;, + 97;4; -0.090792,-0.544737,-0.824204,-0.062416;;, + 98;4; -0.085063,-0.607865,-0.774043,-0.069360;;, + 99;4; -0.079285,-0.670505,-0.723365,-0.076242;;, + 100;4; -0.075251,-0.713930,-0.687899,-0.081005;;, + 101;4; -0.073863,-0.728827,-0.675668,-0.082636;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga2} + AnimationKey { //Position + 2; + 102; + 0;3; 0.700789, 1.772341,-0.879248;;, + 1;3; 0.700789, 1.772341,-0.879248;;, + 2;3; 0.700789, 1.772341,-0.879248;;, + 3;3; 0.700789, 1.772341,-0.879248;;, + 4;3; 0.700789, 1.772341,-0.879248;;, + 5;3; 0.700789, 1.772341,-0.879248;;, + 6;3; 0.700789, 1.772341,-0.879248;;, + 7;3; 0.700789, 1.772341,-0.879248;;, + 8;3; 0.700789, 1.772341,-0.879248;;, + 9;3; 0.700789, 1.772341,-0.879248;;, + 10;3; 0.700789, 1.772341,-0.879248;;, + 11;3; 0.700789, 1.772341,-0.879248;;, + 12;3; 0.700789, 1.772341,-0.879248;;, + 13;3; 0.700789, 1.772341,-0.879248;;, + 14;3; 0.700789, 1.772341,-0.879248;;, + 15;3; 0.700789, 1.772341,-0.879248;;, + 16;3; 0.700789, 1.772341,-0.879248;;, + 17;3; 0.700789, 1.772341,-0.879248;;, + 18;3; 0.700789, 1.772341,-0.879248;;, + 19;3; 0.700789, 1.772341,-0.879248;;, + 20;3; 0.700789, 1.772341,-0.879248;;, + 21;3; 0.700789, 1.772341,-0.879248;;, + 22;3; 0.700789, 1.772341,-0.879248;;, + 23;3; 0.700789, 1.772341,-0.879248;;, + 24;3; 0.700789, 1.772341,-0.879248;;, + 25;3; 0.700789, 1.772341,-0.879248;;, + 26;3; 0.700789, 1.772341,-0.879248;;, + 27;3; 0.700789, 1.772341,-0.879248;;, + 28;3; 0.700789, 1.772341,-0.879248;;, + 29;3; 0.700789, 1.772341,-0.879248;;, + 30;3; 0.700789, 1.772341,-0.879248;;, + 31;3; 0.700789, 1.772341,-0.879248;;, + 32;3; 0.700789, 1.772341,-0.879248;;, + 33;3; 0.700789, 1.772341,-0.879248;;, + 34;3; 0.700789, 1.772341,-0.879248;;, + 35;3; 0.700789, 1.772341,-0.879248;;, + 36;3; 0.700789, 1.772341,-0.879248;;, + 37;3; 0.700789, 1.772341,-0.879248;;, + 38;3; 0.700789, 1.772341,-0.879248;;, + 39;3; 0.700789, 1.772341,-0.879248;;, + 40;3; 0.700789, 1.772341,-0.879248;;, + 41;3; 0.700789, 1.772341,-0.879248;;, + 42;3; 0.700789, 1.772341,-0.879248;;, + 43;3; 0.700789, 1.772341,-0.879248;;, + 44;3; 0.700789, 1.772341,-0.879248;;, + 45;3; 0.700789, 1.772341,-0.879248;;, + 46;3; 0.700789, 1.772341,-0.879248;;, + 47;3; 0.700789, 1.772341,-0.879248;;, + 48;3; 0.700789, 1.772341,-0.879248;;, + 49;3; 0.700789, 1.772341,-0.879248;;, + 50;3; 0.700789, 1.772341,-0.879248;;, + 51;3; 0.700789, 1.772341,-0.879248;;, + 52;3; 0.700789, 1.772341,-0.879248;;, + 53;3; 0.700789, 1.772341,-0.879248;;, + 54;3; 0.700789, 1.772341,-0.879248;;, + 55;3; 0.700789, 1.772341,-0.879248;;, + 56;3; 0.700789, 1.772341,-0.879248;;, + 57;3; 0.700789, 1.772341,-0.879248;;, + 58;3; 0.700789, 1.772341,-0.879248;;, + 59;3; 0.700789, 1.772341,-0.879248;;, + 60;3; 0.700789, 1.772341,-0.879248;;, + 61;3; 0.700789, 1.772341,-0.879248;;, + 62;3; 0.700789, 1.772341,-0.879248;;, + 63;3; 0.700789, 1.772341,-0.879248;;, + 64;3; 0.700789, 1.772341,-0.879248;;, + 65;3; 0.700789, 1.772341,-0.879248;;, + 66;3; 0.700789, 1.772341,-0.879248;;, + 67;3; 0.700789, 1.772341,-0.879248;;, + 68;3; 0.700789, 1.772341,-0.879248;;, + 69;3; 0.700789, 1.772341,-0.879248;;, + 70;3; 0.700789, 1.772341,-0.879248;;, + 71;3; 0.700789, 1.772341,-0.879248;;, + 72;3; 0.700789, 1.772341,-0.879248;;, + 73;3; 0.700789, 1.772341,-0.879248;;, + 74;3; 0.700789, 1.772341,-0.879248;;, + 75;3; 0.700789, 1.772341,-0.879248;;, + 76;3; 0.700789, 1.772341,-0.879248;;, + 77;3; 0.700789, 1.772341,-0.879248;;, + 78;3; 0.700789, 1.772341,-0.879248;;, + 79;3; 0.700789, 1.772341,-0.879248;;, + 80;3; 0.700789, 1.772341,-0.879248;;, + 81;3; 0.700789, 1.772341,-0.879248;;, + 82;3; 0.700789, 1.772341,-0.879248;;, + 83;3; 0.700789, 1.772341,-0.879248;;, + 84;3; 0.700789, 1.772341,-0.879248;;, + 85;3; 0.700789, 1.772341,-0.879248;;, + 86;3; 0.700789, 1.772341,-0.879248;;, + 87;3; 0.700789, 1.772341,-0.879248;;, + 88;3; 0.700789, 1.772341,-0.879248;;, + 89;3; 0.700789, 1.772341,-0.879248;;, + 90;3; 0.700789, 1.772341,-0.879248;;, + 91;3; 0.700789, 1.772341,-0.879248;;, + 92;3; 0.700789, 1.772341,-0.879248;;, + 93;3; 0.700789, 1.772341,-0.879248;;, + 94;3; 0.700789, 1.772341,-0.879248;;, + 95;3; 0.700789, 1.772341,-0.879248;;, + 96;3; 0.700789, 1.772341,-0.879248;;, + 97;3; 0.700789, 1.772341,-0.879248;;, + 98;3; 0.700789, 1.772341,-0.879248;;, + 99;3; 0.700789, 1.772341,-0.879248;;, + 100;3; 0.700789, 1.772341,-0.879248;;, + 101;3; 0.700789, 1.772341,-0.879248;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 1;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 2;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 3;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 4;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 5;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 6;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 7;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 8;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 9;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 10;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 11;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 12;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 13;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 14;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 15;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 16;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 17;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 18;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 19;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 20;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 21;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 22;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 23;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 24;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 25;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 26;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 27;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 28;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 29;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 30;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 31;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 32;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 33;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 34;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 35;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 36;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 37;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 38;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 39;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 40;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 41;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 42;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 43;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 44;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 45;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 46;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 47;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 48;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 49;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 50;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 51;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 52;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 53;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 54;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 55;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 56;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 57;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 58;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 59;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 60;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 61;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 62;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 63;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 64;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 65;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 66;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 67;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 68;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 69;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 70;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 71;4; -0.076219,-0.699980,-0.696324,-0.079466;;, + 72;4; -0.082861,-0.618772,-0.754457,-0.070533;;, + 73;4; -0.091395,-0.514549,-0.829049,-0.059058;;, + 74;4; -0.098042,-0.433380,-0.887140,-0.050121;;, + 75;4; -0.100400,-0.404555,-0.907772,-0.046949;;, + 76;4; -0.100049,-0.407434,-0.904668,-0.047263;;, + 77;4; -0.098985,-0.416138,-0.895284,-0.048214;;, + 78;4; -0.097207,-0.430694,-0.879598,-0.049805;;, + 79;4; -0.094727,-0.451008,-0.857716,-0.052025;;, + 80;4; -0.091576,-0.476832,-0.829914,-0.054847;;, + 81;4; -0.087807,-0.507731,-0.796668,-0.058225;;, + 82;4; -0.083500,-0.543064,-0.758681,-0.062087;;, + 83;4; -0.078760,-0.581975,-0.716884,-0.066341;;, + 84;4; -0.073718,-0.623411,-0.672420,-0.070872;;, + 85;4; -0.068521,-0.666170,-0.626597,-0.075547;;, + 86;4; -0.063328,-0.708965,-0.580808,-0.080227;;, + 87;4; -0.058297,-0.750508,-0.536447,-0.084770;;, + 88;4; -0.053575,-0.789592,-0.494819,-0.089045;;, + 89;4; -0.049292,-0.825163,-0.457061,-0.092935;;, + 90;4; -0.045553,-0.856360,-0.424100,-0.096347;;, + 91;4; -0.042437,-0.882536,-0.396632,-0.099210;;, + 92;4; -0.039998,-0.903249,-0.375128,-0.101476;;, + 93;4; -0.038265,-0.918245,-0.359856,-0.103117;;, + 94;4; -0.037250,-0.927426,-0.350918,-0.104123;;, + 95;4; -0.036949,-0.930813,-0.348286,-0.104495;;, + 96;4; -0.039271,-0.918742,-0.368873,-0.103189;;, + 97;4; -0.045926,-0.882614,-0.427816,-0.099272;;, + 98;4; -0.055464,-0.830387,-0.512283,-0.093607;;, + 99;4; -0.064984,-0.777983,-0.596703,-0.087934;;, + 100;4; -0.071595,-0.741420,-0.655462,-0.083990;;, + 101;4; -0.073863,-0.728827,-0.675668,-0.082636;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga1} + AnimationKey { //Position + 2; + 102; + 0;3; 0.700789, 1.772341, 0.698612;;, + 1;3; 0.700789, 1.772341, 0.698612;;, + 2;3; 0.700789, 1.772341, 0.698612;;, + 3;3; 0.700789, 1.772341, 0.698612;;, + 4;3; 0.700789, 1.772341, 0.698612;;, + 5;3; 0.700789, 1.772341, 0.698612;;, + 6;3; 0.700789, 1.772341, 0.698612;;, + 7;3; 0.700789, 1.772341, 0.698612;;, + 8;3; 0.700789, 1.772341, 0.698612;;, + 9;3; 0.700789, 1.772341, 0.698612;;, + 10;3; 0.700789, 1.772341, 0.698612;;, + 11;3; 0.700789, 1.772341, 0.698612;;, + 12;3; 0.700789, 1.772341, 0.698612;;, + 13;3; 0.700789, 1.772341, 0.698612;;, + 14;3; 0.700789, 1.772341, 0.698612;;, + 15;3; 0.700789, 1.772341, 0.698612;;, + 16;3; 0.700789, 1.772341, 0.698612;;, + 17;3; 0.700789, 1.772341, 0.698612;;, + 18;3; 0.700789, 1.772341, 0.698612;;, + 19;3; 0.700789, 1.772341, 0.698612;;, + 20;3; 0.700789, 1.772341, 0.698612;;, + 21;3; 0.700789, 1.772341, 0.698612;;, + 22;3; 0.700789, 1.772341, 0.698612;;, + 23;3; 0.700789, 1.772341, 0.698612;;, + 24;3; 0.700789, 1.772341, 0.698612;;, + 25;3; 0.700789, 1.772341, 0.698612;;, + 26;3; 0.700789, 1.772341, 0.698612;;, + 27;3; 0.700789, 1.772341, 0.698612;;, + 28;3; 0.700789, 1.772341, 0.698612;;, + 29;3; 0.700789, 1.772341, 0.698612;;, + 30;3; 0.700789, 1.772341, 0.698612;;, + 31;3; 0.700789, 1.772341, 0.698612;;, + 32;3; 0.700789, 1.772341, 0.698612;;, + 33;3; 0.700789, 1.772341, 0.698612;;, + 34;3; 0.700789, 1.772341, 0.698612;;, + 35;3; 0.700789, 1.772341, 0.698612;;, + 36;3; 0.700789, 1.772341, 0.698612;;, + 37;3; 0.700789, 1.772341, 0.698612;;, + 38;3; 0.700789, 1.772341, 0.698612;;, + 39;3; 0.700789, 1.772341, 0.698612;;, + 40;3; 0.700789, 1.772341, 0.698612;;, + 41;3; 0.700789, 1.772341, 0.698612;;, + 42;3; 0.700789, 1.772341, 0.698612;;, + 43;3; 0.700789, 1.772341, 0.698612;;, + 44;3; 0.700789, 1.772341, 0.698612;;, + 45;3; 0.700789, 1.772341, 0.698612;;, + 46;3; 0.700789, 1.772341, 0.698612;;, + 47;3; 0.700789, 1.772341, 0.698612;;, + 48;3; 0.700789, 1.772341, 0.698612;;, + 49;3; 0.700789, 1.772341, 0.698612;;, + 50;3; 0.700789, 1.772341, 0.698612;;, + 51;3; 0.700789, 1.772341, 0.698612;;, + 52;3; 0.700789, 1.772341, 0.698612;;, + 53;3; 0.700789, 1.772341, 0.698612;;, + 54;3; 0.700789, 1.772341, 0.698612;;, + 55;3; 0.700789, 1.772341, 0.698612;;, + 56;3; 0.700789, 1.772341, 0.698612;;, + 57;3; 0.700789, 1.772341, 0.698612;;, + 58;3; 0.700789, 1.772341, 0.698612;;, + 59;3; 0.700789, 1.772341, 0.698612;;, + 60;3; 0.700789, 1.772341, 0.698612;;, + 61;3; 0.700789, 1.772341, 0.698612;;, + 62;3; 0.700789, 1.772341, 0.698612;;, + 63;3; 0.700789, 1.772341, 0.698612;;, + 64;3; 0.700789, 1.772341, 0.698612;;, + 65;3; 0.700789, 1.772341, 0.698612;;, + 66;3; 0.700789, 1.772341, 0.698612;;, + 67;3; 0.700789, 1.772341, 0.698612;;, + 68;3; 0.700789, 1.772341, 0.698612;;, + 69;3; 0.700789, 1.772341, 0.698612;;, + 70;3; 0.700789, 1.772341, 0.698612;;, + 71;3; 0.700789, 1.772341, 0.698612;;, + 72;3; 0.700789, 1.772341, 0.698612;;, + 73;3; 0.700789, 1.772341, 0.698612;;, + 74;3; 0.700789, 1.772341, 0.698612;;, + 75;3; 0.700789, 1.772341, 0.698612;;, + 76;3; 0.700789, 1.772341, 0.698612;;, + 77;3; 0.700789, 1.772341, 0.698612;;, + 78;3; 0.700789, 1.772341, 0.698612;;, + 79;3; 0.700789, 1.772341, 0.698612;;, + 80;3; 0.700789, 1.772341, 0.698612;;, + 81;3; 0.700789, 1.772341, 0.698612;;, + 82;3; 0.700789, 1.772341, 0.698612;;, + 83;3; 0.700789, 1.772341, 0.698612;;, + 84;3; 0.700789, 1.772341, 0.698612;;, + 85;3; 0.700789, 1.772341, 0.698612;;, + 86;3; 0.700789, 1.772341, 0.698612;;, + 87;3; 0.700789, 1.772341, 0.698612;;, + 88;3; 0.700789, 1.772341, 0.698612;;, + 89;3; 0.700789, 1.772341, 0.698612;;, + 90;3; 0.700789, 1.772341, 0.698612;;, + 91;3; 0.700789, 1.772341, 0.698612;;, + 92;3; 0.700789, 1.772341, 0.698612;;, + 93;3; 0.700789, 1.772341, 0.698612;;, + 94;3; 0.700789, 1.772341, 0.698612;;, + 95;3; 0.700789, 1.772341, 0.698612;;, + 96;3; 0.700789, 1.772341, 0.698612;;, + 97;3; 0.700789, 1.772341, 0.698612;;, + 98;3; 0.700789, 1.772341, 0.698612;;, + 99;3; 0.700789, 1.772341, 0.698612;;, + 100;3; 0.700789, 1.772341, 0.698612;;, + 101;3; 0.700789, 1.772341, 0.698612;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 1;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 2;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 3;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 4;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 5;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 6;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 7;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 8;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 9;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 10;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 11;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 12;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 13;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 14;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 15;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 16;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 17;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 18;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 19;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 20;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 21;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 22;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 23;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 24;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 25;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 26;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 27;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 28;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 29;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 30;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 31;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 32;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 33;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 34;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 35;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 36;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 37;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 38;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 39;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 40;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 41;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 42;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 43;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 44;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 45;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 46;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 47;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 48;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 49;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 50;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 51;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 52;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 53;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 54;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 55;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 56;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 57;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 58;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 59;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 60;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 61;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 62;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 63;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 64;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 65;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 66;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 67;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 68;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 69;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 70;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 71;4; -0.071225,-0.744892,-0.652281,-0.084377;;, + 72;4; -0.063779,-0.789971,-0.586299,-0.089268;;, + 73;4; -0.054176,-0.847438,-0.501243,-0.095506;;, + 74;4; -0.046619,-0.891430,-0.434297,-0.100278;;, + 75;4; -0.043797,-0.905669,-0.409243,-0.101815;;, + 76;4; -0.043909,-0.901068,-0.410168,-0.101304;;, + 77;4; -0.044672,-0.891343,-0.416839,-0.100233;;, + 78;4; -0.046091,-0.876482,-0.429292,-0.098602;;, + 79;4; -0.048155,-0.856583,-0.447443,-0.096420;;, + 80;4; -0.050837,-0.831881,-0.471056,-0.093713;;, + 81;4; -0.054092,-0.802780,-0.499714,-0.090527;;, + 82;4; -0.057847,-0.769867,-0.532797,-0.086924;;, + 83;4; -0.062010,-0.733918,-0.569474,-0.082989;;, + 84;4; -0.066464,-0.695882,-0.608720,-0.078827;;, + 85;4; -0.071075,-0.656840,-0.649360,-0.074556;;, + 86;4; -0.075701,-0.617942,-0.690133,-0.070301;;, + 87;4; -0.080198,-0.580335,-0.729777,-0.066187;;, + 88;4; -0.084432,-0.545089,-0.767105,-0.062333;;, + 89;4; -0.088285,-0.513136,-0.801078,-0.058838;;, + 90;4; -0.091660,-0.485229,-0.830844,-0.055787;;, + 91;4; -0.094485,-0.461934,-0.855760,-0.053240;;, + 92;4; -0.096711,-0.443627,-0.875386,-0.051239;;, + 93;4; -0.098307,-0.430521,-0.889466,-0.049806;;, + 94;4; -0.099262,-0.422690,-0.897893,-0.048951;;, + 95;4; -0.099578,-0.420101,-0.900683,-0.048668;;, + 96;4; -0.097989,-0.439166,-0.886790,-0.050766;;, + 97;4; -0.093361,-0.494628,-0.846380,-0.056877;;, + 98;4; -0.086709,-0.574357,-0.788290,-0.065662;;, + 99;4; -0.080062,-0.654143,-0.730138,-0.074441;;, + 100;4; -0.075446,-0.709712,-0.689615,-0.080542;;, + 101;4; -0.073863,-0.728827,-0.675668,-0.082636;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_head} + AnimationKey { //Position + 2; + 102; + 0;3; -0.000000, 1.674146, 0.000000;;, + 1;3; -0.000000, 1.674146, 0.000000;;, + 2;3; -0.000000, 1.674146, 0.000000;;, + 3;3; -0.000000, 1.674146, 0.000000;;, + 4;3; -0.000000, 1.674146, 0.000000;;, + 5;3; -0.000000, 1.674146, 0.000000;;, + 6;3; -0.000000, 1.674146, 0.000000;;, + 7;3; -0.000000, 1.674146, 0.000000;;, + 8;3; -0.000000, 1.674146, 0.000000;;, + 9;3; -0.000000, 1.674146, 0.000000;;, + 10;3; -0.000000, 1.674146, 0.000000;;, + 11;3; -0.000000, 1.674146, 0.000000;;, + 12;3; -0.000000, 1.674146, 0.000000;;, + 13;3; -0.000000, 1.674146, 0.000000;;, + 14;3; -0.000000, 1.674146, 0.000000;;, + 15;3; -0.000000, 1.674146, 0.000000;;, + 16;3; -0.000000, 1.674146, 0.000000;;, + 17;3; -0.000000, 1.674146, 0.000000;;, + 18;3; -0.000000, 1.674146, 0.000000;;, + 19;3; -0.000000, 1.674146, 0.000000;;, + 20;3; -0.000000, 1.674146, 0.000000;;, + 21;3; -0.000000, 1.674146, 0.000000;;, + 22;3; -0.000000, 1.674146, 0.000000;;, + 23;3; -0.000000, 1.674146, 0.000000;;, + 24;3; -0.000000, 1.674146, 0.000000;;, + 25;3; -0.000000, 1.674146, 0.000000;;, + 26;3; -0.000000, 1.674146, 0.000000;;, + 27;3; -0.000000, 1.674146, 0.000000;;, + 28;3; -0.000000, 1.674146, 0.000000;;, + 29;3; -0.000000, 1.674146, 0.000000;;, + 30;3; -0.000000, 1.674146, 0.000000;;, + 31;3; -0.000000, 1.674146, 0.000000;;, + 32;3; -0.000000, 1.674146, 0.000000;;, + 33;3; -0.000000, 1.674146, 0.000000;;, + 34;3; -0.000000, 1.674146, 0.000000;;, + 35;3; -0.000000, 1.674146, 0.000000;;, + 36;3; -0.000000, 1.674146, 0.000000;;, + 37;3; -0.000000, 1.674146, 0.000000;;, + 38;3; -0.000000, 1.674146, 0.000000;;, + 39;3; -0.000000, 1.674146, 0.000000;;, + 40;3; -0.000000, 1.674146, 0.000000;;, + 41;3; -0.000000, 1.674146, 0.000000;;, + 42;3; -0.000000, 1.674146, 0.000000;;, + 43;3; -0.000000, 1.674146, 0.000000;;, + 44;3; -0.000000, 1.674146, 0.000000;;, + 45;3; -0.000000, 1.674146, 0.000000;;, + 46;3; -0.000000, 1.674146, 0.000000;;, + 47;3; -0.000000, 1.674146, 0.000000;;, + 48;3; -0.000000, 1.674146, 0.000000;;, + 49;3; -0.000000, 1.674146, 0.000000;;, + 50;3; -0.000000, 1.674146, 0.000000;;, + 51;3; -0.000000, 1.674146, 0.000000;;, + 52;3; -0.000000, 1.674146, 0.000000;;, + 53;3; -0.000000, 1.674146, 0.000000;;, + 54;3; -0.000000, 1.674146, 0.000000;;, + 55;3; -0.000000, 1.674146, 0.000000;;, + 56;3; -0.000000, 1.674146, 0.000000;;, + 57;3; -0.000000, 1.674146, 0.000000;;, + 58;3; -0.000000, 1.674146, 0.000000;;, + 59;3; -0.000000, 1.674146, 0.000000;;, + 60;3; -0.000000, 1.674146, 0.000000;;, + 61;3; -0.000000, 1.674146, 0.000000;;, + 62;3; -0.000000, 1.674146, 0.000000;;, + 63;3; -0.000000, 1.674146, 0.000000;;, + 64;3; -0.000000, 1.674146, 0.000000;;, + 65;3; -0.000000, 1.674146, 0.000000;;, + 66;3; -0.000000, 1.674146, 0.000000;;, + 67;3; -0.000000, 1.674146, 0.000000;;, + 68;3; -0.000000, 1.674146, 0.000000;;, + 69;3; -0.000000, 1.674146, 0.000000;;, + 70;3; -0.000000, 1.674146, 0.000000;;, + 71;3; -0.000000, 1.674146, 0.000000;;, + 72;3; 0.000000, 1.674146, 0.000000;;, + 73;3; -0.000000, 1.674146, 0.000000;;, + 74;3; -0.000000, 1.674146, 0.000000;;, + 75;3; -0.000000, 1.674146, 0.000000;;, + 76;3; -0.000000, 1.674146, 0.000000;;, + 77;3; -0.000000, 1.674146, 0.000000;;, + 78;3; -0.000000, 1.674146, 0.000000;;, + 79;3; -0.000000, 1.674146, 0.000000;;, + 80;3; -0.000000, 1.674146, 0.000000;;, + 81;3; -0.000000, 1.674146,-0.000000;;, + 82;3; -0.000000, 1.674146, 0.000000;;, + 83;3; -0.000000, 1.674146, 0.000000;;, + 84;3; -0.000000, 1.674146,-0.000000;;, + 85;3; 0.000000, 1.674146, 0.000000;;, + 86;3; -0.000000, 1.674146, 0.000000;;, + 87;3; -0.000000, 1.674146, 0.000000;;, + 88;3; 0.000000, 1.674146, 0.000000;;, + 89;3; -0.000000, 1.674146, 0.000000;;, + 90;3; -0.000000, 1.674146, 0.000000;;, + 91;3; -0.000000, 1.674146, 0.000000;;, + 92;3; -0.000000, 1.674146, 0.000000;;, + 93;3; 0.000000, 1.674146,-0.000000;;, + 94;3; -0.000000, 1.674146,-0.000000;;, + 95;3; -0.000000, 1.674146, 0.000000;;, + 96;3; -0.000000, 1.674146, 0.000000;;, + 97;3; -0.000000, 1.674146, 0.000000;;, + 98;3; -0.000000, 1.674146, 0.000000;;, + 99;3; -0.000000, 1.674146,-0.000000;;, + 100;3; -0.000000, 1.674146, 0.000000;;, + 101;3; -0.000000, 1.674146, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 1;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 2;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 3;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 4;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 5;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 6;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 7;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 8;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 9;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 10;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 11;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 12;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 13;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 14;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 15;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 16;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 17;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 18;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 19;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 20;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 21;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 22;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 23;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 24;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 25;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 26;4; -0.706775, 0.008456,-0.706775, 0.008456;;, + 27;4; -0.706077, 0.032526,-0.706077, 0.032526;;, + 28;4; -0.705751, 0.043775,-0.705751, 0.043775;;, + 29;4; -0.706039, 0.035432,-0.706039, 0.035432;;, + 30;4; -0.706656, 0.017578,-0.706656, 0.017578;;, + 31;4; -0.706945, 0.009235,-0.706945, 0.009235;;, + 32;4; -0.706844, 0.012135,-0.706844, 0.012135;;, + 33;4; -0.706558, 0.020306,-0.706558, 0.020306;;, + 34;4; -0.706192, 0.030797,-0.706192, 0.030797;;, + 35;4; -0.705906, 0.038967,-0.705906, 0.038967;;, + 36;4; -0.705805, 0.041868,-0.705805, 0.041868;;, + 37;4; -0.705991, 0.038144,-0.705990, 0.038144;;, + 38;4; -0.706447, 0.027738,-0.706447, 0.027738;;, + 39;4; -0.706824, 0.015541,-0.706824, 0.015541;;, + 40;4; -0.706811, 0.007295,-0.706811, 0.007295;;, + 41;4; -0.701904, 0.025942,-0.705927,-0.020202;;, + 42;4; -0.689478, 0.083985,-0.704022,-0.082801;;, + 43;4; -0.677123, 0.143604,-0.702186,-0.143793;;, + 44;4; -0.672393, 0.166254,-0.701478,-0.167257;;, + 45;4; -0.674517, 0.155352,-0.701805,-0.157557;;, + 46;4; -0.680750, 0.124798,-0.702809,-0.128156;;, + 47;4; -0.689724, 0.081209,-0.704267,-0.085558;;, + 48;4; -0.698704, 0.037754,-0.705730,-0.042821;;, + 49;4; -0.704954, 0.007570,-0.706750,-0.013038;;, + 50;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 51;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 52;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 53;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 54;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 55;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 56;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 57;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 58;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 59;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 60;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 61;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 62;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 63;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 64;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 65;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 66;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 67;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 68;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 69;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 70;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 71;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 72;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 73;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 74;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 75;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 76;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 77;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 78;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 79;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 80;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 81;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 82;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 83;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 84;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 85;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 86;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 87;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 88;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 89;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 90;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 91;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 92;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 93;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 94;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 95;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 96;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 97;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 98;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 99;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 100;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 101;4; -0.707101,-0.002794,-0.707101,-0.002794;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_hvost} + AnimationKey { //Position + 2; + 102; + 0;3; -0.371885,-0.304373,-0.053265;;, + 1;3; -0.371885,-0.304373,-0.053265;;, + 2;3; -0.371885,-0.304373,-0.053265;;, + 3;3; -0.371885,-0.304373,-0.053265;;, + 4;3; -0.371885,-0.304373,-0.053265;;, + 5;3; -0.371885,-0.304373,-0.053265;;, + 6;3; -0.371885,-0.304373,-0.053265;;, + 7;3; -0.371885,-0.304373,-0.053265;;, + 8;3; -0.371885,-0.304373,-0.053265;;, + 9;3; -0.371885,-0.304373,-0.053265;;, + 10;3; -0.371885,-0.304373,-0.053265;;, + 11;3; -0.371885,-0.304373,-0.053265;;, + 12;3; -0.371885,-0.304373,-0.053265;;, + 13;3; -0.371885,-0.304373,-0.053265;;, + 14;3; -0.371885,-0.304373,-0.053265;;, + 15;3; -0.371885,-0.304373,-0.053265;;, + 16;3; -0.371885,-0.304373,-0.053265;;, + 17;3; -0.371885,-0.304373,-0.053265;;, + 18;3; -0.371885,-0.304373,-0.053265;;, + 19;3; -0.371885,-0.304373,-0.053265;;, + 20;3; -0.371885,-0.304373,-0.053265;;, + 21;3; -0.371885,-0.304373,-0.053265;;, + 22;3; -0.371885,-0.304373,-0.053265;;, + 23;3; -0.371885,-0.304373,-0.053265;;, + 24;3; -0.371885,-0.304373,-0.053265;;, + 25;3; -0.371885,-0.304373,-0.053265;;, + 26;3; -0.371885,-0.304373,-0.053265;;, + 27;3; -0.371885,-0.304373,-0.053265;;, + 28;3; -0.371885,-0.304373,-0.053265;;, + 29;3; -0.371885,-0.304373,-0.053265;;, + 30;3; -0.371885,-0.304373,-0.053265;;, + 31;3; -0.371885,-0.304373,-0.053265;;, + 32;3; -0.371885,-0.304373,-0.053265;;, + 33;3; -0.371885,-0.304373,-0.053265;;, + 34;3; -0.371885,-0.304373,-0.053265;;, + 35;3; -0.371885,-0.304373,-0.053265;;, + 36;3; -0.371885,-0.304373,-0.053265;;, + 37;3; -0.371885,-0.304373,-0.053265;;, + 38;3; -0.371885,-0.304373,-0.053265;;, + 39;3; -0.371885,-0.304373,-0.053265;;, + 40;3; -0.371885,-0.304373,-0.053265;;, + 41;3; -0.371885,-0.304373,-0.053265;;, + 42;3; -0.371885,-0.304373,-0.053265;;, + 43;3; -0.371885,-0.304373,-0.053265;;, + 44;3; -0.371885,-0.304373,-0.053265;;, + 45;3; -0.371885,-0.304373,-0.053265;;, + 46;3; -0.371885,-0.304373,-0.053265;;, + 47;3; -0.371885,-0.304373,-0.053265;;, + 48;3; -0.371885,-0.304373,-0.053265;;, + 49;3; -0.371885,-0.304373,-0.053265;;, + 50;3; -0.371885,-0.304373,-0.053265;;, + 51;3; -0.371885,-0.304373,-0.053265;;, + 52;3; -0.371885,-0.304373,-0.053265;;, + 53;3; -0.371885,-0.304373,-0.053265;;, + 54;3; -0.371885,-0.304373,-0.053265;;, + 55;3; -0.371885,-0.304373,-0.053265;;, + 56;3; -0.371885,-0.304373,-0.053265;;, + 57;3; -0.371885,-0.304373,-0.053265;;, + 58;3; -0.371885,-0.304373,-0.053265;;, + 59;3; -0.371885,-0.304373,-0.053265;;, + 60;3; -0.371885,-0.304373,-0.053265;;, + 61;3; -0.371885,-0.304373,-0.053265;;, + 62;3; -0.371885,-0.304373,-0.053265;;, + 63;3; -0.371885,-0.304373,-0.053265;;, + 64;3; -0.371885,-0.304373,-0.053265;;, + 65;3; -0.371885,-0.304373,-0.053265;;, + 66;3; -0.371885,-0.304373,-0.053265;;, + 67;3; -0.371885,-0.304373,-0.053265;;, + 68;3; -0.371885,-0.304373,-0.053265;;, + 69;3; -0.371885,-0.304373,-0.053265;;, + 70;3; -0.371885,-0.304373,-0.053265;;, + 71;3; -0.371885,-0.304373,-0.053265;;, + 72;3; -0.371885,-0.304373,-0.053265;;, + 73;3; -0.371885,-0.304373,-0.053265;;, + 74;3; -0.371885,-0.304373,-0.053265;;, + 75;3; -0.371885,-0.304373,-0.053265;;, + 76;3; -0.371885,-0.304373,-0.053265;;, + 77;3; -0.371885,-0.304373,-0.053265;;, + 78;3; -0.371885,-0.304373,-0.053265;;, + 79;3; -0.371885,-0.304373,-0.053265;;, + 80;3; -0.371885,-0.304373,-0.053265;;, + 81;3; -0.371885,-0.304373,-0.053265;;, + 82;3; -0.371885,-0.304373,-0.053265;;, + 83;3; -0.371885,-0.304373,-0.053265;;, + 84;3; -0.371885,-0.304373,-0.053265;;, + 85;3; -0.371885,-0.304373,-0.053265;;, + 86;3; -0.371885,-0.304373,-0.053265;;, + 87;3; -0.371885,-0.304373,-0.053265;;, + 88;3; -0.371885,-0.304373,-0.053265;;, + 89;3; -0.371885,-0.304373,-0.053265;;, + 90;3; -0.371885,-0.304373,-0.053265;;, + 91;3; -0.371885,-0.304373,-0.053265;;, + 92;3; -0.371885,-0.304373,-0.053265;;, + 93;3; -0.371885,-0.304373,-0.053265;;, + 94;3; -0.371885,-0.304373,-0.053265;;, + 95;3; -0.371885,-0.304373,-0.053265;;, + 96;3; -0.371885,-0.304373,-0.053265;;, + 97;3; -0.371885,-0.304373,-0.053265;;, + 98;3; -0.371885,-0.304373,-0.053265;;, + 99;3; -0.371885,-0.304373,-0.053265;;, + 100;3; -0.371885,-0.304373,-0.053265;;, + 101;3; -0.371885,-0.304373,-0.053265;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 1;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 2;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 3;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 4;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 5;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 6;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 7;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 8;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 9;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 10;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 11;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 12;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 13;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 14;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 15;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 16;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 17;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 18;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 19;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 20;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 21;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 22;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 23;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 24;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 25;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 26;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 27;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 28;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 29;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 30;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 31;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 32;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 33;4; -0.092171,-0.091801, 0.103340, 0.977726;;, + 34;4; -0.079170,-0.092602, 0.230341, 0.965454;;, + 35;4; -0.080174,-0.092981, 0.226130, 0.966924;;, + 36;4; -0.083078,-0.093954, 0.212380, 0.971164;;, + 37;4; -0.087206,-0.095018, 0.188694, 0.977155;;, + 38;4; -0.091248,-0.095436, 0.157386, 0.982942;;, + 39;4; -0.093909,-0.094633, 0.122667, 0.986621;;, + 40;4; -0.094558,-0.092458, 0.088213, 0.987284;;, + 41;4; -0.004325,-0.088704, 0.040224, 0.979222;;, + 42;4; 0.187822,-0.084584,-0.015920, 0.963174;;, + 43;4; 0.277597,-0.082988,-0.038278, 0.955781;;, + 44;4; 0.260219,-0.083351,-0.037618, 0.957332;;, + 45;4; 0.208831,-0.084427,-0.035667, 0.961922;;, + 46;4; 0.130568,-0.086067,-0.032694, 0.968918;;, + 47;4; 0.041820,-0.087927,-0.029322, 0.976856;;, + 48;4; -0.036429,-0.089568,-0.026350, 0.983854;;, + 49;4; -0.087801,-0.090644,-0.024399, 0.988445;;, + 50;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 51;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 52;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 53;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 54;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 55;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 56;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 57;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 58;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 59;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 60;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 61;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 62;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 63;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 64;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 65;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 66;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 67;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 68;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 69;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 70;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 71;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 72;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 73;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 74;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 75;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 76;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 77;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 78;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 79;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 80;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 81;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 82;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 83;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 84;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 85;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 86;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 87;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 88;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 89;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 90;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 91;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 92;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 93;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 94;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 95;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 96;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 97;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 98;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 99;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 100;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 101;4; -0.105172,-0.091008,-0.023740, 0.989996;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Cube} + AnimationKey { //Position + 2; + 102; + 0;3; -0.022274,-1.486684, 5.904222;;, + 1;3; -0.022274,-1.486684, 5.904222;;, + 2;3; -0.022274,-1.486684, 5.904222;;, + 3;3; -0.022274,-1.486684, 5.904222;;, + 4;3; -0.022274,-1.486684, 5.904222;;, + 5;3; -0.022274,-1.486684, 5.904222;;, + 6;3; -0.022274,-1.486684, 5.904222;;, + 7;3; -0.022274,-1.486684, 5.904222;;, + 8;3; -0.022274,-1.486684, 5.904222;;, + 9;3; -0.022274,-1.486684, 5.904222;;, + 10;3; -0.022274,-1.486684, 5.904222;;, + 11;3; -0.022274,-1.486684, 5.904222;;, + 12;3; -0.022274,-1.486684, 5.904222;;, + 13;3; -0.022274,-1.486684, 5.904222;;, + 14;3; -0.022274,-1.486684, 5.904222;;, + 15;3; -0.022274,-1.486684, 5.904222;;, + 16;3; -0.022274,-1.486684, 5.904222;;, + 17;3; -0.022274,-1.486684, 5.904222;;, + 18;3; -0.022274,-1.486684, 5.904222;;, + 19;3; -0.022274,-1.486684, 5.904222;;, + 20;3; -0.022274,-1.486684, 5.904222;;, + 21;3; -0.022274,-1.486684, 5.904222;;, + 22;3; -0.022274,-1.486684, 5.904222;;, + 23;3; -0.022274,-1.486684, 5.904222;;, + 24;3; -0.022274,-1.486684, 5.904222;;, + 25;3; -0.022274,-1.486684, 5.904222;;, + 26;3; -0.022274,-1.486684, 5.904222;;, + 27;3; -0.022274,-1.486684, 5.904222;;, + 28;3; -0.022274,-1.486684, 5.904222;;, + 29;3; -0.022274,-1.486684, 5.904222;;, + 30;3; -0.022274,-1.486684, 5.904222;;, + 31;3; -0.022274,-1.486684, 5.904222;;, + 32;3; -0.022274,-1.486684, 5.904222;;, + 33;3; -0.022274,-1.486684, 5.904222;;, + 34;3; -0.022274,-1.486684, 5.904222;;, + 35;3; -0.022274,-1.486684, 5.904222;;, + 36;3; -0.022274,-1.486684, 5.904222;;, + 37;3; -0.022274,-1.486684, 5.904222;;, + 38;3; -0.022274,-1.486684, 5.904222;;, + 39;3; -0.022274,-1.486684, 5.904222;;, + 40;3; -0.022274,-1.486684, 5.904222;;, + 41;3; -0.022274,-1.486684, 5.904222;;, + 42;3; -0.022274,-1.486684, 5.904222;;, + 43;3; -0.022274,-1.486684, 5.904222;;, + 44;3; -0.022274,-1.486684, 5.904222;;, + 45;3; -0.022274,-1.486684, 5.904222;;, + 46;3; -0.022274,-1.486684, 5.904222;;, + 47;3; -0.022274,-1.486684, 5.904222;;, + 48;3; -0.022274,-1.486684, 5.904222;;, + 49;3; -0.022274,-1.486684, 5.904222;;, + 50;3; -0.022274,-1.486684, 5.904222;;, + 51;3; -0.022274,-1.486684, 5.904222;;, + 52;3; -0.022274,-1.486684, 5.904222;;, + 53;3; -0.022274,-1.486684, 5.904222;;, + 54;3; -0.022274,-1.486684, 5.904222;;, + 55;3; -0.022274,-1.486684, 5.904222;;, + 56;3; -0.022274,-1.486684, 5.904222;;, + 57;3; -0.022274,-1.486684, 5.904222;;, + 58;3; -0.022274,-1.486684, 5.904222;;, + 59;3; -0.022274,-1.486684, 5.904222;;, + 60;3; -0.022274,-1.486684, 5.904222;;, + 61;3; -0.022274,-1.486684, 5.904222;;, + 62;3; -0.022274,-1.486684, 5.904222;;, + 63;3; -0.022274,-1.486684, 5.904222;;, + 64;3; -0.022274,-1.486684, 5.904222;;, + 65;3; -0.022274,-1.486684, 5.904222;;, + 66;3; -0.022274,-1.486684, 5.904222;;, + 67;3; -0.022274,-1.486684, 5.904222;;, + 68;3; -0.022274,-1.486684, 5.904222;;, + 69;3; -0.022274,-1.486684, 5.904222;;, + 70;3; -0.022274,-1.486684, 5.904222;;, + 71;3; -0.022274,-1.486684, 5.904222;;, + 72;3; -0.022274,-1.486684, 5.904222;;, + 73;3; -0.022274,-1.486684, 5.904222;;, + 74;3; -0.022274,-1.486684, 5.904222;;, + 75;3; -0.022274,-1.486684, 5.904222;;, + 76;3; -0.022274,-1.486684, 5.904222;;, + 77;3; -0.022274,-1.486684, 5.904222;;, + 78;3; -0.022274,-1.486684, 5.904222;;, + 79;3; -0.022274,-1.486684, 5.904222;;, + 80;3; -0.022274,-1.486684, 5.904222;;, + 81;3; -0.022274,-1.486684, 5.904222;;, + 82;3; -0.022274,-1.486684, 5.904222;;, + 83;3; -0.022274,-1.486684, 5.904222;;, + 84;3; -0.022274,-1.486684, 5.904222;;, + 85;3; -0.022274,-1.486684, 5.904222;;, + 86;3; -0.022274,-1.486684, 5.904222;;, + 87;3; -0.022274,-1.486684, 5.904222;;, + 88;3; -0.022274,-1.486684, 5.904222;;, + 89;3; -0.022274,-1.486684, 5.904222;;, + 90;3; -0.022274,-1.486684, 5.904222;;, + 91;3; -0.022274,-1.486684, 5.904222;;, + 92;3; -0.022274,-1.486684, 5.904222;;, + 93;3; -0.022274,-1.486684, 5.904222;;, + 94;3; -0.022274,-1.486684, 5.904222;;, + 95;3; -0.022274,-1.486684, 5.904222;;, + 96;3; -0.022274,-1.486684, 5.904222;;, + 97;3; -0.022274,-1.486684, 5.904222;;, + 98;3; -0.022274,-1.486684, 5.904222;;, + 99;3; -0.022274,-1.486684, 5.904222;;, + 100;3; -0.022274,-1.486684, 5.904222;;, + 101;3; -0.022274,-1.486684, 5.904222;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 1;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 2;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 3;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 4;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 5;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 6;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 7;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 8;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 9;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 10;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 11;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 12;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 13;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 14;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 15;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 16;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 17;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 18;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 19;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 20;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 21;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 22;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 23;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 24;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 25;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 26;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 27;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 28;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 29;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 30;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 31;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 32;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 33;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 34;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 35;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 36;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 37;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 38;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 39;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 40;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 41;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 42;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 43;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 44;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 45;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 46;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 47;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 48;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 49;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 50;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 51;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 52;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 53;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 54;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 55;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 56;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 57;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 58;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 59;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 60;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 61;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 62;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 63;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 64;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 65;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 66;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 67;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 68;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 69;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 70;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 71;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 72;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 73;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 74;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 75;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 76;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 77;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 78;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 79;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 80;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 81;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 82;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 83;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 84;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 85;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 86;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 87;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 88;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 89;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 90;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 91;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 92;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 93;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 94;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 95;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 96;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 97;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 98;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 99;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 100;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 101;4; -0.707076, 0.000000, 0.000000, 0.707137;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 2.732761, 2.732761, 2.732761;;, + 1;3; 2.732761, 2.732761, 2.732761;;, + 2;3; 2.732761, 2.732761, 2.732761;;, + 3;3; 2.732761, 2.732761, 2.732761;;, + 4;3; 2.732761, 2.732761, 2.732761;;, + 5;3; 2.732761, 2.732761, 2.732761;;, + 6;3; 2.732761, 2.732761, 2.732761;;, + 7;3; 2.732761, 2.732761, 2.732761;;, + 8;3; 2.732761, 2.732761, 2.732761;;, + 9;3; 2.732761, 2.732761, 2.732761;;, + 10;3; 2.732761, 2.732761, 2.732761;;, + 11;3; 2.732761, 2.732761, 2.732761;;, + 12;3; 2.732761, 2.732761, 2.732761;;, + 13;3; 2.732761, 2.732761, 2.732761;;, + 14;3; 2.732761, 2.732761, 2.732761;;, + 15;3; 2.732761, 2.732761, 2.732761;;, + 16;3; 2.732761, 2.732761, 2.732761;;, + 17;3; 2.732761, 2.732761, 2.732761;;, + 18;3; 2.732761, 2.732761, 2.732761;;, + 19;3; 2.732761, 2.732761, 2.732761;;, + 20;3; 2.732761, 2.732761, 2.732761;;, + 21;3; 2.732761, 2.732761, 2.732761;;, + 22;3; 2.732761, 2.732761, 2.732761;;, + 23;3; 2.732761, 2.732761, 2.732761;;, + 24;3; 2.732761, 2.732761, 2.732761;;, + 25;3; 2.732761, 2.732761, 2.732761;;, + 26;3; 2.732761, 2.732761, 2.732761;;, + 27;3; 2.732761, 2.732761, 2.732761;;, + 28;3; 2.732761, 2.732761, 2.732761;;, + 29;3; 2.732761, 2.732761, 2.732761;;, + 30;3; 2.732761, 2.732761, 2.732761;;, + 31;3; 2.732761, 2.732761, 2.732761;;, + 32;3; 2.732761, 2.732761, 2.732761;;, + 33;3; 2.732761, 2.732761, 2.732761;;, + 34;3; 2.732761, 2.732761, 2.732761;;, + 35;3; 2.732761, 2.732761, 2.732761;;, + 36;3; 2.732761, 2.732761, 2.732761;;, + 37;3; 2.732761, 2.732761, 2.732761;;, + 38;3; 2.732761, 2.732761, 2.732761;;, + 39;3; 2.732761, 2.732761, 2.732761;;, + 40;3; 2.732761, 2.732761, 2.732761;;, + 41;3; 2.732761, 2.732761, 2.732761;;, + 42;3; 2.732761, 2.732761, 2.732761;;, + 43;3; 2.732761, 2.732761, 2.732761;;, + 44;3; 2.732761, 2.732761, 2.732761;;, + 45;3; 2.732761, 2.732761, 2.732761;;, + 46;3; 2.732761, 2.732761, 2.732761;;, + 47;3; 2.732761, 2.732761, 2.732761;;, + 48;3; 2.732761, 2.732761, 2.732761;;, + 49;3; 2.732761, 2.732761, 2.732761;;, + 50;3; 2.732761, 2.732761, 2.732761;;, + 51;3; 2.732761, 2.732761, 2.732761;;, + 52;3; 2.732761, 2.732761, 2.732761;;, + 53;3; 2.732761, 2.732761, 2.732761;;, + 54;3; 2.732761, 2.732761, 2.732761;;, + 55;3; 2.732761, 2.732761, 2.732761;;, + 56;3; 2.732761, 2.732761, 2.732761;;, + 57;3; 2.732761, 2.732761, 2.732761;;, + 58;3; 2.732761, 2.732761, 2.732761;;, + 59;3; 2.732761, 2.732761, 2.732761;;, + 60;3; 2.732761, 2.732761, 2.732761;;, + 61;3; 2.732761, 2.732761, 2.732761;;, + 62;3; 2.732761, 2.732761, 2.732761;;, + 63;3; 2.732761, 2.732761, 2.732761;;, + 64;3; 2.732761, 2.732761, 2.732761;;, + 65;3; 2.732761, 2.732761, 2.732761;;, + 66;3; 2.732761, 2.732761, 2.732761;;, + 67;3; 2.732761, 2.732761, 2.732761;;, + 68;3; 2.732761, 2.732761, 2.732761;;, + 69;3; 2.732761, 2.732761, 2.732761;;, + 70;3; 2.732761, 2.732761, 2.732761;;, + 71;3; 2.732761, 2.732761, 2.732761;;, + 72;3; 2.732761, 2.732761, 2.732761;;, + 73;3; 2.732761, 2.732761, 2.732761;;, + 74;3; 2.732761, 2.732761, 2.732761;;, + 75;3; 2.732761, 2.732761, 2.732761;;, + 76;3; 2.732761, 2.732761, 2.732761;;, + 77;3; 2.732761, 2.732761, 2.732761;;, + 78;3; 2.732761, 2.732761, 2.732761;;, + 79;3; 2.732761, 2.732761, 2.732761;;, + 80;3; 2.732761, 2.732761, 2.732761;;, + 81;3; 2.732761, 2.732761, 2.732761;;, + 82;3; 2.732761, 2.732761, 2.732761;;, + 83;3; 2.732761, 2.732761, 2.732761;;, + 84;3; 2.732761, 2.732761, 2.732761;;, + 85;3; 2.732761, 2.732761, 2.732761;;, + 86;3; 2.732761, 2.732761, 2.732761;;, + 87;3; 2.732761, 2.732761, 2.732761;;, + 88;3; 2.732761, 2.732761, 2.732761;;, + 89;3; 2.732761, 2.732761, 2.732761;;, + 90;3; 2.732761, 2.732761, 2.732761;;, + 91;3; 2.732761, 2.732761, 2.732761;;, + 92;3; 2.732761, 2.732761, 2.732761;;, + 93;3; 2.732761, 2.732761, 2.732761;;, + 94;3; 2.732761, 2.732761, 2.732761;;, + 95;3; 2.732761, 2.732761, 2.732761;;, + 96;3; 2.732761, 2.732761, 2.732761;;, + 97;3; 2.732761, 2.732761, 2.732761;;, + 98;3; 2.732761, 2.732761, 2.732761;;, + 99;3; 2.732761, 2.732761, 2.732761;;, + 100;3; 2.732761, 2.732761, 2.732761;;, + 101;3; 2.732761, 2.732761, 2.732761;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs/models/mobs_rat.png b/mods/mobs/models/mobs_rat.png new file mode 100644 index 0000000..f83da08 Binary files /dev/null and b/mods/mobs/models/mobs_rat.png differ diff --git a/mods/mobs/models/mobs_rat.x b/mods/mobs/models/mobs_rat.x new file mode 100644 index 0000000..f5a69bd --- /dev/null +++ b/mods/mobs/models/mobs_rat.x @@ -0,0 +1,699 @@ +xof 0303txt 0032 + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Cube_004 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000,-0.000000, 1.000000;; + } + Mesh { //Cube_005 Mesh + 176; + 0.336296; 1.101631; 1.340231;, + 1.524099; 1.101631; 1.348138;, + 1.516191; 1.101631; 2.535941;, + 0.328389; 1.101631; 2.528034;, + 0.328389; 1.101631; 2.528034;, + 0.336296; 1.101631; 1.340231;, + 0.336296; 1.101631; 1.340231;, + 0.328389; 1.101631; 2.528034;, + 1.524099; 1.101631; 1.348138;, + 1.516191; 1.101631; 2.535941;, + 1.516191; 1.101631; 2.535941;, + 1.524099; 1.101631; 1.348138;, + 1.516191; 1.101631; 2.535941;, + 0.328389; 1.101631; 2.528034;, + 0.328389; 1.101631; 2.528034;, + 1.516191; 1.101631; 2.535941;, + 0.336296; 1.101631; 1.340231;, + 1.524099; 1.101631; 1.348138;, + 1.524099; 1.101631; 1.348138;, + 0.336296; 1.101631; 1.340231;, + -1.564649; 0.817637; 1.334045;, + -1.564649; 1.101631; 1.334045;, + -1.596119; 1.101631; 2.521457;, + -1.596119; 0.817637; 2.521457;, + -1.564649; 1.101631; 1.334045;, + -0.377237; 1.101631; 1.365515;, + -0.408707; 1.101631; 2.552927;, + -1.596119; 1.101631; 2.521457;, + -0.377237; 1.101631; 1.365515;, + -0.377237; 0.817638; 1.365515;, + -0.408707; 0.817638; 2.552928;, + -0.408707; 1.101631; 2.552927;, + -0.377237; 0.817638; 1.365515;, + -1.564649; 0.817637; 1.334045;, + -1.596119; 0.817637; 2.521457;, + -0.408707; 0.817638; 2.552928;, + -0.377237; 0.817638; 1.365515;, + -0.377237; 1.101631; 1.365515;, + -1.564649; 1.101631; 1.334045;, + -1.564649; 0.817637; 1.334045;, + -1.596119; 0.817637; 2.521457;, + -1.596119; 1.101631; 2.521457;, + -0.408707; 1.101631; 2.552927;, + -0.408707; 0.817638; 2.552928;, + 0.336296; 0.817638; 1.340231;, + 0.336296; 1.101631; 1.340231;, + 0.328389; 1.101631; 2.528034;, + 0.328389; 0.817638; 2.528034;, + 1.524099; 1.101631; 1.348138;, + 1.524099; 0.817637; 1.348139;, + 1.516192; 0.817637; 2.535942;, + 1.516191; 1.101631; 2.535941;, + 1.524099; 0.817637; 1.348139;, + 0.336296; 0.817638; 1.340231;, + 0.328389; 0.817638; 2.528034;, + 1.516192; 0.817637; 2.535942;, + 1.524099; 0.817637; 1.348139;, + 1.524099; 1.101631; 1.348138;, + 0.336296; 1.101631; 1.340231;, + 0.336296; 0.817638; 1.340231;, + 0.328389; 0.817638; 2.528034;, + 0.328389; 1.101631; 2.528034;, + 1.516191; 1.101631; 2.535941;, + 1.516192; 0.817637; 2.535942;, + -0.117394;-5.732621; 0.182654;, + -0.186090;-2.477838; 0.265415;, + -0.186090;-2.477838; 0.668304;, + -0.117394;-5.732621; 0.448150;, + -0.186090;-2.477838; 0.265415;, + 0.216799;-2.477838; 0.265415;, + 0.216799;-2.477838; 0.668304;, + -0.186090;-2.477838; 0.668304;, + 0.216799;-2.477838; 0.265415;, + 0.148102;-5.732621; 0.182654;, + 0.148102;-5.732621; 0.448150;, + 0.216799;-2.477838; 0.668304;, + 0.148102;-5.732621; 0.182654;, + -0.117394;-5.732621; 0.182654;, + -0.117394;-5.732621; 0.448150;, + 0.148102;-5.732621; 0.448150;, + 0.148102;-5.732621; 0.182654;, + 0.216799;-2.477838; 0.265415;, + -0.186090;-2.477838; 0.265415;, + -0.117394;-5.732621; 0.182654;, + -0.117394;-5.732621; 0.448150;, + -0.186090;-2.477838; 0.668304;, + 0.216799;-2.477838; 0.668304;, + 0.148102;-5.732621; 0.448150;, + -0.933130;-2.573576; 0.130200;, + -0.933130; 0.667430; 0.130200;, + -0.933130; 0.667430; 2.038438;, + -0.933130;-2.573576; 2.038438;, + -0.933130; 0.667430; 0.130200;, + 0.963839; 0.667430; 0.130200;, + 0.963839; 0.667430; 2.038438;, + -0.933130; 0.667430; 2.038438;, + 0.963839; 0.667430; 0.130200;, + 0.963839;-2.573576; 0.130200;, + 0.963839;-2.573576; 2.038438;, + 0.963839; 0.667430; 2.038438;, + 0.963839;-2.573576; 0.130200;, + -0.933130;-2.573576; 0.130200;, + -0.933130;-2.573576; 2.038438;, + 0.963839;-2.573576; 2.038438;, + 0.963839;-2.573576; 0.130200;, + 0.963839; 0.667430; 0.130200;, + -0.933130; 0.667430; 0.130200;, + -0.933130;-2.573576; 0.130200;, + -0.933130;-2.573576; 2.038438;, + -0.933130; 0.667430; 2.038438;, + 0.963839; 0.667430; 2.038438;, + 0.963839;-2.573576; 2.038438;, + -0.694354; 0.619175; 0.175005;, + -0.469990; 2.744857; 0.240792;, + -0.469990; 2.744857; 1.874725;, + -0.694354; 0.619175; 1.814122;, + 0.015354; 2.744857; 0.240792;, + 0.500698; 2.744857; 0.240792;, + 0.500698; 2.744857; 1.874725;, + 0.015354; 2.744857; 1.874725;, + 0.500698; 2.744857; 0.240792;, + 0.725062; 0.619175; 0.175005;, + 0.725062; 0.619175; 1.814122;, + 0.500698; 2.744857; 1.874725;, + 0.015354; 0.619175; 0.175005;, + -0.694354; 0.619175; 0.175005;, + -0.694354; 0.619175; 1.814122;, + 0.015354; 0.619175; 1.814122;, + 0.725062; 0.619175; 0.175005;, + 0.500698; 2.744857; 0.240792;, + 0.015354; 2.744857; 0.240792;, + 0.015354; 0.619175; 0.175005;, + -0.694354; 0.619175; 1.814122;, + -0.469990; 2.744857; 1.874725;, + 0.015354; 2.744857; 1.874725;, + 0.015354; 0.619175; 1.814122;, + -0.281961; 2.574486; 0.745273;, + -0.281961; 3.169116; 0.745273;, + -0.281961; 3.169116; 1.339903;, + -0.281961; 2.574486; 1.339903;, + -0.281961; 3.169116; 0.745273;, + 0.312669; 3.169116; 0.745273;, + 0.312669; 3.169116; 1.339903;, + -0.281961; 3.169116; 1.339903;, + 0.312669; 3.169116; 0.745273;, + 0.312669; 2.574486; 0.745273;, + 0.312669; 2.574486; 1.339903;, + 0.312669; 3.169116; 1.339903;, + 0.312669; 2.574486; 0.745273;, + -0.281961; 2.574486; 0.745273;, + -0.281961; 2.574486; 1.339903;, + 0.312669; 2.574486; 1.339903;, + 0.312669; 2.574486; 0.745273;, + 0.312669; 3.169116; 0.745273;, + -0.281961; 3.169116; 0.745273;, + -0.281961; 2.574486; 0.745273;, + -0.281961; 2.574486; 1.339903;, + -0.281961; 3.169116; 1.339903;, + 0.312669; 3.169116; 1.339903;, + 0.312669; 2.574486; 1.339903;, + -0.469990; 2.744857; 0.240792;, + 0.015354; 2.744857; 0.240792;, + 0.015354; 2.744857; 1.874725;, + -0.469990; 2.744857; 1.874725;, + 0.725062; 0.619175; 0.175005;, + 0.015354; 0.619175; 0.175005;, + 0.015354; 0.619175; 1.814122;, + 0.725062; 0.619175; 1.814122;, + 0.015354; 0.619175; 0.175005;, + 0.015354; 2.744857; 0.240792;, + -0.469990; 2.744857; 0.240792;, + -0.694354; 0.619175; 0.175005;, + 0.015354; 0.619175; 1.814122;, + 0.015354; 2.744857; 1.874725;, + 0.500698; 2.744857; 1.874725;, + 0.725062; 0.619175; 1.814122;; + 44; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;; + MeshNormals { //Cube_005 Normals + 176; + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + -0.999649; 0.000000;-0.026494;, + -0.999649; 0.000000;-0.026494;, + -0.999649; 0.000000;-0.026494;, + -0.999649; 0.000000;-0.026494;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.999649; 0.000001; 0.026494;, + 0.999649; 0.000001; 0.026494;, + 0.999649; 0.000001; 0.026494;, + 0.999649; 0.000001; 0.026494;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.026494; 0.000000;-0.999649;, + 0.026494; 0.000000;-0.999649;, + 0.026494; 0.000000;-0.999649;, + 0.026494; 0.000000;-0.999649;, + -0.026494; 0.000000; 0.999649;, + -0.026494; 0.000000; 0.999649;, + -0.026494; 0.000000; 0.999649;, + -0.026494; 0.000000; 0.999649;, + -0.999978;-0.000000;-0.006657;, + -0.999978;-0.000000;-0.006657;, + -0.999978;-0.000000;-0.006657;, + -0.999978;-0.000000;-0.006657;, + 0.999978; 0.000001; 0.006657;, + 0.999978; 0.000001; 0.006657;, + 0.999978; 0.000001; 0.006657;, + 0.999978; 0.000001; 0.006657;, + -0.000000;-1.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + 0.006657; 0.000000;-0.999978;, + 0.006657; 0.000000;-0.999978;, + 0.006657; 0.000000;-0.999978;, + 0.006657; 0.000000;-0.999978;, + -0.006657; 0.000000; 0.999978;, + -0.006657; 0.000000; 0.999978;, + -0.006657; 0.000000; 0.999978;, + -0.006657; 0.000000; 0.999978;, + -0.999777;-0.021102; 0.000000;, + -0.999777;-0.021102; 0.000000;, + -0.999777;-0.021102; 0.000000;, + -0.999777;-0.021102; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.999777;-0.021102; 0.000000;, + 0.999777;-0.021102; 0.000000;, + 0.999777;-0.021102; 0.000000;, + 0.999777;-0.021102; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.025419;-0.999677;, + 0.000000; 0.025419;-0.999677;, + 0.000000; 0.025419;-0.999677;, + 0.000000; 0.025419;-0.999677;, + 0.000000;-0.067486; 0.997720;, + 0.000000;-0.067486; 0.997720;, + 0.000000;-0.067486; 0.997720;, + 0.000000;-0.067486; 0.997720;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.994476; 0.104966; 0.000000;, + -0.994476; 0.104966; 0.000000;, + -0.994476; 0.104966; 0.000000;, + -0.994476; 0.104966; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.994476; 0.104966; 0.000000;, + 0.994476; 0.104966; 0.000000;, + 0.994476; 0.104966; 0.000000;, + 0.994476; 0.104966; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.030934;-0.999521;, + 0.000000; 0.030934;-0.999521;, + 0.000000; 0.030934;-0.999521;, + 0.000000; 0.030934;-0.999521;, + 0.000000;-0.028498; 0.999594;, + 0.000000;-0.028498; 0.999594;, + 0.000000;-0.028498; 0.999594;, + 0.000000;-0.028498; 0.999594;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.030934;-0.999521;, + 0.000000; 0.030934;-0.999521;, + 0.000000; 0.030934;-0.999521;, + 0.000000; 0.030934;-0.999521;, + 0.000000;-0.028498; 0.999594;, + 0.000000;-0.028498; 0.999594;, + 0.000000;-0.028498; 0.999594;, + 0.000000;-0.028498; 0.999594;; + 44; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;; + } //End of Cube_005 Normals + MeshMaterialList { //Cube_005 Material List + 1; + 44; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material_001 { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Cube_005 Material List + MeshTextureCoords { //Cube_005 UV Coordinates + 176; + 0.635817; 0.275819;, + 0.635817; 0.046728;, + 0.864908; 0.046728;, + 0.864908; 0.275819;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.864346; 0.986031;, + 0.783570; 0.986031;, + 0.783570; 0.648180;, + 0.864346; 0.648180;, + 0.635817; 0.274669;, + 0.635817; 0.045578;, + 0.864908; 0.045578;, + 0.864908; 0.274669;, + 0.863901; 0.987104;, + 0.783126; 0.987104;, + 0.783126; 0.649254;, + 0.863901; 0.649254;, + 0.991231; 0.987104;, + 0.653381; 0.987104;, + 0.653381; 0.649254;, + 0.991232; 0.649254;, + 0.991232; 0.777658;, + 0.991232; 0.858433;, + 0.653381; 0.858433;, + 0.653381; 0.777658;, + 0.655529; 0.859063;, + 0.655529; 0.778288;, + 0.993379; 0.778288;, + 0.993379; 0.859063;, + 0.335443; 0.861158;, + 0.265926; 0.861158;, + 0.265926; 0.570397;, + 0.335443; 0.570397;, + 0.334205; 0.859816;, + 0.264688; 0.859816;, + 0.264688; 0.569055;, + 0.334205; 0.569055;, + 0.444367; 0.858474;, + 0.153606; 0.858474;, + 0.153606; 0.567713;, + 0.444367; 0.567713;, + 0.333996; 0.859816;, + 0.264479; 0.859816;, + 0.264479; 0.569055;, + 0.333996; 0.569055;, + 0.264228; 0.568595;, + 0.333745; 0.568595;, + 0.333745; 0.859357;, + 0.264228; 0.859357;, + 0.910309; 0.067094;, + 0.990888; 0.067068;, + 0.991634; 0.077574;, + 0.911094; 0.077574;, + 0.910309; 0.024149;, + 0.921538; 0.024149;, + 0.921538; 0.035379;, + 0.910309; 0.035379;, + 0.990708; 0.067037;, + 0.910309; 0.067041;, + 0.910896; 0.056534;, + 0.991418; 0.056534;, + 0.928966; 0.035379;, + 0.921565; 0.035379;, + 0.921565; 0.027979;, + 0.928966; 0.027979;, + 0.910595; 0.035408;, + 0.990869; 0.035406;, + 0.990583; 0.045937;, + 0.910309; 0.045939;, + 0.910597; 0.045966;, + 0.990951; 0.045966;, + 0.990662; 0.056507;, + 0.910309; 0.056507;, + 0.461795; 0.725720;, + 0.002369; 0.725720;, + 0.002369; 0.455219;, + 0.461795; 0.455219;, + 0.728915; 0.630399;, + 0.460011; 0.630399;, + 0.460011; 0.359898;, + 0.728915; 0.359898;, + 0.459622; 0.999805;, + 0.000195; 0.999805;, + 0.000195; 0.729304;, + 0.459622; 0.729304;, + 0.990155; 1.001469;, + 0.721251; 1.001469;, + 0.721251; 0.730968;, + 0.990155; 0.730968;, + 0.000987; 0.351616;, + 0.460413; 0.351616;, + 0.460413; 0.620520;, + 0.000987; 0.620520;, + 0.728915; 0.540378;, + 0.728915; 0.999805;, + 0.460011; 0.999805;, + 0.460011; 0.540378;, + 0.006594; 0.353635;, + 0.507556; 0.369053;, + 0.507556; 0.596553;, + 0.006594; 0.737794;, + 0.752538; 0.533913;, + 0.752538; 0.647662;, + 0.525038; 0.647662;, + 0.525038; 0.533913;, + 0.509703; 0.731028;, + 0.008741; 0.746446;, + 0.008741; 0.362287;, + 0.509703; 0.503529;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.003201; 0.349292;, + 0.501634; 0.401876;, + 0.501634; 0.515626;, + 0.003201; 0.515626;, + 0.529333; 0.186216;, + 0.171158; 0.150188;, + 0.171083; 0.071516;, + 0.529224; 0.071176;, + 0.636995; 0.428681;, + 0.636995; 0.545208;, + 0.520468; 0.545208;, + 0.520468; 0.428681;, + 0.340480; 0.361873;, + 0.452832; 0.361873;, + 0.452832; 0.474224;, + 0.340480; 0.474224;, + 0.453577; 0.475130;, + 0.341226; 0.475130;, + 0.341226; 0.362779;, + 0.453577; 0.362779;, + 0.453737; 0.472732;, + 0.341386; 0.472732;, + 0.341386; 0.360381;, + 0.453737; 0.360381;, + 0.454483; 0.362033;, + 0.454483; 0.474384;, + 0.342132; 0.474384;, + 0.342132; 0.362033;, + 0.342132; 0.472732;, + 0.342132; 0.360381;, + 0.454483; 0.360381;, + 0.454483; 0.472732;, + 0.752538; 0.420163;, + 0.752538; 0.533913;, + 0.525038; 0.533913;, + 0.525038; 0.420163;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.003201; 0.515626;, + 0.501634; 0.515626;, + 0.501634; 0.629375;, + 0.003201; 0.681959;, + 0.529223; 0.070318;, + 0.171082; 0.070658;, + 0.171157; 0.149330;, + 0.529332; 0.185358;; + } //End of Cube_005 UV Coordinates + } //End of Cube_005 Mesh + } //End of Cube_004 +} //End of Root Frame diff --git a/mods/mobs/models/mobs_sand_monster.png b/mods/mobs/models/mobs_sand_monster.png new file mode 100644 index 0000000..75fcc4b Binary files /dev/null and b/mods/mobs/models/mobs_sand_monster.png differ diff --git a/mods/mobs/models/mobs_sand_monster.x b/mods/mobs/models/mobs_sand_monster.x new file mode 100644 index 0000000..52750d8 --- /dev/null +++ b/mods/mobs/models/mobs_sand_monster.x @@ -0,0 +1,8573 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature_Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.001246, 1.000000;; + } + Frame Armature_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.855036, 0.000000, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 0.995733, 0.092285,-0.000000, 0.000000, + 0.092285,-0.995732,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 0.225856, 0.800000, 0.000000, 1.000000;; + } + } //End of Armature_Bone_001 + Frame Armature_Bone_002 { + FrameTransformMatrix { + 0.995624,-0.093449,-0.000000, 0.000000, + -0.093449,-0.995624,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -0.238835, 0.800000, 0.000000, 1.000000;; + } + } //End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + -0.000000, 0.000001,-1.000000, 0.000000, + -0.144872, 0.061513, 0.000000, 1.000000;; + } + } //End of Armature_Bone_003 + Frame Armature_Bone_004 { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + -0.000000, 0.000001,-1.000000, 0.000000, + 0.135398, 0.070410, 0.000000, 1.000000;; + } + } //End of Armature_Bone_004 + Frame Armature_Bone_005 { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.999976,-0.006964, 0.000000, + 0.000000, 0.006964, 0.999976, 0.000000, + -0.002513, 0.866015, 0.122502, 1.000000;; + } + Frame Armature_Bone_006 { + FrameTransformMatrix { + 0.101367,-0.994825,-0.006928, 0.000000, + 0.000001, 0.006964,-0.999976, 0.000000, + 0.994849, 0.101365, 0.000707, 0.000000, + -0.000000, 0.306782, 0.000000, 1.000000;; + } + Frame Armature_Bone_007 { + FrameTransformMatrix { + 0.101366, 0.000001, 0.994849, 0.000000, + 0.570623, 0.819152,-0.058142, 0.000000, + -0.814932, 0.573577, 0.083034, 0.000000, + 0.078315, 0.084604,-0.007980, 1.000000;; + } + } //End of Armature_Bone_007 + } //End of Armature_Bone_006 + } //End of Armature_Bone_005 + Frame Armature_Body_001 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 0.187946,-0.206990, 1.000000;; + } + } //End of Armature_Body_001 + Frame Armature_Body_002 { + FrameTransformMatrix { + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000,-1.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 0.185728, 0.203380, 1.000000;; + } + } //End of Armature_Body_002 + } //End of Armature_Body + Frame Armature_IK_Right_Leg { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + -0.000000, 0.000001,-1.000000, 0.000000, + 0.135398, 0.015523, 0.000000, 1.000000;; + } + } //End of Armature_IK_Right_Leg + Frame Armature_IK_Left_Leg { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + -0.000000, 0.000001,-1.000000, 0.000000, + -0.148583, 0.015523, 0.000000, 1.000000;; + } + } //End of Armature_IK_Left_Leg + Frame Armature_IK_Left_Hand { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + -0.000000, 0.000001,-1.000000, 0.000000, + -0.316097, 0.754556, 0.000000, 1.000000;; + } + } //End of Armature_IK_Left_Hand + Frame Armature_IK_Right_hand { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + -0.000000, 0.000001,-1.000000, 0.000000, + 0.304691, 0.744702, 0.000000, 1.000000;; + } + } //End of Armature_IK_Right_hand + Frame Armature_IK_head { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.999976,-0.006964, 0.000000, + 0.000000, 0.006964, 0.999976, 0.000000, + -0.002513, 2.032632,-0.710142, 1.000000;; + } + } //End of Armature_IK_head + } //End of Armature_Root + Frame Sand_monster { + FrameTransformMatrix { + 0.746845, 0.000000, 0.000000, 0.000000, + 0.000000, 0.740784, 0.000000, 0.000000, + 0.000000, 0.000000, 0.740784, 0.000000, + -0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { //Cube_000 Mesh + 332; + -0.320902;-0.288770; 0.936493;, + -0.317184;-0.213477; 0.936493;, + -0.317184;-0.213477; 1.431149;, + -0.320902;-0.288770; 1.431149;, + -0.317184;-0.213477; 0.936493;, + -0.106107;-0.213477; 0.936493;, + -0.106107;-0.213477; 1.431149;, + -0.317184;-0.213477; 1.431149;, + -0.106107;-0.213477; 0.936493;, + -0.109825;-0.288770; 0.936493;, + -0.109825;-0.288770; 1.431149;, + -0.106107;-0.213477; 1.431149;, + -0.109825;-0.288770; 0.936493;, + -0.320902;-0.288770; 0.936493;, + -0.320902;-0.288770; 1.431149;, + -0.109825;-0.288770; 1.431149;, + -0.109825;-0.288770; 0.936493;, + -0.106107;-0.213477; 0.936493;, + -0.317184;-0.213477; 0.936493;, + -0.320902;-0.288770; 0.936493;, + -0.320902;-0.288770; 1.431149;, + -0.317184;-0.213477; 1.431149;, + -0.106107;-0.213477; 1.431149;, + -0.109825;-0.288770; 1.431149;, + 0.083499;-0.288770; 0.936493;, + 0.081037;-0.213477; 0.936493;, + 0.081037;-0.213477; 1.431149;, + 0.083499;-0.288770; 1.431149;, + 0.081037;-0.213477; 0.936493;, + 0.297651;-0.213477; 0.936493;, + 0.297651;-0.213477; 1.431149;, + 0.081037;-0.213477; 1.431149;, + 0.297651;-0.213477; 0.936493;, + 0.300113;-0.288770; 0.936493;, + 0.300113;-0.288770; 1.431149;, + 0.297651;-0.213477; 1.431149;, + 0.300113;-0.288770; 0.936493;, + 0.083499;-0.288770; 0.936493;, + 0.083499;-0.288770; 1.431149;, + 0.300113;-0.288770; 1.431149;, + 0.300113;-0.288770; 0.936493;, + 0.297651;-0.213477; 0.936493;, + 0.081037;-0.213477; 0.936493;, + 0.083499;-0.288770; 0.936493;, + 0.083499;-0.288770; 1.431149;, + 0.081037;-0.213477; 1.431149;, + 0.297651;-0.213477; 1.431149;, + 0.300113;-0.288770; 1.431149;, + -0.167631;-0.323303; 0.771836;, + -0.168232;-0.248010; 0.771836;, + -0.168232;-0.248010; 1.438394;, + -0.167631;-0.323303; 1.438394;, + -0.168232;-0.248010; 0.771836;, + 0.149701;-0.248010; 0.771836;, + 0.149701;-0.248010; 1.438394;, + -0.168232;-0.248010; 1.438394;, + 0.149701;-0.248010; 0.771836;, + 0.150301;-0.323303; 0.771836;, + 0.150301;-0.323303; 1.438394;, + 0.149701;-0.248010; 1.438394;, + 0.150301;-0.323303; 0.771836;, + -0.167631;-0.323303; 0.771836;, + -0.167631;-0.323303; 1.438394;, + 0.150301;-0.323303; 1.438394;, + 0.150301;-0.323303; 0.771836;, + 0.149701;-0.248010; 0.771836;, + -0.168232;-0.248010; 0.771836;, + -0.167631;-0.323303; 0.771836;, + -0.167631;-0.323303; 1.438394;, + -0.168232;-0.248010; 1.438394;, + 0.149701;-0.248010; 1.438394;, + 0.150301;-0.323303; 1.438394;, + 0.299315;-0.086578; 0.978290;, + 0.299315; 0.101043; 0.978290;, + 0.299315; 0.101043; 2.336183;, + 0.299315;-0.086578; 2.336183;, + 0.299315; 0.101043; 0.978290;, + 0.485414; 0.101043; 0.978290;, + 0.485414; 0.101043; 2.336183;, + 0.299315; 0.101043; 2.336183;, + 0.485414; 0.101043; 0.978290;, + 0.485414;-0.086578; 0.978290;, + 0.485414;-0.086578; 2.336183;, + 0.485414; 0.101043; 2.336183;, + 0.485414;-0.086578; 0.978290;, + 0.299315;-0.086578; 0.978290;, + 0.299315;-0.086578; 2.336183;, + 0.485414;-0.086578; 2.336183;, + 0.485414;-0.086578; 0.978290;, + 0.485414; 0.101043; 0.978290;, + 0.299315; 0.101043; 0.978290;, + 0.299315;-0.086578; 0.978290;, + 0.299315;-0.086578; 2.336183;, + 0.299315; 0.101043; 2.336183;, + 0.485414; 0.101043; 2.336183;, + 0.485414;-0.086578; 2.336183;, + 0.299346; 0.342641; 3.011453;, + 0.299346;-0.285110; 3.011453;, + -0.323311;-0.285110; 3.011453;, + -0.323311; 0.342641; 3.011453;, + 0.299346; 0.342641; 2.590401;, + 0.299346;-0.285110; 2.590401;, + 0.299346;-0.285110; 3.011453;, + 0.299346; 0.342641; 3.011453;, + 0.299346;-0.285110; 2.590401;, + -0.323311;-0.285110; 2.590401;, + -0.323311;-0.285110; 3.011453;, + 0.299346;-0.285110; 3.011453;, + -0.323311;-0.285110; 2.590401;, + -0.323311; 0.342641; 2.590401;, + -0.323311; 0.342641; 3.011453;, + -0.323311;-0.285110; 3.011453;, + -0.323311; 0.342641; 2.590401;, + 0.299346; 0.342641; 2.590401;, + 0.299346; 0.342641; 3.011453;, + -0.323311; 0.342641; 3.011453;, + 0.299346; 0.342641; 2.590401;, + -0.323311; 0.342641; 2.590401;, + -0.323311;-0.285110; 2.590401;, + 0.299346;-0.285110; 2.590401;, + 0.222447; 0.335658; 2.376415;, + 0.222447;-0.063423; 2.376415;, + 0.222447;-0.063423; 2.583114;, + 0.222447; 0.335658; 2.583114;, + 0.222447;-0.063423; 2.376415;, + -0.245101;-0.063423; 2.376415;, + -0.245101;-0.063423; 2.583114;, + 0.222447;-0.063423; 2.583114;, + -0.245101;-0.063423; 2.376415;, + -0.245101; 0.335658; 2.376415;, + -0.245101; 0.335658; 2.583114;, + -0.245101;-0.063423; 2.583114;, + -0.245101; 0.335658; 2.376415;, + 0.222447; 0.335658; 2.376415;, + 0.222447; 0.335658; 2.583114;, + -0.245101; 0.335658; 2.583114;, + -0.245101; 0.335658; 2.376415;, + -0.245101;-0.063423; 2.376415;, + 0.222447;-0.063423; 2.376415;, + 0.222447; 0.335658; 2.376415;, + -0.322044; 0.107436; 0.978290;, + -0.322043;-0.080185; 0.978290;, + -0.322043;-0.080185; 2.336183;, + -0.322044; 0.107436; 2.336183;, + -0.322043;-0.080185; 0.978290;, + -0.508142;-0.080185; 0.978290;, + -0.508142;-0.080185; 2.336183;, + -0.322043;-0.080185; 2.336183;, + -0.508142;-0.080185; 0.978290;, + -0.508142; 0.107436; 0.978290;, + -0.508142; 0.107436; 2.336183;, + -0.508142;-0.080185; 2.336183;, + -0.508142; 0.107436; 0.978290;, + -0.322044; 0.107436; 0.978290;, + -0.322044; 0.107436; 2.336183;, + -0.508142; 0.107436; 2.336183;, + -0.508142; 0.107436; 0.978290;, + -0.508142;-0.080185; 0.978290;, + -0.322043;-0.080185; 0.978290;, + -0.322044; 0.107436; 0.978290;, + -0.322044; 0.107436; 2.336183;, + -0.322043;-0.080185; 2.336183;, + -0.508142;-0.080185; 2.336183;, + -0.508142; 0.107436; 2.336183;, + 0.292988; 0.271646; 1.259217;, + 0.292988;-0.244395; 1.259217;, + 0.292988;-0.244395; 2.334600;, + 0.292988; 0.271646; 2.334600;, + 0.292988;-0.244395; 1.259217;, + -0.316111;-0.244395; 1.259217;, + -0.316111;-0.244395; 2.334600;, + 0.292988;-0.244395; 2.334600;, + -0.316111;-0.244395; 1.259217;, + -0.316111; 0.271646; 1.259217;, + -0.316111; 0.271646; 2.334600;, + -0.316111;-0.244395; 2.334600;, + -0.316111; 0.271646; 1.259217;, + 0.292988; 0.271646; 1.259217;, + 0.292988; 0.271646; 2.334600;, + -0.316111; 0.271646; 2.334600;, + -0.316111; 0.271646; 1.259217;, + -0.316111;-0.244395; 1.259217;, + 0.292988;-0.244395; 1.259217;, + 0.292988; 0.271646; 1.259217;, + 0.292988; 0.271646; 2.334600;, + 0.292988;-0.244395; 2.334600;, + -0.316111;-0.244395; 2.334600;, + -0.316111; 0.271646; 2.334600;, + 0.302371; 0.292906; 0.936493;, + 0.298653; 0.217613; 0.936493;, + 0.298653; 0.217613; 1.431149;, + 0.302371; 0.292906; 1.431149;, + 0.298653; 0.217613; 0.936493;, + 0.087576; 0.217613; 0.936493;, + 0.087576; 0.217613; 1.431149;, + 0.298653; 0.217613; 1.431149;, + 0.087576; 0.217613; 0.936493;, + 0.091294; 0.292906; 0.936493;, + 0.091294; 0.292906; 1.431149;, + 0.087576; 0.217613; 1.431149;, + 0.091294; 0.292906; 0.936493;, + 0.302371; 0.292906; 0.936493;, + 0.302371; 0.292906; 1.431149;, + 0.091294; 0.292906; 1.431149;, + 0.091294; 0.292906; 0.936493;, + 0.087576; 0.217613; 0.936493;, + 0.298653; 0.217613; 0.936493;, + 0.302371; 0.292906; 0.936493;, + 0.302371; 0.292906; 1.431149;, + 0.298653; 0.217613; 1.431149;, + 0.087576; 0.217613; 1.431149;, + 0.091294; 0.292906; 1.431149;, + -0.102030; 0.292906; 0.936493;, + -0.099568; 0.217613; 0.936493;, + -0.099568; 0.217613; 1.431149;, + -0.102030; 0.292906; 1.431149;, + -0.099568; 0.217613; 0.936493;, + -0.316183; 0.217613; 0.936493;, + -0.316183; 0.217613; 1.431149;, + -0.099568; 0.217613; 1.431149;, + -0.316183; 0.217613; 0.936493;, + -0.318644; 0.292906; 0.936493;, + -0.318644; 0.292906; 1.431149;, + -0.316183; 0.217613; 1.431149;, + -0.318644; 0.292906; 0.936493;, + -0.102030; 0.292906; 0.936493;, + -0.102030; 0.292906; 1.431149;, + -0.318644; 0.292906; 1.431149;, + -0.318644; 0.292906; 0.936493;, + -0.316183; 0.217613; 0.936493;, + -0.099568; 0.217613; 0.936493;, + -0.102030; 0.292906; 0.936493;, + -0.102030; 0.292906; 1.431149;, + -0.099568; 0.217613; 1.431149;, + -0.316183; 0.217613; 1.431149;, + -0.318644; 0.292906; 1.431149;, + 0.149100; 0.327439; 0.771836;, + 0.149701; 0.252146; 0.771836;, + 0.149701; 0.252146; 1.438394;, + 0.149100; 0.327439; 1.438394;, + 0.149701; 0.252146; 0.771836;, + -0.168232; 0.252146; 0.771836;, + -0.168232; 0.252146; 1.438394;, + 0.149701; 0.252146; 1.438394;, + -0.168232; 0.252146; 0.771836;, + -0.168833; 0.327439; 0.771836;, + -0.168833; 0.327439; 1.438394;, + -0.168232; 0.252146; 1.438394;, + -0.168833; 0.327439; 0.771836;, + 0.149100; 0.327439; 0.771836;, + 0.149100; 0.327439; 1.438394;, + -0.168833; 0.327439; 1.438394;, + -0.168833; 0.327439; 0.771836;, + -0.168232; 0.252146; 0.771836;, + 0.149701; 0.252146; 0.771836;, + 0.149100; 0.327439; 0.771836;, + 0.149100; 0.327439; 1.438394;, + 0.149701; 0.252146; 1.438394;, + -0.168232; 0.252146; 1.438394;, + -0.168833; 0.327439; 1.438394;, + 0.103285;-0.086578;-0.135133;, + 0.103285; 0.101043;-0.135133;, + 0.103285; 0.101043; 1.222760;, + 0.103285;-0.086578; 1.222760;, + 0.103285; 0.101043;-0.135133;, + 0.289383; 0.101043;-0.135133;, + 0.289383; 0.101043; 1.222760;, + 0.103285; 0.101043; 1.222760;, + 0.289383; 0.101043;-0.135133;, + 0.289383;-0.086578;-0.135133;, + 0.289383;-0.086578; 1.222760;, + 0.289383; 0.101043; 1.222760;, + 0.289383;-0.086578;-0.135133;, + 0.103285;-0.086578;-0.135133;, + 0.103285;-0.086578; 1.222760;, + 0.289383;-0.086578; 1.222760;, + 0.289383;-0.086578;-0.135133;, + 0.289383; 0.101043;-0.135133;, + 0.103285; 0.101043;-0.135133;, + 0.103285;-0.086578;-0.135133;, + 0.103285;-0.086578; 1.222760;, + 0.103285; 0.101043; 1.222760;, + 0.289383; 0.101043; 1.222760;, + 0.289383;-0.086578; 1.222760;, + -0.095249; 0.107436;-0.115250;, + -0.095249;-0.080185;-0.115250;, + -0.095249;-0.080185; 1.242642;, + -0.095249; 0.107436; 1.242642;, + -0.095249;-0.080185;-0.115250;, + -0.281348;-0.080185;-0.115250;, + -0.281348;-0.080185; 1.242642;, + -0.095249;-0.080185; 1.242642;, + -0.281348;-0.080185;-0.115250;, + -0.281348; 0.107436;-0.115250;, + -0.281348; 0.107436; 1.242642;, + -0.281348;-0.080185; 1.242642;, + -0.281348; 0.107436;-0.115250;, + -0.095249; 0.107436;-0.115250;, + -0.095249; 0.107436; 1.242642;, + -0.281348; 0.107436; 1.242642;, + -0.281348; 0.107436;-0.115250;, + -0.281348;-0.080185;-0.115250;, + -0.095249;-0.080185;-0.115250;, + -0.095249; 0.107436;-0.115250;, + -0.095249; 0.107436; 1.242642;, + -0.095249;-0.080185; 1.242642;, + -0.281348;-0.080185; 1.242642;, + -0.281348; 0.107436; 1.242642;, + 0.038491;-0.113120; 2.301639;, + 0.038491;-0.214044; 2.301639;, + 0.038491;-0.214044; 2.635183;, + 0.038491;-0.113120; 2.635183;, + 0.038491;-0.214044; 2.301639;, + -0.061613;-0.214044; 2.301639;, + -0.061613;-0.214044; 2.635183;, + 0.038491;-0.214044; 2.635183;, + -0.061613;-0.214044; 2.301639;, + -0.061614;-0.113120; 2.301639;, + -0.061614;-0.113120; 2.635183;, + -0.061613;-0.214044; 2.635183;, + -0.061614;-0.113120; 2.301639;, + 0.038491;-0.113120; 2.301639;, + 0.038491;-0.113120; 2.635183;, + -0.061614;-0.113120; 2.635183;, + -0.061614;-0.113120; 2.301639;, + -0.061613;-0.214044; 2.301639;, + 0.038491;-0.214044; 2.301639;, + 0.038491;-0.113120; 2.301639;, + 0.038491;-0.113120; 2.635183;, + 0.038491;-0.214044; 2.635183;, + -0.061613;-0.214044; 2.635183;, + -0.061614;-0.113120; 2.635183;; + 83; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;; + MeshNormals { //Cube_000 Normals + 332; + -0.998783; 0.049315;-0.000000;, + -0.998783; 0.049315;-0.000000;, + -0.998783; 0.049315;-0.000000;, + -0.998783; 0.049315;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.998783;-0.049314; 0.000000;, + 0.998783;-0.049314; 0.000000;, + 0.998783;-0.049314; 0.000000;, + 0.998783;-0.049314; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.999466;-0.032675; 0.000000;, + -0.999466;-0.032675; 0.000000;, + -0.999466;-0.032675; 0.000000;, + -0.999466;-0.032675; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.999466; 0.032675; 0.000000;, + 0.999466; 0.032675; 0.000000;, + 0.999466; 0.032675; 0.000000;, + 0.999466; 0.032675; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.999968;-0.007979; 0.000000;, + -0.999968;-0.007979; 0.000000;, + -0.999968;-0.007979; 0.000000;, + -0.999968;-0.007979; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.999968; 0.007979; 0.000000;, + 0.999968; 0.007979; 0.000000;, + 0.999968; 0.007979; 0.000000;, + 0.999968; 0.007979; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.998783;-0.049314;-0.000000;, + 0.998783;-0.049314;-0.000000;, + 0.998783;-0.049314;-0.000000;, + 0.998783;-0.049314;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.998783; 0.049314; 0.000000;, + -0.998783; 0.049314; 0.000000;, + -0.998783; 0.049314; 0.000000;, + -0.998783; 0.049314; 0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.999466; 0.032676; 0.000000;, + 0.999466; 0.032676; 0.000000;, + 0.999466; 0.032676; 0.000000;, + 0.999466; 0.032676; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.999466;-0.032675; 0.000000;, + -0.999466;-0.032675; 0.000000;, + -0.999466;-0.032675; 0.000000;, + -0.999466;-0.032675; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.999968; 0.007979;-0.000000;, + 0.999968; 0.007979;-0.000000;, + 0.999968; 0.007979;-0.000000;, + 0.999968; 0.007979;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.999968;-0.007979; 0.000000;, + -0.999968;-0.007979; 0.000000;, + -0.999968;-0.007979; 0.000000;, + -0.999968;-0.007979; 0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;; + 83; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;; + } //End of Cube_000 Normals + MeshMaterialList { //Cube_000 Material List + 1; + 1; + 0;; + Material Default_Material { + 0.800000; 0.800000; 0.800000; 0.800000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Cube_000 Material List + MeshTextureCoords { //Cube_000 UV Coordinates + 332; + 0.750000; 0.812500;, + 0.734375; 0.812500;, + 0.734375; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.812500;, + 0.796875; 0.812500;, + 0.796875; 0.625000;, + 0.750000; 0.625000;, + 0.812500; 0.812500;, + 0.796875; 0.812500;, + 0.796875; 0.625000;, + 0.812500; 0.625000;, + 0.796875; 0.812500;, + 0.750000; 0.812500;, + 0.750000; 0.625000;, + 0.796875; 0.625000;, + 0.796875; 0.812500;, + 0.796875; 0.843750;, + 0.750000; 0.843750;, + 0.750000; 0.812500;, + 0.750000; 0.593750;, + 0.750000; 0.625000;, + 0.796875; 0.625000;, + 0.796875; 0.593750;, + 0.921875; 0.812500;, + 0.906250; 0.812500;, + 0.906250; 0.625000;, + 0.921875; 0.625000;, + 0.921875; 0.812500;, + 0.968750; 0.812500;, + 0.968750; 0.625000;, + 0.921875; 0.625000;, + 0.984375; 0.812500;, + 0.968750; 0.812500;, + 0.968750; 0.625000;, + 0.984375; 0.625000;, + 0.968750; 0.812500;, + 0.921875; 0.812500;, + 0.921875; 0.625000;, + 0.968750; 0.625000;, + 0.968750; 0.812500;, + 0.968750; 0.843750;, + 0.921875; 0.843750;, + 0.921875; 0.812500;, + 0.921875; 0.593750;, + 0.921875; 0.625000;, + 0.968750; 0.625000;, + 0.968750; 0.593750;, + 0.828125; 0.812500;, + 0.812500; 0.812500;, + 0.812500; 0.562500;, + 0.828125; 0.562500;, + 0.890625; 0.812500;, + 0.828125; 0.812500;, + 0.828125; 0.562500;, + 0.890625; 0.562500;, + 0.906250; 0.812500;, + 0.890625; 0.812500;, + 0.890625; 0.562500;, + 0.906250; 0.562500;, + 0.890625; 0.812500;, + 0.828125; 0.812500;, + 0.828125; 0.562500;, + 0.890625; 0.562500;, + 0.890625; 0.812500;, + 0.890625; 0.843750;, + 0.828125; 0.843750;, + 0.828125; 0.812500;, + 0.828125; 0.531250;, + 0.828125; 0.562500;, + 0.890625; 0.562500;, + 0.890625; 0.531250;, + 0.703125; 0.187500;, + 0.703125; 0.250000;, + 0.515625; 0.250000;, + 0.515625; 0.187500;, + 0.703125; 0.125000;, + 0.703125; 0.187500;, + 0.515625; 0.187500;, + 0.515625; 0.125000;, + 0.703125; 0.062500;, + 0.703125; 0.125000;, + 0.515625; 0.125000;, + 0.515625; 0.062500;, + 0.703125; 0.000000;, + 0.703125; 0.062500;, + 0.515625; 0.062500;, + 0.515625; 0.000000;, + 0.703125; 0.125000;, + 0.734375; 0.125000;, + 0.734375; 0.187500;, + 0.703125; 0.187500;, + 0.734375; 0.250000;, + 0.703125; 0.250000;, + 0.703125; 0.187500;, + 0.734375; 0.187500;, + 0.250000; 0.437500;, + 0.250000; 0.187500;, + 0.375000; 0.187500;, + 0.375000; 0.437500;, + 0.375000; 0.000000;, + 0.500000; 0.000000;, + 0.500000; 0.187500;, + 0.375000; 0.187500;, + 0.250000; 0.000000;, + 0.375000; 0.000000;, + 0.375000; 0.187500;, + 0.250000; 0.187500;, + 0.250000; 0.187500;, + 0.125000; 0.187500;, + 0.125000; 0.000000;, + 0.250000; 0.000000;, + 0.125000; 0.187500;, + 0.000000; 0.187500;, + 0.000000; 0.000000;, + 0.125000; 0.000000;, + 0.375000; 0.437500;, + 0.375000; 0.187500;, + 0.500000; 0.187500;, + 0.500000; 0.437500;, + 0.078125; 0.250000;, + 0.000000; 0.250000;, + 0.000000; 0.187500;, + 0.078125; 0.187500;, + 0.078125; 0.375000;, + 0.171875; 0.375000;, + 0.171875; 0.437500;, + 0.078125; 0.437500;, + 0.250000; 0.250000;, + 0.171875; 0.250000;, + 0.171875; 0.187500;, + 0.250000; 0.187500;, + 0.171875; 0.250000;, + 0.078125; 0.250000;, + 0.078125; 0.187500;, + 0.171875; 0.187500;, + 0.078125; 0.250000;, + 0.171875; 0.250000;, + 0.171875; 0.375000;, + 0.078125; 0.375000;, + 0.734375; 0.250000;, + 0.734375; 0.187500;, + 0.921875; 0.187500;, + 0.921875; 0.250000;, + 0.734375; 0.062500;, + 0.734375; 0.000000;, + 0.921875; 0.000000;, + 0.921875; 0.062500;, + 0.734375; 0.125000;, + 0.734375; 0.062500;, + 0.921875; 0.062500;, + 0.921875; 0.125000;, + 0.734375; 0.187500;, + 0.734375; 0.125000;, + 0.921875; 0.125000;, + 0.921875; 0.187500;, + 0.734375; 0.062500;, + 0.703125; 0.062500;, + 0.703125; 0.000000;, + 0.734375; 0.000000;, + 0.703125; 0.062500;, + 0.734375; 0.062500;, + 0.734375; 0.125000;, + 0.703125; 0.125000;, + 0.109375; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 0.625000;, + 0.109375; 0.625000;, + 0.234375; 1.000000;, + 0.109375; 1.000000;, + 0.109375; 0.625000;, + 0.234375; 0.625000;, + 0.234375; 1.000000;, + 0.343750; 1.000000;, + 0.343750; 0.625000;, + 0.234375; 0.625000;, + 0.468750; 1.000000;, + 0.343750; 1.000000;, + 0.343750; 0.625000;, + 0.468750; 0.625000;, + 0.468750; 0.437500;, + 0.468750; 0.625000;, + 0.343750; 0.625000;, + 0.343750; 0.437500;, + 0.109375; 0.625000;, + 0.109375; 0.437500;, + 0.234375; 0.437500;, + 0.234375; 0.625000;, + 0.500000; 0.812500;, + 0.484375; 0.812500;, + 0.484375; 0.625000;, + 0.500000; 0.625000;, + 0.500000; 0.812500;, + 0.546875; 0.812500;, + 0.546875; 0.625000;, + 0.500000; 0.625000;, + 0.562500; 0.812500;, + 0.546875; 0.812500;, + 0.546875; 0.625000;, + 0.562500; 0.625000;, + 0.546875; 0.812500;, + 0.500000; 0.812500;, + 0.500000; 0.625000;, + 0.546875; 0.625000;, + 0.546875; 0.843750;, + 0.546875; 0.812500;, + 0.500000; 0.812500;, + 0.500000; 0.843750;, + 0.500000; 0.625000;, + 0.500000; 0.593750;, + 0.546875; 0.593750;, + 0.546875; 0.625000;, + 0.671875; 0.812500;, + 0.656250; 0.812500;, + 0.656250; 0.625000;, + 0.671875; 0.625000;, + 0.671875; 0.812500;, + 0.718750; 0.812500;, + 0.718750; 0.625000;, + 0.671875; 0.625000;, + 0.734375; 0.812500;, + 0.718750; 0.812500;, + 0.718750; 0.625000;, + 0.734375; 0.625000;, + 0.718750; 0.812500;, + 0.671875; 0.812500;, + 0.671875; 0.625000;, + 0.718750; 0.625000;, + 0.718750; 0.843750;, + 0.718750; 0.812500;, + 0.671875; 0.812500;, + 0.671875; 0.843750;, + 0.671875; 0.625000;, + 0.671875; 0.593750;, + 0.718750; 0.593750;, + 0.718750; 0.625000;, + 0.578125; 0.812500;, + 0.562500; 0.812500;, + 0.562500; 0.562500;, + 0.578125; 0.562500;, + 0.640625; 0.812500;, + 0.578125; 0.812500;, + 0.578125; 0.562500;, + 0.640625; 0.562500;, + 0.656250; 0.812500;, + 0.640625; 0.812500;, + 0.640625; 0.562500;, + 0.656250; 0.562500;, + 0.640625; 0.812500;, + 0.578125; 0.812500;, + 0.578125; 0.562500;, + 0.640625; 0.562500;, + 0.640625; 0.843750;, + 0.640625; 0.812500;, + 0.578125; 0.812500;, + 0.578125; 0.843750;, + 0.578125; 0.562500;, + 0.578125; 0.531250;, + 0.640625; 0.531250;, + 0.640625; 0.562500;, + 0.703125; 0.437500;, + 0.703125; 0.500000;, + 0.515625; 0.500000;, + 0.515625; 0.437500;, + 0.703125; 0.375000;, + 0.703125; 0.437500;, + 0.515625; 0.437500;, + 0.515625; 0.375000;, + 0.703125; 0.312500;, + 0.703125; 0.375000;, + 0.515625; 0.375000;, + 0.515625; 0.312500;, + 0.703125; 0.250000;, + 0.703125; 0.312500;, + 0.515625; 0.312500;, + 0.515625; 0.250000;, + 0.734375; 0.312500;, + 0.734375; 0.375000;, + 0.703125; 0.375000;, + 0.703125; 0.312500;, + 0.703125; 0.312500;, + 0.703125; 0.250000;, + 0.734375; 0.250000;, + 0.734375; 0.312500;, + 0.734375; 0.312500;, + 0.734375; 0.250000;, + 0.921875; 0.250000;, + 0.921875; 0.312500;, + 0.734375; 0.500000;, + 0.734375; 0.437500;, + 0.921875; 0.437500;, + 0.921875; 0.500000;, + 0.734375; 0.437500;, + 0.734375; 0.375000;, + 0.921875; 0.375000;, + 0.921875; 0.437500;, + 0.734375; 0.375000;, + 0.734375; 0.312500;, + 0.921875; 0.312500;, + 0.921875; 0.375000;, + 0.734375; 0.437500;, + 0.734375; 0.500000;, + 0.703125; 0.500000;, + 0.703125; 0.437500;, + 0.703125; 0.437500;, + 0.703125; 0.375000;, + 0.734375; 0.375000;, + 0.734375; 0.437500;, + 0.046875; 0.250000;, + 0.062500; 0.250000;, + 0.062500; 0.375000;, + 0.046875; 0.375000;, + 0.031250; 0.250000;, + 0.046875; 0.250000;, + 0.046875; 0.375000;, + 0.031250; 0.375000;, + 0.015625; 0.250000;, + 0.031250; 0.250000;, + 0.031250; 0.375000;, + 0.015625; 0.375000;, + 0.000000; 0.250000;, + 0.015625; 0.250000;, + 0.015625; 0.375000;, + 0.000000; 0.375000;, + 0.062500; 0.281250;, + 0.062500; 0.250000;, + 0.078125; 0.250000;, + 0.078125; 0.281250;, + 0.078125; 0.281250;, + 0.078125; 0.312500;, + 0.062500; 0.312500;, + 0.062500; 0.281250;; + } //End of Cube_000 UV Coordinates + XSkinMeshHeader { + 2; + 6; + 10; + } + SkinWeights { + "Armature_Body"; + 168; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259; + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000001, + 0.000000, + 0.000134, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000134, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000134, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 0.746845, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-0.740784, 0.000000, + 0.000000, 0.740784, 0.000000, 0.000000, + -0.000000,-0.856282,-0.000000, 1.000000;; + } //End of Armature_Body Skin Weights + SkinWeights { + "Armature_Bone_001"; + 24; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95; + 1.000000, + 0.999144, + 0.999987, + 1.000000, + 0.999144, + 1.000000, + 1.000000, + 0.999987, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999144, + 1.000000, + 1.000000, + 0.999987, + 1.000000, + 1.000000; + 0.743658, 0.068922,-0.000000, 0.000000, + 0.000000, 0.000000, 0.740784, 0.000000, + 0.068363,-0.737623, 0.000000, 0.000000, + -0.377741, 1.628371,-0.000000, 1.000000;; + } //End of Armature_Bone_001 Skin Weights + SkinWeights { + "Armature_Bone_002"; + 48; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163; + 0.000000, + 0.000856, + 0.000013, + 0.000000, + 0.000856, + 0.000000, + 0.000000, + 0.000013, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000856, + 0.000000, + 0.000000, + 0.000013, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.743577,-0.069792,-0.000000, 0.000000, + 0.000000, 0.000000, 0.740784, 0.000000, + -0.069226,-0.737543, 0.000000, 0.000000, + 0.392568, 1.626715,-0.000001, 1.000000;; + } //End of Armature_Bone_002 Skin Weights + SkinWeights { + "Armature_Bone_003"; + 24; + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.746845,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.740784, 0.000000, + -0.000000,-0.740784, 0.000000, 0.000000, + 0.144872, 0.917795,-0.000000, 1.000000;; + } //End of Armature_Bone_003 Skin Weights + SkinWeights { + "Armature_Bone_004"; + 24; + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.746845,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.740784, 0.000000, + -0.000000,-0.740784, 0.000000, 0.000000, + -0.135397, 0.926692,-0.000000, 1.000000;; + } //End of Armature_Bone_004 Skin Weights + SkinWeights { + "Armature_Bone_005"; + 39; + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 131, + 133, + 134, + 137, + 138, + 139, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331; + 0.088015, + 0.374496, + 0.207032, + 0.066484, + 0.374496, + 0.074593, + 0.049815, + 0.207032, + 0.074593, + 0.049815, + 0.088015, + 0.066484, + 0.074593, + 0.374496, + 0.088015, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.746845, 0.000000, 0.000000, 0.000000, + 0.000000, 0.005159,-0.740766, 0.000000, + -0.000000, 0.740766, 0.005159, 0.000000, + 0.002514,-1.721402,-0.134493, 1.000000;; + } //End of Armature_Bone_005 Skin Weights + SkinWeights { + "Armature_Body_001"; + 72; + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259; + 0.999999, + 1.000000, + 0.999866, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999866, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 1.000000, + 0.999866, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.746845,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.740784, 0.000000, + 0.000000,-0.740784, 0.000000, 0.000000, + -0.000000, 1.044227,-0.206990, 1.000000;; + } //End of Armature_Body_001 Skin Weights + SkinWeights { + "Armature_Body_002"; + 72; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 1.000000, + 1.000000, + 1.000000; + 0.746845, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 0.740784, 0.000000, + -0.000000,-0.740784, 0.000000, 0.000000, + -0.000000, 1.042009, 0.203380, 1.000000;; + } //End of Armature_Body_002 Skin Weights + SkinWeights { + "Armature_Bone_006"; + 24; + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.075705, 0.000000, 0.742998, 0.000000, + -0.000000, 0.740784,-0.000000, 0.000000, + -0.736968, 0.000000, 0.075091, 0.000000, + 2.018875, 0.120365,-0.203181, 1.000000;; + } //End of Armature_Bone_006 Skin Weights + SkinWeights { + "Armature_Bone_007"; + 20; + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139; + 0.911985, + 0.625504, + 0.792968, + 0.933516, + 0.625504, + 0.925407, + 0.950185, + 0.792968, + 0.925407, + 1.000000, + 1.000000, + 0.950185, + 1.000000, + 0.911985, + 0.933516, + 1.000000, + 1.000000, + 0.925407, + 0.625504, + 0.911985; + 0.746845, 0.000000,-0.000001, 0.000000, + -0.000000, 0.606815, 0.424897, 0.000000, + 0.000001,-0.424897, 0.606815, 0.000000, + 0.002511, 1.147970,-1.577121, 1.000000;; + } //End of Armature_Bone_007 Skin Weights + } //End of Cube_000 Mesh + } //End of Sand_monster + } //End of Armature +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 108; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Root} + AnimationKey { //Position + 2; + 108; + 0;3; 0.000000, 0.000000, 0.001246;;, + 1;3; 0.000000, 0.000000, 0.001246;;, + 2;3; 0.000000, 0.000000, 0.001246;;, + 3;3; 0.000000, 0.000000, 0.001246;;, + 4;3; 0.000000, 0.000000, 0.001246;;, + 5;3; 0.000000, 0.000000, 0.001246;;, + 6;3; 0.000000, 0.000000, 0.001246;;, + 7;3; 0.000000, 0.000000, 0.001246;;, + 8;3; 0.000000, 0.000000, 0.001246;;, + 9;3; 0.000000, 0.000000, 0.001246;;, + 10;3; 0.000000, 0.000000, 0.001246;;, + 11;3; 0.000000, 0.000000, 0.001246;;, + 12;3; 0.000000, 0.000000, 0.001246;;, + 13;3; 0.000000, 0.000000, 0.001246;;, + 14;3; 0.000000, 0.000000, 0.001246;;, + 15;3; 0.000000, 0.000000, 0.001246;;, + 16;3; 0.000000, 0.000000, 0.001246;;, + 17;3; 0.000000, 0.000000, 0.001246;;, + 18;3; 0.000000, 0.000000, 0.001246;;, + 19;3; 0.000000, 0.000000, 0.001246;;, + 20;3; 0.000000, 0.000000, 0.001246;;, + 21;3; 0.000000, 0.000000, 0.001246;;, + 22;3; 0.000000, 0.000000, 0.001246;;, + 23;3; 0.000000, 0.000000, 0.001246;;, + 24;3; 0.000000, 0.000000, 0.001246;;, + 25;3; 0.000000, 0.000000, 0.001246;;, + 26;3; 0.000000, 0.000000, 0.001246;;, + 27;3; 0.000000, 0.000000, 0.001246;;, + 28;3; 0.000000, 0.000000, 0.001246;;, + 29;3; 0.000000, 0.000000, 0.001246;;, + 30;3; 0.000000, 0.000000, 0.001246;;, + 31;3; 0.000000, 0.000000, 0.001246;;, + 32;3; 0.000000, 0.000000, 0.001246;;, + 33;3; 0.000000, 0.000000, 0.001246;;, + 34;3; 0.000000, 0.000000, 0.001246;;, + 35;3; 0.000000, 0.000000, 0.001246;;, + 36;3; 0.000000, 0.000000, 0.001246;;, + 37;3; 0.000000, 0.000000, 0.001246;;, + 38;3; 0.000000, 0.000000, 0.001246;;, + 39;3; 0.000000, 0.000000, 0.001246;;, + 40;3; 0.000000, 0.000000, 0.001246;;, + 41;3; 0.000000, 0.000000, 0.001246;;, + 42;3; 0.000000, 0.000000, 0.001246;;, + 43;3; 0.000000, 0.000000, 0.001246;;, + 44;3; 0.000000, 0.000000, 0.001246;;, + 45;3; 0.000000, 0.000000, 0.001246;;, + 46;3; 0.000000, 0.000000, 0.001246;;, + 47;3; 0.000000, 0.000000, 0.001246;;, + 48;3; 0.000000, 0.000000, 0.001246;;, + 49;3; 0.000000, 0.000000, 0.001246;;, + 50;3; 0.000000, 0.000000, 0.001246;;, + 51;3; 0.000000, 0.000000, 0.001246;;, + 52;3; 0.000000, 0.000000, 0.001246;;, + 53;3; 0.000000, 0.000000, 0.001246;;, + 54;3; 0.000000, 0.000000, 0.001246;;, + 55;3; 0.000000, 0.000000, 0.001246;;, + 56;3; 0.000000, 0.000000, 0.001246;;, + 57;3; 0.000000, 0.000000, 0.001246;;, + 58;3; 0.000000, 0.000000, 0.001246;;, + 59;3; 0.000000, 0.000000, 0.001246;;, + 60;3; 0.000000, 0.000000, 0.001246;;, + 61;3; 0.000000, 0.000000, 0.001246;;, + 62;3; 0.000000, 0.000000, 0.001246;;, + 63;3; 0.000000, 0.000000, 0.001246;;, + 64;3; 0.000000, 0.000000, 0.001246;;, + 65;3; 0.000000, 0.000000, 0.001246;;, + 66;3; 0.000000, 0.000000, 0.001246;;, + 67;3; 0.000000, 0.000000, 0.001246;;, + 68;3; 0.000000, 0.000000, 0.001246;;, + 69;3; 0.000000, 0.000000, 0.001246;;, + 70;3; 0.000000, 0.000000, 0.001246;;, + 71;3; 0.000000, 0.000000, 0.001246;;, + 72;3; 0.000000, 0.000000, 0.001246;;, + 73;3; 0.000000, 0.000000, 0.001246;;, + 74;3; 0.000000, 0.000000, 0.001246;;, + 75;3; 0.000000,-0.000000,-0.008573;;, + 76;3; 0.000000,-0.000000,-0.037880;;, + 77;3; 0.000000,-0.000000,-0.084018;;, + 78;3; 0.000000,-0.000000,-0.140222;;, + 79;3; 0.000000,-0.000000,-0.196425;;, + 80;3; 0.000000,-0.000000,-0.242563;;, + 81;3; 0.000000,-0.000000,-0.271870;;, + 82;3; 0.000000,-0.000000,-0.281689;;, + 83;3; 0.000000,-0.000000,-0.271870;;, + 84;3; 0.000000,-0.000000,-0.242563;;, + 85;3; 0.000000,-0.000000,-0.196425;;, + 86;3; 0.000000,-0.000000,-0.140222;;, + 87;3; 0.000000,-0.000000,-0.084018;;, + 88;3; 0.000000,-0.000000,-0.037880;;, + 89;3; 0.000000,-0.000000,-0.008573;;, + 90;3; 0.000000,-0.000000, 0.001246;;, + 91;3; 0.000000,-0.000000,-0.008567;;, + 92;3; 0.000000,-0.000000,-0.037842;;, + 93;3; 0.000000,-0.000000,-0.083914;;, + 94;3; 0.000000,-0.000000,-0.140052;;, + 95;3; 0.000000,-0.000000,-0.196244;;, + 96;3; 0.000000,-0.000000,-0.242440;;, + 97;3; 0.000000,-0.000000,-0.271830;;, + 98;3; 0.000000,-0.000000,-0.281689;;, + 99;3; 0.000000,-0.000000,-0.271755;;, + 100;3; 0.000000,-0.000000,-0.241887;;, + 101;3; 0.000000,-0.000000,-0.194722;;, + 102;3; 0.000000,-0.000000,-0.137587;;, + 103;3; 0.000000,-0.000000,-0.081320;;, + 104;3; 0.000000,-0.000000,-0.036105;;, + 105;3; 0.000000,-0.000000,-0.008005;;, + 106;3; 0.000000, 0.000000, 0.001246;;, + 107;3; 0.000000, 0.000000, 0.001246;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 2;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 3;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 4;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 5;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 6;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 7;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 9;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 10;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 11;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 12;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 13;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 14;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 16;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 17;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 18;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 19;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 20;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 21;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 22;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 23;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 24;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 25;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 26;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 27;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 28;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 29;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 30;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 31;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 32;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 33;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 34;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 35;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 36;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 37;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 38;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 39;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 40;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 42;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 43;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 44;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 45;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 46;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 47;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 48;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 49;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 50;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 51;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 52;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 53;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 54;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 55;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 56;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 57;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 58;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 59;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 60;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 61;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 62;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 63;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 64;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 65;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 66;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 67;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 68;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 69;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 70;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 71;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 72;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 73;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 74;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 75;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 76;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 77;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 78;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 79;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 80;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 81;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 82;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 83;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 84;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 85;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 86;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 87;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 88;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 89;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 90;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 91;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 92;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 93;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 94;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 95;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 96;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 97;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 98;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 99;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 100;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 101;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 102;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 103;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 104;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 105;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 106;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 107;4; -0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_IK_Right_Leg} + AnimationKey { //Position + 2; + 108; + 0;3; 0.135398, 0.015523, 0.000000;;, + 1;3; 0.135398, 0.015523, 0.000000;;, + 2;3; 0.135398, 0.015523, 0.000000;;, + 3;3; 0.135398, 0.015523, 0.000000;;, + 4;3; 0.135398, 0.015523, 0.000000;;, + 5;3; 0.135398, 0.015523, 0.000000;;, + 6;3; 0.135398, 0.015523, 0.000000;;, + 7;3; 0.135398, 0.015523, 0.000000;;, + 8;3; 0.135398, 0.015523, 0.000000;;, + 9;3; 0.135398, 0.015523, 0.000000;;, + 10;3; 0.135398, 0.015523, 0.000000;;, + 11;3; 0.135398, 0.015523, 0.000000;;, + 12;3; 0.135398, 0.015523, 0.000000;;, + 13;3; 0.135398, 0.015523, 0.000000;;, + 14;3; 0.135398, 0.015523, 0.000000;;, + 15;3; 0.135398, 0.015523, 0.000000;;, + 16;3; 0.135398, 0.015523, 0.000000;;, + 17;3; 0.135398, 0.015523, 0.000000;;, + 18;3; 0.135398, 0.015523, 0.000000;;, + 19;3; 0.135398, 0.015523, 0.000000;;, + 20;3; 0.135398, 0.015523, 0.000000;;, + 21;3; 0.135398, 0.015523, 0.000000;;, + 22;3; 0.135398, 0.015523, 0.000000;;, + 23;3; 0.135398, 0.015523, 0.000000;;, + 24;3; 0.135398, 0.015523, 0.000000;;, + 25;3; 0.135398, 0.015523, 0.000000;;, + 26;3; 0.135398, 0.015523, 0.000000;;, + 27;3; 0.135398, 0.015523, 0.000000;;, + 28;3; 0.135398, 0.015523, 0.000000;;, + 29;3; 0.135398, 0.015523, 0.000000;;, + 30;3; 0.135398, 0.015523, 0.000000;;, + 31;3; 0.135398, 0.015523, 0.000000;;, + 32;3; 0.135398, 0.015523, 0.000000;;, + 33;3; 0.135398, 0.015523, 0.000000;;, + 34;3; 0.135398, 0.015523, 0.000000;;, + 35;3; 0.135398, 0.015523, 0.000000;;, + 36;3; 0.135398, 0.015523, 0.000000;;, + 37;3; 0.135398, 0.015523, 0.000000;;, + 38;3; 0.135398, 0.015523, 0.000000;;, + 39;3; 0.135398, 0.015523, 0.000000;;, + 40;3; 0.135398, 0.015523, 0.000000;;, + 41;3; 0.135398, 0.015523, 0.000000;;, + 42;3; 0.135398, 0.015523, 0.087189;;, + 43;3; 0.135398, 0.015523, 0.162188;;, + 44;3; 0.135398, 0.015523, 0.222434;;, + 45;3; 0.135398, 0.015523, 0.266237;;, + 46;3; 0.135398, 0.015523, 0.293922;;, + 47;3; 0.135398, 0.015523, 0.308311;;, + 48;3; 0.135398, 0.015523, 0.313815;;, + 49;3; 0.135398, 0.015523, 0.314835;;, + 50;3; 0.135398, 0.015523, 0.309148;;, + 51;3; 0.135398, 0.015523, 0.290771;;, + 52;3; 0.135398, 0.015523, 0.258454;;, + 53;3; 0.135398, 0.015523, 0.213080;;, + 54;3; 0.135398, 0.015523, 0.158686;;, + 55;3; 0.135398, 0.015523, 0.101401;;, + 56;3; 0.135398, 0.015523, 0.046755;;, + 57;3; 0.135398, 0.015523,-0.001999;;, + 58;3; 0.135398, 0.015523,-0.051857;;, + 59;3; 0.135398, 0.015523,-0.106460;;, + 60;3; 0.135398, 0.015523,-0.154925;;, + 61;3; 0.135398, 0.015523,-0.206693;;, + 62;3; 0.135398, 0.015523,-0.268486;;, + 63;3; 0.135398, 0.015523,-0.311509;;, + 64;3; 0.135398, 0.015523,-0.330121;;, + 65;3; 0.135398, 0.015523,-0.334719;;, + 66;3; 0.135398, 0.015523,-0.332228;;, + 67;3; 0.135398, 0.015523,-0.322988;;, + 68;3; 0.135398, 0.015523,-0.303845;;, + 69;3; 0.135398, 0.015523,-0.271522;;, + 70;3; 0.135398, 0.015523,-0.223860;;, + 71;3; 0.135398, 0.015523,-0.160993;;, + 72;3; 0.135398, 0.015523,-0.085268;;, + 73;3; 0.135398, 0.015523, 0.000000;;, + 74;3; 0.135398, 0.015523, 0.000000;;, + 75;3; 0.135398, 0.021308, 0.095588;;, + 76;3; 0.135398, 0.038571, 0.206502;;, + 77;3; 0.135398, 0.065746, 0.326063;;, + 78;3; 0.135398, 0.098852, 0.443345;;, + 79;3; 0.135398, 0.131970, 0.545509;;, + 80;3; 0.135398, 0.159170, 0.622083;;, + 81;3; 0.135398, 0.176457, 0.667861;;, + 82;3; 0.135398, 0.182252, 0.682612;;, + 83;3; 0.135398, 0.181203, 0.666972;;, + 84;3; 0.135398, 0.177911, 0.618550;;, + 85;3; 0.135398, 0.172332, 0.537822;;, + 86;3; 0.135398, 0.164785, 0.430589;;, + 87;3; 0.135398, 0.155990, 0.308211;;, + 88;3; 0.135398, 0.146856, 0.184430;;, + 89;3; 0.135398, 0.138160, 0.070810;;, + 90;3; 0.135398, 0.130378,-0.025691;;, + 91;3; 0.135398, 0.122923,-0.121019;;, + 92;3; 0.135398, 0.115040,-0.231131;;, + 93;3; 0.135398, 0.106791,-0.349520;;, + 94;3; 0.135398, 0.098329,-0.465728;;, + 95;3; 0.135398, 0.089877,-0.567400;;, + 96;3; 0.135398, 0.081658,-0.644145;;, + 97;3; 0.135398, 0.073821,-0.690390;;, + 98;3; 0.135398, 0.066422,-0.705393;;, + 99;3; 0.135398, 0.058693,-0.689356;;, + 100;3; 0.135398, 0.050027,-0.639602;;, + 101;3; 0.135398, 0.040924,-0.556855;;, + 102;3; 0.135398, 0.032220,-0.447937;;, + 103;3; 0.135398, 0.024869,-0.325462;;, + 104;3; 0.135398, 0.019552,-0.203592;;, + 105;3; 0.135398, 0.016483,-0.093171;;, + 106;3; 0.135398, 0.015523, 0.000000;;, + 107;3; 0.152259, 0.021305, 0.053347;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 81;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 82;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 83;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 84;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 85;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 86;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 87;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 88;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 89;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 90;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 91;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 92;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 93;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 94;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 95;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 96;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 97;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 98;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 99;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 100;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 101;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 102;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 103;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 104;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 105;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 106;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 107;4; -0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_IK_Left_Leg} + AnimationKey { //Position + 2; + 108; + 0;3; -0.148583, 0.015523, 0.000000;;, + 1;3; -0.148583, 0.015523, 0.000000;;, + 2;3; -0.148583, 0.015523, 0.000000;;, + 3;3; -0.148583, 0.015523, 0.000000;;, + 4;3; -0.148583, 0.015523, 0.000000;;, + 5;3; -0.148583, 0.015523, 0.000000;;, + 6;3; -0.148583, 0.015523, 0.000000;;, + 7;3; -0.148583, 0.015523, 0.000000;;, + 8;3; -0.148583, 0.015523, 0.000000;;, + 9;3; -0.148583, 0.015523, 0.000000;;, + 10;3; -0.148583, 0.015523, 0.000000;;, + 11;3; -0.148583, 0.015523, 0.000000;;, + 12;3; -0.148583, 0.015523, 0.000000;;, + 13;3; -0.148583, 0.015523, 0.000000;;, + 14;3; -0.148583, 0.015523, 0.000000;;, + 15;3; -0.148583, 0.015523, 0.000000;;, + 16;3; -0.148583, 0.015523, 0.000000;;, + 17;3; -0.148583, 0.015523, 0.000000;;, + 18;3; -0.148583, 0.015523, 0.000000;;, + 19;3; -0.148583, 0.015523, 0.000000;;, + 20;3; -0.148583, 0.015523, 0.000000;;, + 21;3; -0.148583, 0.015523, 0.000000;;, + 22;3; -0.148583, 0.015523, 0.000000;;, + 23;3; -0.148583, 0.015523, 0.000000;;, + 24;3; -0.148583, 0.015523, 0.000000;;, + 25;3; -0.148583, 0.015523, 0.000000;;, + 26;3; -0.148583, 0.015523, 0.000000;;, + 27;3; -0.148583, 0.015523, 0.000000;;, + 28;3; -0.148583, 0.015523, 0.000000;;, + 29;3; -0.148583, 0.015523, 0.000000;;, + 30;3; -0.148583, 0.015523, 0.000000;;, + 31;3; -0.148583, 0.015523, 0.000000;;, + 32;3; -0.148583, 0.015523, 0.000000;;, + 33;3; -0.148583, 0.015523, 0.000000;;, + 34;3; -0.148583, 0.015523, 0.000000;;, + 35;3; -0.148583, 0.015523, 0.000000;;, + 36;3; -0.148583, 0.015523, 0.000000;;, + 37;3; -0.148583, 0.015523, 0.000000;;, + 38;3; -0.148583, 0.015523, 0.000000;;, + 39;3; -0.148583, 0.015523, 0.000000;;, + 40;3; -0.148583, 0.015523, 0.000000;;, + 41;3; -0.148583, 0.015523, 0.000000;;, + 42;3; -0.148583, 0.015523,-0.090308;;, + 43;3; -0.148583, 0.015523,-0.169272;;, + 44;3; -0.148583, 0.015523,-0.234146;;, + 45;3; -0.148583, 0.015523,-0.282853;;, + 46;3; -0.148583, 0.015523,-0.315143;;, + 47;3; -0.148583, 0.015523,-0.333217;;, + 48;3; -0.148583, 0.015523,-0.341039;;, + 49;3; -0.148583, 0.015523,-0.342830;;, + 50;3; -0.148583, 0.015523,-0.336980;;, + 51;3; -0.148583, 0.015523,-0.318078;;, + 52;3; -0.148583, 0.015523,-0.284836;;, + 53;3; -0.148583, 0.015523,-0.238166;;, + 54;3; -0.148583, 0.015523,-0.182217;;, + 55;3; -0.148583, 0.015523,-0.123293;;, + 56;3; -0.148583, 0.015523,-0.067082;;, + 57;3; -0.148583, 0.015523,-0.016933;;, + 58;3; -0.148583, 0.015523, 0.034348;;, + 59;3; -0.148583, 0.015523, 0.090509;;, + 60;3; -0.148583, 0.015523, 0.140371;;, + 61;3; -0.148583, 0.015523, 0.193625;;, + 62;3; -0.148583, 0.015523, 0.257180;;, + 63;3; -0.148583, 0.015523, 0.301524;;, + 64;3; -0.148583, 0.015523, 0.320745;;, + 65;3; -0.148583, 0.015523, 0.325497;;, + 66;3; -0.148583, 0.015523, 0.323525;;, + 67;3; -0.148583, 0.015523, 0.315809;;, + 68;3; -0.148583, 0.015523, 0.299009;;, + 69;3; -0.148583, 0.015523, 0.269414;;, + 70;3; -0.148583, 0.015523, 0.224199;;, + 71;3; -0.148583, 0.015523, 0.162782;;, + 72;3; -0.148583, 0.015523, 0.087006;;, + 73;3; -0.148583, 0.015523, 0.000000;;, + 74;3; -0.148583, 0.015523, 0.000000;;, + 75;3; -0.148583, 0.019677,-0.099088;;, + 76;3; -0.148583, 0.032074,-0.215379;;, + 77;3; -0.148583, 0.051589,-0.341752;;, + 78;3; -0.148583, 0.075362,-0.466453;;, + 79;3; -0.148583, 0.099140,-0.575568;;, + 80;3; -0.148583, 0.118665,-0.657638;;, + 81;3; -0.148583, 0.131070,-0.706840;;, + 82;3; -0.148583, 0.135227,-0.722727;;, + 83;3; -0.148583, 0.134475,-0.707252;;, + 84;3; -0.148583, 0.132113,-0.659277;;, + 85;3; -0.148583, 0.128109,-0.579134;;, + 86;3; -0.148583, 0.122691,-0.472371;;, + 87;3; -0.148583, 0.116377,-0.350035;;, + 88;3; -0.148583, 0.109818,-0.225621;;, + 89;3; -0.148583, 0.103574,-0.110588;;, + 90;3; -0.148583, 0.097987,-0.011924;;, + 91;3; -0.148583, 0.092634, 0.086791;;, + 92;3; -0.148583, 0.086975, 0.201930;;, + 93;3; -0.148583, 0.081052, 0.326595;;, + 94;3; -0.148583, 0.074976, 0.449630;;, + 95;3; -0.148583, 0.068908, 0.557766;;, + 96;3; -0.148583, 0.063007, 0.639718;;, + 97;3; -0.148583, 0.057380, 0.689273;;, + 98;3; -0.148583, 0.052068, 0.705393;;, + 99;3; -0.148583, 0.046518, 0.689573;;, + 100;3; -0.148583, 0.040296, 0.640453;;, + 101;3; -0.148583, 0.033760, 0.558641;;, + 102;3; -0.148583, 0.027511, 0.450678;;, + 103;3; -0.148583, 0.022233, 0.328767;;, + 104;3; -0.148583, 0.018415, 0.206706;;, + 105;3; -0.148583, 0.016213, 0.095177;;, + 106;3; -0.148583, 0.015523, 0.000000;;, + 107;3; -0.156161, 0.012832,-0.060350;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 81;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 82;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 83;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 84;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 85;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 86;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 87;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 88;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 89;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 90;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 91;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 92;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 93;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 94;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 95;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 96;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 97;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 98;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 99;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 100;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 101;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 102;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 103;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 104;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 105;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 106;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 107;4; -0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_IK_Left_Hand} + AnimationKey { //Position + 2; + 108; + 0;3; -0.316097, 0.754556, 0.000000;;, + 1;3; -0.316097, 0.754556,-0.000553;;, + 2;3; -0.316097, 0.754556,-0.002272;;, + 3;3; -0.316097, 0.754556,-0.005193;;, + 4;3; -0.316097, 0.754556,-0.009241;;, + 5;3; -0.316097, 0.754556,-0.014196;;, + 6;3; -0.316097, 0.754556,-0.019709;;, + 7;3; -0.316097, 0.754556,-0.025373;;, + 8;3; -0.316097, 0.754556,-0.030822;;, + 9;3; -0.316097, 0.754556,-0.035797;;, + 10;3; -0.316097, 0.754556,-0.040148;;, + 11;3; -0.316097, 0.754556,-0.044499;;, + 12;3; -0.316097, 0.754556,-0.049474;;, + 13;3; -0.316097, 0.754556,-0.054923;;, + 14;3; -0.316097, 0.754556,-0.060587;;, + 15;3; -0.316097, 0.754556,-0.066100;;, + 16;3; -0.316097, 0.754556,-0.071055;;, + 17;3; -0.316097, 0.754556,-0.075103;;, + 18;3; -0.316097, 0.754556,-0.078023;;, + 19;3; -0.316097, 0.754556,-0.079743;;, + 20;3; -0.316097, 0.754556,-0.080296;;, + 21;3; -0.316097, 0.754556,-0.080289;;, + 22;3; -0.316097, 0.754556,-0.080236;;, + 23;3; -0.316097, 0.754556,-0.080073;;, + 24;3; -0.316097, 0.754556,-0.079720;;, + 25;3; -0.316097, 0.754556,-0.079093;;, + 26;3; -0.316097, 0.754556,-0.078123;;, + 27;3; -0.316097, 0.754556,-0.076777;;, + 28;3; -0.316097, 0.754556,-0.075061;;, + 29;3; -0.316097, 0.754556,-0.073009;;, + 30;3; -0.316097, 0.754556,-0.070670;;, + 31;3; -0.316097, 0.754556,-0.067890;;, + 32;3; -0.316097, 0.754556,-0.064517;;, + 33;3; -0.316097, 0.754556,-0.060592;;, + 34;3; -0.316097, 0.754556,-0.056133;;, + 35;3; -0.316097, 0.754556,-0.051142;;, + 36;3; -0.316097, 0.754556,-0.045596;;, + 37;3; -0.316097, 0.754556,-0.039444;;, + 38;3; -0.316097, 0.754556,-0.032578;;, + 39;3; -0.316097, 0.754556,-0.024774;;, + 40;3; -0.316097, 0.754556,-0.015466;;, + 41;3; -0.316097, 0.754556, 0.000000;;, + 42;3; -0.316097, 0.754556, 0.059460;;, + 43;3; -0.316097, 0.754556, 0.141717;;, + 44;3; -0.316097, 0.754556, 0.230109;;, + 45;3; -0.316097, 0.754556, 0.314858;;, + 46;3; -0.316097, 0.754556, 0.389209;;, + 47;3; -0.316097, 0.754556, 0.447871;;, + 48;3; -0.316097, 0.754556, 0.486247;;, + 49;3; -0.316097, 0.754556, 0.500000;;, + 50;3; -0.316097, 0.754556, 0.489995;;, + 51;3; -0.316097, 0.754556, 0.458566;;, + 52;3; -0.316097, 0.754556, 0.405218;;, + 53;3; -0.316097, 0.754556, 0.332884;;, + 54;3; -0.316097, 0.754556, 0.248325;;, + 55;3; -0.316097, 0.754556, 0.160156;;, + 56;3; -0.316097, 0.754556, 0.075835;;, + 57;3; -0.316097, 0.754556, 0.000000;;, + 58;3; -0.316097, 0.754556,-0.077935;;, + 59;3; -0.316097, 0.754556,-0.162805;;, + 60;3; -0.316097, 0.754556,-0.236963;;, + 61;3; -0.316097, 0.754556,-0.307531;;, + 62;3; -0.316097, 0.754556,-0.382085;;, + 63;3; -0.316097, 0.754556,-0.446637;;, + 64;3; -0.316097, 0.754556,-0.487225;;, + 65;3; -0.316097, 0.754556,-0.500000;;, + 66;3; -0.316097, 0.754556,-0.484078;;, + 67;3; -0.316097, 0.754556,-0.440649;;, + 68;3; -0.316097, 0.754556,-0.375753;;, + 69;3; -0.316097, 0.754556,-0.295300;;, + 70;3; -0.316097, 0.754556,-0.205809;;, + 71;3; -0.316097, 0.754556,-0.115669;;, + 72;3; -0.316097, 0.754556,-0.038027;;, + 73;3; -0.316097, 0.754556, 0.000000;;, + 74;3; -0.280185, 1.779512,-1.040664;;, + 75;3; -0.280185, 1.791992,-1.040664;;, + 76;3; -0.280185, 1.829242,-1.040664;;, + 77;3; -0.280185, 1.887885,-1.040664;;, + 78;3; -0.280185, 1.959322,-1.040664;;, + 79;3; -0.280185, 2.030761,-1.040664;;, + 80;3; -0.280185, 2.089408,-1.040664;;, + 81;3; -0.280185, 2.126663,-1.040664;;, + 82;3; -0.280185, 2.139145,-1.040664;;, + 83;3; -0.280185, 2.127405,-1.040664;;, + 84;3; -0.280185, 2.092366,-1.040664;;, + 85;3; -0.280185, 2.037206,-1.040664;;, + 86;3; -0.280185, 1.970016,-1.040664;;, + 87;3; -0.280185, 1.902828,-1.040664;;, + 88;3; -0.280185, 1.847672,-1.040664;;, + 89;3; -0.280185, 1.812637,-1.040664;;, + 90;3; -0.280185, 1.800899,-1.040664;;, + 91;3; -0.280185, 1.811608,-1.040664;;, + 92;3; -0.280185, 1.843557,-1.040664;;, + 93;3; -0.280185, 1.893841,-1.040664;;, + 94;3; -0.280185, 1.955109,-1.040664;;, + 95;3; -0.280185, 2.016426,-1.040664;;, + 96;3; -0.280185, 2.066823,-1.040664;;, + 97;3; -0.280185, 2.098878,-1.040664;;, + 98;3; -0.280185, 2.109629,-1.040664;;, + 99;3; -0.280185, 2.098046,-1.040664;;, + 100;3; -0.280185, 2.063213,-1.040664;;, + 101;3; -0.280185, 2.008193,-1.040664;;, + 102;3; -0.280185, 1.941528,-1.040664;;, + 103;3; -0.280185, 1.875865,-1.040664;;, + 104;3; -0.280185, 1.823099,-1.040664;;, + 105;3; -0.280185, 1.790307,-1.040664;;, + 106;3; -0.280185, 1.779512,-1.040664;;, + 107;3; -0.296230, 1.779106,-1.035724;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 81;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 82;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 83;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 84;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 85;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 86;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 87;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 88;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 89;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 90;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 91;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 92;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 93;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 94;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 95;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 96;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 97;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 98;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 99;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 100;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 101;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 102;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 103;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 104;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 105;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 106;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 107;4; -0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_IK_Right_hand} + AnimationKey { //Position + 2; + 108; + 0;3; 0.304691, 0.744702, 0.000000;;, + 1;3; 0.304691, 0.744702,-0.000157;;, + 2;3; 0.304691, 0.744702,-0.000649;;, + 3;3; 0.304691, 0.744702,-0.001493;;, + 4;3; 0.304691, 0.744702,-0.002680;;, + 5;3; 0.304691, 0.744702,-0.004156;;, + 6;3; 0.304691, 0.744702,-0.005831;;, + 7;3; 0.304691, 0.744702,-0.007595;;, + 8;3; 0.304691, 0.744702,-0.009345;;, + 9;3; 0.304691, 0.744702,-0.011001;;, + 10;3; 0.304691, 0.744702,-0.012516;;, + 11;3; 0.304691, 0.744702,-0.014113;;, + 12;3; 0.304691, 0.744702,-0.016015;;, + 13;3; 0.304691, 0.744702,-0.018164;;, + 14;3; 0.304691, 0.744702,-0.020452;;, + 15;3; 0.304691, 0.744702,-0.022720;;, + 16;3; 0.304691, 0.744702,-0.024788;;, + 17;3; 0.304691, 0.744702,-0.026497;;, + 18;3; 0.304691, 0.744702,-0.027742;;, + 19;3; 0.304691, 0.744702,-0.028480;;, + 20;3; 0.304691, 0.744702,-0.028719;;, + 21;3; 0.304691, 0.744702,-0.028537;;, + 22;3; 0.304691, 0.744702,-0.027970;;, + 23;3; 0.304691, 0.744702,-0.027003;;, + 24;3; 0.304691, 0.744702,-0.025658;;, + 25;3; 0.304691, 0.744702,-0.024003;;, + 26;3; 0.304691, 0.744702,-0.022149;;, + 27;3; 0.304691, 0.744702,-0.020229;;, + 28;3; 0.304691, 0.744702,-0.018363;;, + 29;3; 0.304691, 0.744702,-0.016638;;, + 30;3; 0.304691, 0.744702,-0.015105;;, + 31;3; 0.304691, 0.744702,-0.013623;;, + 32;3; 0.304691, 0.744702,-0.012053;;, + 33;3; 0.304691, 0.744702,-0.010419;;, + 34;3; 0.304691, 0.744702,-0.008746;;, + 35;3; 0.304691, 0.744702,-0.007059;;, + 36;3; 0.304691, 0.744702,-0.005387;;, + 37;3; 0.304691, 0.744702,-0.003770;;, + 38;3; 0.304691, 0.744702,-0.002265;;, + 39;3; 0.304691, 0.744702,-0.000977;;, + 40;3; 0.304691, 0.744702,-0.000156;;, + 41;3; 0.304691, 0.744702, 0.000000;;, + 42;3; 0.304691, 0.744702,-0.033814;;, + 43;3; 0.304691, 0.744702,-0.108158;;, + 44;3; 0.304691, 0.744702,-0.198239;;, + 45;3; 0.304691, 0.744702,-0.289641;;, + 46;3; 0.304691, 0.744702,-0.372553;;, + 47;3; 0.304691, 0.744702,-0.439437;;, + 48;3; 0.304691, 0.744702,-0.483890;;, + 49;3; 0.304691, 0.744702,-0.500000;;, + 50;3; 0.304691, 0.744702,-0.489994;;, + 51;3; 0.304691, 0.744702,-0.458565;;, + 52;3; 0.304691, 0.744702,-0.405217;;, + 53;3; 0.304691, 0.744702,-0.332884;;, + 54;3; 0.304691, 0.744702,-0.248324;;, + 55;3; 0.304691, 0.744702,-0.160156;;, + 56;3; 0.304691, 0.744702,-0.075834;;, + 57;3; 0.304691, 0.744702, 0.000000;;, + 58;3; 0.304691, 0.744702, 0.077935;;, + 59;3; 0.304691, 0.744702, 0.162806;;, + 60;3; 0.304691, 0.744702, 0.236963;;, + 61;3; 0.304691, 0.744702, 0.307532;;, + 62;3; 0.304691, 0.744702, 0.382086;;, + 63;3; 0.304691, 0.744702, 0.446638;;, + 64;3; 0.304691, 0.744702, 0.487225;;, + 65;3; 0.304691, 0.744702, 0.500000;;, + 66;3; 0.304691, 0.744702, 0.499392;;, + 67;3; 0.304691, 0.744702, 0.495075;;, + 68;3; 0.304691, 0.744702, 0.482976;;, + 69;3; 0.304691, 0.744702, 0.458109;;, + 70;3; 0.304691, 0.744702, 0.413662;;, + 71;3; 0.304691, 0.744702, 0.339134;;, + 72;3; 0.304691, 0.744702, 0.215665;;, + 73;3; 0.304691, 0.744702, 0.000000;;, + 74;3; 0.340603, 1.781662,-1.045200;;, + 75;3; 0.340603, 1.791563,-1.045200;;, + 76;3; 0.340603, 1.821117,-1.045200;;, + 77;3; 0.340603, 1.867644,-1.045200;;, + 78;3; 0.340603, 1.924320,-1.045200;;, + 79;3; 0.340603, 1.980997,-1.045200;;, + 80;3; 0.340603, 2.027524,-1.045200;;, + 81;3; 0.340603, 2.057079,-1.045200;;, + 82;3; 0.340603, 2.066980,-1.045200;;, + 83;3; 0.340603, 2.059355,-1.045200;;, + 84;3; 0.340603, 2.036595,-1.045200;;, + 85;3; 0.340603, 2.000763,-1.045200;;, + 86;3; 0.340603, 1.957116,-1.045200;;, + 87;3; 0.340603, 1.913468,-1.045200;;, + 88;3; 0.340603, 1.877638,-1.045200;;, + 89;3; 0.340603, 1.854878,-1.045200;;, + 90;3; 0.340603, 1.847253,-1.045200;;, + 91;3; 0.340603, 1.856014,-1.045200;;, + 92;3; 0.340603, 1.882160,-1.045200;;, + 93;3; 0.340603, 1.923317,-1.045200;;, + 94;3; 0.340603, 1.973458,-1.045200;;, + 95;3; 0.340603, 2.023617,-1.045200;;, + 96;3; 0.340603, 2.064815,-1.045200;;, + 97;3; 0.340603, 2.090999,-1.045200;;, + 98;3; 0.340603, 2.099775,-1.045200;;, + 99;3; 0.340603, 2.088636,-1.045200;;, + 100;3; 0.340603, 2.055114,-1.045200;;, + 101;3; 0.340603, 2.002126,-1.045200;;, + 102;3; 0.340603, 1.937877,-1.045200;;, + 103;3; 0.340603, 1.874564,-1.045200;;, + 104;3; 0.340603, 1.823682,-1.045200;;, + 105;3; 0.340603, 1.792067,-1.045200;;, + 106;3; 0.340603, 1.781662,-1.045200;;, + 107;3; 0.347242, 1.784378,-1.046669;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 81;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 82;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 83;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 84;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 85;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 86;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 87;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 88;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 89;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 90;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 91;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 92;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 93;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 94;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 95;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 96;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 97;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 98;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 99;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 100;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 101;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 102;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 103;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 104;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 105;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 106;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 107;4; -0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Body} + AnimationKey { //Position + 2; + 108; + 0;3; 0.000000, 0.855036, 0.000000;;, + 1;3; 0.000000, 0.855036, 0.000000;;, + 2;3; 0.000000, 0.855036, 0.000000;;, + 3;3; 0.000000, 0.855036, 0.000000;;, + 4;3; 0.000000, 0.855036, 0.000000;;, + 5;3; 0.000000, 0.855036, 0.000000;;, + 6;3; 0.000000, 0.855036, 0.000000;;, + 7;3; 0.000000, 0.855036, 0.000000;;, + 8;3; 0.000000, 0.855036, 0.000000;;, + 9;3; 0.000000, 0.855036, 0.000000;;, + 10;3; 0.000000, 0.855036, 0.000000;;, + 11;3; 0.000000, 0.855036, 0.000000;;, + 12;3; 0.000000, 0.855036, 0.000000;;, + 13;3; 0.000000, 0.855036, 0.000000;;, + 14;3; 0.000000, 0.855036, 0.000000;;, + 15;3; 0.000000, 0.855036, 0.000000;;, + 16;3; 0.000000, 0.855036, 0.000000;;, + 17;3; 0.000000, 0.855036, 0.000000;;, + 18;3; 0.000000, 0.855036, 0.000000;;, + 19;3; 0.000000, 0.855036, 0.000000;;, + 20;3; 0.000000, 0.855036, 0.000000;;, + 21;3; 0.000000, 0.855036, 0.000000;;, + 22;3; 0.000000, 0.855036, 0.000000;;, + 23;3; 0.000000, 0.855036, 0.000000;;, + 24;3; 0.000000, 0.855036, 0.000000;;, + 25;3; 0.000000, 0.855036, 0.000000;;, + 26;3; 0.000000, 0.855036, 0.000000;;, + 27;3; 0.000000, 0.855036, 0.000000;;, + 28;3; 0.000000, 0.855036, 0.000000;;, + 29;3; 0.000000, 0.855036, 0.000000;;, + 30;3; 0.000000, 0.855036, 0.000000;;, + 31;3; 0.000000, 0.855036, 0.000000;;, + 32;3; 0.000000, 0.855036, 0.000000;;, + 33;3; 0.000000, 0.855036, 0.000000;;, + 34;3; 0.000000, 0.855036, 0.000000;;, + 35;3; 0.000000, 0.855036, 0.000000;;, + 36;3; 0.000000, 0.855036, 0.000000;;, + 37;3; 0.000000, 0.855036, 0.000000;;, + 38;3; 0.000000, 0.855036, 0.000000;;, + 39;3; 0.000000, 0.855036, 0.000000;;, + 40;3; 0.000000, 0.855036, 0.000000;;, + 41;3; 0.000000, 0.855036, 0.000000;;, + 42;3; 0.000000, 0.855036, 0.000000;;, + 43;3; 0.000000, 0.855036, 0.000000;;, + 44;3; 0.000000, 0.855036, 0.000000;;, + 45;3; 0.000000, 0.855036, 0.000000;;, + 46;3; 0.000000, 0.855036, 0.000000;;, + 47;3; 0.000000, 0.855036, 0.000000;;, + 48;3; 0.000000, 0.855036, 0.000000;;, + 49;3; 0.000000, 0.855036, 0.000000;;, + 50;3; 0.000000, 0.855036, 0.000000;;, + 51;3; 0.000000, 0.855036, 0.000000;;, + 52;3; 0.000000, 0.855036, 0.000000;;, + 53;3; 0.000000, 0.855036, 0.000000;;, + 54;3; 0.000000, 0.855036, 0.000000;;, + 55;3; 0.000000, 0.855036, 0.000000;;, + 56;3; 0.000000, 0.855036, 0.000000;;, + 57;3; 0.000000, 0.855036, 0.000000;;, + 58;3; 0.000000, 0.855036, 0.000000;;, + 59;3; 0.000000, 0.855036, 0.000000;;, + 60;3; 0.000000, 0.855036, 0.000000;;, + 61;3; 0.000000, 0.855036, 0.000000;;, + 62;3; 0.000000, 0.855036, 0.000000;;, + 63;3; 0.000000, 0.855036, 0.000000;;, + 64;3; 0.000000, 0.855036, 0.000000;;, + 65;3; 0.000000, 0.855036, 0.000000;;, + 66;3; 0.000000, 0.855036, 0.000000;;, + 67;3; 0.000000, 0.855036, 0.000000;;, + 68;3; 0.000000, 0.855036, 0.000000;;, + 69;3; 0.000000, 0.855036, 0.000000;;, + 70;3; 0.000000, 0.855036, 0.000000;;, + 71;3; 0.000000, 0.855036, 0.000000;;, + 72;3; 0.000000, 0.855036, 0.000000;;, + 73;3; 0.000000, 0.855036, 0.000000;;, + 74;3; 0.000000, 1.033846, 0.000000;;, + 75;3; 0.000000, 1.033846, 0.000000;;, + 76;3; 0.000000, 1.033846, 0.000000;;, + 77;3; 0.000000, 1.033846, 0.000000;;, + 78;3; 0.000000, 1.033846, 0.000000;;, + 79;3; 0.000000, 1.033846, 0.000000;;, + 80;3; 0.000000, 1.033846, 0.000000;;, + 81;3; 0.000000, 1.033846, 0.000000;;, + 82;3; 0.000000, 1.033846, 0.000000;;, + 83;3; 0.000000, 1.033846, 0.000000;;, + 84;3; 0.000000, 1.033846, 0.000000;;, + 85;3; 0.000000, 1.033846, 0.000000;;, + 86;3; 0.000000, 1.033846, 0.000000;;, + 87;3; 0.000000, 1.033846, 0.000000;;, + 88;3; 0.000000, 1.033846, 0.000000;;, + 89;3; 0.000000, 1.033846, 0.000000;;, + 90;3; 0.000000, 1.033846, 0.000000;;, + 91;3; 0.000000, 1.033846, 0.000000;;, + 92;3; 0.000000, 1.033846, 0.000000;;, + 93;3; 0.000000, 1.033846, 0.000000;;, + 94;3; 0.000000, 1.033846, 0.000000;;, + 95;3; 0.000000, 1.033846, 0.000000;;, + 96;3; 0.000000, 1.033846, 0.000000;;, + 97;3; 0.000000, 1.033846, 0.000000;;, + 98;3; 0.000000, 1.033846, 0.000000;;, + 99;3; 0.000000, 1.033846, 0.000000;;, + 100;3; 0.000000, 1.033846, 0.000000;;, + 101;3; 0.000000, 1.033846, 0.000000;;, + 102;3; 0.000000, 1.033846, 0.000000;;, + 103;3; 0.000000, 1.033846, 0.000000;;, + 104;3; 0.000000, 1.033846, 0.000000;;, + 105;3; 0.000000, 1.033846, 0.000000;;, + 106;3; 0.000000, 1.033846, 0.000000;;, + 107;3; 0.000000, 1.033846, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000,-0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000,-0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000,-0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000,-0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000,-0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000,-0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000,-0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000,-0.000000, 0.000000, 0.000000;;, + 74;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 75;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 76;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 77;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 78;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 79;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 80;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 81;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 82;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 83;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 84;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 85;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 86;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 87;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 88;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 89;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 90;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 91;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 92;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 93;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 94;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 95;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 96;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 97;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 98;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 99;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 100;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 101;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 102;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 103;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 104;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 105;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 106;4; -0.998689,-0.051182,-0.000000, 0.000000;;, + 107;4; -0.998689,-0.051182,-0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { //Position + 2; + 108; + 0;3; 0.225856, 0.800000, 0.000000;;, + 1;3; 0.225856, 0.800000, 0.000000;;, + 2;3; 0.225856, 0.800000, 0.000000;;, + 3;3; 0.225856, 0.800000, 0.000000;;, + 4;3; 0.225856, 0.800000, 0.000000;;, + 5;3; 0.225856, 0.800000, 0.000000;;, + 6;3; 0.225856, 0.800000, 0.000000;;, + 7;3; 0.225856, 0.800000, 0.000000;;, + 8;3; 0.225856, 0.800000, 0.000000;;, + 9;3; 0.225856, 0.800000, 0.000000;;, + 10;3; 0.225856, 0.800000, 0.000000;;, + 11;3; 0.225856, 0.800000, 0.000000;;, + 12;3; 0.225856, 0.800000, 0.000000;;, + 13;3; 0.225856, 0.800000, 0.000000;;, + 14;3; 0.225856, 0.800000, 0.000000;;, + 15;3; 0.225856, 0.800000, 0.000000;;, + 16;3; 0.225856, 0.800000, 0.000000;;, + 17;3; 0.225856, 0.800000, 0.000000;;, + 18;3; 0.225856, 0.800000, 0.000000;;, + 19;3; 0.225856, 0.800000, 0.000000;;, + 20;3; 0.225856, 0.800000, 0.000000;;, + 21;3; 0.225856, 0.800000, 0.000000;;, + 22;3; 0.225856, 0.800000, 0.000000;;, + 23;3; 0.225856, 0.800000, 0.000000;;, + 24;3; 0.225856, 0.800000, 0.000000;;, + 25;3; 0.225856, 0.800000, 0.000000;;, + 26;3; 0.225856, 0.800000, 0.000000;;, + 27;3; 0.225856, 0.800000, 0.000000;;, + 28;3; 0.225856, 0.800000, 0.000000;;, + 29;3; 0.225856, 0.800000, 0.000000;;, + 30;3; 0.225856, 0.800000, 0.000000;;, + 31;3; 0.225856, 0.800000, 0.000000;;, + 32;3; 0.225856, 0.800000, 0.000000;;, + 33;3; 0.225856, 0.800000, 0.000000;;, + 34;3; 0.225856, 0.800000, 0.000000;;, + 35;3; 0.225856, 0.800000, 0.000000;;, + 36;3; 0.225856, 0.800000, 0.000000;;, + 37;3; 0.225856, 0.800000, 0.000000;;, + 38;3; 0.225856, 0.800000, 0.000000;;, + 39;3; 0.225856, 0.800000, 0.000000;;, + 40;3; 0.225856, 0.800000, 0.000000;;, + 41;3; 0.225856, 0.800000, 0.000000;;, + 42;3; 0.225856, 0.800000, 0.000000;;, + 43;3; 0.225856, 0.800000, 0.000000;;, + 44;3; 0.225856, 0.800000, 0.000000;;, + 45;3; 0.225856, 0.800000, 0.000000;;, + 46;3; 0.225856, 0.800000, 0.000000;;, + 47;3; 0.225856, 0.800000, 0.000000;;, + 48;3; 0.225856, 0.800000, 0.000000;;, + 49;3; 0.225856, 0.800000, 0.000000;;, + 50;3; 0.225856, 0.800000, 0.000000;;, + 51;3; 0.225856, 0.800000, 0.000000;;, + 52;3; 0.225856, 0.800000, 0.000000;;, + 53;3; 0.225856, 0.800000, 0.000000;;, + 54;3; 0.225856, 0.800000, 0.000000;;, + 55;3; 0.225856, 0.800000, 0.000000;;, + 56;3; 0.225856, 0.800000, 0.000000;;, + 57;3; 0.225856, 0.800000, 0.000000;;, + 58;3; 0.225856, 0.800000, 0.000000;;, + 59;3; 0.225856, 0.800000, 0.000000;;, + 60;3; 0.225856, 0.800000, 0.000000;;, + 61;3; 0.225856, 0.800000, 0.000000;;, + 62;3; 0.225856, 0.800000, 0.000000;;, + 63;3; 0.225856, 0.800000, 0.000000;;, + 64;3; 0.225856, 0.800000, 0.000000;;, + 65;3; 0.225856, 0.800000, 0.000000;;, + 66;3; 0.225856, 0.800000, 0.000000;;, + 67;3; 0.225856, 0.800000, 0.000000;;, + 68;3; 0.225856, 0.800000, 0.000000;;, + 69;3; 0.225856, 0.800000, 0.000000;;, + 70;3; 0.225856, 0.800000, 0.000000;;, + 71;3; 0.225856, 0.800000, 0.000000;;, + 72;3; 0.225856, 0.800000, 0.000000;;, + 73;3; 0.225856, 0.800000, 0.000000;;, + 74;3; 0.225856, 0.800000, 0.000000;;, + 75;3; 0.225856, 0.800000, 0.000000;;, + 76;3; 0.225856, 0.800000, 0.000000;;, + 77;3; 0.225856, 0.800000, 0.000000;;, + 78;3; 0.225856, 0.800000, 0.000000;;, + 79;3; 0.225856, 0.800000, 0.000000;;, + 80;3; 0.225856, 0.800000, 0.000000;;, + 81;3; 0.225856, 0.800000, 0.000000;;, + 82;3; 0.225856, 0.800000, 0.000000;;, + 83;3; 0.225856, 0.800000, 0.000000;;, + 84;3; 0.225856, 0.800000, 0.000000;;, + 85;3; 0.225856, 0.800000, 0.000000;;, + 86;3; 0.225856, 0.800000, 0.000000;;, + 87;3; 0.225856, 0.800000, 0.000000;;, + 88;3; 0.225856, 0.800000, 0.000000;;, + 89;3; 0.225856, 0.800000, 0.000000;;, + 90;3; 0.225856, 0.800000, 0.000000;;, + 91;3; 0.225856, 0.800000, 0.000000;;, + 92;3; 0.225856, 0.800000, 0.000000;;, + 93;3; 0.225856, 0.800000, 0.000000;;, + 94;3; 0.225856, 0.800000, 0.000000;;, + 95;3; 0.225856, 0.800000, 0.000000;;, + 96;3; 0.225856, 0.800000, 0.000000;;, + 97;3; 0.225856, 0.800000, 0.000000;;, + 98;3; 0.225856, 0.800000, 0.000000;;, + 99;3; 0.225856, 0.800000, 0.000000;;, + 100;3; 0.225856, 0.800000, 0.000000;;, + 101;3; 0.225856, 0.800000, 0.000000;;, + 102;3; 0.225856, 0.800000, 0.000000;;, + 103;3; 0.225856, 0.800000, 0.000000;;, + 104;3; 0.225856, 0.800000, 0.000000;;, + 105;3; 0.225856, 0.800000, 0.000000;;, + 106;3; 0.225856, 0.800000, 0.000000;;, + 107;3; 0.225856, 0.800000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.000000, 0.998933, 0.046192,-0.000000;;, + 1;4; 0.000113, 0.998932, 0.046192, 0.000005;;, + 2;4; 0.000463, 0.998931, 0.046192, 0.000021;;, + 3;4; 0.001052, 0.998930, 0.046191, 0.000049;;, + 4;4; 0.001861, 0.998928, 0.046191, 0.000086;;, + 5;4; 0.002839, 0.998925, 0.046191, 0.000131;;, + 6;4; 0.003910, 0.998921, 0.046191, 0.000181;;, + 7;4; 0.004990, 0.998917, 0.046191, 0.000231;;, + 8;4; 0.006002, 0.998912, 0.046191, 0.000277;;, + 9;4; 0.006897, 0.998908, 0.046190, 0.000319;;, + 10;4; 0.007645, 0.998903, 0.046190, 0.000353;;, + 11;4; 0.008353, 0.998898, 0.046190, 0.000386;;, + 12;4; 0.009124, 0.998891, 0.046190, 0.000422;;, + 13;4; 0.009935, 0.998884, 0.046189, 0.000459;;, + 14;4; 0.010752, 0.998875, 0.046189, 0.000497;;, + 15;4; 0.011526, 0.998866, 0.046189, 0.000533;;, + 16;4; 0.012206, 0.998858, 0.046188, 0.000564;;, + 17;4; 0.012752, 0.998851, 0.046188, 0.000590;;, + 18;4; 0.013140, 0.998846, 0.046188, 0.000608;;, + 19;4; 0.013366, 0.998843, 0.046187, 0.000618;;, + 20;4; 0.013438, 0.998842, 0.046187, 0.000621;;, + 21;4; 0.013396, 0.998843, 0.046187, 0.000619;;, + 22;4; 0.013259, 0.998845, 0.046188, 0.000613;;, + 23;4; 0.013015, 0.998849, 0.046188, 0.000602;;, + 24;4; 0.012659, 0.998854, 0.046188, 0.000585;;, + 25;4; 0.012193, 0.998861, 0.046188, 0.000564;;, + 26;4; 0.011633, 0.998868, 0.046189, 0.000538;;, + 27;4; 0.011006, 0.998875, 0.046189, 0.000509;;, + 28;4; 0.010339, 0.998881, 0.046189, 0.000478;;, + 29;4; 0.009657, 0.998887, 0.046189, 0.000447;;, + 30;4; 0.008979, 0.998892, 0.046190, 0.000415;;, + 31;4; 0.008235, 0.998897, 0.046190, 0.000381;;, + 32;4; 0.007367, 0.998902, 0.046190, 0.000341;;, + 33;4; 0.006405, 0.998906, 0.046190, 0.000296;;, + 34;4; 0.005374, 0.998911, 0.046191, 0.000248;;, + 35;4; 0.004301, 0.998916, 0.046191, 0.000199;;, + 36;4; 0.003216, 0.998920, 0.046191, 0.000149;;, + 37;4; 0.002157, 0.998924, 0.046191, 0.000100;;, + 38;4; 0.001180, 0.998928, 0.046191, 0.000055;;, + 39;4; 0.000383, 0.998931, 0.046192, 0.000018;;, + 40;4; -0.000000, 0.998933, 0.046192,-0.000000;;, + 41;4; -0.000000, 0.998933, 0.046192,-0.000000;;, + 42;4; 0.016411, 0.996908, 0.046098, 0.000759;;, + 43;4; 0.052503, 0.992456, 0.045892, 0.002427;;, + 44;4; 0.096241, 0.987060, 0.045643, 0.004450;;, + 45;4; 0.140624, 0.981585, 0.045389, 0.006502;;, + 46;4; 0.180886, 0.976618, 0.045160, 0.008364;;, + 47;4; 0.213365, 0.972611, 0.044974, 0.009866;;, + 48;4; 0.234951, 0.969948, 0.044851, 0.010864;;, + 49;4; 0.242773, 0.968983, 0.044807, 0.011226;;, + 50;4; 0.234348, 0.970022, 0.044855, 0.010836;;, + 51;4; 0.209203, 0.973124, 0.044998, 0.009674;;, + 52;4; 0.169616, 0.978008, 0.045224, 0.007843;;, + 53;4; 0.121393, 0.983958, 0.045499, 0.005613;;, + 54;4; 0.073168, 0.989907, 0.045774, 0.003383;;, + 55;4; 0.033576, 0.994791, 0.046000, 0.001552;;, + 56;4; 0.008426, 0.997893, 0.046144, 0.000389;;, + 57;4; -0.000000, 0.998933, 0.046192,-0.000000;;, + 58;4; -0.000000, 0.998933, 0.046192,-0.000000;;, + 59;4; -0.000000, 0.998933, 0.046192,-0.000000;;, + 60;4; -0.000000, 0.998933, 0.046192,-0.000000;;, + 61;4; -0.021739, 0.996233, 0.046067,-0.001004;;, + 62;4; -0.082955, 0.988627, 0.045715,-0.003834;;, + 63;4; -0.161536, 0.978863, 0.045264,-0.007469;;, + 64;4; -0.222735, 0.971258, 0.044912,-0.010299;;, + 65;4; -0.244464, 0.968558, 0.044787,-0.011304;;, + 66;4; -0.244163, 0.969535, 0.044832,-0.011290;;, + 67;4; -0.242008, 0.972228, 0.044957,-0.011186;;, + 68;4; -0.235917, 0.976278, 0.045144,-0.010887;;, + 69;4; -0.223338, 0.981298, 0.045376,-0.010263;;, + 70;4; -0.200843, 0.986838, 0.045632,-0.009147;;, + 71;4; -0.163332, 0.992312, 0.045885,-0.007310;;, + 72;4; -0.102212, 0.996851, 0.046095,-0.004424;;, + 73;4; -0.000000, 0.998933, 0.046192,-0.000000;;, + 74;4; 0.726097, 0.686039, 0.031723, 0.033575;;, + 75;4; 0.765734, 0.638365, 0.029519, 0.035296;;, + 76;4; 0.789482, 0.608852, 0.028154, 0.036416;;, + 77;4; 0.804069, 0.590470, 0.027304, 0.037129;;, + 78;4; 0.812819, 0.579387, 0.026791, 0.037561;;, + 79;4; 0.817712, 0.573190, 0.026505, 0.037803;;, + 80;4; 0.820080, 0.570202, 0.026367, 0.037919;;, + 81;4; 0.820918, 0.569151, 0.026318, 0.037960;;, + 82;4; 0.821035, 0.569006, 0.026311, 0.037965;;, + 83;4; 0.818160, 0.572615, 0.026478, 0.037832;;, + 84;4; 0.809580, 0.583387, 0.026976, 0.037436;;, + 85;4; 0.796072, 0.600345, 0.027761, 0.036811;;, + 86;4; 0.779617, 0.621003, 0.028716, 0.036050;;, + 87;4; 0.763162, 0.641661, 0.029671, 0.035289;;, + 88;4; 0.749653, 0.658620, 0.030455, 0.034665;;, + 89;4; 0.741073, 0.669392, 0.030953, 0.034268;;, + 90;4; 0.738198, 0.673000, 0.031120, 0.034135;;, + 91;4; 0.741328, 0.669018, 0.030936, 0.034280;;, + 92;4; 0.750670, 0.657133, 0.030386, 0.034712;;, + 93;4; 0.765376, 0.638421, 0.029521, 0.035392;;, + 94;4; 0.783291, 0.615627, 0.028467, 0.036220;;, + 95;4; 0.801206, 0.592833, 0.027413, 0.037048;;, + 96;4; 0.815912, 0.574122, 0.026548, 0.037729;;, + 97;4; 0.825254, 0.562236, 0.025998, 0.038160;;, + 98;4; 0.828383, 0.558254, 0.025814, 0.038305;;, + 99;4; 0.824723, 0.562805, 0.026025, 0.038136;;, + 100;4; 0.813799, 0.576388, 0.026653, 0.037631;;, + 101;4; 0.796600, 0.597771, 0.027642, 0.036835;;, + 102;4; 0.775650, 0.623820, 0.028846, 0.035867;;, + 103;4; 0.754698, 0.649870, 0.030051, 0.034898;;, + 104;4; 0.737498, 0.671257, 0.031040, 0.034102;;, + 105;4; 0.726572, 0.684843, 0.031668, 0.033597;;, + 106;4; 0.722912, 0.689395, 0.031878, 0.033428;;, + 107;4; 0.722912, 0.689395, 0.031878, 0.033428;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 0.999999;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { //Position + 2; + 108; + 0;3; -0.238835, 0.800000, 0.000000;;, + 1;3; -0.238835, 0.800000, 0.000000;;, + 2;3; -0.238835, 0.800000, 0.000000;;, + 3;3; -0.238835, 0.800000, 0.000000;;, + 4;3; -0.238835, 0.800000, 0.000000;;, + 5;3; -0.238835, 0.800000, 0.000000;;, + 6;3; -0.238835, 0.800000, 0.000000;;, + 7;3; -0.238835, 0.800000, 0.000000;;, + 8;3; -0.238835, 0.800000, 0.000000;;, + 9;3; -0.238835, 0.800000, 0.000000;;, + 10;3; -0.238835, 0.800000, 0.000000;;, + 11;3; -0.238835, 0.800000, 0.000000;;, + 12;3; -0.238835, 0.800000, 0.000000;;, + 13;3; -0.238835, 0.800000, 0.000000;;, + 14;3; -0.238835, 0.800000, 0.000000;;, + 15;3; -0.238835, 0.800000, 0.000000;;, + 16;3; -0.238835, 0.800000, 0.000000;;, + 17;3; -0.238835, 0.800000, 0.000000;;, + 18;3; -0.238835, 0.800000, 0.000000;;, + 19;3; -0.238835, 0.800000, 0.000000;;, + 20;3; -0.238835, 0.800000, 0.000000;;, + 21;3; -0.238835, 0.800000, 0.000000;;, + 22;3; -0.238835, 0.800000, 0.000000;;, + 23;3; -0.238835, 0.800000, 0.000000;;, + 24;3; -0.238835, 0.800000, 0.000000;;, + 25;3; -0.238835, 0.800000, 0.000000;;, + 26;3; -0.238835, 0.800000, 0.000000;;, + 27;3; -0.238835, 0.800000, 0.000000;;, + 28;3; -0.238835, 0.800000, 0.000000;;, + 29;3; -0.238835, 0.800000, 0.000000;;, + 30;3; -0.238835, 0.800000, 0.000000;;, + 31;3; -0.238835, 0.800000, 0.000000;;, + 32;3; -0.238835, 0.800000, 0.000000;;, + 33;3; -0.238835, 0.800000, 0.000000;;, + 34;3; -0.238835, 0.800000, 0.000000;;, + 35;3; -0.238835, 0.800000, 0.000000;;, + 36;3; -0.238835, 0.800000, 0.000000;;, + 37;3; -0.238835, 0.800000, 0.000000;;, + 38;3; -0.238835, 0.800000, 0.000000;;, + 39;3; -0.238835, 0.800000, 0.000000;;, + 40;3; -0.238835, 0.800000, 0.000000;;, + 41;3; -0.238835, 0.800000, 0.000000;;, + 42;3; -0.238835, 0.800000, 0.000000;;, + 43;3; -0.238835, 0.800000, 0.000000;;, + 44;3; -0.238835, 0.800000, 0.000000;;, + 45;3; -0.238835, 0.800000, 0.000000;;, + 46;3; -0.238835, 0.800000, 0.000000;;, + 47;3; -0.238835, 0.800000, 0.000000;;, + 48;3; -0.238835, 0.800000, 0.000000;;, + 49;3; -0.238835, 0.800000, 0.000000;;, + 50;3; -0.238835, 0.800000, 0.000000;;, + 51;3; -0.238835, 0.800000, 0.000000;;, + 52;3; -0.238835, 0.800000, 0.000000;;, + 53;3; -0.238835, 0.800000, 0.000000;;, + 54;3; -0.238835, 0.800000, 0.000000;;, + 55;3; -0.238835, 0.800000, 0.000000;;, + 56;3; -0.238835, 0.800000, 0.000000;;, + 57;3; -0.238835, 0.800000, 0.000000;;, + 58;3; -0.238835, 0.800000, 0.000000;;, + 59;3; -0.238835, 0.800000, 0.000000;;, + 60;3; -0.238835, 0.800000, 0.000000;;, + 61;3; -0.238835, 0.800000, 0.000000;;, + 62;3; -0.238835, 0.800000, 0.000000;;, + 63;3; -0.238835, 0.800000, 0.000000;;, + 64;3; -0.238835, 0.800000, 0.000000;;, + 65;3; -0.238835, 0.800000, 0.000000;;, + 66;3; -0.238835, 0.800000, 0.000000;;, + 67;3; -0.238835, 0.800000, 0.000000;;, + 68;3; -0.238835, 0.800000, 0.000000;;, + 69;3; -0.238835, 0.800000, 0.000000;;, + 70;3; -0.238835, 0.800000, 0.000000;;, + 71;3; -0.238835, 0.800000, 0.000000;;, + 72;3; -0.238835, 0.800000, 0.000000;;, + 73;3; -0.238835, 0.800000, 0.000000;;, + 74;3; -0.238835, 0.800000, 0.000000;;, + 75;3; -0.238835, 0.800000, 0.000000;;, + 76;3; -0.238835, 0.800000, 0.000000;;, + 77;3; -0.238835, 0.800000, 0.000000;;, + 78;3; -0.238835, 0.800000, 0.000000;;, + 79;3; -0.238835, 0.800000, 0.000000;;, + 80;3; -0.238835, 0.800000, 0.000000;;, + 81;3; -0.238835, 0.800000, 0.000000;;, + 82;3; -0.238835, 0.800000, 0.000000;;, + 83;3; -0.238835, 0.800000, 0.000000;;, + 84;3; -0.238835, 0.800000, 0.000000;;, + 85;3; -0.238835, 0.800000, 0.000000;;, + 86;3; -0.238835, 0.800000, 0.000000;;, + 87;3; -0.238835, 0.800000, 0.000000;;, + 88;3; -0.238835, 0.800000, 0.000000;;, + 89;3; -0.238835, 0.800000, 0.000000;;, + 90;3; -0.238835, 0.800000, 0.000000;;, + 91;3; -0.238835, 0.800000, 0.000000;;, + 92;3; -0.238835, 0.800000, 0.000000;;, + 93;3; -0.238835, 0.800000, 0.000000;;, + 94;3; -0.238835, 0.800000, 0.000000;;, + 95;3; -0.238835, 0.800000, 0.000000;;, + 96;3; -0.238835, 0.800000, 0.000000;;, + 97;3; -0.238835, 0.800000, 0.000000;;, + 98;3; -0.238835, 0.800000, 0.000000;;, + 99;3; -0.238835, 0.800000, 0.000000;;, + 100;3; -0.238835, 0.800000, 0.000000;;, + 101;3; -0.238835, 0.800000, 0.000000;;, + 102;3; -0.238835, 0.800000, 0.000000;;, + 103;3; -0.238835, 0.800000, 0.000000;;, + 104;3; -0.238835, 0.800000, 0.000000;;, + 105;3; -0.238835, 0.800000, 0.000000;;, + 106;3; -0.238835, 0.800000, 0.000000;;, + 107;3; -0.238835, 0.800000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.000000, 0.998905,-0.046776,-0.000000;;, + 1;4; 0.000396, 0.998902,-0.046776,-0.000019;;, + 2;4; 0.001620, 0.998891,-0.046775,-0.000076;;, + 3;4; 0.003679, 0.998871,-0.046774,-0.000172;;, + 4;4; 0.006500, 0.998842,-0.046773,-0.000304;;, + 5;4; 0.009901, 0.998805,-0.046771,-0.000464;;, + 6;4; 0.013615, 0.998761,-0.046769,-0.000638;;, + 7;4; 0.017338, 0.998712,-0.046767,-0.000812;;, + 8;4; 0.020809, 0.998661,-0.046764,-0.000975;;, + 9;4; 0.023851, 0.998609,-0.046762,-0.001117;;, + 10;4; 0.026368, 0.998557,-0.046760,-0.001235;;, + 11;4; 0.028711, 0.998499,-0.046757,-0.001345;;, + 12;4; 0.031226, 0.998427,-0.046754,-0.001462;;, + 13;4; 0.033841, 0.998341,-0.046750,-0.001585;;, + 14;4; 0.036445, 0.998248,-0.046745,-0.001707;;, + 15;4; 0.038889, 0.998154,-0.046741,-0.001821;;, + 16;4; 0.041022, 0.998067,-0.046737,-0.001921;;, + 17;4; 0.042723, 0.997994,-0.046733,-0.002001;;, + 18;4; 0.043926, 0.997941,-0.046731,-0.002057;;, + 19;4; 0.044623, 0.997909,-0.046729,-0.002090;;, + 20;4; 0.044845, 0.997898,-0.046729,-0.002100;;, + 21;4; 0.044841, 0.997899,-0.046729,-0.002100;;, + 22;4; 0.044817, 0.997900,-0.046729,-0.002099;;, + 23;4; 0.044742, 0.997905,-0.046729,-0.002095;;, + 24;4; 0.044579, 0.997913,-0.046729,-0.002088;;, + 25;4; 0.044290, 0.997926,-0.046730,-0.002074;;, + 26;4; 0.043842, 0.997946,-0.046731,-0.002053;;, + 27;4; 0.043222, 0.997973,-0.046732,-0.002024;;, + 28;4; 0.042430, 0.998006,-0.046734,-0.001987;;, + 29;4; 0.041484, 0.998044,-0.046736,-0.001943;;, + 30;4; 0.040405, 0.998088,-0.046738,-0.001892;;, + 31;4; 0.039231, 0.998138,-0.046740,-0.001837;;, + 32;4; 0.037955, 0.998194,-0.046743,-0.001777;;, + 33;4; 0.036535, 0.998257,-0.046746,-0.001711;;, + 34;4; 0.034919, 0.998325,-0.046749,-0.001635;;, + 35;4; 0.033044, 0.998398,-0.046752,-0.001547;;, + 36;4; 0.030822, 0.998476,-0.046756,-0.001443;;, + 37;4; 0.028124, 0.998556,-0.046760,-0.001317;;, + 38;4; 0.024742, 0.998640,-0.046763,-0.001159;;, + 39;4; 0.020284, 0.998725,-0.046767,-0.000950;;, + 40;4; 0.013794, 0.998810,-0.046771,-0.000646;;, + 41;4; -0.000000, 0.998905,-0.046776,-0.000000;;, + 42;4; -0.031189, 0.996841,-0.046679, 0.001460;;, + 43;4; -0.072145, 0.992300,-0.046467, 0.003378;;, + 44;4; -0.115348, 0.986796,-0.046209, 0.005401;;, + 45;4; -0.156373, 0.981211,-0.045947, 0.007322;;, + 46;4; -0.192148, 0.976145,-0.045710, 0.008998;;, + 47;4; -0.220256, 0.972058,-0.045519, 0.010314;;, + 48;4; -0.238588, 0.969342,-0.045392, 0.011172;;, + 49;4; -0.245143, 0.968358,-0.045346, 0.011479;;, + 50;4; -0.236636, 0.969418,-0.045395, 0.011081;;, + 51;4; -0.211245, 0.972582,-0.045543, 0.009892;;, + 52;4; -0.171272, 0.977564,-0.045777, 0.008020;;, + 53;4; -0.122578, 0.983632,-0.046061, 0.005739;;, + 54;4; -0.073882, 0.989700,-0.046345, 0.003459;;, + 55;4; -0.033905, 0.994681,-0.046578, 0.001587;;, + 56;4; -0.008509, 0.997845,-0.046726, 0.000398;;, + 57;4; -0.000000, 0.998905,-0.046776,-0.000000;;, + 58;4; -0.000000, 0.998905,-0.046776,-0.000000;;, + 59;4; -0.000000, 0.998905,-0.046776,-0.000000;;, + 60;4; -0.000000, 0.998905,-0.046776,-0.000000;;, + 61;4; 0.021615, 0.996236,-0.046651,-0.001011;;, + 62;4; 0.082482, 0.988719,-0.046299,-0.003861;;, + 63;4; 0.160618, 0.979066,-0.045847,-0.007521;;, + 64;4; 0.221468, 0.971548,-0.045495,-0.010371;;, + 65;4; 0.243074, 0.968879,-0.045370,-0.011383;;, + 66;4; 0.235291, 0.969846,-0.045415,-0.011014;;, + 67;4; 0.213947, 0.972508,-0.045540,-0.009989;;, + 68;4; 0.181951, 0.976512,-0.045727,-0.008442;;, + 69;4; 0.142284, 0.981474,-0.045960,-0.006525;;, + 70;4; 0.098338, 0.986951,-0.046216,-0.004421;;, + 71;4; 0.054509, 0.992362,-0.046470,-0.002372;;, + 72;4; 0.017496, 0.996849,-0.046680,-0.000720;;, + 73;4; -0.000000, 0.998905,-0.046776,-0.000000;;, + 74;4; 0.721174, 0.691173,-0.032366,-0.033771;;, + 75;4; 0.763079, 0.641077,-0.030020,-0.035614;;, + 76;4; 0.788198, 0.610058,-0.028567,-0.036814;;, + 77;4; 0.803629, 0.590736,-0.027662,-0.037576;;, + 78;4; 0.812887, 0.579085,-0.027117,-0.038040;;, + 79;4; 0.818063, 0.572572,-0.026812,-0.038299;;, + 80;4; 0.820568, 0.569430,-0.026665,-0.038423;;, + 81;4; 0.821455, 0.568326,-0.026613,-0.038466;;, + 82;4; 0.821578, 0.568173,-0.026606,-0.038472;;, + 83;4; 0.818731, 0.571759,-0.026774,-0.038339;;, + 84;4; 0.810231, 0.582463,-0.027275,-0.037941;;, + 85;4; 0.796849, 0.599314,-0.028064,-0.037314;;, + 86;4; 0.780548, 0.619842,-0.029025,-0.036551;;, + 87;4; 0.764247, 0.640369,-0.029987,-0.035788;;, + 88;4; 0.750865, 0.657220,-0.030776,-0.035161;;, + 89;4; 0.742365, 0.667924,-0.031277,-0.034763;;, + 90;4; 0.739518, 0.671510,-0.031445,-0.034630;;, + 91;4; 0.742645, 0.667513,-0.031258,-0.034776;;, + 92;4; 0.751981, 0.655582,-0.030699,-0.035213;;, + 93;4; 0.766679, 0.636798,-0.029819,-0.035901;;, + 94;4; 0.784583, 0.613917,-0.028748,-0.036740;;, + 95;4; 0.802487, 0.591036,-0.027676,-0.037578;;, + 96;4; 0.817184, 0.572253,-0.026797,-0.038266;;, + 97;4; 0.826520, 0.560322,-0.026238,-0.038704;;, + 98;4; 0.829648, 0.556324,-0.026051,-0.038850;;, + 99;4; 0.825855, 0.561033,-0.026272,-0.038673;;, + 100;4; 0.814535, 0.575088,-0.026930,-0.038142;;, + 101;4; 0.796714, 0.597215,-0.027966,-0.037308;;, + 102;4; 0.775005, 0.624169,-0.029228,-0.036291;;, + 103;4; 0.753296, 0.651125,-0.030490,-0.035275;;, + 104;4; 0.735473, 0.673255,-0.031527,-0.034440;;, + 105;4; 0.724152, 0.687313,-0.032185,-0.033910;;, + 106;4; 0.720358, 0.692023,-0.032405,-0.033732;;, + 107;4; 0.720358, 0.692023,-0.032405,-0.033732;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { //Position + 2; + 108; + 0;3; -0.144872, 0.061513, 0.000000;;, + 1;3; -0.144872, 0.061513, 0.000000;;, + 2;3; -0.144872, 0.061513, 0.000000;;, + 3;3; -0.144872, 0.061513, 0.000000;;, + 4;3; -0.144872, 0.061513, 0.000000;;, + 5;3; -0.144872, 0.061513, 0.000000;;, + 6;3; -0.144872, 0.061513, 0.000000;;, + 7;3; -0.144872, 0.061513, 0.000000;;, + 8;3; -0.144872, 0.061513, 0.000000;;, + 9;3; -0.144872, 0.061513, 0.000000;;, + 10;3; -0.144872, 0.061513, 0.000000;;, + 11;3; -0.144872, 0.061513, 0.000000;;, + 12;3; -0.144872, 0.061513, 0.000000;;, + 13;3; -0.144872, 0.061513, 0.000000;;, + 14;3; -0.144872, 0.061513, 0.000000;;, + 15;3; -0.144872, 0.061513, 0.000000;;, + 16;3; -0.144872, 0.061513, 0.000000;;, + 17;3; -0.144872, 0.061513, 0.000000;;, + 18;3; -0.144872, 0.061513, 0.000000;;, + 19;3; -0.144872, 0.061513, 0.000000;;, + 20;3; -0.144872, 0.061513, 0.000000;;, + 21;3; -0.144872, 0.061513, 0.000000;;, + 22;3; -0.144872, 0.061513, 0.000000;;, + 23;3; -0.144872, 0.061513, 0.000000;;, + 24;3; -0.144872, 0.061513, 0.000000;;, + 25;3; -0.144872, 0.061513, 0.000000;;, + 26;3; -0.144872, 0.061513, 0.000000;;, + 27;3; -0.144872, 0.061513, 0.000000;;, + 28;3; -0.144872, 0.061513, 0.000000;;, + 29;3; -0.144872, 0.061513, 0.000000;;, + 30;3; -0.144872, 0.061513, 0.000000;;, + 31;3; -0.144872, 0.061513, 0.000000;;, + 32;3; -0.144872, 0.061513, 0.000000;;, + 33;3; -0.144872, 0.061513, 0.000000;;, + 34;3; -0.144872, 0.061513, 0.000000;;, + 35;3; -0.144872, 0.061513, 0.000000;;, + 36;3; -0.144872, 0.061513, 0.000000;;, + 37;3; -0.144872, 0.061513, 0.000000;;, + 38;3; -0.144872, 0.061513, 0.000000;;, + 39;3; -0.144872, 0.061513, 0.000000;;, + 40;3; -0.144872, 0.061513, 0.000000;;, + 41;3; -0.144872, 0.061513, 0.000000;;, + 42;3; -0.144872, 0.061513, 0.000000;;, + 43;3; -0.144872, 0.061513, 0.000000;;, + 44;3; -0.144872, 0.061513, 0.000000;;, + 45;3; -0.144872, 0.061513, 0.000000;;, + 46;3; -0.144872, 0.061513, 0.000000;;, + 47;3; -0.144872, 0.061513, 0.000000;;, + 48;3; -0.144872, 0.061513, 0.000000;;, + 49;3; -0.144872, 0.061513, 0.000000;;, + 50;3; -0.144872, 0.061513, 0.000000;;, + 51;3; -0.144872, 0.061513, 0.000000;;, + 52;3; -0.144872, 0.061513, 0.000000;;, + 53;3; -0.144872, 0.061513, 0.000000;;, + 54;3; -0.144872, 0.061513, 0.000000;;, + 55;3; -0.144872, 0.061513, 0.000000;;, + 56;3; -0.144872, 0.061513, 0.000000;;, + 57;3; -0.144872, 0.061513, 0.000000;;, + 58;3; -0.144872, 0.061513, 0.000000;;, + 59;3; -0.144872, 0.061513, 0.000000;;, + 60;3; -0.144872, 0.061513, 0.000000;;, + 61;3; -0.144872, 0.061513, 0.000000;;, + 62;3; -0.144872, 0.061513, 0.000000;;, + 63;3; -0.144872, 0.061513, 0.000000;;, + 64;3; -0.144872, 0.061513, 0.000000;;, + 65;3; -0.144872, 0.061513, 0.000000;;, + 66;3; -0.144872, 0.061513, 0.000000;;, + 67;3; -0.144872, 0.061513, 0.000000;;, + 68;3; -0.144872, 0.061513, 0.000000;;, + 69;3; -0.144872, 0.061513, 0.000000;;, + 70;3; -0.144872, 0.061513, 0.000000;;, + 71;3; -0.144872, 0.061513, 0.000000;;, + 72;3; -0.144872, 0.061513, 0.000000;;, + 73;3; -0.144872, 0.061513, 0.000000;;, + 74;3; -0.144872, 0.061513, 0.000000;;, + 75;3; -0.144872, 0.061513, 0.000000;;, + 76;3; -0.144872, 0.061513, 0.000000;;, + 77;3; -0.144872, 0.061513, 0.000000;;, + 78;3; -0.144872, 0.061513, 0.000000;;, + 79;3; -0.144872, 0.061513, 0.000000;;, + 80;3; -0.144872, 0.061513, 0.000000;;, + 81;3; -0.144872, 0.061513, 0.000000;;, + 82;3; -0.144872, 0.061513, 0.000000;;, + 83;3; -0.144872, 0.061513, 0.000000;;, + 84;3; -0.144872, 0.061513, 0.000000;;, + 85;3; -0.144872, 0.061513, 0.000000;;, + 86;3; -0.144872, 0.061513, 0.000000;;, + 87;3; -0.144872, 0.061513, 0.000000;;, + 88;3; -0.144872, 0.061513, 0.000000;;, + 89;3; -0.144872, 0.061513, 0.000000;;, + 90;3; -0.144872, 0.061513, 0.000000;;, + 91;3; -0.144872, 0.061513, 0.000000;;, + 92;3; -0.144872, 0.061513, 0.000000;;, + 93;3; -0.144872, 0.061513, 0.000000;;, + 94;3; -0.144872, 0.061513, 0.000000;;, + 95;3; -0.144872, 0.061513, 0.000000;;, + 96;3; -0.144872, 0.061513, 0.000000;;, + 97;3; -0.144872, 0.061513, 0.000000;;, + 98;3; -0.144872, 0.061513, 0.000000;;, + 99;3; -0.144872, 0.061513, 0.000000;;, + 100;3; -0.144872, 0.061513, 0.000000;;, + 101;3; -0.144872, 0.061513, 0.000000;;, + 102;3; -0.144872, 0.061513, 0.000000;;, + 103;3; -0.144872, 0.061513, 0.000000;;, + 104;3; -0.144872, 0.061513, 0.000000;;, + 105;3; -0.144872, 0.061513, 0.000000;;, + 106;3; -0.144872, 0.061513, 0.000000;;, + 107;3; -0.144872, 0.061513, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 42;4; 0.012248, 0.998881,-0.000000,-0.000000;;, + 43;4; 0.039184, 0.996421,-0.000000,-0.000000;;, + 44;4; 0.071828, 0.993438,-0.000000,-0.000000;;, + 45;4; 0.104954, 0.990412,-0.000000,-0.000000;;, + 46;4; 0.135005, 0.987667,-0.000000,-0.000000;;, + 47;4; 0.159246, 0.985452,-0.000000,-0.000000;;, + 48;4; 0.175357, 0.983980,-0.000000,-0.000000;;, + 49;4; 0.181195, 0.983447,-0.000000,-0.000000;;, + 50;4; 0.174908, 0.984022,-0.000000,-0.000000;;, + 51;4; 0.156139, 0.985736,-0.000000,-0.000000;;, + 52;4; 0.126593, 0.988435,-0.000000,-0.000000;;, + 53;4; 0.090600, 0.991724,-0.000000,-0.000000;;, + 54;4; 0.054607, 0.995012,-0.000000,-0.000000;;, + 55;4; 0.025058, 0.997711,-0.000000,-0.000000;;, + 56;4; 0.006288, 0.999426,-0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 61;4; -0.015047, 0.998718,-0.000000,-0.000000;;, + 62;4; -0.057422, 0.995106,-0.000000,-0.000000;;, + 63;4; -0.111826, 0.990469,-0.000000,-0.000000;;, + 64;4; -0.154196, 0.986857,-0.000000,-0.000000;;, + 65;4; -0.169240, 0.985575,-0.000000,-0.000000;;, + 66;4; -0.166047, 0.986040,-0.000000,-0.000000;;, + 67;4; -0.156832, 0.987322,-0.000000,-0.000000;;, + 68;4; -0.142082, 0.989252,-0.000000,-0.000000;;, + 69;4; -0.122229, 0.991645,-0.000000,-0.000000;;, + 70;4; -0.097673, 0.994282,-0.000000,-0.000000;;, + 71;4; -0.068804, 0.996881,-0.000000,-0.000000;;, + 72;4; -0.036052, 0.999025,-0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 74;4; 0.053673, 0.998559,-0.000000,-0.000000;;, + 75;4; 0.106079, 0.991342,-0.000000,-0.000000;;, + 76;4; 0.163098, 0.980061,-0.000000,-0.000000;;, + 77;4; 0.218649, 0.967459,-0.000000,-0.000000;;, + 78;4; 0.269086, 0.955138,-0.000000,-0.000000;;, + 79;4; 0.311807, 0.944200,-0.000000,-0.000000;;, + 80;4; 0.344689, 0.935502,-0.000000,-0.000000;;, + 81;4; 0.365809, 0.929779,-0.000000,-0.000000;;, + 82;4; 0.373278, 0.927719,-0.000000,-0.000000;;, + 83;4; 0.365966, 0.930188,-0.000000,-0.000000;;, + 84;4; 0.343286, 0.937556,-0.000000,-0.000000;;, + 85;4; 0.305474, 0.949156,-0.000000,-0.000000;;, + 86;4; 0.255428, 0.963286,-0.000000,-0.000000;;, + 87;4; 0.198768, 0.977416,-0.000000,-0.000000;;, + 88;4; 0.142120, 0.989015,-0.000000,-0.000000;;, + 89;4; 0.090827, 0.996384,-0.000000,-0.000000;;, + 90;4; 0.047904, 0.998852,-0.000000,-0.000000;;, + 91;4; 0.006316, 0.997886,-0.000000,-0.000000;;, + 92;4; -0.040994, 0.995002,-0.000000,-0.000000;;, + 93;4; -0.091373, 0.990461,-0.000000,-0.000000;;, + 94;4; -0.140400, 0.984931,-0.000000,-0.000000;;, + 95;4; -0.182814, 0.979400,-0.000000,-0.000000;;, + 96;4; -0.214363, 0.974859,-0.000000,-0.000000;;, + 97;4; -0.233064, 0.971975,-0.000000,-0.000000;;, + 98;4; -0.239043, 0.971009,-0.000000,-0.000000;;, + 99;4; -0.229083, 0.971975,-0.000000,-0.000000;;, + 100;4; -0.199358, 0.974859,-0.000000,-0.000000;;, + 101;4; -0.152566, 0.979398,-0.000000,-0.000000;;, + 102;4; -0.095562, 0.984928,-0.000000,-0.000000;;, + 103;4; -0.038544, 0.990458,-0.000000,-0.000000;;, + 104;4; 0.008280, 0.994997,-0.000000,-0.000000;;, + 105;4; 0.038035, 0.997881,-0.000000,-0.000000;;, + 106;4; 0.048007, 0.998847,-0.000000,-0.000000;;, + 107;4; 0.048007, 0.998847,-0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { //Position + 2; + 108; + 0;3; 0.135398, 0.070410, 0.000000;;, + 1;3; 0.135398, 0.070410, 0.000000;;, + 2;3; 0.135398, 0.070410, 0.000000;;, + 3;3; 0.135398, 0.070410, 0.000000;;, + 4;3; 0.135398, 0.070410, 0.000000;;, + 5;3; 0.135398, 0.070410, 0.000000;;, + 6;3; 0.135398, 0.070410, 0.000000;;, + 7;3; 0.135398, 0.070410, 0.000000;;, + 8;3; 0.135398, 0.070410, 0.000000;;, + 9;3; 0.135398, 0.070410, 0.000000;;, + 10;3; 0.135398, 0.070410, 0.000000;;, + 11;3; 0.135398, 0.070410, 0.000000;;, + 12;3; 0.135398, 0.070410, 0.000000;;, + 13;3; 0.135398, 0.070410, 0.000000;;, + 14;3; 0.135398, 0.070410, 0.000000;;, + 15;3; 0.135398, 0.070410, 0.000000;;, + 16;3; 0.135398, 0.070410, 0.000000;;, + 17;3; 0.135398, 0.070410, 0.000000;;, + 18;3; 0.135398, 0.070410, 0.000000;;, + 19;3; 0.135398, 0.070410, 0.000000;;, + 20;3; 0.135398, 0.070410, 0.000000;;, + 21;3; 0.135398, 0.070410, 0.000000;;, + 22;3; 0.135398, 0.070410, 0.000000;;, + 23;3; 0.135398, 0.070410, 0.000000;;, + 24;3; 0.135398, 0.070410, 0.000000;;, + 25;3; 0.135398, 0.070410, 0.000000;;, + 26;3; 0.135398, 0.070410, 0.000000;;, + 27;3; 0.135398, 0.070410, 0.000000;;, + 28;3; 0.135398, 0.070410, 0.000000;;, + 29;3; 0.135398, 0.070410, 0.000000;;, + 30;3; 0.135398, 0.070410, 0.000000;;, + 31;3; 0.135398, 0.070410, 0.000000;;, + 32;3; 0.135398, 0.070410, 0.000000;;, + 33;3; 0.135398, 0.070410, 0.000000;;, + 34;3; 0.135398, 0.070410, 0.000000;;, + 35;3; 0.135398, 0.070410, 0.000000;;, + 36;3; 0.135398, 0.070410, 0.000000;;, + 37;3; 0.135398, 0.070410, 0.000000;;, + 38;3; 0.135398, 0.070410, 0.000000;;, + 39;3; 0.135398, 0.070410, 0.000000;;, + 40;3; 0.135398, 0.070410, 0.000000;;, + 41;3; 0.135398, 0.070410, 0.000000;;, + 42;3; 0.135398, 0.070410, 0.000000;;, + 43;3; 0.135398, 0.070410, 0.000000;;, + 44;3; 0.135398, 0.070410, 0.000000;;, + 45;3; 0.135398, 0.070410, 0.000000;;, + 46;3; 0.135398, 0.070410, 0.000000;;, + 47;3; 0.135398, 0.070410, 0.000000;;, + 48;3; 0.135398, 0.070410, 0.000000;;, + 49;3; 0.135398, 0.070410, 0.000000;;, + 50;3; 0.135398, 0.070410, 0.000000;;, + 51;3; 0.135398, 0.070410, 0.000000;;, + 52;3; 0.135398, 0.070410, 0.000000;;, + 53;3; 0.135398, 0.070410, 0.000000;;, + 54;3; 0.135398, 0.070410, 0.000000;;, + 55;3; 0.135398, 0.070410, 0.000000;;, + 56;3; 0.135398, 0.070410, 0.000000;;, + 57;3; 0.135398, 0.070410, 0.000000;;, + 58;3; 0.135398, 0.070410, 0.000000;;, + 59;3; 0.135398, 0.070410, 0.000000;;, + 60;3; 0.135398, 0.070410, 0.000000;;, + 61;3; 0.135398, 0.070410, 0.000000;;, + 62;3; 0.135398, 0.070410, 0.000000;;, + 63;3; 0.135398, 0.070410, 0.000000;;, + 64;3; 0.135398, 0.070410, 0.000000;;, + 65;3; 0.135398, 0.070410, 0.000000;;, + 66;3; 0.135398, 0.070410, 0.000000;;, + 67;3; 0.135398, 0.070410, 0.000000;;, + 68;3; 0.135398, 0.070410, 0.000000;;, + 69;3; 0.135398, 0.070410, 0.000000;;, + 70;3; 0.135398, 0.070410, 0.000000;;, + 71;3; 0.135398, 0.070410, 0.000000;;, + 72;3; 0.135398, 0.070410, 0.000000;;, + 73;3; 0.135398, 0.070410, 0.000000;;, + 74;3; 0.135398, 0.070410, 0.000000;;, + 75;3; 0.135398, 0.070410, 0.000000;;, + 76;3; 0.135398, 0.070410, 0.000000;;, + 77;3; 0.135398, 0.070410, 0.000000;;, + 78;3; 0.135398, 0.070410, 0.000000;;, + 79;3; 0.135398, 0.070410, 0.000000;;, + 80;3; 0.135398, 0.070410, 0.000000;;, + 81;3; 0.135398, 0.070410, 0.000000;;, + 82;3; 0.135398, 0.070410, 0.000000;;, + 83;3; 0.135398, 0.070410, 0.000000;;, + 84;3; 0.135398, 0.070410, 0.000000;;, + 85;3; 0.135398, 0.070410, 0.000000;;, + 86;3; 0.135398, 0.070410, 0.000000;;, + 87;3; 0.135398, 0.070410, 0.000000;;, + 88;3; 0.135398, 0.070410, 0.000000;;, + 89;3; 0.135398, 0.070410, 0.000000;;, + 90;3; 0.135398, 0.070410, 0.000000;;, + 91;3; 0.135398, 0.070410, 0.000000;;, + 92;3; 0.135398, 0.070411, 0.000000;;, + 93;3; 0.135398, 0.070410, 0.000000;;, + 94;3; 0.135398, 0.070410, 0.000000;;, + 95;3; 0.135398, 0.070410, 0.000000;;, + 96;3; 0.135398, 0.070410, 0.000000;;, + 97;3; 0.135398, 0.070410, 0.000000;;, + 98;3; 0.135398, 0.070410, 0.000000;;, + 99;3; 0.135398, 0.070410, 0.000000;;, + 100;3; 0.135398, 0.070410, 0.000000;;, + 101;3; 0.135398, 0.070410, 0.000000;;, + 102;3; 0.135398, 0.070410, 0.000000;;, + 103;3; 0.135398, 0.070410, 0.000000;;, + 104;3; 0.135398, 0.070410, 0.000000;;, + 105;3; 0.135398, 0.070410, 0.000000;;, + 106;3; 0.135398, 0.070410, 0.000000;;, + 107;3; 0.135398, 0.070410, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 42;4; -0.011497, 0.999015,-0.000000,-0.000000;;, + 43;4; -0.036781, 0.996849,-0.000000,-0.000000;;, + 44;4; -0.067423, 0.994224,-0.000000,-0.000000;;, + 45;4; -0.098518, 0.991561,-0.000000,-0.000000;;, + 46;4; -0.126725, 0.989144,-0.000000,-0.000000;;, + 47;4; -0.149480, 0.987195,-0.000000,-0.000000;;, + 48;4; -0.164603, 0.985899,-0.000000,-0.000000;;, + 49;4; -0.170083, 0.985430,-0.000000,-0.000000;;, + 50;4; -0.164181, 0.985935,-0.000000,-0.000000;;, + 51;4; -0.146564, 0.987445,-0.000000,-0.000000;;, + 52;4; -0.118829, 0.989821,-0.000000,-0.000000;;, + 53;4; -0.085044, 0.992715,-0.000000,-0.000000;;, + 54;4; -0.051258, 0.995609,-0.000000,-0.000000;;, + 55;4; -0.023522, 0.997985,-0.000000,-0.000000;;, + 56;4; -0.005903, 0.999494,-0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 61;4; 0.015161, 0.998698,-0.000000,-0.000000;;, + 62;4; 0.057858, 0.995031,-0.000000,-0.000000;;, + 63;4; 0.112676, 0.990322,-0.000000,-0.000000;;, + 64;4; 0.155368, 0.986655,-0.000000,-0.000000;;, + 65;4; 0.170525, 0.985353,-0.000000,-0.000000;;, + 66;4; 0.165031, 0.985825,-0.000000,-0.000000;;, + 67;4; 0.149868, 0.987128,-0.000000,-0.000000;;, + 68;4; 0.127055, 0.989087,-0.000000,-0.000000;;, + 69;4; 0.098775, 0.991516,-0.000000,-0.000000;;, + 70;4; 0.067600, 0.994194,-0.000000,-0.000000;;, + 71;4; 0.036878, 0.996833,-0.000000,-0.000000;;, + 72;4; 0.011527, 0.999010,-0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 74;4; 0.055475, 0.998460,-0.000000,-0.000000;;, + 75;4; 0.034281, 0.994439,-0.000000,-0.000000;;, + 76;4; -0.012328, 0.989066,-0.000000,-0.000000;;, + 77;4; -0.068815, 0.983361,-0.000000,-0.000000;;, + 78;4; -0.126137, 0.977927,-0.000000,-0.000000;;, + 79;4; -0.178136, 0.973177,-0.000000,-0.000000;;, + 80;4; -0.220084, 0.969440,-0.000000,-0.000000;;, + 81;4; -0.247962, 0.967001,-0.000000,-0.000000;;, + 82;4; -0.258065, 0.966128,-0.000000,-0.000000;;, + 83;4; -0.251248, 0.967264,-0.000000,-0.000000;;, + 84;4; -0.230090, 0.970657,-0.000000,-0.000000;;, + 85;4; -0.194778, 0.975997,-0.000000,-0.000000;;, + 86;4; -0.147975, 0.982503,-0.000000,-0.000000;;, + 87;4; -0.094886, 0.989009,-0.000000,-0.000000;;, + 88;4; -0.041671, 0.994350,-0.000000,-0.000000;;, + 89;4; 0.006683, 0.997742,-0.000000,-0.000000;;, + 90;4; 0.047348, 0.998878,-0.000000,-0.000000;;, + 91;4; 0.087012, 0.997046,-0.000000,-0.000000;;, + 92;4; 0.132380, 0.991576,-0.000000,-0.000000;;, + 93;4; 0.180897, 0.982965,-0.000000,-0.000000;;, + 94;4; 0.228266, 0.972475,-0.000000,-0.000000;;, + 95;4; 0.269349, 0.961985,-0.000000,-0.000000;;, + 96;4; 0.299967, 0.953373,-0.000000,-0.000000;;, + 97;4; 0.318143, 0.947904,-0.000000,-0.000000;;, + 98;4; 0.323959, 0.946071,-0.000000,-0.000000;;, + 99;4; 0.314574, 0.947893,-0.000000,-0.000000;;, + 100;4; 0.286565, 0.953331,-0.000000,-0.000000;;, + 101;4; 0.242473, 0.961891,-0.000000,-0.000000;;, + 102;4; 0.188759, 0.972320,-0.000000,-0.000000;;, + 103;4; 0.135032, 0.982748,-0.000000,-0.000000;;, + 104;4; 0.090913, 0.991309,-0.000000,-0.000000;;, + 105;4; 0.062878, 0.996747,-0.000000,-0.000000;;, + 106;4; 0.053483, 0.998569,-0.000000,-0.000000;;, + 107;4; 0.053483, 0.998569,-0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_005} + AnimationKey { //Position + 2; + 108; + 0;3; -0.002513, 0.866015, 0.122502;;, + 1;3; -0.002513, 0.866015, 0.122502;;, + 2;3; -0.002513, 0.866015, 0.122502;;, + 3;3; -0.002513, 0.866015, 0.122502;;, + 4;3; -0.002513, 0.866015, 0.122502;;, + 5;3; -0.002513, 0.866015, 0.122502;;, + 6;3; -0.002513, 0.866015, 0.122502;;, + 7;3; -0.002513, 0.866015, 0.122502;;, + 8;3; -0.002513, 0.866015, 0.122502;;, + 9;3; -0.002513, 0.866015, 0.122502;;, + 10;3; -0.002513, 0.866015, 0.122502;;, + 11;3; -0.002513, 0.866015, 0.122502;;, + 12;3; -0.002513, 0.866015, 0.122502;;, + 13;3; -0.002513, 0.866015, 0.122502;;, + 14;3; -0.002513, 0.866015, 0.122502;;, + 15;3; -0.002513, 0.866015, 0.122502;;, + 16;3; -0.002513, 0.866015, 0.122502;;, + 17;3; -0.002513, 0.866015, 0.122502;;, + 18;3; -0.002513, 0.866015, 0.122502;;, + 19;3; -0.002513, 0.866015, 0.122502;;, + 20;3; -0.002513, 0.866015, 0.122502;;, + 21;3; -0.002513, 0.866015, 0.122502;;, + 22;3; -0.002513, 0.866015, 0.122502;;, + 23;3; -0.002513, 0.866015, 0.122502;;, + 24;3; -0.002513, 0.866015, 0.122502;;, + 25;3; -0.002513, 0.866015, 0.122502;;, + 26;3; -0.002513, 0.866015, 0.122502;;, + 27;3; -0.002513, 0.866015, 0.122502;;, + 28;3; -0.002513, 0.866015, 0.122502;;, + 29;3; -0.002513, 0.866015, 0.122502;;, + 30;3; -0.002513, 0.866015, 0.122502;;, + 31;3; -0.002513, 0.866015, 0.122502;;, + 32;3; -0.002513, 0.866015, 0.122502;;, + 33;3; -0.002513, 0.866015, 0.122502;;, + 34;3; -0.002513, 0.866015, 0.122502;;, + 35;3; -0.002513, 0.866015, 0.122502;;, + 36;3; -0.002513, 0.866015, 0.122502;;, + 37;3; -0.002513, 0.866015, 0.122502;;, + 38;3; -0.002513, 0.866015, 0.122502;;, + 39;3; -0.002513, 0.866015, 0.122502;;, + 40;3; -0.002513, 0.866015, 0.122502;;, + 41;3; -0.002513, 0.866015, 0.122502;;, + 42;3; -0.002513, 0.866015, 0.122502;;, + 43;3; -0.002513, 0.866015, 0.122502;;, + 44;3; -0.002513, 0.866015, 0.122502;;, + 45;3; -0.002513, 0.866015, 0.122502;;, + 46;3; -0.002513, 0.866015, 0.122502;;, + 47;3; -0.002513, 0.866015, 0.122502;;, + 48;3; -0.002513, 0.866015, 0.122502;;, + 49;3; -0.002513, 0.866015, 0.122502;;, + 50;3; -0.002513, 0.866015, 0.122502;;, + 51;3; -0.002513, 0.866015, 0.122502;;, + 52;3; -0.002513, 0.866015, 0.122502;;, + 53;3; -0.002513, 0.866015, 0.122502;;, + 54;3; -0.002513, 0.866015, 0.122502;;, + 55;3; -0.002513, 0.866015, 0.122502;;, + 56;3; -0.002513, 0.866015, 0.122502;;, + 57;3; -0.002513, 0.866015, 0.122502;;, + 58;3; -0.002513, 0.866015, 0.122502;;, + 59;3; -0.002513, 0.866015, 0.122502;;, + 60;3; -0.002513, 0.866015, 0.122502;;, + 61;3; -0.002513, 0.866015, 0.122502;;, + 62;3; -0.002513, 0.866015, 0.122502;;, + 63;3; -0.002513, 0.866015, 0.122502;;, + 64;3; -0.002513, 0.866015, 0.122502;;, + 65;3; -0.002513, 0.866015, 0.122502;;, + 66;3; -0.002513, 0.866015, 0.122502;;, + 67;3; -0.002513, 0.866015, 0.122502;;, + 68;3; -0.002513, 0.866015, 0.122502;;, + 69;3; -0.002513, 0.866015, 0.122502;;, + 70;3; -0.002513, 0.866015, 0.122502;;, + 71;3; -0.002513, 0.866015, 0.122502;;, + 72;3; -0.002513, 0.866015, 0.122502;;, + 73;3; -0.002513, 0.866015, 0.122502;;, + 74;3; -0.002513, 0.866015, 0.122502;;, + 75;3; -0.002513, 0.866015, 0.122502;;, + 76;3; -0.002513, 0.866015, 0.122502;;, + 77;3; -0.002513, 0.866015, 0.122502;;, + 78;3; -0.002513, 0.866015, 0.122502;;, + 79;3; -0.002513, 0.866015, 0.122502;;, + 80;3; -0.002513, 0.866015, 0.122502;;, + 81;3; -0.002513, 0.866015, 0.122502;;, + 82;3; -0.002513, 0.866015, 0.122502;;, + 83;3; -0.002513, 0.866015, 0.122502;;, + 84;3; -0.002513, 0.866015, 0.122502;;, + 85;3; -0.002513, 0.866015, 0.122502;;, + 86;3; -0.002513, 0.866015, 0.122502;;, + 87;3; -0.002513, 0.866015, 0.122502;;, + 88;3; -0.002513, 0.866015, 0.122502;;, + 89;3; -0.002513, 0.866015, 0.122502;;, + 90;3; -0.002513, 0.866015, 0.122502;;, + 91;3; -0.002513, 0.866015, 0.122502;;, + 92;3; -0.002513, 0.866015, 0.122502;;, + 93;3; -0.002513, 0.866015, 0.122502;;, + 94;3; -0.002513, 0.866015, 0.122502;;, + 95;3; -0.002513, 0.866015, 0.122502;;, + 96;3; -0.002513, 0.866015, 0.122502;;, + 97;3; -0.002513, 0.866015, 0.122502;;, + 98;3; -0.002513, 0.866015, 0.122502;;, + 99;3; -0.002513, 0.866015, 0.122502;;, + 100;3; -0.002513, 0.866015, 0.122502;;, + 101;3; -0.002513, 0.866015, 0.122502;;, + 102;3; -0.002513, 0.866015, 0.122502;;, + 103;3; -0.002513, 0.866015, 0.122502;;, + 104;3; -0.002513, 0.866015, 0.122502;;, + 105;3; -0.002513, 0.866015, 0.122502;;, + 106;3; -0.002513, 0.866015, 0.122502;;, + 107;3; -0.002513, 0.866015, 0.122502;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 1;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 2;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 3;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 4;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 5;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 6;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 7;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 8;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 9;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 10;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 11;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 12;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 13;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 14;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 15;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 16;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 17;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 18;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 19;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 20;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 21;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 22;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 23;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 24;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 25;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 26;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 27;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 28;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 29;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 30;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 31;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 32;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 33;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 34;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 35;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 36;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 37;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 38;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 39;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 40;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 41;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 42;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 43;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 44;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 45;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 46;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 47;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 48;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 49;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 50;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 51;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 52;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 53;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 54;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 55;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 56;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 57;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 58;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 59;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 60;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 61;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 62;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 63;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 64;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 65;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 66;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 67;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 68;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 69;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 70;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 71;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 72;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 73;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 74;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 75;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 76;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 77;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 78;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 79;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 80;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 81;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 82;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 83;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 84;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 85;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 86;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 87;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 88;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 89;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 90;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 91;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 92;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 93;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 94;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 95;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 96;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 97;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 98;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 99;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 100;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 101;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 102;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 103;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 104;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 105;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 106;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 107;4; -0.999935,-0.004138, 0.000565,-0.000851;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Body_001} + AnimationKey { //Position + 2; + 108; + 0;3; 0.000000, 0.187946,-0.206990;;, + 1;3; 0.000000, 0.187946,-0.206990;;, + 2;3; 0.000000, 0.187946,-0.206990;;, + 3;3; 0.000000, 0.187946,-0.206990;;, + 4;3; 0.000000, 0.187946,-0.206990;;, + 5;3; 0.000000, 0.187946,-0.206990;;, + 6;3; 0.000000, 0.187946,-0.206990;;, + 7;3; 0.000000, 0.187946,-0.206990;;, + 8;3; 0.000000, 0.187946,-0.206990;;, + 9;3; 0.000000, 0.187946,-0.206990;;, + 10;3; 0.000000, 0.187946,-0.206990;;, + 11;3; 0.000000, 0.187946,-0.206990;;, + 12;3; 0.000000, 0.187946,-0.206990;;, + 13;3; 0.000000, 0.187946,-0.206990;;, + 14;3; 0.000000, 0.187946,-0.206990;;, + 15;3; 0.000000, 0.187946,-0.206990;;, + 16;3; 0.000000, 0.187946,-0.206990;;, + 17;3; 0.000000, 0.187946,-0.206990;;, + 18;3; 0.000000, 0.187946,-0.206990;;, + 19;3; 0.000000, 0.187946,-0.206990;;, + 20;3; 0.000000, 0.187946,-0.206990;;, + 21;3; 0.000000, 0.187946,-0.206990;;, + 22;3; 0.000000, 0.187946,-0.206990;;, + 23;3; 0.000000, 0.187946,-0.206990;;, + 24;3; 0.000000, 0.187946,-0.206990;;, + 25;3; 0.000000, 0.187946,-0.206990;;, + 26;3; 0.000000, 0.187946,-0.206990;;, + 27;3; 0.000000, 0.187946,-0.206990;;, + 28;3; 0.000000, 0.187946,-0.206990;;, + 29;3; 0.000000, 0.187946,-0.206990;;, + 30;3; 0.000000, 0.187946,-0.206990;;, + 31;3; 0.000000, 0.187946,-0.206990;;, + 32;3; 0.000000, 0.187946,-0.206990;;, + 33;3; 0.000000, 0.187946,-0.206990;;, + 34;3; 0.000000, 0.187946,-0.206990;;, + 35;3; 0.000000, 0.187946,-0.206990;;, + 36;3; 0.000000, 0.187946,-0.206990;;, + 37;3; 0.000000, 0.187946,-0.206990;;, + 38;3; 0.000000, 0.187946,-0.206990;;, + 39;3; 0.000000, 0.187946,-0.206990;;, + 40;3; 0.000000, 0.187946,-0.206990;;, + 41;3; 0.000000, 0.187946,-0.206990;;, + 42;3; 0.000000, 0.187946,-0.206990;;, + 43;3; 0.000000, 0.187946,-0.206990;;, + 44;3; 0.000000, 0.187946,-0.206990;;, + 45;3; 0.000000, 0.187946,-0.206990;;, + 46;3; 0.000000, 0.187946,-0.206990;;, + 47;3; 0.000000, 0.187946,-0.206990;;, + 48;3; 0.000000, 0.187946,-0.206990;;, + 49;3; 0.000000, 0.187946,-0.206990;;, + 50;3; 0.000000, 0.187946,-0.206990;;, + 51;3; 0.000000, 0.187946,-0.206990;;, + 52;3; 0.000000, 0.187946,-0.206990;;, + 53;3; 0.000000, 0.187946,-0.206990;;, + 54;3; 0.000000, 0.187946,-0.206990;;, + 55;3; 0.000000, 0.187946,-0.206990;;, + 56;3; 0.000000, 0.187946,-0.206990;;, + 57;3; 0.000000, 0.187946,-0.206990;;, + 58;3; 0.000000, 0.187946,-0.206990;;, + 59;3; 0.000000, 0.187946,-0.206990;;, + 60;3; 0.000000, 0.187946,-0.206990;;, + 61;3; 0.000000, 0.187946,-0.206990;;, + 62;3; 0.000000, 0.187946,-0.206990;;, + 63;3; 0.000000, 0.187946,-0.206990;;, + 64;3; 0.000000, 0.187946,-0.206990;;, + 65;3; 0.000000, 0.187946,-0.206990;;, + 66;3; 0.000000, 0.187946,-0.206990;;, + 67;3; 0.000000, 0.187946,-0.206990;;, + 68;3; 0.000000, 0.187946,-0.206990;;, + 69;3; 0.000000, 0.187946,-0.206990;;, + 70;3; 0.000000, 0.187946,-0.206990;;, + 71;3; 0.000000, 0.187946,-0.206990;;, + 72;3; 0.000000, 0.187946,-0.206990;;, + 73;3; 0.000000, 0.187946,-0.206990;;, + 74;3; 0.000000, 0.187946,-0.206990;;, + 75;3; 0.000000, 0.187946,-0.206990;;, + 76;3; 0.000000, 0.187946,-0.206990;;, + 77;3; 0.000000, 0.187946,-0.206990;;, + 78;3; 0.000000, 0.187946,-0.206990;;, + 79;3; 0.000000, 0.187946,-0.206990;;, + 80;3; 0.000000, 0.187946,-0.206990;;, + 81;3; 0.000000, 0.187946,-0.206990;;, + 82;3; 0.000000, 0.187946,-0.206990;;, + 83;3; 0.000000, 0.187946,-0.206990;;, + 84;3; 0.000000, 0.187946,-0.206990;;, + 85;3; 0.000000, 0.187946,-0.206990;;, + 86;3; 0.000000, 0.187946,-0.206990;;, + 87;3; 0.000000, 0.187946,-0.206990;;, + 88;3; 0.000000, 0.187946,-0.206990;;, + 89;3; 0.000000, 0.187946,-0.206990;;, + 90;3; 0.000000, 0.187946,-0.206990;;, + 91;3; 0.000000, 0.187946,-0.206990;;, + 92;3; 0.000000, 0.187946,-0.206990;;, + 93;3; 0.000000, 0.187946,-0.206990;;, + 94;3; 0.000000, 0.187946,-0.206990;;, + 95;3; 0.000000, 0.187946,-0.206990;;, + 96;3; 0.000000, 0.187946,-0.206990;;, + 97;3; 0.000000, 0.187946,-0.206990;;, + 98;3; 0.000000, 0.187946,-0.206990;;, + 99;3; 0.000000, 0.187946,-0.206990;;, + 100;3; 0.000000, 0.187946,-0.206990;;, + 101;3; 0.000000, 0.187946,-0.206990;;, + 102;3; 0.000000, 0.187946,-0.206990;;, + 103;3; 0.000000, 0.187946,-0.206990;;, + 104;3; 0.000000, 0.187946,-0.206990;;, + 105;3; 0.000000, 0.187946,-0.206990;;, + 106;3; 0.000000, 0.187946,-0.206990;;, + 107;3; 0.000000, 0.187946,-0.206990;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 51;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 52;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 53;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 54;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 55;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 56;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 58;4; 0.001880, 0.999959, 0.000000,-0.000000;;, + 59;4; 0.007192, 0.999844, 0.000000,-0.000000;;, + 60;4; 0.013047, 0.999717, 0.000000,-0.000000;;, + 61;4; 0.019463, 0.999578, 0.000000,-0.000000;;, + 62;4; 0.027724, 0.999400, 0.000000,-0.000000;;, + 63;4; 0.035868, 0.999223, 0.000000,-0.000000;;, + 64;4; 0.041445, 0.999102, 0.000000,-0.000000;;, + 65;4; 0.043294, 0.999062, 0.000000,-0.000000;;, + 66;4; 0.041899, 0.999093, 0.000000,-0.000000;;, + 67;4; 0.038050, 0.999176, 0.000000,-0.000000;;, + 68;4; 0.032257, 0.999301, 0.000000,-0.000000;;, + 69;4; 0.025077, 0.999457, 0.000000,-0.000000;;, + 70;4; 0.017162, 0.999628, 0.000000,-0.000000;;, + 71;4; 0.009362, 0.999797, 0.000000,-0.000000;;, + 72;4; 0.002926, 0.999937, 0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 75;4; 0.015626, 0.998169, 0.000000,-0.000000;;, + 76;4; 0.049991, 0.994143, 0.000000,-0.000000;;, + 77;4; 0.091638, 0.989263, 0.000000,-0.000000;;, + 78;4; 0.133898, 0.984312, 0.000000,-0.000000;;, + 79;4; 0.172235, 0.979820, 0.000000,-0.000000;;, + 80;4; 0.203160, 0.976196, 0.000000,-0.000000;;, + 81;4; 0.223714, 0.973788, 0.000000,-0.000000;;, + 82;4; 0.231162, 0.972915, 0.000000,-0.000000;;, + 83;4; 0.223140, 0.973855, 0.000000,-0.000000;;, + 84;4; 0.199196, 0.976661, 0.000000,-0.000000;;, + 85;4; 0.161500, 0.981077, 0.000000,-0.000000;;, + 86;4; 0.115581, 0.986458, 0.000000,-0.000000;;, + 87;4; 0.069662, 0.991838, 0.000000,-0.000000;;, + 88;4; 0.031966, 0.996255, 0.000000,-0.000000;;, + 89;4; 0.008022, 0.999060, 0.000000,-0.000000;;, + 90;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 91;4; 0.006839, 0.999319, 0.000000,-0.000000;;, + 92;4; 0.027254, 0.997288, 0.000000,-0.000000;;, + 93;4; 0.059392, 0.994089, 0.000000,-0.000000;;, + 94;4; 0.098542, 0.990193, 0.000000,-0.000000;;, + 95;4; 0.137691, 0.986297, 0.000000,-0.000000;;, + 96;4; 0.169830, 0.983099, 0.000000,-0.000000;;, + 97;4; 0.190244, 0.981067, 0.000000,-0.000000;;, + 98;4; 0.197083, 0.980387, 0.000000,-0.000000;;, + 99;4; 0.190245, 0.981067, 0.000000,-0.000000;;, + 100;4; 0.169833, 0.983099, 0.000000,-0.000000;;, + 101;4; 0.137700, 0.986297, 0.000000,-0.000000;;, + 102;4; 0.098556, 0.990193, 0.000000,-0.000000;;, + 103;4; 0.059407, 0.994089, 0.000000,-0.000000;;, + 104;4; 0.027264, 0.997288, 0.000000,-0.000000;;, + 105;4; 0.006842, 0.999319, 0.000000,-0.000000;;, + 106;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 107;4; -0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Body_002} + AnimationKey { //Position + 2; + 108; + 0;3; 0.000000, 0.185728, 0.203380;;, + 1;3; 0.000000, 0.185728, 0.203380;;, + 2;3; 0.000000, 0.185728, 0.203380;;, + 3;3; 0.000000, 0.185728, 0.203380;;, + 4;3; 0.000000, 0.185728, 0.203380;;, + 5;3; 0.000000, 0.185728, 0.203380;;, + 6;3; 0.000000, 0.185728, 0.203380;;, + 7;3; 0.000000, 0.185728, 0.203380;;, + 8;3; 0.000000, 0.185728, 0.203380;;, + 9;3; 0.000000, 0.185728, 0.203380;;, + 10;3; 0.000000, 0.185728, 0.203380;;, + 11;3; 0.000000, 0.185728, 0.203380;;, + 12;3; 0.000000, 0.185728, 0.203380;;, + 13;3; 0.000000, 0.185728, 0.203380;;, + 14;3; 0.000000, 0.185728, 0.203380;;, + 15;3; 0.000000, 0.185728, 0.203380;;, + 16;3; 0.000000, 0.185728, 0.203380;;, + 17;3; 0.000000, 0.185728, 0.203380;;, + 18;3; 0.000000, 0.185728, 0.203380;;, + 19;3; 0.000000, 0.185728, 0.203380;;, + 20;3; 0.000000, 0.185728, 0.203380;;, + 21;3; 0.000000, 0.185728, 0.203380;;, + 22;3; 0.000000, 0.185728, 0.203380;;, + 23;3; 0.000000, 0.185728, 0.203380;;, + 24;3; 0.000000, 0.185728, 0.203380;;, + 25;3; 0.000000, 0.185728, 0.203380;;, + 26;3; 0.000000, 0.185728, 0.203380;;, + 27;3; 0.000000, 0.185728, 0.203380;;, + 28;3; 0.000000, 0.185728, 0.203380;;, + 29;3; 0.000000, 0.185728, 0.203380;;, + 30;3; 0.000000, 0.185728, 0.203380;;, + 31;3; 0.000000, 0.185728, 0.203380;;, + 32;3; 0.000000, 0.185728, 0.203380;;, + 33;3; 0.000000, 0.185728, 0.203380;;, + 34;3; 0.000000, 0.185728, 0.203380;;, + 35;3; 0.000000, 0.185728, 0.203380;;, + 36;3; 0.000000, 0.185728, 0.203380;;, + 37;3; 0.000000, 0.185728, 0.203380;;, + 38;3; 0.000000, 0.185728, 0.203380;;, + 39;3; 0.000000, 0.185728, 0.203380;;, + 40;3; 0.000000, 0.185728, 0.203380;;, + 41;3; 0.000000, 0.185728, 0.203380;;, + 42;3; 0.000000, 0.185728, 0.203380;;, + 43;3; 0.000000, 0.185728, 0.203380;;, + 44;3; 0.000000, 0.185728, 0.203380;;, + 45;3; 0.000000, 0.185728, 0.203380;;, + 46;3; 0.000000, 0.185728, 0.203380;;, + 47;3; 0.000000, 0.185728, 0.203380;;, + 48;3; 0.000000, 0.185728, 0.203380;;, + 49;3; 0.000000, 0.185728, 0.203380;;, + 50;3; 0.000000, 0.185728, 0.203380;;, + 51;3; 0.000000, 0.185728, 0.203380;;, + 52;3; 0.000000, 0.185728, 0.203380;;, + 53;3; 0.000000, 0.185728, 0.203380;;, + 54;3; 0.000000, 0.185728, 0.203380;;, + 55;3; 0.000000, 0.185728, 0.203380;;, + 56;3; 0.000000, 0.185728, 0.203380;;, + 57;3; 0.000000, 0.185728, 0.203380;;, + 58;3; 0.000000, 0.185728, 0.203380;;, + 59;3; 0.000000, 0.185728, 0.203380;;, + 60;3; 0.000000, 0.185728, 0.203380;;, + 61;3; 0.000000, 0.185728, 0.203380;;, + 62;3; 0.000000, 0.185728, 0.203380;;, + 63;3; 0.000000, 0.185728, 0.203380;;, + 64;3; 0.000000, 0.185728, 0.203380;;, + 65;3; 0.000000, 0.185728, 0.203380;;, + 66;3; 0.000000, 0.185728, 0.203380;;, + 67;3; 0.000000, 0.185728, 0.203380;;, + 68;3; 0.000000, 0.185728, 0.203380;;, + 69;3; 0.000000, 0.185728, 0.203380;;, + 70;3; 0.000000, 0.185728, 0.203380;;, + 71;3; 0.000000, 0.185728, 0.203380;;, + 72;3; 0.000000, 0.185728, 0.203380;;, + 73;3; 0.000000, 0.185728, 0.203380;;, + 74;3; 0.000000, 0.185728, 0.203380;;, + 75;3; 0.000000, 0.185728, 0.203380;;, + 76;3; 0.000000, 0.185728, 0.203380;;, + 77;3; 0.000000, 0.185728, 0.203380;;, + 78;3; 0.000000, 0.185728, 0.203380;;, + 79;3; 0.000000, 0.185728, 0.203380;;, + 80;3; 0.000000, 0.185727, 0.203380;;, + 81;3; 0.000000, 0.185728, 0.203380;;, + 82;3; 0.000000, 0.185728, 0.203380;;, + 83;3; 0.000000, 0.185728, 0.203380;;, + 84;3; 0.000000, 0.185727, 0.203380;;, + 85;3; 0.000000, 0.185728, 0.203380;;, + 86;3; 0.000000, 0.185728, 0.203380;;, + 87;3; 0.000000, 0.185728, 0.203380;;, + 88;3; 0.000000, 0.185728, 0.203380;;, + 89;3; 0.000000, 0.185728, 0.203380;;, + 90;3; 0.000000, 0.185728, 0.203380;;, + 91;3; 0.000000, 0.185728, 0.203380;;, + 92;3; 0.000000, 0.185728, 0.203380;;, + 93;3; 0.000000, 0.185728, 0.203380;;, + 94;3; 0.000000, 0.185728, 0.203380;;, + 95;3; 0.000000, 0.185728, 0.203380;;, + 96;3; 0.000000, 0.185728, 0.203380;;, + 97;3; 0.000000, 0.185728, 0.203380;;, + 98;3; 0.000000, 0.185728, 0.203380;;, + 99;3; 0.000000, 0.185728, 0.203380;;, + 100;3; 0.000000, 0.185728, 0.203380;;, + 101;3; 0.000000, 0.185728, 0.203380;;, + 102;3; 0.000000, 0.185728, 0.203380;;, + 103;3; 0.000000, 0.185728, 0.203380;;, + 104;3; 0.000000, 0.185728, 0.203380;;, + 105;3; 0.000000, 0.185728, 0.203380;;, + 106;3; 0.000000, 0.185728, 0.203380;;, + 107;3; 0.000000, 0.185728, 0.203380;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 41;4; -0.000000, 1.000000,-0.000000, 0.000000;;, + 42;4; -0.004277, 0.999865, 0.000000, 0.000000;;, + 43;4; -0.013685, 0.999567, 0.000000, 0.000000;;, + 44;4; -0.025085, 0.999205, 0.000000, 0.000000;;, + 45;4; -0.036655, 0.998839, 0.000000, 0.000000;;, + 46;4; -0.047150, 0.998507, 0.000000, 0.000000;;, + 47;4; -0.055616, 0.998239, 0.000000, 0.000000;;, + 48;4; -0.061243, 0.998060, 0.000000, 0.000000;;, + 49;4; -0.063282, 0.997996, 0.000000, 0.000000;;, + 50;4; -0.061086, 0.998065, 0.000000, 0.000000;;, + 51;4; -0.054531, 0.998273, 0.000000, 0.000000;;, + 52;4; -0.044212, 0.998600, 0.000000, 0.000000;;, + 53;4; -0.031641, 0.998998, 0.000000, 0.000000;;, + 54;4; -0.019070, 0.999396, 0.000000, 0.000000;;, + 55;4; -0.008751, 0.999723, 0.000000, 0.000000;;, + 56;4; -0.002196, 0.999930, 0.000000, 0.000000;;, + 57;4; -0.000000, 1.000000,-0.000000, 0.000000;;, + 58;4; -0.002423, 0.999932, 0.000000, 0.000000;;, + 59;4; -0.009268, 0.999741, 0.000000, 0.000000;;, + 60;4; -0.016812, 0.999531, 0.000000, 0.000000;;, + 61;4; -0.025079, 0.999300, 0.000000, 0.000000;;, + 62;4; -0.035723, 0.999003, 0.000000, 0.000000;;, + 63;4; -0.046218, 0.998710, 0.000000, 0.000000;;, + 64;4; -0.053403, 0.998509, 0.000000, 0.000000;;, + 65;4; -0.055786, 0.998443, 0.000000, 0.000000;;, + 66;4; -0.053989, 0.998493, 0.000000, 0.000000;;, + 67;4; -0.049029, 0.998631, 0.000000, 0.000000;;, + 68;4; -0.041565, 0.998840, 0.000000, 0.000000;;, + 69;4; -0.032313, 0.999098, 0.000000, 0.000000;;, + 70;4; -0.022114, 0.999383, 0.000000, 0.000000;;, + 71;4; -0.012064, 0.999663, 0.000000, 0.000000;;, + 72;4; -0.003771, 0.999895, 0.000000, 0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 74;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 75;4; -0.007476, 0.999644, 0.000000, 0.000000;;, + 76;4; -0.023917, 0.998849, 0.000000, 0.000000;;, + 77;4; -0.043843, 0.997862, 0.000000, 0.000000;;, + 78;4; -0.064063, 0.996828, 0.000000, 0.000000;;, + 79;4; -0.082406, 0.995842, 0.000000, 0.000000;;, + 80;4; -0.097203, 0.994979, 0.000000, 0.000000;;, + 81;4; -0.107038, 0.994301, 0.000000, 0.000000;;, + 82;4; -0.110602, 0.993865, 0.000000, 0.000000;;, + 83;4; -0.102646, 0.993617, 0.000000, 0.000000;;, + 84;4; -0.078897, 0.993470, 0.000000, 0.000000;;, + 85;4; -0.041511, 0.993409, 0.000000, 0.000000;;, + 86;4; 0.004030, 0.993400,-0.000000, 0.000000;;, + 87;4; 0.049571, 0.993391,-0.000000, 0.000000;;, + 88;4; 0.086957, 0.993330,-0.000000, 0.000000;;, + 89;4; 0.110704, 0.993182,-0.000000, 0.000000;;, + 90;4; 0.118660, 0.992935,-0.000000, 0.000000;;, + 91;4; 0.108565, 0.992415,-0.000000, 0.000000;;, + 92;4; 0.078432, 0.991462,-0.000000, 0.000000;;, + 93;4; 0.030993, 0.990149,-0.000000, 0.000000;;, + 94;4; -0.026794, 0.988645, 0.000000, 0.000000;;, + 95;4; -0.084582, 0.987193, 0.000000, 0.000000;;, + 96;4; -0.132021, 0.986026, 0.000000, 0.000000;;, + 97;4; -0.162155, 0.985296, 0.000000, 0.000000;;, + 98;4; -0.172251, 0.985053, 0.000000, 0.000000;;, + 99;4; -0.166274, 0.985572, 0.000000, 0.000000;;, + 100;4; -0.148433, 0.987120, 0.000000, 0.000000;;, + 101;4; -0.120347, 0.989557, 0.000000, 0.000000;;, + 102;4; -0.086134, 0.992527, 0.000000, 0.000000;;, + 103;4; -0.051918, 0.995496, 0.000000, 0.000000;;, + 104;4; -0.023827, 0.997933, 0.000000, 0.000000;;, + 105;4; -0.005980, 0.999481, 0.000000, 0.000000;;, + 106;4; -0.000000, 1.000000, 0.000000, 0.000000;;, + 107;4; -0.000000, 1.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_IK_head} + AnimationKey { //Position + 2; + 108; + 0;3; -0.002513, 2.032632,-0.710142;;, + 1;3; 0.003029, 2.032632,-0.710205;;, + 2;3; 0.019705, 2.032632,-0.710394;;, + 3;3; 0.046815, 2.032632,-0.710702;;, + 4;3; 0.082268, 2.032632,-0.711105;;, + 5;3; 0.122426, 2.032632,-0.711561;;, + 6;3; 0.162579, 2.032632,-0.712017;;, + 7;3; 0.198022, 2.032632,-0.712420;;, + 8;3; 0.225121, 2.032632,-0.712728;;, + 9;3; 0.241788, 2.032632,-0.712917;;, + 10;3; 0.247326, 2.032632,-0.712980;;, + 11;3; 0.244145, 2.032632,-0.712714;;, + 12;3; 0.234264, 2.032632,-0.711886;;, + 13;3; 0.217479, 2.032632,-0.710481;;, + 14;3; 0.194218, 2.032632,-0.708534;;, + 15;3; 0.165740, 2.032632,-0.706149;;, + 16;3; 0.134057, 2.032632,-0.703497;;, + 17;3; 0.101506, 2.032632,-0.700772;;, + 18;3; 0.070184, 2.032632,-0.698150;;, + 19;3; 0.041593, 2.032632,-0.695756;;, + 20;3; 0.016584, 2.032632,-0.693663;;, + 21;3; -0.008426, 2.032632,-0.691569;;, + 22;3; -0.037016, 2.032632,-0.689175;;, + 23;3; -0.068338, 2.032632,-0.686553;;, + 24;3; -0.100890, 2.032632,-0.683828;;, + 25;3; -0.132572, 2.032632,-0.681176;;, + 26;3; -0.161050, 2.032632,-0.678791;;, + 27;3; -0.184311, 2.032632,-0.676844;;, + 28;3; -0.201096, 2.032632,-0.675439;;, + 29;3; -0.210978, 2.032632,-0.674611;;, + 30;3; -0.214159, 2.032632,-0.674345;;, + 31;3; -0.209825, 2.032632,-0.675078;;, + 32;3; -0.197888, 2.032632,-0.677097;;, + 33;3; -0.179747, 2.032632,-0.680165;;, + 34;3; -0.156637, 2.032632,-0.684074;;, + 35;3; -0.129732, 2.032632,-0.688625;;, + 36;3; -0.100266, 2.032632,-0.693608;;, + 37;3; -0.069709, 2.032632,-0.698777;;, + 38;3; -0.040113, 2.032632,-0.703782;;, + 39;3; -0.014989, 2.032632,-0.708032;;, + 40;3; -0.002513, 2.032632,-0.710142;;, + 41;3; -0.002513, 2.032632,-0.710142;;, + 42;3; -0.008930, 2.032632,-0.710142;;, + 43;3; -0.023043, 2.032632,-0.710142;;, + 44;3; -0.040147, 2.032632,-0.710142;;, + 45;3; -0.057504, 2.032632,-0.710142;;, + 46;3; -0.073249, 2.032632,-0.710142;;, + 47;3; -0.085951, 2.032632,-0.710142;;, + 48;3; -0.094393, 2.032632,-0.710142;;, + 49;3; -0.097452, 2.032632,-0.710142;;, + 50;3; -0.095389, 2.032632,-0.710092;;, + 51;3; -0.088904, 2.032632,-0.709935;;, + 52;3; -0.077889, 2.032632,-0.709668;;, + 53;3; -0.062950, 2.032632,-0.709307;;, + 54;3; -0.045489, 2.032632,-0.708884;;, + 55;3; -0.027292, 2.032632,-0.708443;;, + 56;3; -0.009895, 2.032632,-0.708022;;, + 57;3; 0.005751, 2.032632,-0.707643;;, + 58;3; 0.021832, 2.032632,-0.707254;;, + 59;3; 0.039347, 2.032632,-0.706830;;, + 60;3; 0.054648, 2.032632,-0.706460;;, + 61;3; 0.069212, 2.032632,-0.706107;;, + 62;3; 0.084604, 2.032632,-0.705735;;, + 63;3; 0.097938, 2.032632,-0.705412;;, + 64;3; 0.106319, 2.032632,-0.705209;;, + 65;3; 0.108954, 2.032632,-0.705145;;, + 66;3; 0.105086, 2.032632,-0.705318;;, + 67;3; 0.093540, 2.032632,-0.705836;;, + 68;3; 0.075363, 2.032632,-0.706651;;, + 69;3; 0.053221, 2.032632,-0.707643;;, + 70;3; 0.031078, 2.032632,-0.708636;;, + 71;3; 0.012901, 2.032632,-0.709451;;, + 72;3; 0.001355, 2.032632,-0.709968;;, + 73;3; -0.002513, 2.032632,-0.710142;;, + 74;3; -0.002513, 1.936344,-1.928771;;, + 75;3; -0.002513, 1.945240,-1.927712;;, + 76;3; -0.002513, 1.971791,-1.924551;;, + 77;3; -0.002513, 2.013590,-1.919574;;, + 78;3; -0.002513, 2.064508,-1.913512;;, + 79;3; -0.002513, 2.115429,-1.907449;;, + 80;3; -0.002513, 2.157234,-1.902473;;, + 81;3; -0.002513, 2.183791,-1.899312;;, + 82;3; -0.002513, 2.192689,-1.898253;;, + 83;3; -0.002513, 2.179227,-1.899748;;, + 84;3; -0.002513, 2.139049,-1.904208;;, + 85;3; -0.002513, 2.075801,-1.911230;;, + 86;3; -0.002513, 1.998762,-1.919784;;, + 87;3; -0.002513, 1.921726,-1.928343;;, + 88;3; -0.002513, 1.858487,-1.935375;;, + 89;3; -0.002513, 1.818318,-1.939846;;, + 90;3; -0.002513, 1.804860,-1.941345;;, + 91;3; -0.002513, 1.818518,-1.925309;;, + 92;3; -0.002513, 1.859243,-1.877552;;, + 93;3; -0.002513, 1.923315,-1.802499;;, + 94;3; -0.002513, 2.001404,-1.711082;;, + 95;3; -0.002513, 2.079635,-1.619478;;, + 96;3; -0.002513, 2.144034,-1.543998;;, + 97;3; -0.002513, 2.185064,-1.495840;;, + 98;3; -0.002513, 2.198845,-1.479644;;, + 99;3; -0.002513, 2.189593,-1.495524;;, + 100;3; -0.002513, 2.161810,-1.543163;;, + 101;3; -0.002513, 2.118002,-1.618187;;, + 102;3; -0.002513, 2.065008,-1.708839;;, + 103;3; -0.002513, 2.012862,-1.797974;;, + 104;3; -0.002513, 1.970968,-1.869573;;, + 105;3; -0.002513, 1.944924,-1.914098;;, + 106;3; -0.002513, 1.936344,-1.928771;;, + 107;3; -0.015253, 1.944273,-1.915417;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 1;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 2;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 3;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 4;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 5;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 6;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 7;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 8;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 9;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 10;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 11;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 12;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 13;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 14;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 15;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 16;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 17;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 18;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 19;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 20;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 21;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 22;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 23;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 24;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 25;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 26;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 27;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 28;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 29;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 30;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 31;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 32;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 33;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 34;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 35;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 36;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 37;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 38;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 39;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 40;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 41;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 42;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 43;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 44;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 45;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 46;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 47;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 48;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 49;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 50;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 51;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 52;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 53;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 54;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 55;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 56;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 57;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 58;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 59;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 60;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 61;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 62;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 63;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 64;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 65;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 66;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 67;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 68;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 69;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 70;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 71;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 72;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 73;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 74;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 75;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 76;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 77;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 78;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 79;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 80;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 81;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 82;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 83;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 84;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 85;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 86;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 87;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 88;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 89;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 90;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 91;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 92;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 93;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 94;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 95;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 96;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 97;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 98;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 99;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 100;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 101;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 102;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 103;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 104;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 105;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 106;4; -0.999994,-0.003482, 0.000000,-0.000000;;, + 107;4; -0.999994,-0.003482, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_006} + AnimationKey { //Position + 2; + 108; + 0;3; -0.000000, 0.306782, 0.000000;;, + 1;3; -0.000000, 0.306782, 0.000000;;, + 2;3; -0.000000, 0.306782, 0.000000;;, + 3;3; -0.000000, 0.306782, 0.000000;;, + 4;3; -0.000000, 0.306782, 0.000000;;, + 5;3; -0.000000, 0.306782, 0.000000;;, + 6;3; -0.000000, 0.306782, 0.000000;;, + 7;3; -0.000000, 0.306782, 0.000000;;, + 8;3; -0.000000, 0.306782, 0.000000;;, + 9;3; -0.000000, 0.306782, 0.000000;;, + 10;3; -0.000000, 0.306782, 0.000000;;, + 11;3; -0.000000, 0.306782, 0.000000;;, + 12;3; -0.000000, 0.306782, 0.000000;;, + 13;3; -0.000000, 0.306782, 0.000000;;, + 14;3; -0.000000, 0.306782, 0.000000;;, + 15;3; -0.000000, 0.306782, 0.000000;;, + 16;3; -0.000000, 0.306782, 0.000000;;, + 17;3; -0.000000, 0.306782, 0.000000;;, + 18;3; -0.000000, 0.306782, 0.000000;;, + 19;3; -0.000000, 0.306782, 0.000000;;, + 20;3; -0.000000, 0.306782, 0.000000;;, + 21;3; -0.000000, 0.306782, 0.000000;;, + 22;3; -0.000000, 0.306782, 0.000000;;, + 23;3; -0.000000, 0.306782, 0.000000;;, + 24;3; -0.000000, 0.306782, 0.000000;;, + 25;3; -0.000000, 0.306782, 0.000000;;, + 26;3; -0.000000, 0.306782, 0.000000;;, + 27;3; -0.000000, 0.306782, 0.000000;;, + 28;3; -0.000000, 0.306782, 0.000000;;, + 29;3; -0.000000, 0.306782, 0.000000;;, + 30;3; -0.000000, 0.306782, 0.000000;;, + 31;3; -0.000000, 0.306782, 0.000000;;, + 32;3; -0.000000, 0.306782, 0.000000;;, + 33;3; -0.000000, 0.306782, 0.000000;;, + 34;3; -0.000000, 0.306782, 0.000000;;, + 35;3; -0.000000, 0.306782, 0.000000;;, + 36;3; -0.000000, 0.306782, 0.000000;;, + 37;3; -0.000000, 0.306782, 0.000000;;, + 38;3; -0.000000, 0.306782, 0.000000;;, + 39;3; -0.000000, 0.306782, 0.000000;;, + 40;3; -0.000000, 0.306782, 0.000000;;, + 41;3; -0.000000, 0.306782, 0.000000;;, + 42;3; -0.000000, 0.306782, 0.000000;;, + 43;3; -0.000000, 0.306782, 0.000000;;, + 44;3; -0.000000, 0.306782, 0.000000;;, + 45;3; -0.000000, 0.306782, 0.000000;;, + 46;3; -0.000000, 0.306782, 0.000000;;, + 47;3; -0.000000, 0.306782, 0.000000;;, + 48;3; -0.000000, 0.306782, 0.000000;;, + 49;3; -0.000000, 0.306782, 0.000000;;, + 50;3; -0.000000, 0.306782, 0.000000;;, + 51;3; -0.000000, 0.306782, 0.000000;;, + 52;3; -0.000000, 0.306782, 0.000000;;, + 53;3; -0.000000, 0.306782, 0.000000;;, + 54;3; -0.000000, 0.306782, 0.000000;;, + 55;3; -0.000000, 0.306782, 0.000000;;, + 56;3; -0.000000, 0.306782, 0.000000;;, + 57;3; -0.000000, 0.306782, 0.000000;;, + 58;3; -0.000000, 0.306782, 0.000000;;, + 59;3; -0.000000, 0.306782, 0.000000;;, + 60;3; -0.000000, 0.306782, 0.000000;;, + 61;3; -0.000000, 0.306782, 0.000000;;, + 62;3; -0.000000, 0.306782, 0.000000;;, + 63;3; -0.000000, 0.306782, 0.000000;;, + 64;3; -0.000000, 0.306782, 0.000000;;, + 65;3; -0.000000, 0.306782, 0.000000;;, + 66;3; -0.000000, 0.306782, 0.000000;;, + 67;3; -0.000000, 0.306782, 0.000000;;, + 68;3; -0.000000, 0.306782, 0.000000;;, + 69;3; -0.000000, 0.306782, 0.000000;;, + 70;3; -0.000000, 0.306782, 0.000000;;, + 71;3; -0.000000, 0.306782, 0.000000;;, + 72;3; -0.000000, 0.306782, 0.000000;;, + 73;3; -0.000000, 0.306782, 0.000000;;, + 74;3; 0.000000, 0.306782,-0.000000;;, + 75;3; 0.000000, 0.306782,-0.000000;;, + 76;3; 0.000000, 0.306782,-0.000000;;, + 77;3; 0.000000, 0.306782, 0.000000;;, + 78;3; 0.000000, 0.306782,-0.000000;;, + 79;3; 0.000000, 0.306782,-0.000000;;, + 80;3; 0.000000, 0.306782,-0.000000;;, + 81;3; 0.000000, 0.306782,-0.000000;;, + 82;3; 0.000000, 0.306782,-0.000000;;, + 83;3; 0.000000, 0.306782,-0.000000;;, + 84;3; 0.000000, 0.306782,-0.000000;;, + 85;3; 0.000000, 0.306782,-0.000000;;, + 86;3; 0.000000, 0.306782,-0.000000;;, + 87;3; 0.000000, 0.306782, 0.000000;;, + 88;3; 0.000000, 0.306782, 0.000000;;, + 89;3; 0.000000, 0.306782,-0.000000;;, + 90;3; 0.000000, 0.306782,-0.000000;;, + 91;3; 0.000000, 0.306782, 0.000000;;, + 92;3; 0.000000, 0.306782,-0.000000;;, + 93;3; 0.000000, 0.306782,-0.000000;;, + 94;3; 0.000000, 0.306782,-0.000000;;, + 95;3; 0.000000, 0.306782,-0.000000;;, + 96;3; 0.000000, 0.306782, 0.000000;;, + 97;3; 0.000000, 0.306782,-0.000000;;, + 98;3; 0.000000, 0.306782,-0.000000;;, + 99;3; 0.000000, 0.306782, 0.000000;;, + 100;3; 0.000000, 0.306782, 0.000000;;, + 101;3; 0.000000, 0.306782, 0.000000;;, + 102;3; 0.000000, 0.306782, 0.000000;;, + 103;3; 0.000000, 0.306782,-0.000000;;, + 104;3; 0.000000, 0.306782,-0.000000;;, + 105;3; 0.000000, 0.306782,-0.000000;;, + 106;3; 0.000000, 0.306782,-0.000000;;, + 107;3; -0.000000, 0.306782,-0.000000;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.526554,-0.522900, 0.475629,-0.472328;;, + 1;4; -0.527614,-0.521697, 0.474320,-0.473524;;, + 2;4; -0.530802,-0.518079, 0.470380,-0.477122;;, + 3;4; -0.535985,-0.512196, 0.463975,-0.482972;;, + 4;4; -0.542764,-0.504502, 0.455598,-0.490624;;, + 5;4; -0.550443,-0.495786, 0.446109,-0.499292;;, + 6;4; -0.558122,-0.487070, 0.436619,-0.507959;;, + 7;4; -0.564900,-0.479376, 0.428242,-0.515611;;, + 8;4; -0.570083,-0.473494, 0.421838,-0.521461;;, + 9;4; -0.573270,-0.469876, 0.417899,-0.525058;;, + 10;4; -0.574329,-0.468674, 0.416590,-0.526254;;, + 11;4; -0.573665,-0.469478, 0.417462,-0.525499;;, + 12;4; -0.571604,-0.471962, 0.420154,-0.523156;;, + 13;4; -0.568105,-0.476149, 0.424694,-0.519183;;, + 14;4; -0.563262,-0.481894, 0.430929,-0.513690;;, + 15;4; -0.557341,-0.488840, 0.438472,-0.506982;;, + 16;4; -0.550765,-0.496445, 0.446740,-0.499544;;, + 17;4; -0.544025,-0.504100, 0.455074,-0.491936;;, + 18;4; -0.537558,-0.511276, 0.462901,-0.484654;;, + 19;4; -0.531676,-0.517607, 0.469822,-0.478052;;, + 20;4; -0.526554,-0.522900, 0.475629,-0.472328;;, + 21;4; -0.521480,-0.527910, 0.481147,-0.466682;;, + 22;4; -0.515742,-0.533392, 0.487201,-0.460317;;, + 23;4; -0.509507,-0.539187, 0.493617,-0.453419;;, + 24;4; -0.503070,-0.545036, 0.500108,-0.446312;;, + 25;4; -0.496839,-0.550595, 0.506286,-0.439444;;, + 26;4; -0.491262,-0.555494, 0.511740,-0.433305;;, + 27;4; -0.486723,-0.559433, 0.516130,-0.428313;;, + 28;4; -0.483456,-0.562239, 0.519260,-0.424724;;, + 29;4; -0.481538,-0.563874, 0.521085,-0.422618;;, + 30;4; -0.480921,-0.564396, 0.521669,-0.421941;;, + 31;4; -0.481856,-0.563546, 0.520726,-0.422973;;, + 32;4; -0.484429,-0.561206, 0.518129,-0.425815;;, + 33;4; -0.488341,-0.557649, 0.514183,-0.430133;;, + 34;4; -0.493324,-0.553118, 0.509156,-0.435635;;, + 35;4; -0.499125,-0.547843, 0.503303,-0.442041;;, + 36;4; -0.505478,-0.542065, 0.496893,-0.449056;;, + 37;4; -0.512066,-0.536074, 0.490246,-0.456331;;, + 38;4; -0.518448,-0.530272, 0.483808,-0.463377;;, + 39;4; -0.523865,-0.525346, 0.478343,-0.469358;;, + 40;4; -0.526554,-0.522900, 0.475629,-0.472328;;, + 41;4; -0.526554,-0.522900, 0.475629,-0.472328;;, + 42;4; -0.524850,-0.524520, 0.477419,-0.470438;;, + 43;4; -0.521100,-0.528085, 0.481358,-0.466281;;, + 44;4; -0.516557,-0.532405, 0.486132,-0.461244;;, + 45;4; -0.511945,-0.536789, 0.490976,-0.456131;;, + 46;4; -0.507763,-0.540766, 0.495370,-0.451494;;, + 47;4; -0.504388,-0.543974, 0.498915,-0.447753;;, + 48;4; -0.502146,-0.546106, 0.501270,-0.445267;;, + 49;4; -0.501333,-0.546878, 0.502124,-0.444366;;, + 50;4; -0.502208,-0.546046, 0.501205,-0.445336;;, + 51;4; -0.504821,-0.543562, 0.498460,-0.448232;;, + 52;4; -0.508934,-0.539652, 0.494140,-0.452792;;, + 53;4; -0.513944,-0.534889, 0.488876,-0.458347;;, + 54;4; -0.518954,-0.530126, 0.483613,-0.463901;;, + 55;4; -0.523067,-0.526216, 0.479293,-0.468461;;, + 56;4; -0.525679,-0.523732, 0.476548,-0.471358;;, + 57;4; -0.526554,-0.522900, 0.475629,-0.472328;;, + 58;4; -0.526554,-0.522900, 0.475629,-0.472328;;, + 59;4; -0.526554,-0.522900, 0.475629,-0.472328;;, + 60;4; -0.526554,-0.522900, 0.475629,-0.472328;;, + 61;4; -0.528979,-0.520291, 0.472777,-0.475049;;, + 62;4; -0.535807,-0.512944, 0.464744,-0.482712;;, + 63;4; -0.544574,-0.503511, 0.454430,-0.492552;;, + 64;4; -0.551403,-0.496165, 0.446398,-0.500216;;, + 65;4; -0.553827,-0.493556, 0.443546,-0.502936;;, + 66;4; -0.552948,-0.494502, 0.444580,-0.501950;;, + 67;4; -0.550523,-0.497111, 0.447433,-0.499228;;, + 68;4; -0.546874,-0.501037, 0.451725,-0.495133;;, + 69;4; -0.542351,-0.505903, 0.457046,-0.490057;;, + 70;4; -0.537365,-0.511268, 0.462911,-0.484461;;, + 71;4; -0.532452,-0.516554, 0.468691,-0.478947;;, + 72;4; -0.528398,-0.520916, 0.473460,-0.474397;;, + 73;4; -0.526554,-0.522900, 0.475629,-0.472328;;, + 74;4; -0.526554,-0.522900, 0.475629,-0.472328;;, + 75;4; -0.528282,-0.521070, 0.477189,-0.470676;;, + 76;4; -0.532082,-0.517047, 0.480621,-0.467041;;, + 77;4; -0.536687,-0.512171, 0.484781,-0.462637;;, + 78;4; -0.541360,-0.507223, 0.489002,-0.458168;;, + 79;4; -0.545599,-0.502735, 0.492831,-0.454113;;, + 80;4; -0.549019,-0.499114, 0.495920,-0.450843;;, + 81;4; -0.551291,-0.496707, 0.497973,-0.448669;;, + 82;4; -0.552115,-0.495835, 0.498717,-0.447881;;, + 83;4; -0.550457,-0.497520, 0.497219,-0.449403;;, + 84;4; -0.545507,-0.502547, 0.492748,-0.453943;;, + 85;4; -0.537714,-0.510461, 0.485709,-0.461092;;, + 86;4; -0.528222,-0.520101, 0.477135,-0.469800;;, + 87;4; -0.518730,-0.529742, 0.468560,-0.478509;;, + 88;4; -0.510937,-0.537656, 0.461522,-0.485657;;, + 89;4; -0.505987,-0.542683, 0.457051,-0.490198;;, + 90;4; -0.504329,-0.544367, 0.455553,-0.491720;;, + 91;4; -0.505971,-0.542702, 0.457035,-0.490215;;, + 92;4; -0.510870,-0.537730, 0.461461,-0.485724;;, + 93;4; -0.518584,-0.529904, 0.468429,-0.478655;;, + 94;4; -0.527981,-0.520369, 0.476917,-0.470042;;, + 95;4; -0.537378,-0.510835, 0.485405,-0.461430;;, + 96;4; -0.545092,-0.503008, 0.492373,-0.454360;;, + 97;4; -0.549992,-0.498037, 0.496799,-0.449870;;, + 98;4; -0.551633,-0.496371, 0.498282,-0.448365;;, + 99;4; -0.550763,-0.497292, 0.497496,-0.449197;;, + 100;4; -0.548165,-0.500040, 0.495150,-0.451679;;, + 101;4; -0.544076,-0.504366, 0.491455,-0.455586;;, + 102;4; -0.539094,-0.509635, 0.486955,-0.460346;;, + 103;4; -0.534112,-0.514905, 0.482455,-0.465107;;, + 104;4; -0.530023,-0.519231, 0.478761,-0.469014;;, + 105;4; -0.527425,-0.521979, 0.476415,-0.471496;;, + 106;4; -0.526554,-0.522900, 0.475629,-0.472328;;, + 107;4; -0.526554,-0.522900, 0.475629,-0.472328;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_007} + AnimationKey { //Position + 2; + 108; + 0;3; 0.078315, 0.084604,-0.007980;;, + 1;3; 0.078315, 0.084604,-0.007980;;, + 2;3; 0.078315, 0.084604,-0.007980;;, + 3;3; 0.078315, 0.084604,-0.007980;;, + 4;3; 0.078315, 0.084604,-0.007980;;, + 5;3; 0.078315, 0.084604,-0.007980;;, + 6;3; 0.078315, 0.084604,-0.007980;;, + 7;3; 0.078315, 0.084604,-0.007980;;, + 8;3; 0.078315, 0.084604,-0.007980;;, + 9;3; 0.078315, 0.084604,-0.007980;;, + 10;3; 0.078315, 0.084604,-0.007980;;, + 11;3; 0.078315, 0.084604,-0.007980;;, + 12;3; 0.078315, 0.084604,-0.007980;;, + 13;3; 0.078315, 0.084604,-0.007980;;, + 14;3; 0.078315, 0.084604,-0.007980;;, + 15;3; 0.078315, 0.084604,-0.007980;;, + 16;3; 0.078315, 0.084604,-0.007980;;, + 17;3; 0.078315, 0.084604,-0.007980;;, + 18;3; 0.078315, 0.084604,-0.007980;;, + 19;3; 0.078315, 0.084604,-0.007980;;, + 20;3; 0.078315, 0.084604,-0.007980;;, + 21;3; 0.078316, 0.084604,-0.007980;;, + 22;3; 0.078315, 0.084604,-0.007980;;, + 23;3; 0.078315, 0.084604,-0.007980;;, + 24;3; 0.078315, 0.084604,-0.007980;;, + 25;3; 0.078316, 0.084604,-0.007980;;, + 26;3; 0.078316, 0.084604,-0.007980;;, + 27;3; 0.078315, 0.084604,-0.007980;;, + 28;3; 0.078315, 0.084604,-0.007980;;, + 29;3; 0.078315, 0.084604,-0.007980;;, + 30;3; 0.078315, 0.084604,-0.007980;;, + 31;3; 0.078315, 0.084604,-0.007980;;, + 32;3; 0.078315, 0.084604,-0.007980;;, + 33;3; 0.078315, 0.084604,-0.007980;;, + 34;3; 0.078315, 0.084604,-0.007980;;, + 35;3; 0.078315, 0.084604,-0.007980;;, + 36;3; 0.078315, 0.084604,-0.007980;;, + 37;3; 0.078315, 0.084604,-0.007980;;, + 38;3; 0.078315, 0.084604,-0.007980;;, + 39;3; 0.078316, 0.084604,-0.007980;;, + 40;3; 0.078315, 0.084604,-0.007980;;, + 41;3; 0.078315, 0.084604,-0.007980;;, + 42;3; 0.078315, 0.084604,-0.007980;;, + 43;3; 0.078316, 0.084604,-0.007980;;, + 44;3; 0.078315, 0.084604,-0.007980;;, + 45;3; 0.078315, 0.084604,-0.007980;;, + 46;3; 0.078315, 0.084604,-0.007980;;, + 47;3; 0.078315, 0.084604,-0.007980;;, + 48;3; 0.078315, 0.084604,-0.007980;;, + 49;3; 0.078315, 0.084604,-0.007980;;, + 50;3; 0.078315, 0.084604,-0.007980;;, + 51;3; 0.078315, 0.084604,-0.007980;;, + 52;3; 0.078315, 0.084604,-0.007980;;, + 53;3; 0.078315, 0.084604,-0.007980;;, + 54;3; 0.078316, 0.084604,-0.007980;;, + 55;3; 0.078316, 0.084604,-0.007980;;, + 56;3; 0.078315, 0.084604,-0.007980;;, + 57;3; 0.078315, 0.084604,-0.007980;;, + 58;3; 0.078315, 0.084604,-0.007980;;, + 59;3; 0.078315, 0.084604,-0.007980;;, + 60;3; 0.078315, 0.084604,-0.007980;;, + 61;3; 0.078315, 0.084604,-0.007980;;, + 62;3; 0.078315, 0.084604,-0.007980;;, + 63;3; 0.078316, 0.084604,-0.007980;;, + 64;3; 0.078315, 0.084604,-0.007980;;, + 65;3; 0.078315, 0.084604,-0.007980;;, + 66;3; 0.078315, 0.084604,-0.007980;;, + 67;3; 0.078315, 0.084604,-0.007980;;, + 68;3; 0.078315, 0.084604,-0.007980;;, + 69;3; 0.078315, 0.084604,-0.007980;;, + 70;3; 0.078315, 0.084604,-0.007980;;, + 71;3; 0.078315, 0.084604,-0.007980;;, + 72;3; 0.078315, 0.084604,-0.007980;;, + 73;3; 0.078315, 0.084604,-0.007980;;, + 74;3; 0.078315, 0.084604,-0.007980;;, + 75;3; 0.078315, 0.084604,-0.007980;;, + 76;3; 0.078315, 0.084604,-0.007980;;, + 77;3; 0.078316, 0.084604,-0.007980;;, + 78;3; 0.078315, 0.084604,-0.007980;;, + 79;3; 0.078315, 0.084604,-0.007980;;, + 80;3; 0.078315, 0.084604,-0.007980;;, + 81;3; 0.078315, 0.084604,-0.007980;;, + 82;3; 0.078315, 0.084604,-0.007980;;, + 83;3; 0.078315, 0.084604,-0.007980;;, + 84;3; 0.078315, 0.084604,-0.007980;;, + 85;3; 0.078315, 0.084604,-0.007980;;, + 86;3; 0.078316, 0.084604,-0.007980;;, + 87;3; 0.078316, 0.084604,-0.007980;;, + 88;3; 0.078316, 0.084604,-0.007980;;, + 89;3; 0.078315, 0.084604,-0.007980;;, + 90;3; 0.078315, 0.084604,-0.007980;;, + 91;3; 0.078315, 0.084604,-0.007980;;, + 92;3; 0.078315, 0.084604,-0.007980;;, + 93;3; 0.078315, 0.084604,-0.007980;;, + 94;3; 0.078315, 0.084604,-0.007980;;, + 95;3; 0.078316, 0.084604,-0.007980;;, + 96;3; 0.078315, 0.084604,-0.007980;;, + 97;3; 0.078315, 0.084604,-0.007980;;, + 98;3; 0.078315, 0.084604,-0.007980;;, + 99;3; 0.078315, 0.084604,-0.007980;;, + 100;3; 0.078315, 0.084604,-0.007980;;, + 101;3; 0.078315, 0.084604,-0.007980;;, + 102;3; 0.078315, 0.084604,-0.007980;;, + 103;3; 0.078316, 0.084604,-0.007980;;, + 104;3; 0.078315, 0.084604,-0.007980;;, + 105;3; 0.078315, 0.084604,-0.007980;;, + 106;3; 0.078315, 0.084604,-0.007980;;, + 107;3; 0.078315, 0.084604,-0.007980;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 1;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 2;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 3;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 4;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 5;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 6;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 7;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 8;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 9;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 10;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 11;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 12;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 13;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 14;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 15;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 16;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 17;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 18;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 19;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 20;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 21;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 22;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 23;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 24;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 25;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 26;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 27;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 28;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 29;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 30;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 31;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 32;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 33;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 34;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 35;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 36;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 37;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 38;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 39;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 40;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 41;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 42;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 43;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 44;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 45;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 46;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 47;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 48;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 49;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 50;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 51;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 52;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 53;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 54;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 55;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 56;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 57;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 58;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 59;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 60;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 61;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 62;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 63;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 64;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 65;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 66;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 67;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 68;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 69;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 70;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 71;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 72;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 73;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 74;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 75;4; -0.706230,-0.227278,-0.637929,-0.205297;;, + 76;4; -0.702922,-0.236361,-0.634941,-0.213502;;, + 77;4; -0.698913,-0.247369,-0.631319,-0.223445;;, + 78;4; -0.694845,-0.258540,-0.627644,-0.233535;;, + 79;4; -0.691154,-0.268673,-0.624311,-0.242689;;, + 80;4; -0.688177,-0.276848,-0.621622,-0.250073;;, + 81;4; -0.686199,-0.282281,-0.619834,-0.254980;;, + 82;4; -0.685482,-0.284249,-0.619187,-0.256758;;, + 83;4; -0.686254,-0.282129,-0.619884,-0.254843;;, + 84;4; -0.688559,-0.275800,-0.621966,-0.249126;;, + 85;4; -0.692188,-0.265836,-0.625244,-0.240126;;, + 86;4; -0.696608,-0.253699,-0.629237,-0.229162;;, + 87;4; -0.701028,-0.241561,-0.633230,-0.218199;;, + 88;4; -0.704657,-0.231598,-0.636508,-0.209199;;, + 89;4; -0.706962,-0.225269,-0.638590,-0.203482;;, + 90;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 91;4; -0.706658,-0.225928,-0.638315,-0.204078;;, + 92;4; -0.703445,-0.234227,-0.635412,-0.211573;;, + 93;4; -0.698386,-0.247291,-0.630843,-0.223374;;, + 94;4; -0.692224,-0.263205,-0.625277,-0.237749;;, + 95;4; -0.686062,-0.279119,-0.619711,-0.252124;;, + 96;4; -0.681003,-0.292183,-0.615141,-0.263925;;, + 97;4; -0.677790,-0.300481,-0.612239,-0.271420;;, + 98;4; -0.676713,-0.303261,-0.611266,-0.273932;;, + 99;4; -0.677790,-0.300481,-0.612239,-0.271420;;, + 100;4; -0.681003,-0.292183,-0.615141,-0.263925;;, + 101;4; -0.686062,-0.279119,-0.619711,-0.252124;;, + 102;4; -0.692224,-0.263205,-0.625277,-0.237749;;, + 103;4; -0.698386,-0.247291,-0.630843,-0.223374;;, + 104;4; -0.703445,-0.234227,-0.635412,-0.211573;;, + 105;4; -0.706658,-0.225928,-0.638315,-0.204078;;, + 106;4; -0.707734,-0.223148,-0.639287,-0.201567;;, + 107;4; -0.707120,-0.224647,-0.638732,-0.202920;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Sand_monster} + AnimationKey { //Position + 2; + 108; + 0;3; -0.000000, 0.000000, 0.000000;;, + 1;3; -0.000000, 0.000000, 0.000000;;, + 2;3; -0.000000, 0.000000, 0.000000;;, + 3;3; -0.000000, 0.000000, 0.000000;;, + 4;3; -0.000000, 0.000000, 0.000000;;, + 5;3; -0.000000, 0.000000, 0.000000;;, + 6;3; -0.000000, 0.000000, 0.000000;;, + 7;3; -0.000000, 0.000000, 0.000000;;, + 8;3; -0.000000, 0.000000, 0.000000;;, + 9;3; -0.000000, 0.000000, 0.000000;;, + 10;3; -0.000000, 0.000000, 0.000000;;, + 11;3; -0.000000, 0.000000, 0.000000;;, + 12;3; -0.000000, 0.000000, 0.000000;;, + 13;3; -0.000000, 0.000000, 0.000000;;, + 14;3; -0.000000, 0.000000, 0.000000;;, + 15;3; -0.000000, 0.000000, 0.000000;;, + 16;3; -0.000000, 0.000000, 0.000000;;, + 17;3; -0.000000, 0.000000, 0.000000;;, + 18;3; -0.000000, 0.000000, 0.000000;;, + 19;3; -0.000000, 0.000000, 0.000000;;, + 20;3; -0.000000, 0.000000, 0.000000;;, + 21;3; -0.000000, 0.000000, 0.000000;;, + 22;3; -0.000000, 0.000000, 0.000000;;, + 23;3; -0.000000, 0.000000, 0.000000;;, + 24;3; -0.000000, 0.000000, 0.000000;;, + 25;3; -0.000000, 0.000000, 0.000000;;, + 26;3; -0.000000, 0.000000, 0.000000;;, + 27;3; -0.000000, 0.000000, 0.000000;;, + 28;3; -0.000000, 0.000000, 0.000000;;, + 29;3; -0.000000, 0.000000, 0.000000;;, + 30;3; -0.000000, 0.000000, 0.000000;;, + 31;3; -0.000000, 0.000000, 0.000000;;, + 32;3; -0.000000, 0.000000, 0.000000;;, + 33;3; -0.000000, 0.000000, 0.000000;;, + 34;3; -0.000000, 0.000000, 0.000000;;, + 35;3; -0.000000, 0.000000, 0.000000;;, + 36;3; -0.000000, 0.000000, 0.000000;;, + 37;3; -0.000000, 0.000000, 0.000000;;, + 38;3; -0.000000, 0.000000, 0.000000;;, + 39;3; -0.000000, 0.000000, 0.000000;;, + 40;3; -0.000000, 0.000000, 0.000000;;, + 41;3; -0.000000, 0.000000, 0.000000;;, + 42;3; -0.000000, 0.000000, 0.000000;;, + 43;3; -0.000000, 0.000000, 0.000000;;, + 44;3; -0.000000, 0.000000, 0.000000;;, + 45;3; -0.000000, 0.000000, 0.000000;;, + 46;3; -0.000000, 0.000000, 0.000000;;, + 47;3; -0.000000, 0.000000, 0.000000;;, + 48;3; -0.000000, 0.000000, 0.000000;;, + 49;3; -0.000000, 0.000000, 0.000000;;, + 50;3; -0.000000, 0.000000, 0.000000;;, + 51;3; -0.000000, 0.000000, 0.000000;;, + 52;3; -0.000000, 0.000000, 0.000000;;, + 53;3; -0.000000, 0.000000, 0.000000;;, + 54;3; -0.000000, 0.000000, 0.000000;;, + 55;3; -0.000000, 0.000000, 0.000000;;, + 56;3; -0.000000, 0.000000, 0.000000;;, + 57;3; -0.000000, 0.000000, 0.000000;;, + 58;3; -0.000000, 0.000000, 0.000000;;, + 59;3; -0.000000, 0.000000, 0.000000;;, + 60;3; -0.000000, 0.000000, 0.000000;;, + 61;3; -0.000000, 0.000000, 0.000000;;, + 62;3; -0.000000, 0.000000, 0.000000;;, + 63;3; -0.000000, 0.000000, 0.000000;;, + 64;3; -0.000000, 0.000000, 0.000000;;, + 65;3; -0.000000, 0.000000, 0.000000;;, + 66;3; -0.000000, 0.000000, 0.000000;;, + 67;3; -0.000000, 0.000000, 0.000000;;, + 68;3; -0.000000, 0.000000, 0.000000;;, + 69;3; -0.000000, 0.000000, 0.000000;;, + 70;3; -0.000000, 0.000000, 0.000000;;, + 71;3; -0.000000, 0.000000, 0.000000;;, + 72;3; -0.000000, 0.000000, 0.000000;;, + 73;3; -0.000000, 0.000000, 0.000000;;, + 74;3; -0.000000, 0.000000, 0.000000;;, + 75;3; -0.000000, 0.000000, 0.000000;;, + 76;3; -0.000000, 0.000000, 0.000000;;, + 77;3; -0.000000, 0.000000, 0.000000;;, + 78;3; -0.000000, 0.000000, 0.000000;;, + 79;3; -0.000000, 0.000000, 0.000000;;, + 80;3; -0.000000, 0.000000, 0.000000;;, + 81;3; -0.000000, 0.000000, 0.000000;;, + 82;3; -0.000000, 0.000000, 0.000000;;, + 83;3; -0.000000, 0.000000, 0.000000;;, + 84;3; -0.000000, 0.000000, 0.000000;;, + 85;3; -0.000000, 0.000000, 0.000000;;, + 86;3; -0.000000, 0.000000, 0.000000;;, + 87;3; -0.000000, 0.000000, 0.000000;;, + 88;3; -0.000000, 0.000000, 0.000000;;, + 89;3; -0.000000, 0.000000, 0.000000;;, + 90;3; -0.000000, 0.000000, 0.000000;;, + 91;3; -0.000000, 0.000000, 0.000000;;, + 92;3; -0.000000, 0.000000, 0.000000;;, + 93;3; -0.000000, 0.000000, 0.000000;;, + 94;3; -0.000000, 0.000000, 0.000000;;, + 95;3; -0.000000, 0.000000, 0.000000;;, + 96;3; -0.000000, 0.000000, 0.000000;;, + 97;3; -0.000000, 0.000000, 0.000000;;, + 98;3; -0.000000, 0.000000, 0.000000;;, + 99;3; -0.000000, 0.000000, 0.000000;;, + 100;3; -0.000000, 0.000000, 0.000000;;, + 101;3; -0.000000, 0.000000, 0.000000;;, + 102;3; -0.000000, 0.000000, 0.000000;;, + 103;3; -0.000000, 0.000000, 0.000000;;, + 104;3; -0.000000, 0.000000, 0.000000;;, + 105;3; -0.000000, 0.000000, 0.000000;;, + 106;3; -0.000000, 0.000000, 0.000000;;, + 107;3; -0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 108; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 108; + 0;3; 0.746845, 0.740784, 0.740784;;, + 1;3; 0.746845, 0.740784, 0.740784;;, + 2;3; 0.746845, 0.740784, 0.740784;;, + 3;3; 0.746845, 0.740784, 0.740784;;, + 4;3; 0.746845, 0.740784, 0.740784;;, + 5;3; 0.746845, 0.740784, 0.740784;;, + 6;3; 0.746845, 0.740784, 0.740784;;, + 7;3; 0.746845, 0.740784, 0.740784;;, + 8;3; 0.746845, 0.740784, 0.740784;;, + 9;3; 0.746845, 0.740784, 0.740784;;, + 10;3; 0.746845, 0.740784, 0.740784;;, + 11;3; 0.746845, 0.740784, 0.740784;;, + 12;3; 0.746845, 0.740784, 0.740784;;, + 13;3; 0.746845, 0.740784, 0.740784;;, + 14;3; 0.746845, 0.740784, 0.740784;;, + 15;3; 0.746845, 0.740784, 0.740784;;, + 16;3; 0.746845, 0.740784, 0.740784;;, + 17;3; 0.746845, 0.740784, 0.740784;;, + 18;3; 0.746845, 0.740784, 0.740784;;, + 19;3; 0.746845, 0.740784, 0.740784;;, + 20;3; 0.746845, 0.740784, 0.740784;;, + 21;3; 0.746845, 0.740784, 0.740784;;, + 22;3; 0.746845, 0.740784, 0.740784;;, + 23;3; 0.746845, 0.740784, 0.740784;;, + 24;3; 0.746845, 0.740784, 0.740784;;, + 25;3; 0.746845, 0.740784, 0.740784;;, + 26;3; 0.746845, 0.740784, 0.740784;;, + 27;3; 0.746845, 0.740784, 0.740784;;, + 28;3; 0.746845, 0.740784, 0.740784;;, + 29;3; 0.746845, 0.740784, 0.740784;;, + 30;3; 0.746845, 0.740784, 0.740784;;, + 31;3; 0.746845, 0.740784, 0.740784;;, + 32;3; 0.746845, 0.740784, 0.740784;;, + 33;3; 0.746845, 0.740784, 0.740784;;, + 34;3; 0.746845, 0.740784, 0.740784;;, + 35;3; 0.746845, 0.740784, 0.740784;;, + 36;3; 0.746845, 0.740784, 0.740784;;, + 37;3; 0.746845, 0.740784, 0.740784;;, + 38;3; 0.746845, 0.740784, 0.740784;;, + 39;3; 0.746845, 0.740784, 0.740784;;, + 40;3; 0.746845, 0.740784, 0.740784;;, + 41;3; 0.746845, 0.740784, 0.740784;;, + 42;3; 0.746845, 0.740784, 0.740784;;, + 43;3; 0.746845, 0.740784, 0.740784;;, + 44;3; 0.746845, 0.740784, 0.740784;;, + 45;3; 0.746845, 0.740784, 0.740784;;, + 46;3; 0.746845, 0.740784, 0.740784;;, + 47;3; 0.746845, 0.740784, 0.740784;;, + 48;3; 0.746845, 0.740784, 0.740784;;, + 49;3; 0.746845, 0.740784, 0.740784;;, + 50;3; 0.746845, 0.740784, 0.740784;;, + 51;3; 0.746845, 0.740784, 0.740784;;, + 52;3; 0.746845, 0.740784, 0.740784;;, + 53;3; 0.746845, 0.740784, 0.740784;;, + 54;3; 0.746845, 0.740784, 0.740784;;, + 55;3; 0.746845, 0.740784, 0.740784;;, + 56;3; 0.746845, 0.740784, 0.740784;;, + 57;3; 0.746845, 0.740784, 0.740784;;, + 58;3; 0.746845, 0.740784, 0.740784;;, + 59;3; 0.746845, 0.740784, 0.740784;;, + 60;3; 0.746845, 0.740784, 0.740784;;, + 61;3; 0.746845, 0.740784, 0.740784;;, + 62;3; 0.746845, 0.740784, 0.740784;;, + 63;3; 0.746845, 0.740784, 0.740784;;, + 64;3; 0.746845, 0.740784, 0.740784;;, + 65;3; 0.746845, 0.740784, 0.740784;;, + 66;3; 0.746845, 0.740784, 0.740784;;, + 67;3; 0.746845, 0.740784, 0.740784;;, + 68;3; 0.746845, 0.740784, 0.740784;;, + 69;3; 0.746845, 0.740784, 0.740784;;, + 70;3; 0.746845, 0.740784, 0.740784;;, + 71;3; 0.746845, 0.740784, 0.740784;;, + 72;3; 0.746845, 0.740784, 0.740784;;, + 73;3; 0.746845, 0.740784, 0.740784;;, + 74;3; 0.746845, 0.740784, 0.740784;;, + 75;3; 0.746845, 0.740784, 0.740784;;, + 76;3; 0.746845, 0.740784, 0.740784;;, + 77;3; 0.746845, 0.740784, 0.740784;;, + 78;3; 0.746845, 0.740784, 0.740784;;, + 79;3; 0.746845, 0.740784, 0.740784;;, + 80;3; 0.746845, 0.740784, 0.740784;;, + 81;3; 0.746845, 0.740784, 0.740784;;, + 82;3; 0.746845, 0.740784, 0.740784;;, + 83;3; 0.746845, 0.740784, 0.740784;;, + 84;3; 0.746845, 0.740784, 0.740784;;, + 85;3; 0.746845, 0.740784, 0.740784;;, + 86;3; 0.746845, 0.740784, 0.740784;;, + 87;3; 0.746845, 0.740784, 0.740784;;, + 88;3; 0.746845, 0.740784, 0.740784;;, + 89;3; 0.746845, 0.740784, 0.740784;;, + 90;3; 0.746845, 0.740784, 0.740784;;, + 91;3; 0.746845, 0.740784, 0.740784;;, + 92;3; 0.746845, 0.740784, 0.740784;;, + 93;3; 0.746845, 0.740784, 0.740784;;, + 94;3; 0.746845, 0.740784, 0.740784;;, + 95;3; 0.746845, 0.740784, 0.740784;;, + 96;3; 0.746845, 0.740784, 0.740784;;, + 97;3; 0.746845, 0.740784, 0.740784;;, + 98;3; 0.746845, 0.740784, 0.740784;;, + 99;3; 0.746845, 0.740784, 0.740784;;, + 100;3; 0.746845, 0.740784, 0.740784;;, + 101;3; 0.746845, 0.740784, 0.740784;;, + 102;3; 0.746845, 0.740784, 0.740784;;, + 103;3; 0.746845, 0.740784, 0.740784;;, + 104;3; 0.746845, 0.740784, 0.740784;;, + 105;3; 0.746845, 0.740784, 0.740784;;, + 106;3; 0.746845, 0.740784, 0.740784;;, + 107;3; 0.746845, 0.740784, 0.740784;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs/models/mobs_sheep.png b/mods/mobs/models/mobs_sheep.png new file mode 100644 index 0000000..c0c6b6a Binary files /dev/null and b/mods/mobs/models/mobs_sheep.png differ diff --git a/mods/mobs/models/mobs_sheep.x b/mods/mobs/models/mobs_sheep.x new file mode 100644 index 0000000..04a1dad --- /dev/null +++ b/mods/mobs/models/mobs_sheep.x @@ -0,0 +1,7169 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.020581, 0.043608, 0.162447, 1.000000;; + } + Frame Armature_Root { + FrameTransformMatrix { + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.030899,-0.009276, 5.987902, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 1.460671,-0.139217, 4.073730, 1.000000;; + } + } //End of Armature_Bone_001 + Frame Armature_Bone_002 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 1.460671,-0.139216,-3.633328, 1.000000;; + } + } //End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.438651,-0.139217, 4.073730, 1.000000;; + } + } //End of Armature_Bone_003 + Frame Armature_RR_leg { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.438651,-0.139216,-3.633328, 1.000000;; + } + } //End of Armature_RR_leg + Frame Armature_Head { + FrameTransformMatrix { + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.000000, 4.052525, 3.788038, 1.000000;; + } + } //End of Armature_Head + } //End of Armature_Root + Frame sheep { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000,-0.000000, 1.000000;; + } + Mesh { //Cube_000 Mesh + 500; + 1.998222; 2.998158; 8.227857;, + 1.998223; 2.998159;12.113163;, + 1.998224; 6.883465;12.113163;, + 1.998224; 6.883465; 8.227857;, + 1.998223; 2.998159;12.113163;, + 1.998222; 2.998158; 8.227857;, + -1.887084; 2.998160; 8.227857;, + -1.887085; 2.998161;12.113163;, + 1.998222; 2.998158; 8.227857;, + 1.998224; 6.883465; 8.227857;, + -1.887082; 6.883466; 8.227857;, + -1.887084; 2.998160; 8.227857;, + -1.887081; 6.883467;12.113163;, + 1.998224; 6.883465;12.113163;, + 1.998223; 2.998159;12.113163;, + -1.887085; 2.998161;12.113163;, + -1.887082; 6.883466; 8.227857;, + -1.887081; 6.883467;12.113163;, + -1.887085; 2.998161;12.113163;, + -1.887084; 2.998160; 8.227857;, + -1.568521; 6.883467;11.794603;, + 1.679665; 6.883465;11.794603;, + 1.998224; 6.883465;12.113163;, + -1.887081; 6.883467;12.113163;, + -1.568521; 7.249873;11.794603;, + 1.679665; 7.249870;11.794603;, + 1.679665; 6.883465;11.794603;, + -1.568521; 6.883467;11.794603;, + -1.568522; 6.883466; 8.546416;, + -1.568521; 6.883467;11.794603;, + -1.887081; 6.883467;12.113163;, + -1.887082; 6.883466; 8.227857;, + 1.679665; 6.883465;11.794603;, + 1.679664; 6.883465; 8.546416;, + 1.998224; 6.883465; 8.227857;, + 1.998224; 6.883465;12.113163;, + 1.679664; 6.883465; 8.546416;, + -1.568522; 6.883466; 8.546416;, + -1.887082; 6.883466; 8.227857;, + 1.998224; 6.883465; 8.227857;, + -0.939442; 7.249872;10.610328;, + 1.050586; 7.249870;10.610328;, + 1.679665; 7.249870;11.794603;, + -1.568521; 7.249873;11.794603;, + -1.568522; 7.249871; 8.546416;, + -1.568521; 7.249873;11.794603;, + -1.568521; 6.883467;11.794603;, + -1.568522; 6.883466; 8.546416;, + 1.679665; 7.249870; 8.546416;, + -1.568522; 7.249871; 8.546416;, + -1.568522; 6.883466; 8.546416;, + 1.679664; 6.883465; 8.546416;, + 1.679665; 7.249870;11.794603;, + 1.679665; 7.249870; 8.546416;, + 1.679664; 6.883465; 8.546416;, + 1.679665; 6.883465;11.794603;, + -0.939441; 7.625868;10.610328;, + 1.050586; 7.625866;10.610328;, + 1.050586; 7.249870;10.610328;, + -0.939442; 7.249872;10.610328;, + 1.050586; 7.249870;10.610328;, + 1.050585; 7.249870; 8.689556;, + 1.679665; 7.249870; 8.546416;, + 1.679665; 7.249870;11.794603;, + -0.939442; 7.249871; 8.689556;, + -0.939442; 7.249872;10.610328;, + -1.568521; 7.249873;11.794603;, + -1.568522; 7.249871; 8.546416;, + 1.050585; 7.249870; 8.689556;, + -0.939442; 7.249871; 8.689556;, + -1.568522; 7.249871; 8.546416;, + 1.679665; 7.249870; 8.546416;, + 1.050586; 7.625866; 8.689556;, + 1.050586; 7.625866;10.610328;, + -0.939441; 7.625868;10.610328;, + -0.939442; 7.625867; 8.689556;, + 1.050586; 7.625866;10.610328;, + 1.050586; 7.625866; 8.689556;, + 1.050585; 7.249870; 8.689556;, + 1.050586; 7.249870;10.610328;, + -0.939442; 7.625867; 8.689556;, + -0.939441; 7.625868;10.610328;, + -0.939442; 7.249872;10.610328;, + -0.939442; 7.249871; 8.689556;, + 1.050586; 7.625866; 8.689556;, + -0.939442; 7.625867; 8.689556;, + -0.939442; 7.249871; 8.689556;, + 1.050585; 7.249870; 8.689556;, + -0.605994; 3.121706;-0.078749;, + -2.241733; 3.121707;-0.078749;, + -2.241733; 3.121707; 0.786420;, + -0.605994; 3.121706; 0.786420;, + -2.241732; 5.023183;-0.078749;, + -0.605994; 5.023182;-0.078749;, + -0.605994; 5.023182; 0.786420;, + -2.241732; 5.023183; 0.786420;, + -0.605994; 5.023182;-0.078749;, + -0.605994; 3.121706;-0.078749;, + -0.605994; 3.121706; 0.786420;, + -0.605994; 5.023182; 0.786420;, + -0.605994; 3.121706;-0.078749;, + -0.605994; 5.023182;-0.078749;, + -2.241732; 5.023183;-0.078749;, + -2.241733; 3.121707;-0.078749;, + -0.600140; 5.030460; 4.316999;, + -0.600140; 5.030460; 5.986964;, + -2.247585; 5.030461; 5.986964;, + -2.247585; 5.030461; 4.317000;, + -2.247585; 2.982151; 5.986965;, + -0.600140; 2.982150; 5.986964;, + -0.600141; 2.982150; 4.317000;, + -2.247586; 2.982151; 4.317000;, + -2.247585; 5.030461; 5.986964;, + -2.247585; 2.982151; 5.986965;, + -2.247586; 2.982151; 4.317000;, + -2.247585; 5.030461; 4.317000;, + -0.600140; 5.030460; 5.986964;, + -0.600140; 2.982150; 5.986964;, + -2.247585; 2.982151; 5.986965;, + -2.247585; 5.030461; 5.986964;, + -0.600140; 5.030460; 4.316999;, + -0.600141; 2.982150; 4.317000;, + -0.600140; 2.982150; 5.986964;, + -0.600140; 5.030460; 5.986964;, + -0.802528; 4.778826; 4.317000;, + -0.802529; 3.233785; 4.317000;, + -0.600141; 2.982150; 4.317000;, + -0.600140; 5.030460; 4.316999;, + -2.241732; 5.023183; 0.786420;, + -0.605994; 5.023182; 0.786420;, + -0.802529; 4.778825; 0.786420;, + -2.045197; 4.778826; 0.786420;, + -0.605994; 3.121706; 0.786420;, + -2.241733; 3.121707; 0.786420;, + -2.045198; 3.233785; 0.786420;, + -0.802529; 3.233784; 0.786420;, + -2.241733; 3.121707; 0.786420;, + -2.241732; 5.023183; 0.786420;, + -2.045197; 4.778826; 0.786420;, + -2.045198; 3.233785; 0.786420;, + -2.241733; 3.121707;-0.078749;, + -2.241732; 5.023183;-0.078749;, + -2.241732; 5.023183; 0.786420;, + -2.241733; 3.121707; 0.786420;, + -2.045197; 4.778826; 0.786420;, + -0.802529; 4.778825; 0.786420;, + -0.802528; 4.778826; 4.317000;, + -2.045197; 4.778826; 4.317000;, + -0.802529; 4.778825; 0.786420;, + -0.802529; 3.233784; 0.786420;, + -0.802529; 3.233785; 4.317000;, + -0.802528; 4.778826; 4.317000;, + -0.802529; 3.233784; 0.786420;, + -2.045198; 3.233785; 0.786420;, + -2.045197; 3.233785; 4.317000;, + -0.802529; 3.233785; 4.317000;, + -0.605994; 5.023182; 0.786420;, + -0.605994; 3.121706; 0.786420;, + -0.802529; 3.233784; 0.786420;, + -0.802529; 4.778825; 0.786420;, + -2.045197; 4.778826; 4.317000;, + -0.802528; 4.778826; 4.317000;, + -0.600140; 5.030460; 4.316999;, + -2.247585; 5.030461; 4.317000;, + -2.045197; 3.233785; 4.317000;, + -2.045197; 4.778826; 4.317000;, + -2.247585; 5.030461; 4.317000;, + -2.247586; 2.982151; 4.317000;, + -0.802529; 3.233785; 4.317000;, + -2.045197; 3.233785; 4.317000;, + -2.247586; 2.982151; 4.317000;, + -0.600141; 2.982150; 4.317000;, + -2.045198; 3.233785; 0.786420;, + -2.045197; 4.778826; 0.786420;, + -2.045197; 4.778826; 4.317000;, + -2.045197; 3.233785; 4.317000;, + 2.289855; 3.121706;-0.078749;, + 0.654117; 3.121706;-0.078749;, + 0.654117; 3.121706; 0.786420;, + 2.289855; 3.121706; 0.786420;, + 0.654118; 5.023182;-0.078749;, + 2.289856; 5.023181;-0.078749;, + 2.289856; 5.023181; 0.786420;, + 0.654118; 5.023182; 0.786420;, + 2.289856; 5.023181;-0.078749;, + 2.289855; 3.121706;-0.078749;, + 2.289855; 3.121706; 0.786420;, + 2.289856; 5.023181; 0.786420;, + 2.289855; 3.121706;-0.078749;, + 2.289856; 5.023181;-0.078749;, + 0.654118; 5.023182;-0.078749;, + 0.654117; 3.121706;-0.078749;, + 2.295710; 5.030459; 4.316999;, + 2.295710; 5.030459; 5.986964;, + 0.648265; 5.030460; 5.986964;, + 0.648265; 5.030460; 4.317000;, + 0.648265; 2.982150; 5.986965;, + 2.295710; 2.982149; 5.986964;, + 2.295709; 2.982149; 4.317000;, + 0.648264; 2.982150; 4.317000;, + 0.648265; 5.030460; 5.986964;, + 0.648265; 2.982150; 5.986965;, + 0.648264; 2.982150; 4.317000;, + 0.648265; 5.030460; 4.317000;, + 2.295710; 5.030459; 5.986964;, + 2.295710; 2.982149; 5.986964;, + 0.648265; 2.982150; 5.986965;, + 0.648265; 5.030460; 5.986964;, + 2.295710; 5.030459; 4.316999;, + 2.295709; 2.982149; 4.317000;, + 2.295710; 2.982149; 5.986964;, + 2.295710; 5.030459; 5.986964;, + 2.093321; 4.778825; 4.317000;, + 2.093321; 3.233784; 4.317000;, + 2.295709; 2.982149; 4.317000;, + 2.295710; 5.030459; 4.316999;, + 0.654118; 5.023182; 0.786420;, + 2.289856; 5.023181; 0.786420;, + 2.093321; 4.778824; 0.786420;, + 0.850653; 4.778825; 0.786420;, + 2.289855; 3.121706; 0.786420;, + 0.654117; 3.121706; 0.786420;, + 0.850652; 3.233784; 0.786420;, + 2.093320; 3.233783; 0.786420;, + 0.654117; 3.121706; 0.786420;, + 0.654118; 5.023182; 0.786420;, + 0.850653; 4.778825; 0.786420;, + 0.850652; 3.233784; 0.786420;, + 0.654117; 3.121706;-0.078749;, + 0.654118; 5.023182;-0.078749;, + 0.654118; 5.023182; 0.786420;, + 0.654117; 3.121706; 0.786420;, + 0.850653; 4.778825; 0.786420;, + 2.093321; 4.778824; 0.786420;, + 2.093321; 4.778825; 4.317000;, + 0.850653; 4.778825; 4.317000;, + 2.093321; 4.778824; 0.786420;, + 2.093320; 3.233783; 0.786420;, + 2.093321; 3.233784; 4.317000;, + 2.093321; 4.778825; 4.317000;, + 2.093320; 3.233783; 0.786420;, + 0.850652; 3.233784; 0.786420;, + 0.850652; 3.233784; 4.317000;, + 2.093321; 3.233784; 4.317000;, + 2.289856; 5.023181; 0.786420;, + 2.289855; 3.121706; 0.786420;, + 2.093320; 3.233783; 0.786420;, + 2.093321; 4.778824; 0.786420;, + 0.850653; 4.778825; 4.317000;, + 2.093321; 4.778825; 4.317000;, + 2.295710; 5.030459; 4.316999;, + 0.648265; 5.030460; 4.317000;, + 0.850652; 3.233784; 4.317000;, + 0.850653; 4.778825; 4.317000;, + 0.648265; 5.030460; 4.317000;, + 0.648264; 2.982150; 4.317000;, + 2.093321; 3.233784; 4.317000;, + 0.850652; 3.233784; 4.317000;, + 0.648264; 2.982150; 4.317000;, + 2.295709; 2.982149; 4.317000;, + 0.850652; 3.233784; 0.786420;, + 0.850653; 4.778825; 0.786420;, + 0.850653; 4.778825; 4.317000;, + 0.850652; 3.233784; 4.317000;, + -0.605996;-4.554652;-0.078749;, + -2.241735;-4.554652;-0.078749;, + -2.241735;-4.554652; 0.786420;, + -0.605996;-4.554652; 0.786420;, + -2.241734;-2.653176;-0.078749;, + -0.605996;-2.653177;-0.078749;, + -0.605996;-2.653177; 0.786420;, + -2.241734;-2.653176; 0.786420;, + -0.605996;-2.653177;-0.078749;, + -0.605996;-4.554652;-0.078749;, + -0.605996;-4.554652; 0.786420;, + -0.605996;-2.653177; 0.786420;, + -0.605996;-4.554652;-0.078749;, + -0.605996;-2.653177;-0.078749;, + -2.241734;-2.653176;-0.078749;, + -2.241735;-4.554652;-0.078749;, + -0.600143;-2.645899; 4.316999;, + -0.600142;-2.645899; 5.986964;, + -2.247587;-2.645898; 5.986964;, + -2.247587;-2.645898; 4.317000;, + -2.247587;-4.694208; 5.986965;, + -0.600143;-4.694209; 5.986964;, + -0.600143;-4.694209; 4.317000;, + -2.247588;-4.694208; 4.317000;, + -2.247587;-2.645898; 5.986964;, + -2.247587;-4.694208; 5.986965;, + -2.247588;-4.694208; 4.317000;, + -2.247587;-2.645898; 4.317000;, + -0.600142;-2.645899; 5.986964;, + -0.600143;-4.694209; 5.986964;, + -2.247587;-4.694208; 5.986965;, + -2.247587;-2.645898; 5.986964;, + -0.600143;-2.645899; 4.316999;, + -0.600143;-4.694209; 4.317000;, + -0.600143;-4.694209; 5.986964;, + -0.600142;-2.645899; 5.986964;, + -0.802531;-2.897533; 4.317000;, + -0.802531;-4.442574; 4.317000;, + -0.600143;-4.694209; 4.317000;, + -0.600143;-2.645899; 4.316999;, + -2.241734;-2.653176; 0.786420;, + -0.605996;-2.653177; 0.786420;, + -0.802531;-2.897534; 0.786420;, + -2.045199;-2.897533; 0.786420;, + -0.605996;-4.554652; 0.786420;, + -2.241735;-4.554652; 0.786420;, + -2.045200;-4.442574; 0.786420;, + -0.802532;-4.442575; 0.786420;, + -2.241735;-4.554652; 0.786420;, + -2.241734;-2.653176; 0.786420;, + -2.045199;-2.897533; 0.786420;, + -2.045200;-4.442574; 0.786420;, + -2.241735;-4.554652;-0.078749;, + -2.241734;-2.653176;-0.078749;, + -2.241734;-2.653176; 0.786420;, + -2.241735;-4.554652; 0.786420;, + -2.045199;-2.897533; 0.786420;, + -0.802531;-2.897534; 0.786420;, + -0.802531;-2.897533; 4.317000;, + -2.045199;-2.897533; 4.317000;, + -0.802531;-2.897534; 0.786420;, + -0.802532;-4.442575; 0.786420;, + -0.802531;-4.442574; 4.317000;, + -0.802531;-2.897533; 4.317000;, + -0.802532;-4.442575; 0.786420;, + -2.045200;-4.442574; 0.786420;, + -2.045200;-4.442574; 4.317000;, + -0.802531;-4.442574; 4.317000;, + -0.605996;-2.653177; 0.786420;, + -0.605996;-4.554652; 0.786420;, + -0.802532;-4.442575; 0.786420;, + -0.802531;-2.897534; 0.786420;, + -2.045199;-2.897533; 4.317000;, + -0.802531;-2.897533; 4.317000;, + -0.600143;-2.645899; 4.316999;, + -2.247587;-2.645898; 4.317000;, + -2.045200;-4.442574; 4.317000;, + -2.045199;-2.897533; 4.317000;, + -2.247587;-2.645898; 4.317000;, + -2.247588;-4.694208; 4.317000;, + -0.802531;-4.442574; 4.317000;, + -2.045200;-4.442574; 4.317000;, + -2.247588;-4.694208; 4.317000;, + -0.600143;-4.694209; 4.317000;, + -2.045200;-4.442574; 0.786420;, + -2.045199;-2.897533; 0.786420;, + -2.045199;-2.897533; 4.317000;, + -2.045200;-4.442574; 4.317000;, + 2.289853;-4.554653;-0.078749;, + 0.654114;-4.554653;-0.078749;, + 0.654114;-4.554653; 0.786420;, + 2.289853;-4.554653; 0.786420;, + 0.654115;-2.653177;-0.078749;, + 2.289853;-2.653177;-0.078749;, + 2.289853;-2.653177; 0.786420;, + 0.654115;-2.653177; 0.786420;, + 2.289853;-2.653177;-0.078749;, + 2.289853;-4.554653;-0.078749;, + 2.289853;-4.554653; 0.786420;, + 2.289853;-2.653177; 0.786420;, + 2.289853;-4.554653;-0.078749;, + 2.289853;-2.653177;-0.078749;, + 0.654115;-2.653177;-0.078749;, + 0.654114;-4.554653;-0.078749;, + 2.295707;-2.645900; 4.316999;, + 2.295707;-2.645900; 5.986964;, + 0.648262;-2.645899; 5.986964;, + 0.648262;-2.645899; 4.317000;, + 0.648262;-4.694209; 5.986965;, + 2.295707;-4.694210; 5.986964;, + 2.295706;-4.694210; 4.317000;, + 0.648261;-4.694209; 4.317000;, + 0.648262;-2.645899; 5.986964;, + 0.648262;-4.694209; 5.986965;, + 0.648261;-4.694209; 4.317000;, + 0.648262;-2.645899; 4.317000;, + 2.295707;-2.645900; 5.986964;, + 2.295707;-4.694210; 5.986964;, + 0.648262;-4.694209; 5.986965;, + 0.648262;-2.645899; 5.986964;, + 2.295707;-2.645900; 4.316999;, + 2.295706;-4.694210; 4.317000;, + 2.295707;-4.694210; 5.986964;, + 2.295707;-2.645900; 5.986964;, + 2.093318;-2.897534; 4.317000;, + 2.093318;-4.442575; 4.317000;, + 2.295706;-4.694210; 4.317000;, + 2.295707;-2.645900; 4.316999;, + 0.654115;-2.653177; 0.786420;, + 2.289853;-2.653177; 0.786420;, + 2.093318;-2.897534; 0.786420;, + 0.850650;-2.897534; 0.786420;, + 2.289853;-4.554653; 0.786420;, + 0.654114;-4.554653; 0.786420;, + 0.850649;-4.442575; 0.786420;, + 2.093318;-4.442575; 0.786420;, + 0.654114;-4.554653; 0.786420;, + 0.654115;-2.653177; 0.786420;, + 0.850650;-2.897534; 0.786420;, + 0.850649;-4.442575; 0.786420;, + 0.654114;-4.554653;-0.078749;, + 0.654115;-2.653177;-0.078749;, + 0.654115;-2.653177; 0.786420;, + 0.654114;-4.554653; 0.786420;, + 0.850650;-2.897534; 0.786420;, + 2.093318;-2.897534; 0.786420;, + 2.093318;-2.897534; 4.317000;, + 0.850650;-2.897534; 4.317000;, + 2.093318;-2.897534; 0.786420;, + 2.093318;-4.442575; 0.786420;, + 2.093318;-4.442575; 4.317000;, + 2.093318;-2.897534; 4.317000;, + 2.093318;-4.442575; 0.786420;, + 0.850649;-4.442575; 0.786420;, + 0.850650;-4.442575; 4.317000;, + 2.093318;-4.442575; 4.317000;, + 2.289853;-2.653177; 0.786420;, + 2.289853;-4.554653; 0.786420;, + 2.093318;-4.442575; 0.786420;, + 2.093318;-2.897534; 0.786420;, + 0.850650;-2.897534; 4.317000;, + 2.093318;-2.897534; 4.317000;, + 2.295707;-2.645900; 4.316999;, + 0.648262;-2.645899; 4.317000;, + 0.850650;-4.442575; 4.317000;, + 0.850650;-2.897534; 4.317000;, + 0.648262;-2.645899; 4.317000;, + 0.648261;-4.694209; 4.317000;, + 2.093318;-4.442575; 4.317000;, + 0.850650;-4.442575; 4.317000;, + 0.648261;-4.694209; 4.317000;, + 2.295706;-4.694210; 4.317000;, + 0.850649;-4.442575; 0.786420;, + 0.850650;-2.897534; 0.786420;, + 0.850650;-2.897534; 4.317000;, + 0.850650;-4.442575; 4.317000;, + 2.755566;-5.423599; 5.058936;, + 2.755570; 5.376402; 5.058936;, + -2.644430; 5.376405; 5.058936;, + -2.644433;-5.423595; 5.058936;, + -2.644428; 5.376408;10.458936;, + 2.755571; 5.376401;10.458936;, + 2.755567;-5.423597;10.458936;, + -2.644435;-5.423593;10.458936;, + -2.644430; 5.376405; 5.058936;, + -2.644428; 5.376408;10.458936;, + -2.644435;-5.423593;10.458936;, + -2.644433;-5.423595; 5.058936;, + 2.755570; 5.376402; 5.058936;, + 2.755571; 5.376401;10.458936;, + -2.644428; 5.376408;10.458936;, + -2.644430; 5.376405; 5.058936;, + 2.755566;-5.423599; 5.058936;, + 2.755567;-5.423597;10.458936;, + 2.755571; 5.376401;10.458936;, + 2.755570; 5.376402; 5.058936;, + 0.457788;-5.423596; 9.828822;, + -0.346656;-5.423596; 9.828822;, + -2.644435;-5.423593;10.458936;, + 2.755567;-5.423597;10.458936;, + -0.346656;-6.180264; 9.828822;, + -0.346656;-6.180264; 7.673504;, + -0.346656;-5.423596; 7.673504;, + -0.346656;-5.423596; 9.828822;, + 0.457788;-6.180264; 9.828822;, + 0.457788;-6.180264; 7.673504;, + -0.346656;-6.180264; 7.673504;, + -0.346656;-6.180264; 9.828822;, + 0.457788;-5.423596; 7.673504;, + 0.457788;-5.423596; 9.828822;, + 2.755567;-5.423597;10.458936;, + 2.755566;-5.423599; 5.058936;, + -0.346656;-5.423596; 9.828822;, + -0.346656;-5.423596; 7.673504;, + -2.644433;-5.423595; 5.058936;, + -2.644435;-5.423593;10.458936;, + -0.346656;-5.423596; 7.673504;, + 0.457788;-5.423596; 7.673504;, + 2.755566;-5.423599; 5.058936;, + -2.644433;-5.423595; 5.058936;, + -0.346656;-6.180264; 7.673504;, + 0.457788;-6.180264; 7.673504;, + 0.457788;-5.423596; 7.673504;, + -0.346656;-5.423596; 7.673504;, + 0.457788;-6.180264; 7.673504;, + 0.457788;-6.180264; 9.828822;, + 0.457788;-5.423596; 9.828822;, + 0.457788;-5.423596; 7.673504;, + 0.457788;-6.180264; 9.828822;, + -0.346656;-6.180264; 9.828822;, + -0.346656;-5.423596; 9.828822;, + 0.457788;-5.423596; 9.828822;, + -0.600140; 2.982150; 5.986964;, + -2.247585; 2.982151; 5.986965;, + -2.247585; 2.982151; 5.986965;, + -0.600140; 2.982150; 5.986964;; + 125; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;, + 4;408;409;410;411;, + 4;412;413;414;415;, + 4;416;417;418;419;, + 4;420;421;422;423;, + 4;424;425;426;427;, + 4;428;429;430;431;, + 4;432;433;434;435;, + 4;436;437;438;439;, + 4;440;441;442;443;, + 4;444;445;446;447;, + 4;448;449;450;451;, + 4;452;453;454;455;, + 4;456;457;458;459;, + 4;460;461;462;463;, + 4;464;465;466;467;, + 4;468;469;470;471;, + 4;472;473;474;475;, + 4;476;477;478;479;, + 4;480;481;482;483;, + 4;484;485;486;487;, + 4;488;489;490;491;, + 4;492;493;494;495;, + 4;496;497;498;499;; + MeshNormals { //Cube_000 Normals + 500; + 1.000000;-0.000001;-0.000000;, + 1.000000;-0.000001;-0.000000;, + 1.000000;-0.000001;-0.000000;, + 1.000000;-0.000001;-0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000001;-0.000000;, + -1.000000; 0.000001;-0.000000;, + -1.000000; 0.000001;-0.000000;, + -1.000000; 0.000001;-0.000000;, + 0.000001; 1.000000; 0.000000;, + 0.000001; 1.000000; 0.000000;, + 0.000001; 1.000000; 0.000000;, + 0.000001; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000001; 1.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000;-0.000001;-0.000000;, + 1.000000;-0.000001;-0.000000;, + 1.000000;-0.000001;-0.000000;, + 1.000000;-0.000001;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 1.000000;-0.000001;-0.000000;, + 1.000000;-0.000001;-0.000000;, + 1.000000;-0.000001;-0.000000;, + 1.000000;-0.000001;-0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000001;-0.000000;-1.000000;, + -0.000001;-0.000000;-1.000000;, + -0.000001;-0.000000;-1.000000;, + -0.000001;-0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000001;-0.000000;-1.000000;, + -0.000001;-0.000000;-1.000000;, + -0.000001;-0.000000;-1.000000;, + -0.000001;-0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000001;-0.000000;-1.000000;, + -0.000001;-0.000000;-1.000000;, + -0.000001;-0.000000;-1.000000;, + -0.000001;-0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000001;-0.000000;-1.000000;, + -0.000001;-0.000000;-1.000000;, + -0.000001;-0.000000;-1.000000;, + -0.000001;-0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000;-0.000001;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -1.000000; 0.000001; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000001; 1.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000001;-1.000000; 0.000002;, + -0.000001;-1.000000; 0.000002;, + -0.000001;-1.000000; 0.000002;, + -0.000001;-1.000000; 0.000002;, + -1.000000; 0.000001;-0.000000;, + -1.000000; 0.000001;-0.000000;, + -1.000000; 0.000001;-0.000000;, + -1.000000; 0.000001;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000;-0.000001; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;; + 125; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;, + 4;408;409;410;411;, + 4;412;413;414;415;, + 4;416;417;418;419;, + 4;420;421;422;423;, + 4;424;425;426;427;, + 4;428;429;430;431;, + 4;432;433;434;435;, + 4;436;437;438;439;, + 4;440;441;442;443;, + 4;444;445;446;447;, + 4;448;449;450;451;, + 4;452;453;454;455;, + 4;456;457;458;459;, + 4;460;461;462;463;, + 4;464;465;466;467;, + 4;468;469;470;471;, + 4;472;473;474;475;, + 4;476;477;478;479;, + 4;480;481;482;483;, + 4;484;485;486;487;, + 4;488;489;490;491;, + 4;492;493;494;495;, + 4;496;497;498;499;; + } //End of Cube_000 Normals + MeshMaterialList { //Cube_000 Material List + 1; + 125; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material { + 0.800000; 0.800000; 0.800000; 1.000000;; + 96.078431; + 0.000000; 0.000000; 0.000000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Cube_000 Material List + MeshTextureCoords { //Cube_000 UV Coordinates + 500; + 0.775469; 0.249479;, + 0.775469; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 0.249479;, + 0.770791; 0.254677;, + 0.770791; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 0.254677;, + 0.776860; 0.247933;, + 0.776860; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 0.247933;, + 1.000000; 0.248886;, + 0.776003; 0.248886;, + 0.776003; 0.000000;, + 1.000000; 0.000000;, + 0.775469; 0.249479;, + 0.775469; 0.000000;, + 1.000000; 0.000000;, + 1.000000; 0.249479;, + 0.508558; 0.128375;, + 0.416040; 0.128375;, + 0.399617; 0.101116;, + 0.521949; 0.101116;, + 0.774010; 0.541452;, + 0.428653; 0.541418;, + 0.409241; 0.502401;, + 0.788614; 0.502401;, + 0.508558; 0.323334;, + 0.508558; 0.128375;, + 0.521949; 0.101116;, + 0.521949; 0.350594;, + 0.170686; 0.040386;, + 0.170686; 0.289871;, + 0.128073; 0.289868;, + 0.128073; 0.040389;, + 0.535799; 0.248602;, + 0.665009; 0.248602;, + 0.660053; 0.275862;, + 0.537722; 0.275862;, + 0.717535; 0.651074;, + 0.480501; 0.651074;, + 0.403272; 0.516724;, + 0.800974; 0.515687;, + 0.819048; 0.797658;, + 0.818677; 0.592455;, + 0.785562; 0.595942;, + 0.785562; 0.806196;, + 0.445849; 0.717935;, + 0.757626; 0.715741;, + 0.759700; 0.650149;, + 0.451988; 0.650149;, + 0.385327; 0.564976;, + 0.385327; 0.831711;, + 0.411585; 0.834122;, + 0.411585; 0.566052;, + 0.641769; 0.799233;, + 0.559004; 0.799233;, + 0.531170; 0.783727;, + 0.669603; 0.783727;, + 0.480501; 0.651074;, + 0.480501; 0.866680;, + 0.402917; 0.885928;, + 0.403272; 0.516724;, + 0.717535; 0.866680;, + 0.717535; 0.651074;, + 0.800974; 0.515687;, + 0.800796; 0.879372;, + 0.445862; 0.690313;, + 0.757393; 0.690313;, + 0.757626; 0.715741;, + 0.445849; 0.717935;, + 0.530532; 0.825974;, + 0.530532; 0.725803;, + 0.672472; 0.725803;, + 0.672472; 0.825974;, + 0.546001; 0.748997;, + 0.546001; 0.824503;, + 0.529045; 0.825838;, + 0.529045; 0.747662;, + 0.654435; 0.833521;, + 0.654435; 0.728251;, + 0.669955; 0.728605;, + 0.669954; 0.835122;, + 0.531146; 0.813612;, + 0.671345; 0.813612;, + 0.670462; 0.829118;, + 0.532029; 0.829118;, + 0.163824; 0.970678;, + 0.025445; 0.971241;, + 0.025078; 0.812645;, + 0.163457; 0.812082;, + 0.163457; 0.971241;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.163824; 0.812645;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.197495; 0.970678;, + 0.025445; 0.971378;, + 0.197553; 0.995579;, + 0.025502; 0.996279;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.757152; 0.213729;, + 0.757313; 0.027004;, + 0.808940; 0.027564;, + 0.808778; 0.214289;, + 0.873128; 0.028261;, + 0.924754; 0.028821;, + 0.924592; 0.215546;, + 0.872966; 0.214986;, + 0.808940; 0.027564;, + 0.873128; 0.028261;, + 0.872966; 0.214986;, + 0.808778; 0.214289;, + 0.760353; 0.210258;, + 0.760551; 0.026773;, + 0.812177; 0.027222;, + 0.811979; 0.210707;, + 0.757152; 0.213729;, + 0.692963; 0.213032;, + 0.693125; 0.026307;, + 0.757313; 0.027004;, + 0.757120; 0.249836;, + 0.692932; 0.249139;, + 0.692963; 0.213032;, + 0.757152; 0.213729;, + 0.025078; 0.995579;, + 0.025502; 0.812082;, + 0.046123; 0.834214;, + 0.045801; 0.973616;, + 0.197553; 0.812782;, + 0.197128; 0.996279;, + 0.176507; 0.974147;, + 0.176830; 0.834745;, + 0.197128; 0.996279;, + 0.025078; 0.995579;, + 0.045801; 0.973616;, + 0.176507; 0.974147;, + 0.197128; 0.971378;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.197495; 0.812783;, + 0.145802; 0.800348;, + 0.037973; 0.799657;, + 0.038577; 0.388392;, + 0.146405; 0.389084;, + 0.169580; 0.801264;, + 0.035513; 0.800404;, + 0.036117; 0.389140;, + 0.170183; 0.389999;, + 0.147602; 0.801900;, + 0.039773; 0.801209;, + 0.040375; 0.389943;, + 0.148204; 0.390635;, + 0.025502; 0.812082;, + 0.197553; 0.812782;, + 0.176830; 0.834745;, + 0.046123; 0.834214;, + 0.808747; 0.250397;, + 0.757120; 0.249836;, + 0.757152; 0.213729;, + 0.808778; 0.214289;, + 0.872935; 0.251093;, + 0.808747; 0.250397;, + 0.808778; 0.214289;, + 0.872966; 0.214986;, + 0.924561; 0.251654;, + 0.872935; 0.251093;, + 0.872966; 0.214986;, + 0.924592; 0.215546;, + 0.169708; 0.801209;, + 0.035640; 0.800348;, + 0.036243; 0.389084;, + 0.170310; 0.389943;, + 0.163824; 0.970678;, + 0.025445; 0.971241;, + 0.025078; 0.812645;, + 0.163457; 0.812082;, + 0.163457; 0.971241;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.163824; 0.812645;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.197495; 0.970678;, + 0.025445; 0.971378;, + 0.197553; 0.995579;, + 0.025502; 0.996279;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.757152; 0.213729;, + 0.757313; 0.027004;, + 0.808940; 0.027564;, + 0.808778; 0.214289;, + 0.873128; 0.028261;, + 0.924754; 0.028821;, + 0.924592; 0.215546;, + 0.872966; 0.214986;, + 0.808940; 0.027564;, + 0.873128; 0.028261;, + 0.872966; 0.214986;, + 0.808778; 0.214289;, + 0.760353; 0.210258;, + 0.760551; 0.026773;, + 0.812177; 0.027222;, + 0.811979; 0.210707;, + 0.757152; 0.213729;, + 0.692963; 0.213032;, + 0.693125; 0.026307;, + 0.757313; 0.027004;, + 0.757120; 0.249836;, + 0.692932; 0.249139;, + 0.692963; 0.213032;, + 0.757152; 0.213729;, + 0.025078; 0.995579;, + 0.025502; 0.812082;, + 0.046123; 0.834214;, + 0.045801; 0.973616;, + 0.197553; 0.812782;, + 0.197128; 0.996279;, + 0.176507; 0.974147;, + 0.176830; 0.834745;, + 0.197128; 0.996279;, + 0.025078; 0.995579;, + 0.045801; 0.973616;, + 0.176507; 0.974147;, + 0.197128; 0.971378;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.197495; 0.812783;, + 0.145802; 0.800348;, + 0.037973; 0.799657;, + 0.038577; 0.388392;, + 0.146405; 0.389084;, + 0.169580; 0.801264;, + 0.035513; 0.800404;, + 0.036117; 0.389140;, + 0.170183; 0.389999;, + 0.147602; 0.801900;, + 0.039773; 0.801209;, + 0.040375; 0.389943;, + 0.148204; 0.390635;, + 0.025502; 0.812082;, + 0.197553; 0.812782;, + 0.176830; 0.834745;, + 0.046123; 0.834214;, + 0.808747; 0.250397;, + 0.757120; 0.249836;, + 0.757152; 0.213729;, + 0.808778; 0.214289;, + 0.872935; 0.251093;, + 0.808747; 0.250397;, + 0.808778; 0.214289;, + 0.872966; 0.214986;, + 0.924561; 0.251654;, + 0.872935; 0.251093;, + 0.872966; 0.214986;, + 0.924592; 0.215546;, + 0.169708; 0.801209;, + 0.035640; 0.800348;, + 0.036243; 0.389084;, + 0.170310; 0.389943;, + 0.163824; 0.970678;, + 0.025445; 0.971241;, + 0.025078; 0.812645;, + 0.163457; 0.812082;, + 0.163457; 0.971241;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.163824; 0.812645;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.197495; 0.970678;, + 0.025445; 0.971378;, + 0.197553; 0.995579;, + 0.025502; 0.996279;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.757152; 0.213729;, + 0.757313; 0.027004;, + 0.808940; 0.027564;, + 0.808778; 0.214289;, + 0.873128; 0.028261;, + 0.924754; 0.028821;, + 0.924592; 0.215546;, + 0.872966; 0.214986;, + 0.808940; 0.027564;, + 0.873128; 0.028261;, + 0.872966; 0.214986;, + 0.808778; 0.214289;, + 0.760353; 0.210258;, + 0.760551; 0.026773;, + 0.812177; 0.027222;, + 0.811979; 0.210707;, + 0.757152; 0.213729;, + 0.692963; 0.213032;, + 0.693125; 0.026307;, + 0.757313; 0.027004;, + 0.757120; 0.249836;, + 0.692932; 0.249139;, + 0.692963; 0.213032;, + 0.757152; 0.213729;, + 0.025078; 0.995579;, + 0.025502; 0.812082;, + 0.046123; 0.834214;, + 0.045801; 0.973616;, + 0.197553; 0.812782;, + 0.197128; 0.996279;, + 0.176507; 0.974147;, + 0.176830; 0.834745;, + 0.197128; 0.996279;, + 0.025078; 0.995579;, + 0.045801; 0.973616;, + 0.176507; 0.974147;, + 0.197128; 0.971378;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.197495; 0.812783;, + 0.145802; 0.800348;, + 0.037973; 0.799657;, + 0.038577; 0.388392;, + 0.146405; 0.389084;, + 0.169580; 0.801264;, + 0.035513; 0.800404;, + 0.036117; 0.389140;, + 0.170183; 0.389999;, + 0.147602; 0.801900;, + 0.039773; 0.801209;, + 0.040375; 0.389943;, + 0.148204; 0.390635;, + 0.025502; 0.812082;, + 0.197553; 0.812782;, + 0.176830; 0.834745;, + 0.046123; 0.834214;, + 0.808747; 0.250397;, + 0.757120; 0.249836;, + 0.757152; 0.213729;, + 0.808778; 0.214289;, + 0.872935; 0.251093;, + 0.808747; 0.250397;, + 0.808778; 0.214289;, + 0.872966; 0.214986;, + 0.924561; 0.251654;, + 0.872935; 0.251093;, + 0.872966; 0.214986;, + 0.924592; 0.215546;, + 0.169708; 0.801209;, + 0.035640; 0.800348;, + 0.036243; 0.389084;, + 0.170310; 0.389943;, + 0.163824; 0.970678;, + 0.025445; 0.971241;, + 0.025078; 0.812645;, + 0.163457; 0.812082;, + 0.163457; 0.971241;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.163824; 0.812645;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.197495; 0.970678;, + 0.025445; 0.971378;, + 0.197553; 0.995579;, + 0.025502; 0.996279;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.757152; 0.213729;, + 0.757313; 0.027004;, + 0.808940; 0.027564;, + 0.808778; 0.214289;, + 0.873128; 0.028261;, + 0.924754; 0.028821;, + 0.924592; 0.215546;, + 0.872966; 0.214986;, + 0.808940; 0.027564;, + 0.873128; 0.028261;, + 0.872966; 0.214986;, + 0.808778; 0.214289;, + 0.760353; 0.210258;, + 0.760551; 0.026773;, + 0.812177; 0.027222;, + 0.811979; 0.210707;, + 0.757152; 0.213729;, + 0.692963; 0.213032;, + 0.693125; 0.026307;, + 0.757313; 0.027004;, + 0.757120; 0.249836;, + 0.692932; 0.249139;, + 0.692963; 0.213032;, + 0.757152; 0.213729;, + 0.025078; 0.995579;, + 0.025502; 0.812082;, + 0.046123; 0.834214;, + 0.045801; 0.973616;, + 0.197553; 0.812782;, + 0.197128; 0.996279;, + 0.176507; 0.974147;, + 0.176830; 0.834745;, + 0.197128; 0.996279;, + 0.025078; 0.995579;, + 0.045801; 0.973616;, + 0.176507; 0.974147;, + 0.197128; 0.971378;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.197495; 0.812783;, + 0.145802; 0.800348;, + 0.037973; 0.799657;, + 0.038577; 0.388392;, + 0.146405; 0.389084;, + 0.169580; 0.801264;, + 0.035513; 0.800404;, + 0.036117; 0.389140;, + 0.170183; 0.389999;, + 0.147602; 0.801900;, + 0.039773; 0.801209;, + 0.040375; 0.389943;, + 0.148204; 0.390635;, + 0.025502; 0.812082;, + 0.197553; 0.812782;, + 0.176830; 0.834745;, + 0.046123; 0.834214;, + 0.808747; 0.250397;, + 0.757120; 0.249836;, + 0.757152; 0.213729;, + 0.808778; 0.214289;, + 0.872935; 0.251093;, + 0.808747; 0.250397;, + 0.808778; 0.214289;, + 0.872966; 0.214986;, + 0.924561; 0.251654;, + 0.872935; 0.251093;, + 0.872966; 0.214986;, + 0.924592; 0.215546;, + 0.169708; 0.801209;, + 0.035640; 0.800348;, + 0.036243; 0.389084;, + 0.170310; 0.389943;, + 0.162385; 0.009221;, + 0.924369; 0.009221;, + 0.924369; 0.340664;, + 0.162385; 0.340664;, + 0.162385; 0.375513;, + 0.162385; 0.044070;, + 0.920960; 0.044069;, + 0.920960; 0.375513;, + 0.162385; 0.341696;, + 0.162385; 0.040128;, + 0.811969; 0.040128;, + 0.811969; 0.341696;, + 0.420022; 0.481351;, + 0.420022; 0.016910;, + 0.838019; 0.016910;, + 0.838019; 0.481351;, + 0.893638; 0.009221;, + 0.893639; 0.340665;, + 0.162386; 0.340666;, + 0.162385; 0.009222;, + 0.784518; 0.096296;, + 0.836709; 0.096296;, + 0.985785; 0.049700;, + 0.635442; 0.049700;, + 0.846809; 0.124222;, + 0.847350; 0.300681;, + 0.785401; 0.300871;, + 0.784859; 0.124412;, + 0.655966; 0.300669;, + 0.656507; 0.124210;, + 0.722368; 0.124412;, + 0.721827; 0.300871;, + 0.784518; 0.255678;, + 0.784518; 0.096296;, + 0.635442; 0.049700;, + 0.635442; 0.449020;, + 0.836709; 0.096296;, + 0.836709; 0.255678;, + 0.985785; 0.449020;, + 0.985785; 0.049700;, + 0.836709; 0.255678;, + 0.784518; 0.255678;, + 0.635442; 0.449020;, + 0.985785; 0.449020;, + 0.784859; 0.124032;, + 0.785061; 0.058171;, + 0.847011; 0.058361;, + 0.846809; 0.124222;, + 0.722368; 0.300681;, + 0.722910; 0.124222;, + 0.784859; 0.124412;, + 0.784318; 0.300871;, + 0.784657; 0.058171;, + 0.784859; 0.124032;, + 0.722910; 0.124222;, + 0.722708; 0.058361;, + 0.560714; 0.056620;, + 0.713255; 0.056620;, + 0.713255; 0.056620;, + 0.560714; 0.056620;; + } //End of Cube_000 UV Coordinates + XSkinMeshHeader { + 2; + 6; + 6; + } + SkinWeights { + "Armature_RR_leg"; + 88; + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.000000,-1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 1.469550, 5.848685,-3.642604, 1.000000;; + } //End of Armature_RR_leg Skin Weights + SkinWeights { + "Armature_Bone_001"; + 88; + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.000000,-1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -1.429771, 5.848686, 4.064455, 1.000000;; + } //End of Armature_Bone_001 Skin Weights + SkinWeights { + "Armature_Head"; + 94; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 444, + 445, + 449, + 453, + 454, + 458; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000003, + 0.000000, + 0.000003, + 0.000000, + 0.000003; + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.030900,-3.778762,-10.040427, 1.000000;; + } //End of Armature_Head Skin Weights + SkinWeights { + "Armature_Root"; + 59; + 197, + 205, + 210, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495; + 0.502081, + 0.502081, + 0.502081, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999997, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999997, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999997, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000,-0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -0.000000, 1.000000, 0.000000, 0.000000, + 0.030899,-5.987902, 0.009275, 1.000000;; + } //End of Armature_Root Skin Weights + SkinWeights { + "Armature_Bone_002"; + 88; + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.993587, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.993587, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.993587, + 1.000000, + 1.000000, + 0.993587, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.000000,-1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -1.429772, 5.848685,-3.642603, 1.000000;; + } //End of Armature_Bone_002 Skin Weights + SkinWeights { + "Armature_Bone_003"; + 107; + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 268, + 271, + 278, + 283, + 291, + 304, + 307, + 311, + 313, + 314, + 317, + 318, + 320, + 325, + 328, + 334, + 339, + 342, + 349; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.497919, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.497919, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.497919, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.006413, + 0.006413, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.006413, + 0.006413, + 0.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 1.469550, 5.848685, 4.064454, 1.000000;; + } //End of Armature_Bone_003 Skin Weights + } //End of Cube_000 Mesh + } //End of sheep + } //End of Armature +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 165; + 0;3; 0.020581, 0.043608, 0.162447;;, + 1;3; 0.020581, 0.043608, 0.162447;;, + 2;3; 0.020581, 0.043608, 0.162447;;, + 3;3; 0.020581, 0.043608, 0.162447;;, + 4;3; 0.020581, 0.043608, 0.162447;;, + 5;3; 0.020581, 0.043608, 0.162447;;, + 6;3; 0.020581, 0.043608, 0.162447;;, + 7;3; 0.020581, 0.043608, 0.162447;;, + 8;3; 0.020581, 0.043608, 0.162447;;, + 9;3; 0.020581, 0.043608, 0.162447;;, + 10;3; 0.020581, 0.043608, 0.162447;;, + 11;3; 0.020581, 0.043608, 0.162447;;, + 12;3; 0.020581, 0.043608, 0.162447;;, + 13;3; 0.020581, 0.043608, 0.162447;;, + 14;3; 0.020581, 0.043608, 0.162447;;, + 15;3; 0.020581, 0.043608, 0.162447;;, + 16;3; 0.020581, 0.043608, 0.162447;;, + 17;3; 0.020581, 0.043608, 0.162447;;, + 18;3; 0.020581, 0.043608, 0.162447;;, + 19;3; 0.020581, 0.043608, 0.162447;;, + 20;3; 0.020581, 0.043608, 0.162447;;, + 21;3; 0.020581, 0.043608, 0.162447;;, + 22;3; 0.020581, 0.043608, 0.162447;;, + 23;3; 0.020581, 0.043608, 0.162447;;, + 24;3; 0.020581, 0.043608, 0.162447;;, + 25;3; 0.020581, 0.043608, 0.162447;;, + 26;3; 0.020581, 0.043608, 0.162447;;, + 27;3; 0.020581, 0.043608, 0.162447;;, + 28;3; 0.020581, 0.043608, 0.162447;;, + 29;3; 0.020581, 0.043608, 0.162447;;, + 30;3; 0.020581, 0.043608, 0.162447;;, + 31;3; 0.020581, 0.043608, 0.162447;;, + 32;3; 0.020581, 0.043608, 0.162447;;, + 33;3; 0.020581, 0.043608, 0.162447;;, + 34;3; 0.020581, 0.043608, 0.162447;;, + 35;3; 0.020581, 0.043608, 0.162447;;, + 36;3; 0.020581, 0.043608, 0.162447;;, + 37;3; 0.020581, 0.043608, 0.162447;;, + 38;3; 0.020581, 0.043608, 0.162447;;, + 39;3; 0.020581, 0.043608, 0.162447;;, + 40;3; 0.020581, 0.043608, 0.162447;;, + 41;3; 0.020581, 0.043608, 0.162447;;, + 42;3; 0.020581, 0.043608, 0.162447;;, + 43;3; 0.020581, 0.043608, 0.162447;;, + 44;3; 0.020581, 0.043608, 0.162447;;, + 45;3; 0.020581, 0.043608, 0.162447;;, + 46;3; 0.020581, 0.043608, 0.162447;;, + 47;3; 0.020581, 0.043608, 0.162447;;, + 48;3; 0.020581, 0.043608, 0.162447;;, + 49;3; 0.020581, 0.043608, 0.162447;;, + 50;3; 0.020581, 0.043608, 0.162447;;, + 51;3; 0.020581, 0.043608, 0.162447;;, + 52;3; 0.020581, 0.043608, 0.162447;;, + 53;3; 0.020581, 0.043608, 0.162447;;, + 54;3; 0.020581, 0.043608, 0.162447;;, + 55;3; 0.020581, 0.043608, 0.162447;;, + 56;3; 0.020581, 0.043608, 0.162447;;, + 57;3; 0.020581, 0.043608, 0.162447;;, + 58;3; 0.020581, 0.043608, 0.162447;;, + 59;3; 0.020581, 0.043608, 0.162447;;, + 60;3; 0.020581, 0.043608, 0.162447;;, + 61;3; 0.020581, 0.043608, 0.162447;;, + 62;3; 0.020581, 0.043608, 0.162447;;, + 63;3; 0.020581, 0.043608, 0.162447;;, + 64;3; 0.020581, 0.043608, 0.162447;;, + 65;3; 0.020581, 0.043608, 0.162447;;, + 66;3; 0.020581, 0.043608, 0.162447;;, + 67;3; 0.020581, 0.043608, 0.162447;;, + 68;3; 0.020581, 0.043608, 0.162447;;, + 69;3; 0.020581, 0.043608, 0.162447;;, + 70;3; 0.020581, 0.043608, 0.162447;;, + 71;3; 0.020581, 0.043608, 0.162447;;, + 72;3; 0.020581, 0.043608, 0.162447;;, + 73;3; 0.020581, 0.043608, 0.162447;;, + 74;3; 0.020581, 0.043608, 0.162447;;, + 75;3; 0.020581, 0.043608, 0.162447;;, + 76;3; 0.020581, 0.043608, 0.162447;;, + 77;3; 0.020581, 0.043608, 0.162447;;, + 78;3; 0.020581, 0.043608, 0.162447;;, + 79;3; 0.020581, 0.043608, 0.162447;;, + 80;3; 0.020581, 0.043608, 0.162447;;, + 81;3; 0.020581, 0.043608, 0.162447;;, + 82;3; 0.020581, 0.043608, 0.162447;;, + 83;3; 0.020581, 0.043608, 0.162447;;, + 84;3; 0.020581, 0.043608, 0.162447;;, + 85;3; 0.020581, 0.043608, 0.162447;;, + 86;3; 0.020581, 0.043608, 0.162447;;, + 87;3; 0.020581, 0.043608, 0.162447;;, + 88;3; 0.020581, 0.043608, 0.162447;;, + 89;3; 0.020581, 0.043608, 0.162447;;, + 90;3; 0.020581, 0.043608, 0.162447;;, + 91;3; 0.020581, 0.043608, 0.162447;;, + 92;3; 0.020581, 0.043608, 0.162447;;, + 93;3; 0.020581, 0.043608, 0.162447;;, + 94;3; 0.020581, 0.043608, 0.162447;;, + 95;3; 0.020581, 0.043608, 0.162447;;, + 96;3; 0.020581, 0.043608, 0.162447;;, + 97;3; 0.020581, 0.043608, 0.162447;;, + 98;3; 0.020581, 0.043608, 0.162447;;, + 99;3; 0.020581, 0.043608, 0.162447;;, + 100;3; 0.020581, 0.043608, 0.162447;;, + 101;3; 0.020581, 0.043608, 0.162447;;, + 102;3; 0.020581, 0.043608, 0.162447;;, + 103;3; 0.020581, 0.043608, 0.162447;;, + 104;3; 0.020581, 0.043608, 0.162447;;, + 105;3; 0.020581, 0.043608, 0.162447;;, + 106;3; 0.020581, 0.043608, 0.162447;;, + 107;3; 0.020581, 0.043608, 0.162447;;, + 108;3; 0.020581, 0.043608, 0.162447;;, + 109;3; 0.020581, 0.043608, 0.162447;;, + 110;3; 0.020581, 0.043608, 0.162447;;, + 111;3; 0.020581, 0.043608, 0.162447;;, + 112;3; 0.020581, 0.043608, 0.162447;;, + 113;3; 0.020581, 0.043608, 0.162447;;, + 114;3; 0.020581, 0.043608, 0.162447;;, + 115;3; 0.020581, 0.043608, 0.162447;;, + 116;3; 0.020581, 0.043608, 0.162447;;, + 117;3; 0.020581, 0.043608, 0.162447;;, + 118;3; 0.020581, 0.043608, 0.162447;;, + 119;3; 0.020581, 0.043608, 0.162447;;, + 120;3; 0.020581, 0.043608, 0.162447;;, + 121;3; 0.020581, 0.043608, 0.162447;;, + 122;3; 0.020581, 0.043608, 0.162447;;, + 123;3; 0.020581, 0.043608, 0.162447;;, + 124;3; 0.020581, 0.043608, 0.162447;;, + 125;3; 0.020581, 0.043608, 0.162447;;, + 126;3; 0.020581, 0.043608, 0.162447;;, + 127;3; 0.020581, 0.043608, 0.162447;;, + 128;3; 0.020581, 0.043608, 0.162447;;, + 129;3; 0.020581, 0.043608, 0.162447;;, + 130;3; 0.020581, 0.043608, 0.162447;;, + 131;3; 0.020581, 0.043608, 0.162447;;, + 132;3; 0.020581, 0.043608, 0.162447;;, + 133;3; 0.020581, 0.043608, 0.162447;;, + 134;3; 0.020581, 0.043608, 0.162447;;, + 135;3; 0.020581, 0.043608, 0.162447;;, + 136;3; 0.020581, 0.043608, 0.162447;;, + 137;3; 0.020581, 0.043608, 0.162447;;, + 138;3; 0.020581, 0.043608, 0.162447;;, + 139;3; 0.020581, 0.043608, 0.162447;;, + 140;3; 0.020581, 0.043608, 0.162447;;, + 141;3; 0.020581, 0.043608, 0.162447;;, + 142;3; 0.020581, 0.043608, 0.162447;;, + 143;3; 0.020581, 0.043608, 0.162447;;, + 144;3; 0.020581, 0.043608, 0.162447;;, + 145;3; 0.020581, 0.043608, 0.162447;;, + 146;3; 0.020581, 0.043608, 0.162447;;, + 147;3; 0.020581, 0.043608, 0.162447;;, + 148;3; 0.020581, 0.043608, 0.162447;;, + 149;3; 0.020581, 0.043608, 0.162447;;, + 150;3; 0.020581, 0.043608, 0.162447;;, + 151;3; 0.020581, 0.043608, 0.162447;;, + 152;3; 0.020581, 0.043608, 0.162447;;, + 153;3; 0.020581, 0.043608, 0.162447;;, + 154;3; 0.020581, 0.043608, 0.162447;;, + 155;3; 0.020581, 0.043608, 0.162447;;, + 156;3; 0.020581, 0.043608, 0.162447;;, + 157;3; 0.020581, 0.043608, 0.162447;;, + 158;3; 0.020581, 0.043608, 0.162447;;, + 159;3; 0.020581, 0.043608, 0.162447;;, + 160;3; 0.020581, 0.043608, 0.162447;;, + 161;3; 0.020581, 0.043608, 0.162447;;, + 162;3; 0.020581, 0.043608, 0.162447;;, + 163;3; 0.020581, 0.043608, 0.162447;;, + 164;3; 0.020581, 0.043608, 0.162447;;; + } + AnimationKey { //Rotation + 0; + 165; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 165; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Root} + AnimationKey { //Position + 2; + 165; + 0;3; 0.030899,-0.009276, 5.987902;;, + 1;3; 0.030899,-0.009276, 5.987902;;, + 2;3; 0.030899,-0.009276, 5.987902;;, + 3;3; 0.030899,-0.009276, 5.987902;;, + 4;3; 0.030899,-0.009276, 5.987902;;, + 5;3; 0.030899,-0.009276, 5.987902;;, + 6;3; 0.030899,-0.009276, 5.987902;;, + 7;3; 0.030899,-0.009276, 5.987902;;, + 8;3; 0.030899,-0.009276, 5.987902;;, + 9;3; 0.030899,-0.009276, 5.987902;;, + 10;3; 0.030899,-0.009276, 5.987902;;, + 11;3; 0.030899,-0.009276, 5.987902;;, + 12;3; 0.030899,-0.009276, 5.987902;;, + 13;3; 0.030899,-0.009276, 5.987902;;, + 14;3; 0.030899,-0.009276, 5.987902;;, + 15;3; 0.030899,-0.009276, 5.987902;;, + 16;3; 0.030899,-0.009276, 5.987902;;, + 17;3; 0.030899,-0.009276, 5.987902;;, + 18;3; 0.030899,-0.009276, 5.987902;;, + 19;3; 0.030899,-0.009276, 5.987902;;, + 20;3; 0.030899,-0.009276, 5.987902;;, + 21;3; 0.030899,-0.009276, 5.987902;;, + 22;3; 0.030899,-0.009276, 5.987902;;, + 23;3; 0.030899,-0.009276, 5.987902;;, + 24;3; 0.030899,-0.009276, 5.987902;;, + 25;3; 0.030899,-0.009276, 5.987902;;, + 26;3; 0.030899,-0.009276, 5.987902;;, + 27;3; 0.030899,-0.009276, 5.987902;;, + 28;3; 0.030899,-0.009276, 5.987902;;, + 29;3; 0.030899,-0.009276, 5.987902;;, + 30;3; 0.030899,-0.009276, 5.987902;;, + 31;3; 0.030899,-0.009276, 5.987902;;, + 32;3; 0.030899,-0.009276, 5.987902;;, + 33;3; 0.030899,-0.009276, 5.987902;;, + 34;3; 0.030899,-0.009276, 5.987902;;, + 35;3; 0.030899,-0.009276, 5.987902;;, + 36;3; 0.030899,-0.009276, 5.987902;;, + 37;3; 0.030899,-0.009276, 5.987902;;, + 38;3; 0.030899,-0.009276, 5.987902;;, + 39;3; 0.030899,-0.009276, 5.987902;;, + 40;3; 0.030899,-0.009276, 5.987902;;, + 41;3; 0.030899,-0.009276, 5.987902;;, + 42;3; 0.030899,-0.009276, 5.987902;;, + 43;3; 0.030899,-0.009276, 5.987902;;, + 44;3; 0.030899,-0.009276, 5.987902;;, + 45;3; 0.030899,-0.009276, 5.987902;;, + 46;3; 0.030899,-0.009276, 5.987902;;, + 47;3; 0.030899,-0.009276, 5.987902;;, + 48;3; 0.030899,-0.009276, 5.987902;;, + 49;3; 0.030899,-0.009276, 5.987902;;, + 50;3; 0.030899,-0.009276, 5.987902;;, + 51;3; 0.030899,-0.009276, 5.987902;;, + 52;3; 0.030899,-0.009276, 5.987902;;, + 53;3; 0.030899,-0.009276, 5.987902;;, + 54;3; 0.030899,-0.009276, 5.987902;;, + 55;3; 0.030899,-0.009276, 5.987902;;, + 56;3; 0.030899,-0.009276, 5.987902;;, + 57;3; 0.030899,-0.009276, 5.987902;;, + 58;3; 0.030899,-0.009276, 5.987902;;, + 59;3; 0.030899,-0.009276, 5.987902;;, + 60;3; 0.030899,-0.009276, 5.987902;;, + 61;3; 0.030899,-0.009276, 5.987902;;, + 62;3; 0.030899,-0.009276, 5.987902;;, + 63;3; 0.030899,-0.009276, 5.987902;;, + 64;3; 0.030899,-0.009276, 5.987902;;, + 65;3; 0.030899,-0.009276, 5.987902;;, + 66;3; 0.030899,-0.009276, 5.987902;;, + 67;3; 0.030899,-0.009276, 5.987902;;, + 68;3; 0.030899,-0.009276, 5.987902;;, + 69;3; 0.030899,-0.009276, 5.987902;;, + 70;3; 0.030899,-0.009276, 5.987902;;, + 71;3; 0.030899,-0.009276, 5.987902;;, + 72;3; 0.030899,-0.009276, 5.987902;;, + 73;3; 0.030899,-0.009276, 5.987902;;, + 74;3; 0.030899,-0.009276, 5.987902;;, + 75;3; 0.030899,-0.009276, 5.987902;;, + 76;3; 0.030899,-0.009276, 5.987902;;, + 77;3; 0.030899,-0.009276, 5.987902;;, + 78;3; 0.030899,-0.009276, 5.987902;;, + 79;3; 0.030899,-0.009276, 5.987902;;, + 80;3; 0.030899,-0.009276, 5.987902;;, + 81;3; 0.030899,-0.009276, 5.987902;;, + 82;3; 0.030899,-0.009276, 5.987902;;, + 83;3; 0.030899,-0.009276, 5.987902;;, + 84;3; 0.030899,-0.009276, 5.987902;;, + 85;3; 0.030899,-0.009276, 5.987902;;, + 86;3; 0.030899,-0.009276, 5.987902;;, + 87;3; 0.030899,-0.009276, 5.987902;;, + 88;3; 0.030899,-0.009276, 5.987902;;, + 89;3; 0.030899,-0.009276, 5.987902;;, + 90;3; 0.030899,-0.009276, 5.987902;;, + 91;3; 0.030899,-0.009276, 5.987902;;, + 92;3; 0.030899,-0.009276, 5.987902;;, + 93;3; 0.030899,-0.009276, 5.987902;;, + 94;3; 0.030899,-0.009276, 5.987902;;, + 95;3; 0.030899,-0.009276, 5.987902;;, + 96;3; 0.030899,-0.009276, 5.987902;;, + 97;3; 0.030899,-0.009276, 5.987902;;, + 98;3; 0.030899,-0.009276, 5.987902;;, + 99;3; 0.030899,-0.009276, 5.987902;;, + 100;3; 0.030899,-0.009276, 5.987902;;, + 101;3; 0.030899,-0.009276, 5.987902;;, + 102;3; 0.030899,-0.009276, 5.987902;;, + 103;3; 0.030899,-0.009276, 5.987902;;, + 104;3; 0.030899,-0.009276, 5.987902;;, + 105;3; 0.030899,-0.009276, 5.987902;;, + 106;3; 0.030899,-0.009276, 5.987902;;, + 107;3; 0.030899,-0.009276, 5.987902;;, + 108;3; 0.030899,-0.009276, 5.987902;;, + 109;3; 0.030899,-0.009276, 5.987902;;, + 110;3; 0.030899,-0.009276, 5.987902;;, + 111;3; 0.030899,-0.009276, 5.987902;;, + 112;3; 0.030899,-0.009276, 5.987902;;, + 113;3; 0.030899,-0.009276, 5.987902;;, + 114;3; 0.030899,-0.009276, 5.987902;;, + 115;3; 0.030899,-0.009276, 5.987902;;, + 116;3; 0.030899,-0.009276, 5.987902;;, + 117;3; 0.030899,-0.009276, 5.987902;;, + 118;3; 0.030899,-0.009276, 5.987902;;, + 119;3; 0.030899,-0.009276, 5.987902;;, + 120;3; 0.030899,-0.009276, 5.987902;;, + 121;3; 0.030899,-0.009276, 5.987902;;, + 122;3; 0.030899,-0.009276, 5.987902;;, + 123;3; 0.030899,-0.009276, 5.987902;;, + 124;3; 0.030899,-0.009276, 5.987902;;, + 125;3; 0.030899,-0.009276, 5.987902;;, + 126;3; 0.030899,-0.009276, 5.987902;;, + 127;3; 0.030899,-0.009276, 5.987902;;, + 128;3; 0.030899,-0.009276, 5.987902;;, + 129;3; 0.030899,-0.009276, 5.987902;;, + 130;3; 0.030899,-0.009276, 5.987902;;, + 131;3; 0.030899,-0.009276, 5.987902;;, + 132;3; 0.030899,-0.009276, 5.987902;;, + 133;3; 0.030899,-0.009276, 5.987902;;, + 134;3; 0.030899,-0.009276, 5.987902;;, + 135;3; 0.030899,-0.009276, 5.987902;;, + 136;3; 0.030899,-0.009276, 5.987902;;, + 137;3; 0.030899,-0.009276, 5.987902;;, + 138;3; 0.030899,-0.009276, 5.987902;;, + 139;3; 0.030899,-0.009276, 5.987902;;, + 140;3; 0.030899,-0.009276, 5.987902;;, + 141;3; 0.030899,-0.009276, 5.987902;;, + 142;3; 0.030899,-0.009276, 5.987902;;, + 143;3; 0.030899,-0.009276, 5.987902;;, + 144;3; 0.030899,-0.009276, 5.987902;;, + 145;3; 0.030899,-0.009276, 5.987902;;, + 146;3; 0.030899,-0.009276, 5.987902;;, + 147;3; 0.030899,-0.009276, 5.987902;;, + 148;3; 0.030899,-0.009276, 5.987902;;, + 149;3; 0.030899,-0.009276, 5.987902;;, + 150;3; 0.030899,-0.009276, 5.987902;;, + 151;3; 0.030899,-0.009276, 5.987902;;, + 152;3; 0.030899,-0.009276, 5.987902;;, + 153;3; 0.030899,-0.009276, 5.987902;;, + 154;3; 0.030899,-0.009276, 5.987902;;, + 155;3; 0.030899,-0.009276, 5.987902;;, + 156;3; 0.030899,-0.009276, 5.987902;;, + 157;3; 0.030899,-0.009276, 5.987902;;, + 158;3; 0.030899,-0.009276, 5.987902;;, + 159;3; 0.030899,-0.009276, 5.987902;;, + 160;3; 0.030899,-0.009276, 5.987902;;, + 161;3; 0.030899,-0.009276, 5.987902;;, + 162;3; 0.030899,-0.009276, 5.987902;;, + 163;3; 0.030899,-0.009276, 5.987902;;, + 164;3; 0.030899,-0.009276, 5.987902;;; + } + AnimationKey { //Rotation + 0; + 165; + 0;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 1;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 2;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 3;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 4;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 5;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 6;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 7;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 8;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 9;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 10;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 11;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 12;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 13;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 14;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 15;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 16;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 17;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 18;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 19;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 20;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 21;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 22;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 23;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 24;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 25;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 26;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 27;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 28;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 29;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 30;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 31;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 32;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 33;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 34;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 35;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 36;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 37;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 38;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 39;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 40;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 41;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 42;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 43;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 44;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 45;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 46;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 47;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 48;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 49;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 50;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 51;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 52;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 53;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 54;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 55;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 56;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 57;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 58;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 59;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 60;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 61;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 62;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 63;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 64;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 65;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 66;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 67;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 68;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 69;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 70;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 71;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 72;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 73;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 74;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 75;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 76;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 77;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 78;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 79;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 80;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 81;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 82;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 83;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 84;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 85;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 86;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 87;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 88;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 89;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 90;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 91;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 92;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 93;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 94;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 95;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 96;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 97;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 98;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 99;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 100;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 101;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 102;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 103;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 104;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 105;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 106;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 107;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 108;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 109;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 110;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 111;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 112;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 113;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 114;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 115;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 116;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 117;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 118;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 119;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 120;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 121;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 122;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 123;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 124;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 125;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 126;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 127;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 128;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 129;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 130;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 131;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 132;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 133;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 134;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 135;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 136;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 137;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 138;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 139;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 140;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 141;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 142;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 143;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 144;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 145;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 146;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 147;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 148;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 149;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 150;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 151;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 152;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 153;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 154;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 155;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 156;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 157;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 158;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 159;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 160;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 161;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 162;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 163;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 164;4; 0.000000, 0.000000, 0.707107, 0.707107;;; + } + AnimationKey { //Scale + 1; + 165; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { //Position + 2; + 165; + 0;3; 1.460671,-0.139217, 4.073730;;, + 1;3; 1.460671,-0.139217, 4.073730;;, + 2;3; 1.460671,-0.139217, 4.073730;;, + 3;3; 1.460671,-0.139217, 4.073730;;, + 4;3; 1.460671,-0.139217, 4.073730;;, + 5;3; 1.460671,-0.139217, 4.073730;;, + 6;3; 1.460671,-0.139217, 4.073730;;, + 7;3; 1.460671,-0.139217, 4.073730;;, + 8;3; 1.460671,-0.139217, 4.073730;;, + 9;3; 1.460671,-0.139217, 4.073730;;, + 10;3; 1.460671,-0.139217, 4.073730;;, + 11;3; 1.460671,-0.139217, 4.073730;;, + 12;3; 1.460671,-0.139217, 4.073730;;, + 13;3; 1.460671,-0.139217, 4.073730;;, + 14;3; 1.460671,-0.139217, 4.073730;;, + 15;3; 1.460671,-0.139217, 4.073730;;, + 16;3; 1.460671,-0.139217, 4.073730;;, + 17;3; 1.460671,-0.139217, 4.073730;;, + 18;3; 1.460671,-0.139217, 4.073730;;, + 19;3; 1.460671,-0.139217, 4.073730;;, + 20;3; 1.460671,-0.139217, 4.073730;;, + 21;3; 1.460671,-0.139217, 4.073730;;, + 22;3; 1.460671,-0.139217, 4.073730;;, + 23;3; 1.460671,-0.139217, 4.073730;;, + 24;3; 1.460671,-0.139217, 4.073730;;, + 25;3; 1.460671,-0.139217, 4.073730;;, + 26;3; 1.460671,-0.139217, 4.073730;;, + 27;3; 1.460671,-0.139217, 4.073730;;, + 28;3; 1.460671,-0.139217, 4.073730;;, + 29;3; 1.460671,-0.139217, 4.073730;;, + 30;3; 1.460671,-0.139217, 4.073730;;, + 31;3; 1.460671,-0.139217, 4.073730;;, + 32;3; 1.460671,-0.139217, 4.073730;;, + 33;3; 1.460671,-0.139217, 4.073730;;, + 34;3; 1.460671,-0.139217, 4.073730;;, + 35;3; 1.460671,-0.139217, 4.073730;;, + 36;3; 1.460671,-0.139217, 4.073730;;, + 37;3; 1.460671,-0.139217, 4.073730;;, + 38;3; 1.460671,-0.139217, 4.073730;;, + 39;3; 1.460671,-0.139217, 4.073730;;, + 40;3; 1.460671,-0.139217, 4.073730;;, + 41;3; 1.460671,-0.139217, 4.073730;;, + 42;3; 1.460671,-0.139217, 4.073730;;, + 43;3; 1.460671,-0.139217, 4.073730;;, + 44;3; 1.460671,-0.139217, 4.073730;;, + 45;3; 1.460671,-0.139217, 4.073730;;, + 46;3; 1.460671,-0.139217, 4.073730;;, + 47;3; 1.460671,-0.139217, 4.073730;;, + 48;3; 1.460671,-0.139217, 4.073730;;, + 49;3; 1.460671,-0.139217, 4.073730;;, + 50;3; 1.460671,-0.139217, 4.073730;;, + 51;3; 1.460671,-0.139217, 4.073730;;, + 52;3; 1.460671,-0.139217, 4.073730;;, + 53;3; 1.460671,-0.139217, 4.073730;;, + 54;3; 1.460671,-0.139217, 4.073730;;, + 55;3; 1.460671,-0.139217, 4.073730;;, + 56;3; 1.460671,-0.139217, 4.073730;;, + 57;3; 1.460671,-0.139217, 4.073730;;, + 58;3; 1.460671,-0.139217, 4.073730;;, + 59;3; 1.460671,-0.139217, 4.073730;;, + 60;3; 1.460671,-0.139217, 4.073730;;, + 61;3; 1.460671,-0.139217, 4.073730;;, + 62;3; 1.460671,-0.139217, 4.073730;;, + 63;3; 1.460671,-0.139217, 4.073730;;, + 64;3; 1.460671,-0.139217, 4.073730;;, + 65;3; 1.460671,-0.139217, 4.073730;;, + 66;3; 1.460671,-0.139217, 4.073730;;, + 67;3; 1.460671,-0.139217, 4.073730;;, + 68;3; 1.460671,-0.139217, 4.073730;;, + 69;3; 1.460671,-0.139217, 4.073730;;, + 70;3; 1.460671,-0.139217, 4.073730;;, + 71;3; 1.460671,-0.139217, 4.073730;;, + 72;3; 1.460671,-0.139217, 4.073730;;, + 73;3; 1.460671,-0.139217, 4.073730;;, + 74;3; 1.460671,-0.139217, 4.073730;;, + 75;3; 1.460671,-0.139217, 4.073730;;, + 76;3; 1.460671,-0.139217, 4.073730;;, + 77;3; 1.460671,-0.139217, 4.073730;;, + 78;3; 1.460671,-0.139217, 4.073730;;, + 79;3; 1.460671,-0.139217, 4.073730;;, + 80;3; 1.460671,-0.139217, 4.073730;;, + 81;3; 1.460671,-0.139217, 4.073730;;, + 82;3; 1.460671,-0.139217, 4.073730;;, + 83;3; 1.460671,-0.139217, 4.073730;;, + 84;3; 1.460671,-0.139217, 4.073730;;, + 85;3; 1.460671,-0.139217, 4.073730;;, + 86;3; 1.460671,-0.139217, 4.073730;;, + 87;3; 1.460671,-0.139217, 4.073730;;, + 88;3; 1.460671,-0.139217, 4.073730;;, + 89;3; 1.460671,-0.139217, 4.073730;;, + 90;3; 1.460671,-0.139217, 4.073730;;, + 91;3; 1.460671,-0.139217, 4.073730;;, + 92;3; 1.460671,-0.139217, 4.073730;;, + 93;3; 1.460671,-0.139217, 4.073730;;, + 94;3; 1.460671,-0.139217, 4.073730;;, + 95;3; 1.460671,-0.139217, 4.073730;;, + 96;3; 1.460671,-0.139217, 4.073730;;, + 97;3; 1.460671,-0.139217, 4.073730;;, + 98;3; 1.460671,-0.139217, 4.073730;;, + 99;3; 1.460671,-0.139217, 4.073730;;, + 100;3; 1.460671,-0.139217, 4.073730;;, + 101;3; 1.460671,-0.139217, 4.073730;;, + 102;3; 1.460671,-0.139217, 4.073730;;, + 103;3; 1.460671,-0.139217, 4.073730;;, + 104;3; 1.460671,-0.139217, 4.073730;;, + 105;3; 1.460671,-0.139217, 4.073730;;, + 106;3; 1.460671,-0.139217, 4.073730;;, + 107;3; 1.460671,-0.139217, 4.073730;;, + 108;3; 1.460671,-0.139217, 4.073730;;, + 109;3; 1.460671,-0.139217, 4.073730;;, + 110;3; 1.460671,-0.139217, 4.073730;;, + 111;3; 1.460671,-0.139217, 4.073730;;, + 112;3; 1.460671,-0.139217, 4.073730;;, + 113;3; 1.460671,-0.139217, 4.073730;;, + 114;3; 1.460671,-0.139217, 4.073730;;, + 115;3; 1.460671,-0.139217, 4.073730;;, + 116;3; 1.460671,-0.139217, 4.073730;;, + 117;3; 1.460671,-0.139217, 4.073730;;, + 118;3; 1.460671,-0.139217, 4.073730;;, + 119;3; 1.460671,-0.139217, 4.073730;;, + 120;3; 1.460671,-0.139217, 4.073730;;, + 121;3; 1.460671,-0.139217, 4.073730;;, + 122;3; 1.460671,-0.139217, 4.073730;;, + 123;3; 1.460671,-0.139217, 4.073730;;, + 124;3; 1.460671,-0.139217, 4.073730;;, + 125;3; 1.460671,-0.139217, 4.073730;;, + 126;3; 1.460671,-0.139217, 4.073730;;, + 127;3; 1.460671,-0.139217, 4.073730;;, + 128;3; 1.460671,-0.139217, 4.073730;;, + 129;3; 1.460671,-0.139217, 4.073730;;, + 130;3; 1.460671,-0.139217, 4.073730;;, + 131;3; 1.460671,-0.139217, 4.073730;;, + 132;3; 1.460671,-0.139217, 4.073730;;, + 133;3; 1.460671,-0.139217, 4.073730;;, + 134;3; 1.460671,-0.139217, 4.073730;;, + 135;3; 1.460671,-0.139217, 4.073730;;, + 136;3; 1.460671,-0.139217, 4.073730;;, + 137;3; 1.460671,-0.139217, 4.073730;;, + 138;3; 1.460671,-0.139217, 4.073730;;, + 139;3; 1.460671,-0.139217, 4.073730;;, + 140;3; 1.460671,-0.139217, 4.073730;;, + 141;3; 1.460671,-0.139217, 4.073730;;, + 142;3; 1.460671,-0.139217, 4.073730;;, + 143;3; 1.460671,-0.139217, 4.073730;;, + 144;3; 1.460671,-0.139217, 4.073730;;, + 145;3; 1.460671,-0.139217, 4.073730;;, + 146;3; 1.460671,-0.139217, 4.073730;;, + 147;3; 1.460671,-0.139217, 4.073730;;, + 148;3; 1.460671,-0.139217, 4.073730;;, + 149;3; 1.460671,-0.139217, 4.073730;;, + 150;3; 1.460671,-0.139217, 4.073730;;, + 151;3; 1.460671,-0.139217, 4.073730;;, + 152;3; 1.460671,-0.139217, 4.073730;;, + 153;3; 1.460671,-0.139217, 4.073730;;, + 154;3; 1.460671,-0.139217, 4.073730;;, + 155;3; 1.460671,-0.139217, 4.073730;;, + 156;3; 1.460671,-0.139217, 4.073730;;, + 157;3; 1.460671,-0.139217, 4.073730;;, + 158;3; 1.460671,-0.139217, 4.073730;;, + 159;3; 1.460671,-0.139217, 4.073730;;, + 160;3; 1.460671,-0.139217, 4.073730;;, + 161;3; 1.460671,-0.139217, 4.073730;;, + 162;3; 1.460671,-0.139217, 4.073730;;, + 163;3; 1.460671,-0.139217, 4.073730;;, + 164;3; 1.460671,-0.139217, 4.073730;;; + } + AnimationKey { //Rotation + 0; + 165; + 0;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 81;4; -0.023017, 0.996971,-0.000000,-0.000000;;, + 82;4; -0.087830, 0.988440,-0.000000,-0.000000;;, + 83;4; -0.171026, 0.977486,-0.000000,-0.000000;;, + 84;4; -0.235816, 0.968955,-0.000000,-0.000000;;, + 85;4; -0.258819, 0.965926,-0.000000,-0.000000;;, + 86;4; -0.247344, 0.965926,-0.000000,-0.000000;;, + 87;4; -0.212807, 0.965926,-0.000000,-0.000000;;, + 88;4; -0.156652, 0.965926,-0.000000,-0.000000;;, + 89;4; -0.083204, 0.965926,-0.000000,-0.000000;;, + 90;4; -0.000000, 0.965926,-0.000000,-0.000000;;, + 91;4; 0.083204, 0.965926, 0.000000,-0.000000;;, + 92;4; 0.156652, 0.965926, 0.000000,-0.000000;;, + 93;4; 0.212807, 0.965926, 0.000000,-0.000000;;, + 94;4; 0.247343, 0.965926, 0.000000,-0.000000;;, + 95;4; 0.258819, 0.965926, 0.000000,-0.000000;;, + 96;4; 0.235815, 0.968955, 0.000000,-0.000000;;, + 97;4; 0.171026, 0.977486, 0.000000,-0.000000;;, + 98;4; 0.087830, 0.988440, 0.000000,-0.000000;;, + 99;4; 0.023017, 0.996971, 0.000000,-0.000000;;, + 100;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 101;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 102;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 103;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 104;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 105;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 106;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 107;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 108;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 109;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 110;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 111;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 112;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 113;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 114;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 115;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 116;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 117;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 118;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 119;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 120;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 121;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 122;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 123;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 124;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 125;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 126;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 127;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 128;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 129;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 130;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 131;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 132;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 133;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 134;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 135;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 136;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 137;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 138;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 139;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 140;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 141;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 142;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 143;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 144;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 145;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 146;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 147;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 148;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 149;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 150;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 151;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 152;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 153;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 154;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 155;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 156;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 157;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 158;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 159;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 160;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 161;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 162;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 163;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 164;4; -0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 165; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { //Position + 2; + 165; + 0;3; 1.460671,-0.139216,-3.633328;;, + 1;3; 1.460671,-0.139216,-3.633328;;, + 2;3; 1.460671,-0.139216,-3.633328;;, + 3;3; 1.460671,-0.139216,-3.633328;;, + 4;3; 1.460671,-0.139216,-3.633328;;, + 5;3; 1.460671,-0.139216,-3.633328;;, + 6;3; 1.460671,-0.139216,-3.633328;;, + 7;3; 1.460671,-0.139216,-3.633328;;, + 8;3; 1.460671,-0.139216,-3.633328;;, + 9;3; 1.460671,-0.139216,-3.633328;;, + 10;3; 1.460671,-0.139216,-3.633328;;, + 11;3; 1.460671,-0.139216,-3.633328;;, + 12;3; 1.460671,-0.139216,-3.633328;;, + 13;3; 1.460671,-0.139216,-3.633328;;, + 14;3; 1.460671,-0.139216,-3.633328;;, + 15;3; 1.460671,-0.139216,-3.633328;;, + 16;3; 1.460671,-0.139216,-3.633328;;, + 17;3; 1.460671,-0.139216,-3.633328;;, + 18;3; 1.460671,-0.139216,-3.633328;;, + 19;3; 1.460671,-0.139216,-3.633328;;, + 20;3; 1.460671,-0.139216,-3.633328;;, + 21;3; 1.460671,-0.139216,-3.633328;;, + 22;3; 1.460671,-0.139216,-3.633328;;, + 23;3; 1.460671,-0.139216,-3.633328;;, + 24;3; 1.460671,-0.139216,-3.633328;;, + 25;3; 1.460671,-0.139216,-3.633328;;, + 26;3; 1.460671,-0.139216,-3.633328;;, + 27;3; 1.460671,-0.139216,-3.633328;;, + 28;3; 1.460671,-0.139216,-3.633328;;, + 29;3; 1.460671,-0.139216,-3.633328;;, + 30;3; 1.460671,-0.139216,-3.633328;;, + 31;3; 1.460671,-0.139216,-3.633328;;, + 32;3; 1.460671,-0.139216,-3.633328;;, + 33;3; 1.460671,-0.139216,-3.633328;;, + 34;3; 1.460671,-0.139216,-3.633328;;, + 35;3; 1.460671,-0.139216,-3.633328;;, + 36;3; 1.460671,-0.139216,-3.633328;;, + 37;3; 1.460671,-0.139216,-3.633328;;, + 38;3; 1.460671,-0.139216,-3.633328;;, + 39;3; 1.460671,-0.139216,-3.633328;;, + 40;3; 1.460671,-0.139216,-3.633328;;, + 41;3; 1.460671,-0.139216,-3.633328;;, + 42;3; 1.460671,-0.139216,-3.633328;;, + 43;3; 1.460671,-0.139216,-3.633328;;, + 44;3; 1.460671,-0.139216,-3.633328;;, + 45;3; 1.460671,-0.139216,-3.633328;;, + 46;3; 1.460671,-0.139216,-3.633328;;, + 47;3; 1.460671,-0.139216,-3.633328;;, + 48;3; 1.460671,-0.139216,-3.633328;;, + 49;3; 1.460671,-0.139216,-3.633328;;, + 50;3; 1.460671,-0.139216,-3.633328;;, + 51;3; 1.460671,-0.139216,-3.633328;;, + 52;3; 1.460671,-0.139216,-3.633328;;, + 53;3; 1.460671,-0.139216,-3.633328;;, + 54;3; 1.460671,-0.139216,-3.633328;;, + 55;3; 1.460671,-0.139216,-3.633328;;, + 56;3; 1.460671,-0.139216,-3.633328;;, + 57;3; 1.460671,-0.139216,-3.633328;;, + 58;3; 1.460671,-0.139216,-3.633328;;, + 59;3; 1.460671,-0.139216,-3.633328;;, + 60;3; 1.460671,-0.139216,-3.633328;;, + 61;3; 1.460671,-0.139216,-3.633328;;, + 62;3; 1.460671,-0.139216,-3.633328;;, + 63;3; 1.460671,-0.139216,-3.633328;;, + 64;3; 1.460671,-0.139216,-3.633328;;, + 65;3; 1.460671,-0.139216,-3.633328;;, + 66;3; 1.460671,-0.139216,-3.633328;;, + 67;3; 1.460671,-0.139216,-3.633328;;, + 68;3; 1.460671,-0.139216,-3.633328;;, + 69;3; 1.460671,-0.139216,-3.633328;;, + 70;3; 1.460671,-0.139216,-3.633328;;, + 71;3; 1.460671,-0.139216,-3.633328;;, + 72;3; 1.460671,-0.139216,-3.633328;;, + 73;3; 1.460671,-0.139216,-3.633328;;, + 74;3; 1.460671,-0.139216,-3.633328;;, + 75;3; 1.460671,-0.139216,-3.633328;;, + 76;3; 1.460671,-0.139216,-3.633328;;, + 77;3; 1.460671,-0.139216,-3.633328;;, + 78;3; 1.460671,-0.139216,-3.633328;;, + 79;3; 1.460671,-0.139216,-3.633328;;, + 80;3; 1.460671,-0.139216,-3.633328;;, + 81;3; 1.460671,-0.139216,-3.633328;;, + 82;3; 1.460671,-0.139216,-3.633328;;, + 83;3; 1.460671,-0.139216,-3.633328;;, + 84;3; 1.460671,-0.139216,-3.633328;;, + 85;3; 1.460671,-0.139216,-3.633328;;, + 86;3; 1.460671,-0.139216,-3.633328;;, + 87;3; 1.460671,-0.139216,-3.633328;;, + 88;3; 1.460671,-0.139216,-3.633328;;, + 89;3; 1.460671,-0.139216,-3.633328;;, + 90;3; 1.460671,-0.139216,-3.633328;;, + 91;3; 1.460671,-0.139216,-3.633328;;, + 92;3; 1.460671,-0.139216,-3.633328;;, + 93;3; 1.460671,-0.139216,-3.633328;;, + 94;3; 1.460671,-0.139216,-3.633328;;, + 95;3; 1.460671,-0.139216,-3.633328;;, + 96;3; 1.460671,-0.139216,-3.633328;;, + 97;3; 1.460671,-0.139216,-3.633328;;, + 98;3; 1.460671,-0.139216,-3.633328;;, + 99;3; 1.460671,-0.139216,-3.633328;;, + 100;3; 1.460671,-0.139216,-3.633328;;, + 101;3; 1.460671,-0.139216,-3.633328;;, + 102;3; 1.460671,-0.139216,-3.633328;;, + 103;3; 1.460671,-0.139216,-3.633328;;, + 104;3; 1.460671,-0.139216,-3.633328;;, + 105;3; 1.460671,-0.139216,-3.633328;;, + 106;3; 1.460671,-0.139216,-3.633328;;, + 107;3; 1.460671,-0.139216,-3.633328;;, + 108;3; 1.460671,-0.139216,-3.633328;;, + 109;3; 1.460671,-0.139216,-3.633328;;, + 110;3; 1.460671,-0.139216,-3.633328;;, + 111;3; 1.460671,-0.139216,-3.633328;;, + 112;3; 1.460671,-0.139216,-3.633328;;, + 113;3; 1.460671,-0.139216,-3.633328;;, + 114;3; 1.460671,-0.139216,-3.633328;;, + 115;3; 1.460671,-0.139216,-3.633328;;, + 116;3; 1.460671,-0.139216,-3.633328;;, + 117;3; 1.460671,-0.139216,-3.633328;;, + 118;3; 1.460671,-0.139216,-3.633328;;, + 119;3; 1.460671,-0.139216,-3.633328;;, + 120;3; 1.460671,-0.139216,-3.633328;;, + 121;3; 1.460671,-0.139216,-3.633328;;, + 122;3; 1.460671,-0.139216,-3.633328;;, + 123;3; 1.460671,-0.139216,-3.633328;;, + 124;3; 1.460671,-0.139216,-3.633328;;, + 125;3; 1.460671,-0.139216,-3.633328;;, + 126;3; 1.460671,-0.139216,-3.633328;;, + 127;3; 1.460671,-0.139216,-3.633328;;, + 128;3; 1.460671,-0.139216,-3.633328;;, + 129;3; 1.460671,-0.139216,-3.633328;;, + 130;3; 1.460671,-0.139216,-3.633328;;, + 131;3; 1.460671,-0.139216,-3.633328;;, + 132;3; 1.460671,-0.139216,-3.633328;;, + 133;3; 1.460671,-0.139216,-3.633328;;, + 134;3; 1.460671,-0.139216,-3.633328;;, + 135;3; 1.460671,-0.139216,-3.633328;;, + 136;3; 1.460671,-0.139216,-3.633328;;, + 137;3; 1.460671,-0.139216,-3.633328;;, + 138;3; 1.460671,-0.139216,-3.633328;;, + 139;3; 1.460671,-0.139216,-3.633328;;, + 140;3; 1.460671,-0.139216,-3.633328;;, + 141;3; 1.460671,-0.139216,-3.633328;;, + 142;3; 1.460671,-0.139216,-3.633328;;, + 143;3; 1.460671,-0.139216,-3.633328;;, + 144;3; 1.460671,-0.139216,-3.633328;;, + 145;3; 1.460671,-0.139216,-3.633328;;, + 146;3; 1.460671,-0.139216,-3.633328;;, + 147;3; 1.460671,-0.139216,-3.633328;;, + 148;3; 1.460671,-0.139216,-3.633328;;, + 149;3; 1.460671,-0.139216,-3.633328;;, + 150;3; 1.460671,-0.139216,-3.633328;;, + 151;3; 1.460671,-0.139216,-3.633328;;, + 152;3; 1.460671,-0.139216,-3.633328;;, + 153;3; 1.460671,-0.139216,-3.633328;;, + 154;3; 1.460671,-0.139216,-3.633328;;, + 155;3; 1.460671,-0.139216,-3.633328;;, + 156;3; 1.460671,-0.139216,-3.633328;;, + 157;3; 1.460671,-0.139216,-3.633328;;, + 158;3; 1.460671,-0.139216,-3.633328;;, + 159;3; 1.460671,-0.139216,-3.633328;;, + 160;3; 1.460671,-0.139216,-3.633328;;, + 161;3; 1.460671,-0.139216,-3.633328;;, + 162;3; 1.460671,-0.139216,-3.633328;;, + 163;3; 1.460671,-0.139216,-3.633328;;, + 164;3; 1.460671,-0.139216,-3.633328;;; + } + AnimationKey { //Rotation + 0; + 165; + 0;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 81;4; 0.023017, 0.996971, 0.000000,-0.000000;;, + 82;4; 0.087830, 0.988440, 0.000000,-0.000000;;, + 83;4; 0.171026, 0.977486, 0.000000,-0.000000;;, + 84;4; 0.235815, 0.968955, 0.000000,-0.000000;;, + 85;4; 0.258819, 0.965926, 0.000000,-0.000000;;, + 86;4; 0.247343, 0.965926, 0.000000,-0.000000;;, + 87;4; 0.212807, 0.965926, 0.000000,-0.000000;;, + 88;4; 0.156652, 0.965926, 0.000000,-0.000000;;, + 89;4; 0.083204, 0.965926, 0.000000,-0.000000;;, + 90;4; -0.000000, 0.965926,-0.000000,-0.000000;;, + 91;4; -0.083204, 0.965926,-0.000000,-0.000000;;, + 92;4; -0.156652, 0.965926,-0.000000,-0.000000;;, + 93;4; -0.212807, 0.965926,-0.000000,-0.000000;;, + 94;4; -0.247344, 0.965926,-0.000000,-0.000000;;, + 95;4; -0.258819, 0.965926,-0.000000,-0.000000;;, + 96;4; -0.235816, 0.968955,-0.000000,-0.000000;;, + 97;4; -0.171026, 0.977486,-0.000000,-0.000000;;, + 98;4; -0.087830, 0.988440,-0.000000,-0.000000;;, + 99;4; -0.023017, 0.996971,-0.000000,-0.000000;;, + 100;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 101;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 102;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 103;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 104;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 105;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 106;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 107;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 108;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 109;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 110;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 111;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 112;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 113;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 114;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 115;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 116;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 117;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 118;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 119;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 120;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 121;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 122;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 123;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 124;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 125;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 126;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 127;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 128;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 129;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 130;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 131;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 132;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 133;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 134;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 135;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 136;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 137;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 138;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 139;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 140;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 141;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 142;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 143;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 144;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 145;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 146;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 147;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 148;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 149;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 150;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 151;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 152;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 153;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 154;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 155;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 156;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 157;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 158;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 159;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 160;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 161;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 162;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 163;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 164;4; -0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 165; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { //Position + 2; + 165; + 0;3; -1.438651,-0.139217, 4.073730;;, + 1;3; -1.438651,-0.139217, 4.073730;;, + 2;3; -1.438651,-0.139217, 4.073730;;, + 3;3; -1.438651,-0.139217, 4.073730;;, + 4;3; -1.438651,-0.139217, 4.073730;;, + 5;3; -1.438651,-0.139217, 4.073730;;, + 6;3; -1.438651,-0.139217, 4.073730;;, + 7;3; -1.438651,-0.139217, 4.073730;;, + 8;3; -1.438651,-0.139217, 4.073730;;, + 9;3; -1.438651,-0.139217, 4.073730;;, + 10;3; -1.438651,-0.139217, 4.073730;;, + 11;3; -1.438651,-0.139217, 4.073730;;, + 12;3; -1.438651,-0.139217, 4.073730;;, + 13;3; -1.438651,-0.139217, 4.073730;;, + 14;3; -1.438651,-0.139217, 4.073730;;, + 15;3; -1.438651,-0.139217, 4.073730;;, + 16;3; -1.438651,-0.139217, 4.073730;;, + 17;3; -1.438651,-0.139217, 4.073730;;, + 18;3; -1.438651,-0.139217, 4.073730;;, + 19;3; -1.438651,-0.139217, 4.073730;;, + 20;3; -1.438651,-0.139217, 4.073730;;, + 21;3; -1.438651,-0.139217, 4.073730;;, + 22;3; -1.438651,-0.139217, 4.073730;;, + 23;3; -1.438651,-0.139217, 4.073730;;, + 24;3; -1.438651,-0.139217, 4.073730;;, + 25;3; -1.438651,-0.139217, 4.073730;;, + 26;3; -1.438651,-0.139217, 4.073730;;, + 27;3; -1.438651,-0.139217, 4.073730;;, + 28;3; -1.438651,-0.139217, 4.073730;;, + 29;3; -1.438651,-0.139217, 4.073730;;, + 30;3; -1.438651,-0.139217, 4.073730;;, + 31;3; -1.438651,-0.139217, 4.073730;;, + 32;3; -1.438651,-0.139217, 4.073730;;, + 33;3; -1.438651,-0.139217, 4.073730;;, + 34;3; -1.438651,-0.139217, 4.073730;;, + 35;3; -1.438651,-0.139217, 4.073730;;, + 36;3; -1.438651,-0.139217, 4.073730;;, + 37;3; -1.438651,-0.139217, 4.073730;;, + 38;3; -1.438651,-0.139217, 4.073730;;, + 39;3; -1.438651,-0.139217, 4.073730;;, + 40;3; -1.438651,-0.139217, 4.073730;;, + 41;3; -1.438651,-0.139217, 4.073730;;, + 42;3; -1.438651,-0.139217, 4.073730;;, + 43;3; -1.438651,-0.139217, 4.073730;;, + 44;3; -1.438651,-0.139217, 4.073730;;, + 45;3; -1.438651,-0.139217, 4.073730;;, + 46;3; -1.438651,-0.139217, 4.073730;;, + 47;3; -1.438651,-0.139217, 4.073730;;, + 48;3; -1.438651,-0.139217, 4.073730;;, + 49;3; -1.438651,-0.139217, 4.073730;;, + 50;3; -1.438651,-0.139217, 4.073730;;, + 51;3; -1.438651,-0.139217, 4.073730;;, + 52;3; -1.438651,-0.139217, 4.073730;;, + 53;3; -1.438651,-0.139217, 4.073730;;, + 54;3; -1.438651,-0.139217, 4.073730;;, + 55;3; -1.438651,-0.139217, 4.073730;;, + 56;3; -1.438651,-0.139217, 4.073730;;, + 57;3; -1.438651,-0.139217, 4.073730;;, + 58;3; -1.438651,-0.139217, 4.073730;;, + 59;3; -1.438651,-0.139217, 4.073730;;, + 60;3; -1.438651,-0.139217, 4.073730;;, + 61;3; -1.438651,-0.139217, 4.073730;;, + 62;3; -1.438651,-0.139217, 4.073730;;, + 63;3; -1.438651,-0.139217, 4.073730;;, + 64;3; -1.438651,-0.139217, 4.073730;;, + 65;3; -1.438651,-0.139217, 4.073730;;, + 66;3; -1.438651,-0.139217, 4.073730;;, + 67;3; -1.438651,-0.139217, 4.073730;;, + 68;3; -1.438651,-0.139217, 4.073730;;, + 69;3; -1.438651,-0.139217, 4.073730;;, + 70;3; -1.438651,-0.139217, 4.073730;;, + 71;3; -1.438651,-0.139217, 4.073730;;, + 72;3; -1.438651,-0.139217, 4.073730;;, + 73;3; -1.438651,-0.139217, 4.073730;;, + 74;3; -1.438651,-0.139217, 4.073730;;, + 75;3; -1.438651,-0.139217, 4.073730;;, + 76;3; -1.438651,-0.139217, 4.073730;;, + 77;3; -1.438651,-0.139217, 4.073730;;, + 78;3; -1.438651,-0.139217, 4.073730;;, + 79;3; -1.438651,-0.139217, 4.073730;;, + 80;3; -1.438651,-0.139217, 4.073730;;, + 81;3; -1.438651,-0.139217, 4.073730;;, + 82;3; -1.438651,-0.139217, 4.073730;;, + 83;3; -1.438651,-0.139217, 4.073730;;, + 84;3; -1.438651,-0.139217, 4.073730;;, + 85;3; -1.438651,-0.139217, 4.073730;;, + 86;3; -1.438651,-0.139217, 4.073730;;, + 87;3; -1.438651,-0.139217, 4.073730;;, + 88;3; -1.438651,-0.139217, 4.073730;;, + 89;3; -1.438651,-0.139217, 4.073730;;, + 90;3; -1.438651,-0.139217, 4.073730;;, + 91;3; -1.438651,-0.139217, 4.073730;;, + 92;3; -1.438651,-0.139217, 4.073730;;, + 93;3; -1.438651,-0.139217, 4.073730;;, + 94;3; -1.438651,-0.139217, 4.073730;;, + 95;3; -1.438651,-0.139217, 4.073730;;, + 96;3; -1.438651,-0.139217, 4.073730;;, + 97;3; -1.438651,-0.139217, 4.073730;;, + 98;3; -1.438651,-0.139217, 4.073730;;, + 99;3; -1.438651,-0.139217, 4.073730;;, + 100;3; -1.438651,-0.139217, 4.073730;;, + 101;3; -1.438651,-0.139217, 4.073730;;, + 102;3; -1.438651,-0.139217, 4.073730;;, + 103;3; -1.438651,-0.139217, 4.073730;;, + 104;3; -1.438651,-0.139217, 4.073730;;, + 105;3; -1.438651,-0.139217, 4.073730;;, + 106;3; -1.438651,-0.139217, 4.073730;;, + 107;3; -1.438651,-0.139217, 4.073730;;, + 108;3; -1.438651,-0.139217, 4.073730;;, + 109;3; -1.438651,-0.139217, 4.073730;;, + 110;3; -1.438651,-0.139217, 4.073730;;, + 111;3; -1.438651,-0.139217, 4.073730;;, + 112;3; -1.438651,-0.139217, 4.073730;;, + 113;3; -1.438651,-0.139217, 4.073730;;, + 114;3; -1.438651,-0.139217, 4.073730;;, + 115;3; -1.438651,-0.139217, 4.073730;;, + 116;3; -1.438651,-0.139217, 4.073730;;, + 117;3; -1.438651,-0.139217, 4.073730;;, + 118;3; -1.438651,-0.139217, 4.073730;;, + 119;3; -1.438651,-0.139217, 4.073730;;, + 120;3; -1.438651,-0.139217, 4.073730;;, + 121;3; -1.438651,-0.139217, 4.073730;;, + 122;3; -1.438651,-0.139217, 4.073730;;, + 123;3; -1.438651,-0.139217, 4.073730;;, + 124;3; -1.438651,-0.139217, 4.073730;;, + 125;3; -1.438651,-0.139217, 4.073730;;, + 126;3; -1.438651,-0.139217, 4.073730;;, + 127;3; -1.438651,-0.139217, 4.073730;;, + 128;3; -1.438651,-0.139217, 4.073730;;, + 129;3; -1.438651,-0.139217, 4.073730;;, + 130;3; -1.438651,-0.139217, 4.073730;;, + 131;3; -1.438651,-0.139217, 4.073730;;, + 132;3; -1.438651,-0.139217, 4.073730;;, + 133;3; -1.438651,-0.139217, 4.073730;;, + 134;3; -1.438651,-0.139217, 4.073730;;, + 135;3; -1.438651,-0.139217, 4.073730;;, + 136;3; -1.438651,-0.139217, 4.073730;;, + 137;3; -1.438651,-0.139217, 4.073730;;, + 138;3; -1.438651,-0.139217, 4.073730;;, + 139;3; -1.438651,-0.139217, 4.073730;;, + 140;3; -1.438651,-0.139217, 4.073730;;, + 141;3; -1.438651,-0.139217, 4.073730;;, + 142;3; -1.438651,-0.139217, 4.073730;;, + 143;3; -1.438651,-0.139217, 4.073730;;, + 144;3; -1.438651,-0.139217, 4.073730;;, + 145;3; -1.438651,-0.139217, 4.073730;;, + 146;3; -1.438651,-0.139217, 4.073730;;, + 147;3; -1.438651,-0.139217, 4.073730;;, + 148;3; -1.438651,-0.139217, 4.073730;;, + 149;3; -1.438651,-0.139217, 4.073730;;, + 150;3; -1.438651,-0.139217, 4.073730;;, + 151;3; -1.438651,-0.139217, 4.073730;;, + 152;3; -1.438651,-0.139217, 4.073730;;, + 153;3; -1.438651,-0.139217, 4.073730;;, + 154;3; -1.438651,-0.139217, 4.073730;;, + 155;3; -1.438651,-0.139217, 4.073730;;, + 156;3; -1.438651,-0.139217, 4.073730;;, + 157;3; -1.438651,-0.139217, 4.073730;;, + 158;3; -1.438651,-0.139217, 4.073730;;, + 159;3; -1.438651,-0.139217, 4.073730;;, + 160;3; -1.438651,-0.139217, 4.073730;;, + 161;3; -1.438651,-0.139217, 4.073730;;, + 162;3; -1.438651,-0.139217, 4.073730;;, + 163;3; -1.438651,-0.139217, 4.073730;;, + 164;3; -1.438651,-0.139217, 4.073730;;; + } + AnimationKey { //Rotation + 0; + 165; + 0;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; 0.000000, 1.000000,-0.000000,-0.000000;;, + 81;4; 0.023017, 0.996971, 0.000000,-0.000000;;, + 82;4; 0.087830, 0.988440, 0.000000,-0.000000;;, + 83;4; 0.171026, 0.977486, 0.000000,-0.000000;;, + 84;4; 0.235815, 0.968955, 0.000000,-0.000000;;, + 85;4; 0.258819, 0.965926, 0.000000,-0.000000;;, + 86;4; 0.247344, 0.965926, 0.000000,-0.000000;;, + 87;4; 0.212807, 0.965926, 0.000000,-0.000000;;, + 88;4; 0.156652, 0.965926, 0.000000,-0.000000;;, + 89;4; 0.083204, 0.965926, 0.000000,-0.000000;;, + 90;4; -0.000000, 0.965926, 0.000000,-0.000000;;, + 91;4; -0.083204, 0.965926,-0.000000,-0.000000;;, + 92;4; -0.156652, 0.965926,-0.000000,-0.000000;;, + 93;4; -0.212807, 0.965926,-0.000000,-0.000000;;, + 94;4; -0.247344, 0.965926,-0.000000,-0.000000;;, + 95;4; -0.258819, 0.965926,-0.000000,-0.000000;;, + 96;4; -0.235815, 0.968955,-0.000000,-0.000000;;, + 97;4; -0.171026, 0.977486,-0.000000,-0.000000;;, + 98;4; -0.087830, 0.988440,-0.000000,-0.000000;;, + 99;4; -0.023017, 0.996971,-0.000000,-0.000000;;, + 100;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 101;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 102;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 103;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 104;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 105;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 106;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 107;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 108;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 109;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 110;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 111;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 112;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 113;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 114;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 115;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 116;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 117;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 118;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 119;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 120;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 121;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 122;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 123;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 124;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 125;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 126;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 127;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 128;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 129;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 130;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 131;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 132;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 133;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 134;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 135;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 136;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 137;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 138;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 139;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 140;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 141;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 142;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 143;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 144;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 145;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 146;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 147;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 148;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 149;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 150;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 151;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 152;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 153;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 154;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 155;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 156;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 157;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 158;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 159;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 160;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 161;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 162;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 163;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 164;4; -0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 165; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_RR_leg} + AnimationKey { //Position + 2; + 165; + 0;3; -1.438651,-0.139216,-3.633328;;, + 1;3; -1.438651,-0.139216,-3.633328;;, + 2;3; -1.438651,-0.139216,-3.633328;;, + 3;3; -1.438651,-0.139216,-3.633328;;, + 4;3; -1.438651,-0.139216,-3.633328;;, + 5;3; -1.438651,-0.139216,-3.633328;;, + 6;3; -1.438651,-0.139216,-3.633328;;, + 7;3; -1.438651,-0.139216,-3.633328;;, + 8;3; -1.438651,-0.139216,-3.633328;;, + 9;3; -1.438651,-0.139216,-3.633328;;, + 10;3; -1.438651,-0.139216,-3.633328;;, + 11;3; -1.438651,-0.139216,-3.633328;;, + 12;3; -1.438651,-0.139216,-3.633328;;, + 13;3; -1.438651,-0.139216,-3.633328;;, + 14;3; -1.438651,-0.139216,-3.633328;;, + 15;3; -1.438651,-0.139216,-3.633328;;, + 16;3; -1.438651,-0.139216,-3.633328;;, + 17;3; -1.438651,-0.139216,-3.633328;;, + 18;3; -1.438651,-0.139216,-3.633328;;, + 19;3; -1.438651,-0.139216,-3.633328;;, + 20;3; -1.438651,-0.139216,-3.633328;;, + 21;3; -1.438651,-0.139216,-3.633328;;, + 22;3; -1.438651,-0.139216,-3.633328;;, + 23;3; -1.438651,-0.139216,-3.633328;;, + 24;3; -1.438651,-0.139216,-3.633328;;, + 25;3; -1.438651,-0.139216,-3.633328;;, + 26;3; -1.438651,-0.139216,-3.633328;;, + 27;3; -1.438651,-0.139216,-3.633328;;, + 28;3; -1.438651,-0.139216,-3.633328;;, + 29;3; -1.438651,-0.139216,-3.633328;;, + 30;3; -1.438651,-0.139216,-3.633328;;, + 31;3; -1.438651,-0.139216,-3.633328;;, + 32;3; -1.438651,-0.139216,-3.633328;;, + 33;3; -1.438651,-0.139216,-3.633328;;, + 34;3; -1.438651,-0.139216,-3.633328;;, + 35;3; -1.438651,-0.139216,-3.633328;;, + 36;3; -1.438651,-0.139216,-3.633328;;, + 37;3; -1.438651,-0.139216,-3.633328;;, + 38;3; -1.438651,-0.139216,-3.633328;;, + 39;3; -1.438651,-0.139216,-3.633328;;, + 40;3; -1.438651,-0.139216,-3.633328;;, + 41;3; -1.438651,-0.139216,-3.633328;;, + 42;3; -1.438651,-0.139216,-3.633328;;, + 43;3; -1.438651,-0.139216,-3.633328;;, + 44;3; -1.438651,-0.139216,-3.633328;;, + 45;3; -1.438651,-0.139216,-3.633328;;, + 46;3; -1.438651,-0.139216,-3.633328;;, + 47;3; -1.438651,-0.139216,-3.633328;;, + 48;3; -1.438651,-0.139216,-3.633328;;, + 49;3; -1.438651,-0.139216,-3.633328;;, + 50;3; -1.438651,-0.139216,-3.633328;;, + 51;3; -1.438651,-0.139216,-3.633328;;, + 52;3; -1.438651,-0.139216,-3.633328;;, + 53;3; -1.438651,-0.139216,-3.633328;;, + 54;3; -1.438651,-0.139216,-3.633328;;, + 55;3; -1.438651,-0.139216,-3.633328;;, + 56;3; -1.438651,-0.139216,-3.633328;;, + 57;3; -1.438651,-0.139216,-3.633328;;, + 58;3; -1.438651,-0.139216,-3.633328;;, + 59;3; -1.438651,-0.139216,-3.633328;;, + 60;3; -1.438651,-0.139216,-3.633328;;, + 61;3; -1.438651,-0.139216,-3.633328;;, + 62;3; -1.438651,-0.139216,-3.633328;;, + 63;3; -1.438651,-0.139216,-3.633328;;, + 64;3; -1.438651,-0.139216,-3.633328;;, + 65;3; -1.438651,-0.139216,-3.633328;;, + 66;3; -1.438651,-0.139216,-3.633328;;, + 67;3; -1.438651,-0.139216,-3.633328;;, + 68;3; -1.438651,-0.139216,-3.633328;;, + 69;3; -1.438651,-0.139216,-3.633328;;, + 70;3; -1.438651,-0.139216,-3.633328;;, + 71;3; -1.438651,-0.139216,-3.633328;;, + 72;3; -1.438651,-0.139216,-3.633328;;, + 73;3; -1.438651,-0.139216,-3.633328;;, + 74;3; -1.438651,-0.139216,-3.633328;;, + 75;3; -1.438651,-0.139216,-3.633328;;, + 76;3; -1.438651,-0.139216,-3.633328;;, + 77;3; -1.438651,-0.139216,-3.633328;;, + 78;3; -1.438651,-0.139216,-3.633328;;, + 79;3; -1.438651,-0.139216,-3.633328;;, + 80;3; -1.438651,-0.139216,-3.633328;;, + 81;3; -1.438651,-0.139216,-3.633328;;, + 82;3; -1.438651,-0.139216,-3.633328;;, + 83;3; -1.438651,-0.139216,-3.633328;;, + 84;3; -1.438651,-0.139216,-3.633328;;, + 85;3; -1.438651,-0.139216,-3.633328;;, + 86;3; -1.438651,-0.139216,-3.633328;;, + 87;3; -1.438651,-0.139216,-3.633328;;, + 88;3; -1.438651,-0.139216,-3.633328;;, + 89;3; -1.438651,-0.139216,-3.633328;;, + 90;3; -1.438651,-0.139216,-3.633328;;, + 91;3; -1.438651,-0.139216,-3.633328;;, + 92;3; -1.438651,-0.139216,-3.633328;;, + 93;3; -1.438651,-0.139216,-3.633328;;, + 94;3; -1.438651,-0.139216,-3.633328;;, + 95;3; -1.438651,-0.139216,-3.633328;;, + 96;3; -1.438651,-0.139216,-3.633328;;, + 97;3; -1.438651,-0.139216,-3.633328;;, + 98;3; -1.438651,-0.139216,-3.633328;;, + 99;3; -1.438651,-0.139216,-3.633328;;, + 100;3; -1.438651,-0.139216,-3.633328;;, + 101;3; -1.438651,-0.139216,-3.633328;;, + 102;3; -1.438651,-0.139216,-3.633328;;, + 103;3; -1.438651,-0.139216,-3.633328;;, + 104;3; -1.438651,-0.139216,-3.633328;;, + 105;3; -1.438651,-0.139216,-3.633328;;, + 106;3; -1.438651,-0.139216,-3.633328;;, + 107;3; -1.438651,-0.139216,-3.633328;;, + 108;3; -1.438651,-0.139216,-3.633328;;, + 109;3; -1.438651,-0.139216,-3.633328;;, + 110;3; -1.438651,-0.139216,-3.633328;;, + 111;3; -1.438651,-0.139216,-3.633328;;, + 112;3; -1.438651,-0.139216,-3.633328;;, + 113;3; -1.438651,-0.139216,-3.633328;;, + 114;3; -1.438651,-0.139216,-3.633328;;, + 115;3; -1.438651,-0.139216,-3.633328;;, + 116;3; -1.438651,-0.139216,-3.633328;;, + 117;3; -1.438651,-0.139216,-3.633328;;, + 118;3; -1.438651,-0.139216,-3.633328;;, + 119;3; -1.438651,-0.139216,-3.633328;;, + 120;3; -1.438651,-0.139216,-3.633328;;, + 121;3; -1.438651,-0.139216,-3.633328;;, + 122;3; -1.438651,-0.139216,-3.633328;;, + 123;3; -1.438651,-0.139216,-3.633328;;, + 124;3; -1.438651,-0.139216,-3.633328;;, + 125;3; -1.438651,-0.139216,-3.633328;;, + 126;3; -1.438651,-0.139216,-3.633328;;, + 127;3; -1.438651,-0.139216,-3.633328;;, + 128;3; -1.438651,-0.139216,-3.633328;;, + 129;3; -1.438651,-0.139216,-3.633328;;, + 130;3; -1.438651,-0.139216,-3.633328;;, + 131;3; -1.438651,-0.139216,-3.633328;;, + 132;3; -1.438651,-0.139216,-3.633328;;, + 133;3; -1.438651,-0.139216,-3.633328;;, + 134;3; -1.438651,-0.139216,-3.633328;;, + 135;3; -1.438651,-0.139216,-3.633328;;, + 136;3; -1.438651,-0.139216,-3.633328;;, + 137;3; -1.438651,-0.139216,-3.633328;;, + 138;3; -1.438651,-0.139216,-3.633328;;, + 139;3; -1.438651,-0.139216,-3.633328;;, + 140;3; -1.438651,-0.139216,-3.633328;;, + 141;3; -1.438651,-0.139216,-3.633328;;, + 142;3; -1.438651,-0.139216,-3.633328;;, + 143;3; -1.438651,-0.139216,-3.633328;;, + 144;3; -1.438651,-0.139216,-3.633328;;, + 145;3; -1.438651,-0.139216,-3.633328;;, + 146;3; -1.438651,-0.139216,-3.633328;;, + 147;3; -1.438651,-0.139216,-3.633328;;, + 148;3; -1.438651,-0.139216,-3.633328;;, + 149;3; -1.438651,-0.139216,-3.633328;;, + 150;3; -1.438651,-0.139216,-3.633328;;, + 151;3; -1.438651,-0.139216,-3.633328;;, + 152;3; -1.438651,-0.139216,-3.633328;;, + 153;3; -1.438651,-0.139216,-3.633328;;, + 154;3; -1.438651,-0.139216,-3.633328;;, + 155;3; -1.438651,-0.139216,-3.633328;;, + 156;3; -1.438651,-0.139216,-3.633328;;, + 157;3; -1.438651,-0.139216,-3.633328;;, + 158;3; -1.438651,-0.139216,-3.633328;;, + 159;3; -1.438651,-0.139216,-3.633328;;, + 160;3; -1.438651,-0.139216,-3.633328;;, + 161;3; -1.438651,-0.139216,-3.633328;;, + 162;3; -1.438651,-0.139216,-3.633328;;, + 163;3; -1.438651,-0.139216,-3.633328;;, + 164;3; -1.438651,-0.139216,-3.633328;;; + } + AnimationKey { //Rotation + 0; + 165; + 0;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 81;4; -0.023017, 0.996971,-0.000000,-0.000000;;, + 82;4; -0.087830, 0.988440,-0.000000,-0.000000;;, + 83;4; -0.171026, 0.977486,-0.000000,-0.000000;;, + 84;4; -0.235816, 0.968955,-0.000000,-0.000000;;, + 85;4; -0.258819, 0.965926,-0.000000,-0.000000;;, + 86;4; -0.247344, 0.965926,-0.000000,-0.000000;;, + 87;4; -0.212807, 0.965926,-0.000000,-0.000000;;, + 88;4; -0.156652, 0.965926,-0.000000,-0.000000;;, + 89;4; -0.083204, 0.965926,-0.000000,-0.000000;;, + 90;4; -0.000000, 0.965926,-0.000000,-0.000000;;, + 91;4; 0.083204, 0.965926, 0.000000,-0.000000;;, + 92;4; 0.156652, 0.965926, 0.000000,-0.000000;;, + 93;4; 0.212807, 0.965926, 0.000000,-0.000000;;, + 94;4; 0.247343, 0.965926, 0.000000,-0.000000;;, + 95;4; 0.258819, 0.965926, 0.000000,-0.000000;;, + 96;4; 0.235815, 0.968955, 0.000000,-0.000000;;, + 97;4; 0.171026, 0.977486, 0.000000,-0.000000;;, + 98;4; 0.087830, 0.988440, 0.000000,-0.000000;;, + 99;4; 0.023017, 0.996971, 0.000000,-0.000000;;, + 100;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 101;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 102;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 103;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 104;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 105;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 106;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 107;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 108;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 109;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 110;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 111;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 112;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 113;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 114;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 115;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 116;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 117;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 118;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 119;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 120;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 121;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 122;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 123;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 124;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 125;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 126;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 127;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 128;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 129;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 130;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 131;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 132;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 133;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 134;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 135;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 136;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 137;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 138;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 139;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 140;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 141;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 142;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 143;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 144;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 145;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 146;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 147;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 148;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 149;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 150;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 151;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 152;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 153;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 154;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 155;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 156;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 157;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 158;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 159;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 160;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 161;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 162;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 163;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 164;4; -0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 165; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Head} + AnimationKey { //Position + 2; + 165; + 0;3; -0.000000, 4.052525, 3.788038;;, + 1;3; -0.000000, 4.052525, 3.788038;;, + 2;3; -0.000000, 4.052525, 3.788038;;, + 3;3; -0.000000, 4.052525, 3.788038;;, + 4;3; -0.000000, 4.052525, 3.788038;;, + 5;3; -0.000000, 4.052525, 3.788038;;, + 6;3; -0.000000, 4.052525, 3.788038;;, + 7;3; -0.000000, 4.052525, 3.788038;;, + 8;3; -0.000000, 4.052525, 3.788038;;, + 9;3; -0.000000, 4.052525, 3.788038;;, + 10;3; -0.000000, 4.052525, 3.788038;;, + 11;3; -0.000000, 4.052525, 3.788038;;, + 12;3; -0.000000, 4.052525, 3.788038;;, + 13;3; -0.000000, 4.052525, 3.788038;;, + 14;3; -0.000000, 4.052525, 3.788038;;, + 15;3; -0.000000, 4.052525, 3.788038;;, + 16;3; -0.000000, 4.052525, 3.788038;;, + 17;3; -0.000000, 4.052525, 3.788038;;, + 18;3; -0.000000, 4.052525, 3.788038;;, + 19;3; -0.000000, 4.052525, 3.788038;;, + 20;3; -0.000000, 4.052525, 3.788038;;, + 21;3; -0.000000, 4.052525, 3.788038;;, + 22;3; -0.000000, 4.052525, 3.788038;;, + 23;3; -0.000000, 4.052525, 3.788038;;, + 24;3; -0.000000, 4.052525, 3.788038;;, + 25;3; -0.000000, 4.052525, 3.788038;;, + 26;3; -0.000000, 4.052525, 3.788038;;, + 27;3; -0.000000, 4.052525, 3.788038;;, + 28;3; -0.000000, 4.052525, 3.788038;;, + 29;3; -0.000000, 4.052525, 3.788038;;, + 30;3; -0.000000, 4.052525, 3.788038;;, + 31;3; -0.000000, 4.052525, 3.788038;;, + 32;3; -0.000000, 4.052525, 3.788038;;, + 33;3; -0.000000, 4.052525, 3.788038;;, + 34;3; -0.000000, 4.052525, 3.788038;;, + 35;3; -0.000000, 4.052525, 3.788038;;, + 36;3; -0.000000, 4.052525, 3.788038;;, + 37;3; -0.000000, 4.052525, 3.788038;;, + 38;3; -0.000000, 4.052525, 3.788038;;, + 39;3; -0.000000, 4.052525, 3.788038;;, + 40;3; -0.000000, 4.052525, 3.788038;;, + 41;3; -0.000000, 4.052525, 3.788038;;, + 42;3; -0.000000, 4.052525, 3.788038;;, + 43;3; -0.000000, 4.052525, 3.788038;;, + 44;3; -0.000000, 4.052525, 3.788038;;, + 45;3; -0.000000, 4.052525, 3.788038;;, + 46;3; -0.000000, 4.052525, 3.788038;;, + 47;3; -0.000000, 4.052525, 3.788038;;, + 48;3; -0.000000, 4.052525, 3.788038;;, + 49;3; -0.000000, 4.052525, 3.788038;;, + 50;3; -0.000000, 4.052525, 3.788038;;, + 51;3; -0.000000, 4.052525, 3.788038;;, + 52;3; -0.000000, 4.052525, 3.788038;;, + 53;3; -0.000000, 4.052525, 3.788038;;, + 54;3; -0.000000, 4.052525, 3.788038;;, + 55;3; -0.000000, 4.052525, 3.788038;;, + 56;3; -0.000000, 4.052525, 3.788038;;, + 57;3; -0.000000, 4.052525, 3.788038;;, + 58;3; -0.000000, 4.052525, 3.788038;;, + 59;3; -0.000000, 4.052525, 3.788038;;, + 60;3; -0.000000, 4.052525, 3.788038;;, + 61;3; -0.000000, 4.052525, 3.788038;;, + 62;3; -0.000000, 4.052525, 3.788038;;, + 63;3; -0.000000, 4.052525, 3.788038;;, + 64;3; -0.000000, 4.052525, 3.788038;;, + 65;3; -0.000000, 4.052525, 3.788038;;, + 66;3; -0.000000, 4.052525, 3.788038;;, + 67;3; -0.000000, 4.052525, 3.788038;;, + 68;3; -0.000000, 4.052525, 3.788038;;, + 69;3; -0.000000, 4.052525, 3.788038;;, + 70;3; -0.000000, 4.052525, 3.788038;;, + 71;3; -0.000000, 4.052525, 3.788038;;, + 72;3; -0.000000, 4.052525, 3.788038;;, + 73;3; -0.000000, 4.052525, 3.788038;;, + 74;3; -0.000000, 4.052525, 3.788038;;, + 75;3; -0.000000, 4.052525, 3.788038;;, + 76;3; -0.000000, 4.052525, 3.788038;;, + 77;3; -0.000000, 4.052525, 3.788038;;, + 78;3; -0.000000, 4.052525, 3.788038;;, + 79;3; -0.000000, 4.052525, 3.788038;;, + 80;3; -0.000000, 4.052525, 3.788038;;, + 81;3; -0.000000, 4.052525, 3.788038;;, + 82;3; -0.000000, 4.052525, 3.788038;;, + 83;3; -0.000000, 4.052525, 3.788038;;, + 84;3; -0.000000, 4.052525, 3.788038;;, + 85;3; -0.000000, 4.052525, 3.788038;;, + 86;3; -0.000000, 4.052525, 3.788038;;, + 87;3; -0.000000, 4.052525, 3.788038;;, + 88;3; -0.000000, 4.052525, 3.788038;;, + 89;3; -0.000000, 4.052525, 3.788038;;, + 90;3; -0.000000, 4.052525, 3.788038;;, + 91;3; -0.000000, 4.052525, 3.788038;;, + 92;3; -0.000000, 4.052525, 3.788038;;, + 93;3; -0.000000, 4.052525, 3.788038;;, + 94;3; -0.000000, 4.052525, 3.788038;;, + 95;3; -0.000000, 4.052525, 3.788038;;, + 96;3; -0.000000, 4.052525, 3.788038;;, + 97;3; -0.000000, 4.052525, 3.788038;;, + 98;3; -0.000000, 4.052525, 3.788038;;, + 99;3; -0.000000, 4.052525, 3.788038;;, + 100;3; -0.000000, 4.052525, 3.788038;;, + 101;3; -0.000000, 4.052525, 3.788038;;, + 102;3; -0.000000, 4.052525, 3.788038;;, + 103;3; -0.000000, 4.052525, 3.788038;;, + 104;3; -0.000000, 4.052525, 3.788038;;, + 105;3; -0.000000, 4.052525, 3.788038;;, + 106;3; -0.000000, 4.052525, 3.788038;;, + 107;3; -0.000000, 4.052525, 3.788038;;, + 108;3; -0.000000, 4.052525, 3.788038;;, + 109;3; -0.000000, 4.052525, 3.788038;;, + 110;3; -0.000000, 4.052525, 3.788038;;, + 111;3; -0.000000, 4.052525, 3.788038;;, + 112;3; -0.000000, 4.052525, 3.788038;;, + 113;3; -0.000000, 4.052525, 3.788038;;, + 114;3; -0.000000, 4.052525, 3.788038;;, + 115;3; -0.000000, 4.052525, 3.788038;;, + 116;3; -0.000000, 4.052525, 3.788038;;, + 117;3; -0.000000, 4.052525, 3.788038;;, + 118;3; -0.000000, 4.052525, 3.788038;;, + 119;3; -0.000000, 4.052525, 3.788038;;, + 120;3; -0.000000, 4.052525, 3.788038;;, + 121;3; -0.000000, 4.052525, 3.788038;;, + 122;3; -0.000000, 4.052525, 3.788038;;, + 123;3; -0.000000, 4.052525, 3.788038;;, + 124;3; -0.000000, 4.052525, 3.788038;;, + 125;3; -0.000000, 4.052525, 3.788038;;, + 126;3; -0.000000, 4.052525, 3.788038;;, + 127;3; -0.000000, 4.052525, 3.788038;;, + 128;3; -0.000000, 4.052525, 3.788038;;, + 129;3; -0.000000, 4.052525, 3.788038;;, + 130;3; -0.000000, 4.052525, 3.788038;;, + 131;3; -0.000000, 4.052525, 3.788038;;, + 132;3; -0.000000, 4.052525, 3.788038;;, + 133;3; -0.000000, 4.052525, 3.788038;;, + 134;3; -0.000000, 4.052525, 3.788038;;, + 135;3; -0.000000, 4.052525, 3.788038;;, + 136;3; -0.000000, 4.052525, 3.788038;;, + 137;3; -0.000000, 4.052525, 3.788038;;, + 138;3; -0.000000, 4.052525, 3.788038;;, + 139;3; -0.000000, 4.052525, 3.788038;;, + 140;3; -0.000000, 4.052525, 3.788038;;, + 141;3; -0.000000, 4.052525, 3.788038;;, + 142;3; -0.000000, 4.052525, 3.788038;;, + 143;3; -0.000000, 4.052525, 3.788038;;, + 144;3; -0.000000, 4.052525, 3.788038;;, + 145;3; -0.000000, 4.052525, 3.788038;;, + 146;3; -0.000000, 4.052525, 3.788038;;, + 147;3; -0.000000, 4.052525, 3.788038;;, + 148;3; -0.000000, 4.052525, 3.788038;;, + 149;3; -0.000000, 4.052525, 3.788038;;, + 150;3; -0.000000, 4.052525, 3.788038;;, + 151;3; -0.000000, 4.052525, 3.788038;;, + 152;3; -0.000000, 4.052525, 3.788038;;, + 153;3; -0.000000, 4.052525, 3.788038;;, + 154;3; -0.000000, 4.052525, 3.788038;;, + 155;3; -0.000000, 4.052525, 3.788038;;, + 156;3; -0.000000, 4.052525, 3.788038;;, + 157;3; -0.000000, 4.052525, 3.788038;;, + 158;3; -0.000000, 4.052525, 3.788038;;, + 159;3; -0.000000, 4.052525, 3.788038;;, + 160;3; -0.000000, 4.052525, 3.788038;;, + 161;3; -0.000000, 4.052525, 3.788038;;, + 162;3; -0.000000, 4.052525, 3.788038;;, + 163;3; -0.000000, 4.052525, 3.788038;;, + 164;3; -0.000000, 4.052525, 3.788038;;; + } + AnimationKey { //Rotation + 0; + 165; + 0;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 1;4; 0.000000, 0.000000, 0.706989, 0.707223;;, + 2;4; 0.000000, 0.000000, 0.706631, 0.707576;;, + 3;4; 0.000000, 0.000000, 0.706034, 0.708164;;, + 4;4; 0.000000, 0.000000, 0.705202, 0.708983;;, + 5;4; 0.000000, 0.000000, 0.704147, 0.710022;;, + 6;4; 0.000000, 0.000000, 0.702890, 0.711259;;, + 7;4; 0.000000, 0.000000, 0.701461, 0.712663;;, + 8;4; 0.000000, 0.000000, 0.699901, 0.714196;;, + 9;4; 0.000000, 0.000000, 0.698257, 0.715808;;, + 10;4; 0.000000, 0.000000, 0.696584, 0.717447;;, + 11;4; 0.000000, 0.000000, 0.694937, 0.719057;;, + 12;4; 0.000000, 0.000000, 0.693372, 0.720585;;, + 13;4; 0.000000, 0.000000, 0.691936, 0.721982;;, + 14;4; 0.000000, 0.000000, 0.690669, 0.723209;;, + 15;4; 0.000000, 0.000000, 0.689603, 0.724237;;, + 16;4; 0.000000, 0.000000, 0.688758, 0.725043;;, + 17;4; 0.000000, 0.000000, 0.688146, 0.725617;;, + 18;4; 0.000000, 0.000000, 0.687773, 0.725954;;, + 19;4; 0.000000, 0.000000, 0.687638, 0.726054;;, + 20;4; 0.000000, 0.000000, 0.687896, 0.725759;;, + 21;4; 0.000000, 0.000000, 0.688709, 0.724905;;, + 22;4; 0.000000, 0.000000, 0.690081, 0.723488;;, + 23;4; 0.000000, 0.000000, 0.692002, 0.721519;;, + 24;4; 0.000000, 0.000000, 0.694448, 0.719020;;, + 25;4; 0.000000, 0.000000, 0.697377, 0.716035;;, + 26;4; 0.000000, 0.000000, 0.700729, 0.712626;;, + 27;4; 0.000000, 0.000000, 0.704421, 0.708875;;, + 28;4; 0.000000, 0.000000, 0.708352, 0.704885;;, + 29;4; 0.000000, 0.000000, 0.712408, 0.700772;;, + 30;4; 0.000000, 0.000000, 0.716464, 0.696660;;, + 31;4; 0.000000, 0.000000, 0.720399, 0.692673;;, + 32;4; 0.000000, 0.000000, 0.724097, 0.688928;;, + 33;4; 0.000000, 0.000000, 0.727457, 0.685527;;, + 34;4; 0.000000, 0.000000, 0.730396, 0.682552;;, + 35;4; 0.000000, 0.000000, 0.732854, 0.680065;;, + 36;4; 0.000000, 0.000000, 0.734788, 0.678108;;, + 37;4; 0.000000, 0.000000, 0.736174, 0.676706;;, + 38;4; 0.000000, 0.000000, 0.737003, 0.675868;;, + 39;4; 0.000000, 0.000000, 0.737277, 0.675590;;, + 40;4; 0.000000, 0.000000, 0.737111, 0.675764;;, + 41;4; 0.000000, 0.000000, 0.736609, 0.676289;;, + 42;4; 0.000000, 0.000000, 0.735768, 0.677167;;, + 43;4; 0.000000, 0.000000, 0.734596, 0.678392;;, + 44;4; 0.000000, 0.000000, 0.733105, 0.679949;;, + 45;4; 0.000000, 0.000000, 0.731323, 0.681811;;, + 46;4; 0.000000, 0.000000, 0.729285, 0.683939;;, + 47;4; 0.000000, 0.000000, 0.727042, 0.686283;;, + 48;4; 0.000000, 0.000000, 0.724654, 0.688777;;, + 49;4; 0.000000, 0.000000, 0.722192, 0.691349;;, + 50;4; 0.000000, 0.000000, 0.719730, 0.693920;;, + 51;4; 0.000000, 0.000000, 0.717343, 0.696414;;, + 52;4; 0.000000, 0.000000, 0.715099, 0.698758;;, + 53;4; 0.000000, 0.000000, 0.713062, 0.700886;;, + 54;4; 0.000000, 0.000000, 0.711279, 0.702749;;, + 55;4; 0.000000, 0.000000, 0.709789, 0.704305;;, + 56;4; 0.000000, 0.000000, 0.708616, 0.705530;;, + 57;4; 0.000000, 0.000000, 0.707776, 0.706408;;, + 58;4; 0.000000, 0.000000, 0.707273, 0.706933;;, + 59;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 60;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 61;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 62;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 63;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 64;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 65;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 66;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 67;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 68;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 69;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 70;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 71;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 72;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 73;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 74;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 75;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 76;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 77;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 78;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 79;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 80;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 81;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 82;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 83;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 84;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 85;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 86;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 87;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 88;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 89;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 90;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 91;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 92;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 93;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 94;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 95;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 96;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 97;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 98;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 99;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 100;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 101;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 102;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 103;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 104;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 105;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 106;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 107;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 108;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 109;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 110;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 111;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 112;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 113;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 114;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 115;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 116;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 117;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 118;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 119;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 120;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 121;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 122;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 123;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 124;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 125;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 126;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 127;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 128;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 129;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 130;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 131;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 132;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 133;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 134;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 135;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 136;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 137;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 138;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 139;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 140;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 141;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 142;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 143;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 144;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 145;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 146;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 147;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 148;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 149;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 150;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 151;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 152;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 153;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 154;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 155;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 156;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 157;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 158;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 159;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 160;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 161;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 162;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 163;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 164;4; 0.000000, 0.000000, 0.707107, 0.707107;;; + } + AnimationKey { //Scale + 1; + 165; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {sheep} + AnimationKey { //Position + 2; + 165; + 0;3; 0.000000, 0.000000,-0.000000;;, + 1;3; 0.000000, 0.000000,-0.000000;;, + 2;3; 0.000000, 0.000000,-0.000000;;, + 3;3; 0.000000, 0.000000,-0.000000;;, + 4;3; 0.000000, 0.000000,-0.000000;;, + 5;3; 0.000000, 0.000000,-0.000000;;, + 6;3; 0.000000, 0.000000,-0.000000;;, + 7;3; 0.000000, 0.000000,-0.000000;;, + 8;3; 0.000000, 0.000000,-0.000000;;, + 9;3; 0.000000, 0.000000,-0.000000;;, + 10;3; 0.000000, 0.000000,-0.000000;;, + 11;3; 0.000000, 0.000000,-0.000000;;, + 12;3; 0.000000, 0.000000,-0.000000;;, + 13;3; 0.000000, 0.000000,-0.000000;;, + 14;3; 0.000000, 0.000000,-0.000000;;, + 15;3; 0.000000, 0.000000,-0.000000;;, + 16;3; 0.000000, 0.000000,-0.000000;;, + 17;3; 0.000000, 0.000000,-0.000000;;, + 18;3; 0.000000, 0.000000,-0.000000;;, + 19;3; 0.000000, 0.000000,-0.000000;;, + 20;3; 0.000000, 0.000000,-0.000000;;, + 21;3; 0.000000, 0.000000,-0.000000;;, + 22;3; 0.000000, 0.000000,-0.000000;;, + 23;3; 0.000000, 0.000000,-0.000000;;, + 24;3; 0.000000, 0.000000,-0.000000;;, + 25;3; 0.000000, 0.000000,-0.000000;;, + 26;3; 0.000000, 0.000000,-0.000000;;, + 27;3; 0.000000, 0.000000,-0.000000;;, + 28;3; 0.000000, 0.000000,-0.000000;;, + 29;3; 0.000000, 0.000000,-0.000000;;, + 30;3; 0.000000, 0.000000,-0.000000;;, + 31;3; 0.000000, 0.000000,-0.000000;;, + 32;3; 0.000000, 0.000000,-0.000000;;, + 33;3; 0.000000, 0.000000,-0.000000;;, + 34;3; 0.000000, 0.000000,-0.000000;;, + 35;3; 0.000000, 0.000000,-0.000000;;, + 36;3; 0.000000, 0.000000,-0.000000;;, + 37;3; 0.000000, 0.000000,-0.000000;;, + 38;3; 0.000000, 0.000000,-0.000000;;, + 39;3; 0.000000, 0.000000,-0.000000;;, + 40;3; 0.000000, 0.000000,-0.000000;;, + 41;3; 0.000000, 0.000000,-0.000000;;, + 42;3; 0.000000, 0.000000,-0.000000;;, + 43;3; 0.000000, 0.000000,-0.000000;;, + 44;3; 0.000000, 0.000000,-0.000000;;, + 45;3; 0.000000, 0.000000,-0.000000;;, + 46;3; 0.000000, 0.000000,-0.000000;;, + 47;3; 0.000000, 0.000000,-0.000000;;, + 48;3; 0.000000, 0.000000,-0.000000;;, + 49;3; 0.000000, 0.000000,-0.000000;;, + 50;3; 0.000000, 0.000000,-0.000000;;, + 51;3; 0.000000, 0.000000,-0.000000;;, + 52;3; 0.000000, 0.000000,-0.000000;;, + 53;3; 0.000000, 0.000000,-0.000000;;, + 54;3; 0.000000, 0.000000,-0.000000;;, + 55;3; 0.000000, 0.000000,-0.000000;;, + 56;3; 0.000000, 0.000000,-0.000000;;, + 57;3; 0.000000, 0.000000,-0.000000;;, + 58;3; 0.000000, 0.000000,-0.000000;;, + 59;3; 0.000000, 0.000000,-0.000000;;, + 60;3; 0.000000, 0.000000,-0.000000;;, + 61;3; 0.000000, 0.000000,-0.000000;;, + 62;3; 0.000000, 0.000000,-0.000000;;, + 63;3; 0.000000, 0.000000,-0.000000;;, + 64;3; 0.000000, 0.000000,-0.000000;;, + 65;3; 0.000000, 0.000000,-0.000000;;, + 66;3; 0.000000, 0.000000,-0.000000;;, + 67;3; 0.000000, 0.000000,-0.000000;;, + 68;3; 0.000000, 0.000000,-0.000000;;, + 69;3; 0.000000, 0.000000,-0.000000;;, + 70;3; 0.000000, 0.000000,-0.000000;;, + 71;3; 0.000000, 0.000000,-0.000000;;, + 72;3; 0.000000, 0.000000,-0.000000;;, + 73;3; 0.000000, 0.000000,-0.000000;;, + 74;3; 0.000000, 0.000000,-0.000000;;, + 75;3; 0.000000, 0.000000,-0.000000;;, + 76;3; 0.000000, 0.000000,-0.000000;;, + 77;3; 0.000000, 0.000000,-0.000000;;, + 78;3; 0.000000, 0.000000,-0.000000;;, + 79;3; 0.000000, 0.000000,-0.000000;;, + 80;3; 0.000000, 0.000000,-0.000000;;, + 81;3; 0.000000, 0.000000,-0.000000;;, + 82;3; 0.000000, 0.000000,-0.000000;;, + 83;3; 0.000000, 0.000000,-0.000000;;, + 84;3; 0.000000, 0.000000,-0.000000;;, + 85;3; 0.000000, 0.000000,-0.000000;;, + 86;3; 0.000000, 0.000000,-0.000000;;, + 87;3; 0.000000, 0.000000,-0.000000;;, + 88;3; 0.000000, 0.000000,-0.000000;;, + 89;3; 0.000000, 0.000000,-0.000000;;, + 90;3; 0.000000, 0.000000,-0.000000;;, + 91;3; 0.000000, 0.000000,-0.000000;;, + 92;3; 0.000000, 0.000000,-0.000000;;, + 93;3; 0.000000, 0.000000,-0.000000;;, + 94;3; 0.000000, 0.000000,-0.000000;;, + 95;3; 0.000000, 0.000000,-0.000000;;, + 96;3; 0.000000, 0.000000,-0.000000;;, + 97;3; 0.000000, 0.000000,-0.000000;;, + 98;3; 0.000000, 0.000000,-0.000000;;, + 99;3; 0.000000, 0.000000,-0.000000;;, + 100;3; 0.000000, 0.000000,-0.000000;;, + 101;3; 0.000000, 0.000000,-0.000000;;, + 102;3; 0.000000, 0.000000,-0.000000;;, + 103;3; 0.000000, 0.000000,-0.000000;;, + 104;3; 0.000000, 0.000000,-0.000000;;, + 105;3; 0.000000, 0.000000,-0.000000;;, + 106;3; 0.000000, 0.000000,-0.000000;;, + 107;3; 0.000000, 0.000000,-0.000000;;, + 108;3; 0.000000, 0.000000,-0.000000;;, + 109;3; 0.000000, 0.000000,-0.000000;;, + 110;3; 0.000000, 0.000000,-0.000000;;, + 111;3; 0.000000, 0.000000,-0.000000;;, + 112;3; 0.000000, 0.000000,-0.000000;;, + 113;3; 0.000000, 0.000000,-0.000000;;, + 114;3; 0.000000, 0.000000,-0.000000;;, + 115;3; 0.000000, 0.000000,-0.000000;;, + 116;3; 0.000000, 0.000000,-0.000000;;, + 117;3; 0.000000, 0.000000,-0.000000;;, + 118;3; 0.000000, 0.000000,-0.000000;;, + 119;3; 0.000000, 0.000000,-0.000000;;, + 120;3; 0.000000, 0.000000,-0.000000;;, + 121;3; 0.000000, 0.000000,-0.000000;;, + 122;3; 0.000000, 0.000000,-0.000000;;, + 123;3; 0.000000, 0.000000,-0.000000;;, + 124;3; 0.000000, 0.000000,-0.000000;;, + 125;3; 0.000000, 0.000000,-0.000000;;, + 126;3; 0.000000, 0.000000,-0.000000;;, + 127;3; 0.000000, 0.000000,-0.000000;;, + 128;3; 0.000000, 0.000000,-0.000000;;, + 129;3; 0.000000, 0.000000,-0.000000;;, + 130;3; 0.000000, 0.000000,-0.000000;;, + 131;3; 0.000000, 0.000000,-0.000000;;, + 132;3; 0.000000, 0.000000,-0.000000;;, + 133;3; 0.000000, 0.000000,-0.000000;;, + 134;3; 0.000000, 0.000000,-0.000000;;, + 135;3; 0.000000, 0.000000,-0.000000;;, + 136;3; 0.000000, 0.000000,-0.000000;;, + 137;3; 0.000000, 0.000000,-0.000000;;, + 138;3; 0.000000, 0.000000,-0.000000;;, + 139;3; 0.000000, 0.000000,-0.000000;;, + 140;3; 0.000000, 0.000000,-0.000000;;, + 141;3; 0.000000, 0.000000,-0.000000;;, + 142;3; 0.000000, 0.000000,-0.000000;;, + 143;3; 0.000000, 0.000000,-0.000000;;, + 144;3; 0.000000, 0.000000,-0.000000;;, + 145;3; 0.000000, 0.000000,-0.000000;;, + 146;3; 0.000000, 0.000000,-0.000000;;, + 147;3; 0.000000, 0.000000,-0.000000;;, + 148;3; 0.000000, 0.000000,-0.000000;;, + 149;3; 0.000000, 0.000000,-0.000000;;, + 150;3; 0.000000, 0.000000,-0.000000;;, + 151;3; 0.000000, 0.000000,-0.000000;;, + 152;3; 0.000000, 0.000000,-0.000000;;, + 153;3; 0.000000, 0.000000,-0.000000;;, + 154;3; 0.000000, 0.000000,-0.000000;;, + 155;3; 0.000000, 0.000000,-0.000000;;, + 156;3; 0.000000, 0.000000,-0.000000;;, + 157;3; 0.000000, 0.000000,-0.000000;;, + 158;3; 0.000000, 0.000000,-0.000000;;, + 159;3; 0.000000, 0.000000,-0.000000;;, + 160;3; 0.000000, 0.000000,-0.000000;;, + 161;3; 0.000000, 0.000000,-0.000000;;, + 162;3; 0.000000, 0.000000,-0.000000;;, + 163;3; 0.000000, 0.000000,-0.000000;;, + 164;3; 0.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Rotation + 0; + 165; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 165; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs/models/mobs_sheep_shaved.png b/mods/mobs/models/mobs_sheep_shaved.png new file mode 100644 index 0000000..e1f8568 Binary files /dev/null and b/mods/mobs/models/mobs_sheep_shaved.png differ diff --git a/mods/mobs/models/mobs_sheep_shaved.x b/mods/mobs/models/mobs_sheep_shaved.x new file mode 100644 index 0000000..fa7e17c --- /dev/null +++ b/mods/mobs/models/mobs_sheep_shaved.x @@ -0,0 +1,4592 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.041567, 0.000010, 6.045322, 1.000000;; + } + Frame Armature_Root { + FrameTransformMatrix { + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.009913, 0.034322, 0.105027, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 1.460671,-0.139217, 4.073730, 1.000000;; + } + } //End of Armature_Bone_001 + Frame Armature_Bone_002 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 1.460671,-0.139216,-3.633328, 1.000000;; + } + } //End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.438650,-0.139217, 4.073730, 1.000000;; + } + } //End of Armature_Bone_003 + Frame Armature_RR_leg { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.438651,-0.139216,-3.633328, 1.000000;; + } + } //End of Armature_RR_leg + Frame Armature_Head { + FrameTransformMatrix { + -1.000000,-0.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + -0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 4.052526, 3.788038, 1.000000;; + } + } //End of Armature_Head + } //End of Armature_Root + Frame sheep_shaved { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { //Cube_001 Mesh + 320; + -1.589511; 7.293469; 5.911728;, + 1.658676; 7.293468; 5.911728;, + 1.658676; 3.771371; 5.911728;, + -1.589511; 3.771372; 5.911728;, + -1.589511; 3.771372; 5.911728;, + 1.658676; 3.771371; 5.911728;, + 1.658675; 3.771371; 2.663541;, + -1.589511; 3.771370; 2.663541;, + -0.960432; 7.293468; 4.727453;, + 1.029595; 7.293468; 4.727453;, + 1.658676; 7.293468; 5.911728;, + -1.589511; 7.293469; 5.911728;, + -1.589512; 7.293468; 2.663541;, + -1.589511; 7.293469; 5.911728;, + -1.589511; 3.771372; 5.911728;, + -1.589511; 3.771370; 2.663541;, + 1.658675; 7.293468; 2.663541;, + -1.589512; 7.293468; 2.663541;, + -1.589511; 3.771370; 2.663541;, + 1.658675; 3.771371; 2.663541;, + 1.658676; 7.293468; 5.911728;, + 1.658675; 7.293468; 2.663541;, + 1.658675; 3.771371; 2.663541;, + 1.658676; 3.771371; 5.911728;, + -0.960432; 7.669465; 4.727453;, + 1.029595; 7.669464; 4.727453;, + 1.029595; 7.293468; 4.727453;, + -0.960432; 7.293468; 4.727453;, + 1.029595; 7.293468; 4.727453;, + 1.029595; 7.293468; 2.806681;, + 1.658675; 7.293468; 2.663541;, + 1.658676; 7.293468; 5.911728;, + -0.960432; 7.293468; 2.806681;, + -0.960432; 7.293468; 4.727453;, + -1.589511; 7.293469; 5.911728;, + -1.589512; 7.293468; 2.663541;, + 1.029595; 7.293468; 2.806681;, + -0.960432; 7.293468; 2.806681;, + -1.589512; 7.293468; 2.663541;, + 1.658675; 7.293468; 2.663541;, + 1.029595; 7.669464; 2.806681;, + 1.029595; 7.669464; 4.727453;, + -0.960432; 7.669465; 4.727453;, + -0.960432; 7.669463; 2.806681;, + 1.029595; 7.669464; 4.727453;, + 1.029595; 7.669464; 2.806681;, + 1.029595; 7.293468; 2.806681;, + 1.029595; 7.293468; 4.727453;, + -0.960432; 7.669463; 2.806681;, + -0.960432; 7.669465; 4.727453;, + -0.960432; 7.293468; 4.727453;, + -0.960432; 7.293468; 2.806681;, + 1.029595; 7.669464; 2.806681;, + -0.960432; 7.669463; 2.806681;, + -0.960432; 7.293468; 2.806681;, + 1.029595; 7.293468; 2.806681;, + -0.626982; 3.165303;-5.961625;, + -2.262721; 3.165303;-5.961625;, + -2.262721; 3.165303;-5.096455;, + -0.626982; 3.165303;-5.096455;, + -2.262721; 5.066779;-5.961625;, + -0.626983; 5.066779;-5.961625;, + -0.626983; 5.066779;-5.096455;, + -2.262721; 5.066779;-5.096455;, + -0.626983; 5.066779;-5.961625;, + -0.626982; 3.165303;-5.961625;, + -0.626982; 3.165303;-5.096455;, + -0.626983; 5.066779;-5.096455;, + -0.626982; 3.165303;-5.961625;, + -0.626983; 5.066779;-5.961625;, + -2.262721; 5.066779;-5.961625;, + -2.262721; 3.165303;-5.961625;, + -2.262721; 5.066779;-5.096455;, + -0.626983; 5.066779;-5.096455;, + -0.823518; 4.822422;-5.096455;, + -2.066185; 4.822422;-5.096455;, + -0.626982; 3.165303;-5.096455;, + -2.262721; 3.165303;-5.096455;, + -2.066185; 3.277381;-5.096455;, + -0.823517; 3.277381;-5.096455;, + -2.262721; 3.165303;-5.096455;, + -2.262721; 5.066779;-5.096455;, + -2.066185; 4.822422;-5.096455;, + -2.066185; 3.277381;-5.096455;, + -2.262721; 3.165303;-5.961625;, + -2.262721; 5.066779;-5.961625;, + -2.262721; 5.066779;-5.096455;, + -2.262721; 3.165303;-5.096455;, + -2.066185; 4.822422;-5.096455;, + -0.823518; 4.822422;-5.096455;, + -0.823517; 4.822423;-0.488248;, + -2.066185; 4.822422;-0.488248;, + -0.823518; 4.822422;-5.096455;, + -0.823517; 3.277381;-5.096455;, + -0.823517; 3.277381;-0.488248;, + -0.823517; 4.822423;-0.488248;, + -0.823517; 3.277381;-5.096455;, + -2.066185; 3.277381;-5.096455;, + -2.066185; 3.277381;-0.488248;, + -0.823517; 3.277381;-0.488248;, + -0.626983; 5.066779;-5.096455;, + -0.626982; 3.165303;-5.096455;, + -0.823517; 3.277381;-5.096455;, + -0.823518; 4.822422;-5.096455;, + -2.066185; 3.277381;-5.096455;, + -2.066185; 4.822422;-5.096455;, + -2.066185; 4.822422;-0.488248;, + -2.066185; 3.277381;-0.488248;, + 2.268868; 3.165304;-5.961625;, + 0.633129; 3.165304;-5.961625;, + 0.633129; 3.165304;-5.096455;, + 2.268868; 3.165304;-5.096455;, + 0.633129; 5.066779;-5.961625;, + 2.268867; 5.066780;-5.961625;, + 2.268867; 5.066780;-5.096455;, + 0.633129; 5.066779;-5.096455;, + 2.268867; 5.066780;-5.961625;, + 2.268868; 3.165304;-5.961625;, + 2.268868; 3.165304;-5.096455;, + 2.268867; 5.066780;-5.096455;, + 2.268868; 3.165304;-5.961625;, + 2.268867; 5.066780;-5.961625;, + 0.633129; 5.066779;-5.961625;, + 0.633129; 3.165304;-5.961625;, + 0.633129; 5.066779;-5.096455;, + 2.268867; 5.066780;-5.096455;, + 2.072332; 4.822423;-5.096455;, + 0.829664; 4.822423;-5.096455;, + 2.268868; 3.165304;-5.096455;, + 0.633129; 3.165304;-5.096455;, + 0.829664; 3.277381;-5.096455;, + 2.072332; 3.277381;-5.096455;, + 0.633129; 3.165304;-5.096455;, + 0.633129; 5.066779;-5.096455;, + 0.829664; 4.822423;-5.096455;, + 0.829664; 3.277381;-5.096455;, + 0.633129; 3.165304;-5.961625;, + 0.633129; 5.066779;-5.961625;, + 0.633129; 5.066779;-5.096455;, + 0.633129; 3.165304;-5.096455;, + 0.829664; 4.822423;-5.096455;, + 2.072332; 4.822423;-5.096455;, + 2.072332; 4.822423;-0.492027;, + 0.829664; 4.822423;-0.492027;, + 2.072332; 4.822423;-5.096455;, + 2.072332; 3.277381;-5.096455;, + 2.072333; 3.277382;-0.492027;, + 2.072332; 4.822423;-0.492027;, + 2.072332; 3.277381;-5.096455;, + 0.829664; 3.277381;-5.096455;, + 0.829664; 3.277382;-0.492027;, + 2.072333; 3.277382;-0.492027;, + 2.268867; 5.066780;-5.096455;, + 2.268868; 3.165304;-5.096455;, + 2.072332; 3.277381;-5.096455;, + 2.072332; 4.822423;-5.096455;, + 0.829664; 3.277381;-5.096455;, + 0.829664; 4.822423;-5.096455;, + 0.829664; 4.822423;-0.492027;, + 0.829664; 3.277382;-0.492027;, + -0.626981;-4.511055;-5.961625;, + -2.262720;-4.511055;-5.961625;, + -2.262720;-4.511055;-5.096455;, + -0.626981;-4.511055;-5.096455;, + -2.262720;-2.609579;-5.961625;, + -0.626981;-2.609579;-5.961625;, + -0.626981;-2.609579;-5.096455;, + -2.262720;-2.609579;-5.096455;, + -0.626981;-2.609579;-5.961625;, + -0.626981;-4.511055;-5.961625;, + -0.626981;-4.511055;-5.096455;, + -0.626981;-2.609579;-5.096455;, + -0.626981;-4.511055;-5.961625;, + -0.626981;-2.609579;-5.961625;, + -2.262720;-2.609579;-5.961625;, + -2.262720;-4.511055;-5.961625;, + -2.262720;-2.609579;-5.096455;, + -0.626981;-2.609579;-5.096455;, + -0.823516;-2.853936;-5.096455;, + -2.066185;-2.853936;-5.096455;, + -0.626981;-4.511055;-5.096455;, + -2.262720;-4.511055;-5.096455;, + -2.066185;-4.398977;-5.096455;, + -0.823516;-4.398977;-5.096455;, + -2.262720;-4.511055;-5.096455;, + -2.262720;-2.609579;-5.096455;, + -2.066185;-2.853936;-5.096455;, + -2.066185;-4.398977;-5.096455;, + -2.262720;-4.511055;-5.961625;, + -2.262720;-2.609579;-5.961625;, + -2.262720;-2.609579;-5.096455;, + -2.262720;-4.511055;-5.096455;, + -2.066185;-2.853936;-5.096455;, + -0.823516;-2.853936;-5.096455;, + -0.823516;-2.853936;-0.317499;, + -2.066184;-2.853936;-0.317498;, + -0.823516;-2.853936;-5.096455;, + -0.823516;-4.398977;-5.096455;, + -0.823516;-4.398976;-0.317498;, + -0.823516;-2.853936;-0.317499;, + -0.823516;-4.398977;-5.096455;, + -2.066185;-4.398977;-5.096455;, + -2.066185;-4.398977;-0.317498;, + -0.823516;-4.398976;-0.317498;, + -0.626981;-2.609579;-5.096455;, + -0.626981;-4.511055;-5.096455;, + -0.823516;-4.398977;-5.096455;, + -0.823516;-2.853936;-5.096455;, + -2.066185;-4.398977;-5.096455;, + -2.066185;-2.853936;-5.096455;, + -2.066184;-2.853936;-0.317498;, + -2.066185;-4.398977;-0.317498;, + 2.268869;-4.511054;-5.961625;, + 0.633130;-4.511054;-5.961625;, + 0.633130;-4.511054;-5.096455;, + 2.268869;-4.511054;-5.096455;, + 0.633130;-2.609579;-5.961625;, + 2.268868;-2.609579;-5.961625;, + 2.268868;-2.609579;-5.096455;, + 0.633130;-2.609579;-5.096455;, + 2.268868;-2.609579;-5.961625;, + 2.268869;-4.511054;-5.961625;, + 2.268869;-4.511054;-5.096455;, + 2.268868;-2.609579;-5.096455;, + 2.268869;-4.511054;-5.961625;, + 2.268868;-2.609579;-5.961625;, + 0.633130;-2.609579;-5.961625;, + 0.633130;-4.511054;-5.961625;, + 0.633130;-2.609579;-5.096455;, + 2.268868;-2.609579;-5.096455;, + 2.072333;-2.853936;-5.096455;, + 0.829665;-2.853936;-5.096455;, + 2.268869;-4.511054;-5.096455;, + 0.633130;-4.511054;-5.096455;, + 0.829665;-4.398976;-5.096455;, + 2.072333;-4.398976;-5.096455;, + 0.633130;-4.511054;-5.096455;, + 0.633130;-2.609579;-5.096455;, + 0.829665;-2.853936;-5.096455;, + 0.829665;-4.398976;-5.096455;, + 0.633130;-4.511054;-5.961625;, + 0.633130;-2.609579;-5.961625;, + 0.633130;-2.609579;-5.096455;, + 0.633130;-4.511054;-5.096455;, + 0.829665;-2.853936;-5.096455;, + 2.072333;-2.853936;-5.096455;, + 2.072333;-2.853935;-0.317499;, + 0.829665;-2.853936;-0.317498;, + 2.072333;-2.853936;-5.096455;, + 2.072333;-4.398976;-5.096455;, + 2.072334;-4.398976;-0.317498;, + 2.072333;-2.853935;-0.317499;, + 2.072333;-4.398976;-5.096455;, + 0.829665;-4.398976;-5.096455;, + 0.829665;-4.398976;-0.317498;, + 2.072334;-4.398976;-0.317498;, + 2.268868;-2.609579;-5.096455;, + 2.268869;-4.511054;-5.096455;, + 2.072333;-4.398976;-5.096455;, + 2.072333;-2.853936;-5.096455;, + 0.829665;-4.398976;-5.096455;, + 0.829665;-2.853936;-5.096455;, + 0.829665;-2.853936;-0.317498;, + 0.829665;-4.398976;-0.317498;, + 2.599581;-5.109999;-0.688940;, + 2.599581; 5.150001;-0.688940;, + -2.530419; 5.150001;-0.688940;, + -2.530417;-5.109998;-0.688940;, + -2.530417; 5.150004; 4.441061;, + 2.599582; 5.150000; 4.441061;, + 2.599583;-5.109997; 4.441061;, + -2.530419;-5.109996; 4.441061;, + -2.530419; 5.150001;-0.688940;, + -2.530417; 5.150004; 4.441061;, + -2.530419;-5.109996; 4.441061;, + -2.530417;-5.109998;-0.688940;, + 2.599581; 5.150001;-0.688940;, + 2.599582; 5.150000; 4.441061;, + -2.530417; 5.150004; 4.441061;, + -2.530419; 5.150001;-0.688940;, + 2.599581;-5.109999;-0.688940;, + 2.599583;-5.109997; 4.441061;, + 2.599582; 5.150000; 4.441061;, + 2.599581; 5.150001;-0.688940;, + 0.416693;-5.109998; 3.970571;, + -0.347529;-5.109998; 3.970571;, + -2.530419;-5.109996; 4.441061;, + 2.599583;-5.109997; 4.441061;, + -0.367640;-5.677753; 3.945947;, + -0.367640;-5.677753; 1.790629;, + -0.347529;-5.109998; 1.794900;, + -0.347529;-5.109998; 3.970571;, + 0.436804;-5.677753; 3.945947;, + 0.436804;-5.677753; 1.790629;, + -0.367640;-5.677753; 1.790629;, + -0.367640;-5.677753; 3.945947;, + 0.416693;-5.109998; 1.794900;, + 0.416693;-5.109998; 3.970571;, + 2.599583;-5.109997; 4.441061;, + 2.599581;-5.109999;-0.688940;, + -0.347529;-5.109998; 3.970571;, + -0.347529;-5.109998; 1.794900;, + -2.530417;-5.109998;-0.688940;, + -2.530419;-5.109996; 4.441061;, + -0.347529;-5.109998; 1.794900;, + 0.416693;-5.109998; 1.794900;, + 2.599581;-5.109999;-0.688940;, + -2.530417;-5.109998;-0.688940;, + -0.367640;-5.677753; 1.790629;, + 0.436804;-5.677753; 1.790629;, + 0.416693;-5.109998; 1.794900;, + -0.347529;-5.109998; 1.794900;, + 0.436804;-5.677753; 1.790629;, + 0.436804;-5.677753; 3.945947;, + 0.416693;-5.109998; 3.970571;, + 0.416693;-5.109998; 1.794900;, + 0.436804;-5.677753; 3.945947;, + -0.367640;-5.677753; 3.945947;, + -0.347529;-5.109998; 3.970571;, + 0.416693;-5.109998; 3.970571;; + 80; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;; + MeshNormals { //Cube_001 Normals + 320; + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 1.000000; 0.000001; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 1.000000; 0.000001; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000001; 1.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000;-1.000000; 0.000003;, + -0.000000;-1.000000; 0.000003;, + -0.000000;-1.000000; 0.000003;, + -0.000000;-1.000000; 0.000003;, + -0.999373; 0.035400; 0.000000;, + -0.999373; 0.035400; 0.000000;, + -0.999373; 0.035400; 0.000000;, + -0.999373; 0.035400; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 0.007523;-0.999972;, + 0.000000; 0.007523;-0.999972;, + 0.000000; 0.007523;-0.999972;, + 0.000000; 0.007523;-0.999972;, + 0.999373; 0.035399; 0.000000;, + 0.999373; 0.035399; 0.000000;, + 0.999373; 0.035399; 0.000000;, + 0.999373; 0.035399; 0.000000;, + 0.000000;-0.043330; 0.999061;, + 0.000000;-0.043330; 0.999061;, + 0.000000;-0.043330; 0.999061;, + 0.000000;-0.043330; 0.999061;; + 80; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;; + } //End of Cube_001 Normals + MeshMaterialList { //Cube_001 Material List + 1; + 80; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material_001 { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Cube_001 Material List + MeshTextureCoords { //Cube_001 UV Coordinates + 320; + 0.456156; 0.334515;, + 0.218669; 0.335171;, + 0.216366; 0.574968;, + 0.455972; 0.573345;, + 0.408216; 0.351143;, + 0.183578; 0.351001;, + 0.185676; 0.587688;, + 0.420802; 0.569856;, + 0.717535; 0.651074;, + 0.480501; 0.651074;, + 0.403272; 0.516724;, + 0.800974; 0.515687;, + 0.450682; 0.562762;, + 0.460334; 0.300755;, + 0.197762; 0.296263;, + 0.191022; 0.562698;, + 0.185157; 0.320064;, + 0.429207; 0.331311;, + 0.437982; 0.548381;, + 0.181381; 0.566213;, + 0.438858; 0.311515;, + 0.216936; 0.306473;, + 0.219333; 0.568550;, + 0.435630; 0.574569;, + 0.641769; 0.799233;, + 0.559004; 0.799233;, + 0.531170; 0.783727;, + 0.669603; 0.783727;, + 0.480501; 0.651074;, + 0.480501; 0.866680;, + 0.402917; 0.885928;, + 0.403272; 0.516724;, + 0.717535; 0.866680;, + 0.717535; 0.651074;, + 0.800974; 0.515687;, + 0.800796; 0.879372;, + 0.445862; 0.690313;, + 0.757393; 0.690313;, + 0.757626; 0.715741;, + 0.445849; 0.717935;, + 0.530532; 0.825974;, + 0.530532; 0.725803;, + 0.672472; 0.725803;, + 0.672472; 0.825974;, + 0.546001; 0.748997;, + 0.546001; 0.824503;, + 0.529045; 0.825838;, + 0.529045; 0.747662;, + 0.654435; 0.833521;, + 0.654435; 0.728251;, + 0.669955; 0.728605;, + 0.669954; 0.835122;, + 0.531146; 0.813612;, + 0.671345; 0.813612;, + 0.670462; 0.829118;, + 0.532029; 0.829118;, + 0.163824; 0.970678;, + 0.025445; 0.971241;, + 0.025078; 0.812645;, + 0.163457; 0.812082;, + 0.163457; 0.971241;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.163824; 0.812645;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.197495; 0.970678;, + 0.025445; 0.971378;, + 0.197553; 0.995579;, + 0.025502; 0.996279;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.025078; 0.995579;, + 0.025502; 0.812082;, + 0.046123; 0.834214;, + 0.045801; 0.973616;, + 0.197553; 0.812782;, + 0.197128; 0.996279;, + 0.176507; 0.974147;, + 0.176830; 0.834745;, + 0.197128; 0.996279;, + 0.025078; 0.995579;, + 0.045801; 0.973616;, + 0.176507; 0.974147;, + 0.197128; 0.971378;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.197495; 0.812783;, + 0.145802; 0.800348;, + 0.037973; 0.799657;, + 0.038577; 0.248281;, + 0.146405; 0.248972;, + 0.169580; 0.801264;, + 0.035513; 0.800404;, + 0.036117; 0.249028;, + 0.170183; 0.249888;, + 0.147602; 0.801900;, + 0.039773; 0.801209;, + 0.040375; 0.249832;, + 0.148204; 0.250523;, + 0.025502; 0.812082;, + 0.197553; 0.812782;, + 0.176830; 0.834745;, + 0.046123; 0.834214;, + 0.169708; 0.801209;, + 0.035640; 0.800348;, + 0.036243; 0.248972;, + 0.170310; 0.249832;, + 0.163824; 0.970678;, + 0.025445; 0.971241;, + 0.025078; 0.812645;, + 0.163457; 0.812082;, + 0.163457; 0.971241;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.163824; 0.812645;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.197495; 0.970678;, + 0.025445; 0.971378;, + 0.197553; 0.995579;, + 0.025502; 0.996279;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.025078; 0.995579;, + 0.025502; 0.812082;, + 0.046123; 0.834214;, + 0.045801; 0.973616;, + 0.197553; 0.812782;, + 0.197128; 0.996279;, + 0.176507; 0.974147;, + 0.176830; 0.834745;, + 0.197128; 0.996279;, + 0.025078; 0.995579;, + 0.045801; 0.973616;, + 0.176507; 0.974147;, + 0.197128; 0.971378;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.197495; 0.812783;, + 0.145802; 0.800348;, + 0.037973; 0.799657;, + 0.038577; 0.247136;, + 0.146405; 0.247827;, + 0.169580; 0.801264;, + 0.035513; 0.800404;, + 0.036117; 0.247883;, + 0.170183; 0.248743;, + 0.147602; 0.801900;, + 0.039773; 0.801209;, + 0.040375; 0.248687;, + 0.148204; 0.249378;, + 0.025502; 0.812082;, + 0.197553; 0.812782;, + 0.176830; 0.834745;, + 0.046123; 0.834214;, + 0.169708; 0.801209;, + 0.035640; 0.800348;, + 0.036243; 0.247827;, + 0.170310; 0.248687;, + 0.163824; 0.970678;, + 0.025445; 0.971241;, + 0.025078; 0.812645;, + 0.163457; 0.812082;, + 0.163457; 0.971241;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.163824; 0.812645;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.197495; 0.970678;, + 0.025445; 0.971378;, + 0.197553; 0.995579;, + 0.025502; 0.996279;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.025078; 0.995579;, + 0.025502; 0.812082;, + 0.046123; 0.834214;, + 0.045801; 0.973616;, + 0.197553; 0.812782;, + 0.197128; 0.996279;, + 0.176507; 0.974147;, + 0.176830; 0.834745;, + 0.197128; 0.996279;, + 0.025078; 0.995579;, + 0.045801; 0.973616;, + 0.176507; 0.974147;, + 0.197128; 0.971378;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.197495; 0.812783;, + 0.145802; 0.800348;, + 0.037973; 0.799657;, + 0.038577; 0.247136;, + 0.146405; 0.247827;, + 0.169580; 0.801264;, + 0.035513; 0.800404;, + 0.036117; 0.247883;, + 0.170183; 0.248743;, + 0.147602; 0.801900;, + 0.039773; 0.801209;, + 0.040375; 0.248687;, + 0.148204; 0.249378;, + 0.025502; 0.812082;, + 0.197553; 0.812782;, + 0.176830; 0.834745;, + 0.046123; 0.834214;, + 0.169708; 0.801209;, + 0.035640; 0.800348;, + 0.036243; 0.247827;, + 0.170310; 0.248687;, + 0.163824; 0.970678;, + 0.025445; 0.971241;, + 0.025078; 0.812645;, + 0.163457; 0.812082;, + 0.163457; 0.971241;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.163824; 0.812645;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.197495; 0.970678;, + 0.025445; 0.971378;, + 0.197553; 0.995579;, + 0.025502; 0.996279;, + 0.025078; 0.812782;, + 0.197128; 0.812082;, + 0.025078; 0.995579;, + 0.025502; 0.812082;, + 0.046123; 0.834214;, + 0.045801; 0.973616;, + 0.197553; 0.812782;, + 0.197128; 0.996279;, + 0.176507; 0.974147;, + 0.176830; 0.834745;, + 0.197128; 0.996279;, + 0.025078; 0.995579;, + 0.045801; 0.973616;, + 0.176507; 0.974147;, + 0.197128; 0.971378;, + 0.025078; 0.970678;, + 0.025445; 0.812082;, + 0.197495; 0.812783;, + 0.145802; 0.800348;, + 0.037973; 0.799657;, + 0.038577; 0.247136;, + 0.146405; 0.247827;, + 0.169580; 0.801264;, + 0.035513; 0.800404;, + 0.036117; 0.247883;, + 0.170183; 0.248743;, + 0.147602; 0.801900;, + 0.039773; 0.801209;, + 0.040375; 0.248687;, + 0.148204; 0.249378;, + 0.025502; 0.812082;, + 0.197553; 0.812782;, + 0.176830; 0.834745;, + 0.046123; 0.834214;, + 0.169708; 0.801209;, + 0.035640; 0.800348;, + 0.036243; 0.247827;, + 0.170310; 0.248687;, + 0.162385; 0.009221;, + 0.924369; 0.009221;, + 0.924369; 0.340664;, + 0.162385; 0.340664;, + 0.162385; 0.375513;, + 0.162385; 0.044070;, + 0.920960; 0.044069;, + 0.920960; 0.375513;, + 0.173123; 0.401349;, + 0.173123; 0.016267;, + 0.822706; 0.016267;, + 0.822707; 0.401349;, + 0.420022; 0.481351;, + 0.420022; 0.016910;, + 0.838019; 0.016910;, + 0.838019; 0.481351;, + 0.893638; 0.009221;, + 0.893639; 0.340665;, + 0.162386; 0.340666;, + 0.162385; 0.009222;, + 0.593392; 0.089138;, + 0.645583; 0.089138;, + 0.794659; 0.042542;, + 0.444316; 0.042542;, + 0.649241; 0.097975;, + 0.649782; 0.274434;, + 0.587832; 0.274624;, + 0.587291; 0.098165;, + 0.458398; 0.274422;, + 0.458939; 0.097963;, + 0.524800; 0.098165;, + 0.524259; 0.274624;, + 0.593392; 0.248520;, + 0.593392; 0.089138;, + 0.444316; 0.042542;, + 0.444316; 0.441862;, + 0.645583; 0.089138;, + 0.645583; 0.248520;, + 0.794659; 0.441862;, + 0.794659; 0.042542;, + 0.645583; 0.248520;, + 0.593392; 0.248520;, + 0.444316; 0.441862;, + 0.794659; 0.441862;, + 0.587291; 0.097785;, + 0.587493; 0.031924;, + 0.649443; 0.032114;, + 0.649241; 0.097975;, + 0.524800; 0.274434;, + 0.525341; 0.097975;, + 0.587291; 0.098165;, + 0.586750; 0.274624;, + 0.587089; 0.031924;, + 0.587291; 0.097785;, + 0.525341; 0.097975;, + 0.525140; 0.032114;; + } //End of Cube_001 UV Coordinates + XSkinMeshHeader { + 2; + 6; + 6; + } + SkinWeights { + "Armature_RR_leg"; + 52; + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.000000,-1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 1.448563,-0.034190,-3.599006, 1.000000;; + } //End of Armature_RR_leg Skin Weights + SkinWeights { + "Armature_Bone_001"; + 52; + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.000000,-1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -1.450758,-0.034190, 4.108053, 1.000000;; + } //End of Armature_Bone_001 Skin Weights + SkinWeights { + "Armature_Head"; + 62; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 268, + 269, + 273, + 277, + 278, + 282; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000003, + 0.000000, + 0.000003, + 0.000000, + 0.000003; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.009912,-3.822360,-4.157553, 1.000000;; + } //End of Armature_Head Skin Weights + SkinWeights { + "Armature_Bone_003"; + 67; + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 164, + 167, + 174, + 176, + 179, + 183, + 185, + 186, + 189, + 190, + 192, + 197, + 200, + 206, + 209; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 1.448564,-0.034190, 4.108052, 1.000000;; + } //End of Armature_Bone_003 Skin Weights + SkinWeights { + "Armature_Bone_002"; + 52; + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.000000,-1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -1.450759,-0.034190,-3.599006, 1.000000;; + } //End of Armature_Bone_002 Skin Weights + SkinWeights { + "Armature_Root"; + 56; + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999997, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999997, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999997, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000,-0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -0.000000, 1.000000, 0.000000, 0.000000, + 0.009913,-0.105027,-0.034322, 1.000000;; + } //End of Armature_Root Skin Weights + } //End of Cube_001 Mesh + } //End of sheep_shaved + } //End of Armature +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 101; + 0;3; 0.041567, 0.000010, 6.045322;;, + 1;3; 0.041567, 0.000010, 6.045322;;, + 2;3; 0.041567, 0.000010, 6.045322;;, + 3;3; 0.041567, 0.000010, 6.045322;;, + 4;3; 0.041567, 0.000010, 6.045322;;, + 5;3; 0.041567, 0.000010, 6.045322;;, + 6;3; 0.041567, 0.000010, 6.045322;;, + 7;3; 0.041567, 0.000010, 6.045322;;, + 8;3; 0.041567, 0.000010, 6.045322;;, + 9;3; 0.041567, 0.000010, 6.045322;;, + 10;3; 0.041567, 0.000010, 6.045322;;, + 11;3; 0.041567, 0.000010, 6.045322;;, + 12;3; 0.041567, 0.000010, 6.045322;;, + 13;3; 0.041567, 0.000010, 6.045322;;, + 14;3; 0.041567, 0.000010, 6.045322;;, + 15;3; 0.041567, 0.000010, 6.045322;;, + 16;3; 0.041567, 0.000010, 6.045322;;, + 17;3; 0.041567, 0.000010, 6.045322;;, + 18;3; 0.041567, 0.000010, 6.045322;;, + 19;3; 0.041567, 0.000010, 6.045322;;, + 20;3; 0.041567, 0.000010, 6.045322;;, + 21;3; 0.041567, 0.000010, 6.045322;;, + 22;3; 0.041567, 0.000010, 6.045322;;, + 23;3; 0.041567, 0.000010, 6.045322;;, + 24;3; 0.041567, 0.000010, 6.045322;;, + 25;3; 0.041567, 0.000010, 6.045322;;, + 26;3; 0.041567, 0.000010, 6.045322;;, + 27;3; 0.041567, 0.000010, 6.045322;;, + 28;3; 0.041567, 0.000010, 6.045322;;, + 29;3; 0.041567, 0.000010, 6.045322;;, + 30;3; 0.041567, 0.000010, 6.045322;;, + 31;3; 0.041567, 0.000010, 6.045322;;, + 32;3; 0.041567, 0.000010, 6.045322;;, + 33;3; 0.041567, 0.000010, 6.045322;;, + 34;3; 0.041567, 0.000010, 6.045322;;, + 35;3; 0.041567, 0.000010, 6.045322;;, + 36;3; 0.041567, 0.000010, 6.045322;;, + 37;3; 0.041567, 0.000010, 6.045322;;, + 38;3; 0.041567, 0.000010, 6.045322;;, + 39;3; 0.041567, 0.000010, 6.045322;;, + 40;3; 0.041567, 0.000010, 6.045322;;, + 41;3; 0.041567, 0.000010, 6.045322;;, + 42;3; 0.041567, 0.000010, 6.045322;;, + 43;3; 0.041567, 0.000010, 6.045322;;, + 44;3; 0.041567, 0.000010, 6.045322;;, + 45;3; 0.041567, 0.000010, 6.045322;;, + 46;3; 0.041567, 0.000010, 6.045322;;, + 47;3; 0.041567, 0.000010, 6.045322;;, + 48;3; 0.041567, 0.000010, 6.045322;;, + 49;3; 0.041567, 0.000010, 6.045322;;, + 50;3; 0.041567, 0.000010, 6.045322;;, + 51;3; 0.041567, 0.000010, 6.045322;;, + 52;3; 0.041567, 0.000010, 6.045322;;, + 53;3; 0.041567, 0.000010, 6.045322;;, + 54;3; 0.041567, 0.000010, 6.045322;;, + 55;3; 0.041567, 0.000010, 6.045322;;, + 56;3; 0.041567, 0.000010, 6.045322;;, + 57;3; 0.041567, 0.000010, 6.045322;;, + 58;3; 0.041567, 0.000010, 6.045322;;, + 59;3; 0.041567, 0.000010, 6.045322;;, + 60;3; 0.041567, 0.000010, 6.045322;;, + 61;3; 0.041567, 0.000010, 6.045322;;, + 62;3; 0.041567, 0.000010, 6.045322;;, + 63;3; 0.041567, 0.000010, 6.045322;;, + 64;3; 0.041567, 0.000010, 6.045322;;, + 65;3; 0.041567, 0.000010, 6.045322;;, + 66;3; 0.041567, 0.000010, 6.045322;;, + 67;3; 0.041567, 0.000010, 6.045322;;, + 68;3; 0.041567, 0.000010, 6.045322;;, + 69;3; 0.041567, 0.000010, 6.045322;;, + 70;3; 0.041567, 0.000010, 6.045322;;, + 71;3; 0.041567, 0.000010, 6.045322;;, + 72;3; 0.041567, 0.000010, 6.045322;;, + 73;3; 0.041567, 0.000010, 6.045322;;, + 74;3; 0.041567, 0.000010, 6.045322;;, + 75;3; 0.041567, 0.000010, 6.045322;;, + 76;3; 0.041567, 0.000010, 6.045322;;, + 77;3; 0.041567, 0.000010, 6.045322;;, + 78;3; 0.041567, 0.000010, 6.045322;;, + 79;3; 0.041567, 0.000010, 6.045322;;, + 80;3; 0.041567, 0.000010, 6.045322;;, + 81;3; 0.041567, 0.000010, 6.045322;;, + 82;3; 0.041567, 0.000010, 6.045322;;, + 83;3; 0.041567, 0.000010, 6.045322;;, + 84;3; 0.041567, 0.000010, 6.045322;;, + 85;3; 0.041567, 0.000010, 6.045322;;, + 86;3; 0.041567, 0.000010, 6.045322;;, + 87;3; 0.041567, 0.000010, 6.045322;;, + 88;3; 0.041567, 0.000010, 6.045322;;, + 89;3; 0.041567, 0.000010, 6.045322;;, + 90;3; 0.041567, 0.000010, 6.045322;;, + 91;3; 0.041567, 0.000010, 6.045322;;, + 92;3; 0.041567, 0.000010, 6.045322;;, + 93;3; 0.041567, 0.000010, 6.045322;;, + 94;3; 0.041567, 0.000010, 6.045322;;, + 95;3; 0.041567, 0.000010, 6.045322;;, + 96;3; 0.041567, 0.000010, 6.045322;;, + 97;3; 0.041567, 0.000010, 6.045322;;, + 98;3; 0.041567, 0.000010, 6.045322;;, + 99;3; 0.041567, 0.000010, 6.045322;;, + 100;3; 0.041567, 0.000010, 6.045322;;; + } + AnimationKey { //Rotation + 0; + 101; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 101; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Root} + AnimationKey { //Position + 2; + 101; + 0;3; 0.009913, 0.034322, 0.105027;;, + 1;3; 0.009913, 0.034322, 0.105027;;, + 2;3; 0.009913, 0.034322, 0.105027;;, + 3;3; 0.009913, 0.034322, 0.105027;;, + 4;3; 0.009913, 0.034322, 0.105027;;, + 5;3; 0.009913, 0.034322, 0.105027;;, + 6;3; 0.009913, 0.034322, 0.105027;;, + 7;3; 0.009913, 0.034322, 0.105027;;, + 8;3; 0.009913, 0.034322, 0.105027;;, + 9;3; 0.009913, 0.034322, 0.105027;;, + 10;3; 0.009913, 0.034322, 0.105027;;, + 11;3; 0.009913, 0.034322, 0.105027;;, + 12;3; 0.009913, 0.034322, 0.105027;;, + 13;3; 0.009913, 0.034322, 0.105027;;, + 14;3; 0.009913, 0.034322, 0.105027;;, + 15;3; 0.009913, 0.034322, 0.105027;;, + 16;3; 0.009913, 0.034322, 0.105027;;, + 17;3; 0.009913, 0.034322, 0.105027;;, + 18;3; 0.009913, 0.034322, 0.105027;;, + 19;3; 0.009913, 0.034322, 0.105027;;, + 20;3; 0.009913, 0.034322, 0.105027;;, + 21;3; 0.009913, 0.034322, 0.105027;;, + 22;3; 0.009913, 0.034322, 0.105027;;, + 23;3; 0.009913, 0.034322, 0.105027;;, + 24;3; 0.009913, 0.034322, 0.105027;;, + 25;3; 0.009913, 0.034322, 0.105027;;, + 26;3; 0.009913, 0.034322, 0.105027;;, + 27;3; 0.009913, 0.034322, 0.105027;;, + 28;3; 0.009913, 0.034322, 0.105027;;, + 29;3; 0.009913, 0.034322, 0.105027;;, + 30;3; 0.009913, 0.034322, 0.105027;;, + 31;3; 0.009913, 0.034322, 0.105027;;, + 32;3; 0.009913, 0.034322, 0.105027;;, + 33;3; 0.009913, 0.034322, 0.105027;;, + 34;3; 0.009913, 0.034322, 0.105027;;, + 35;3; 0.009913, 0.034322, 0.105027;;, + 36;3; 0.009913, 0.034322, 0.105027;;, + 37;3; 0.009913, 0.034322, 0.105027;;, + 38;3; 0.009913, 0.034322, 0.105027;;, + 39;3; 0.009913, 0.034322, 0.105027;;, + 40;3; 0.009913, 0.034322, 0.105027;;, + 41;3; 0.009913, 0.034322, 0.105027;;, + 42;3; 0.009913, 0.034322, 0.105027;;, + 43;3; 0.009913, 0.034322, 0.105027;;, + 44;3; 0.009913, 0.034322, 0.105027;;, + 45;3; 0.009913, 0.034322, 0.105027;;, + 46;3; 0.009913, 0.034322, 0.105027;;, + 47;3; 0.009913, 0.034322, 0.105027;;, + 48;3; 0.009913, 0.034322, 0.105027;;, + 49;3; 0.009913, 0.034322, 0.105027;;, + 50;3; 0.009913, 0.034322, 0.105027;;, + 51;3; 0.009913, 0.034322, 0.105027;;, + 52;3; 0.009913, 0.034322, 0.105027;;, + 53;3; 0.009913, 0.034322, 0.105027;;, + 54;3; 0.009913, 0.034322, 0.105027;;, + 55;3; 0.009913, 0.034322, 0.105027;;, + 56;3; 0.009913, 0.034322, 0.105027;;, + 57;3; 0.009913, 0.034322, 0.105027;;, + 58;3; 0.009913, 0.034322, 0.105027;;, + 59;3; 0.009913, 0.034322, 0.105027;;, + 60;3; 0.009913, 0.034322, 0.105027;;, + 61;3; 0.009913, 0.034322, 0.105027;;, + 62;3; 0.009913, 0.034322, 0.105027;;, + 63;3; 0.009913, 0.034322, 0.105027;;, + 64;3; 0.009913, 0.034322, 0.105027;;, + 65;3; 0.009913, 0.034322, 0.105027;;, + 66;3; 0.009913, 0.034322, 0.105027;;, + 67;3; 0.009913, 0.034322, 0.105027;;, + 68;3; 0.009913, 0.034322, 0.105027;;, + 69;3; 0.009913, 0.034322, 0.105027;;, + 70;3; 0.009913, 0.034322, 0.105027;;, + 71;3; 0.009913, 0.034322, 0.105027;;, + 72;3; 0.009913, 0.034322, 0.105027;;, + 73;3; 0.009913, 0.034322, 0.105027;;, + 74;3; 0.009913, 0.034322, 0.105027;;, + 75;3; 0.009913, 0.034322, 0.105027;;, + 76;3; 0.009913, 0.034322, 0.105027;;, + 77;3; 0.009913, 0.034322, 0.105027;;, + 78;3; 0.009913, 0.034322, 0.105027;;, + 79;3; 0.009913, 0.034322, 0.105027;;, + 80;3; 0.009913, 0.034322, 0.105027;;, + 81;3; 0.009913, 0.034322, 0.105027;;, + 82;3; 0.009913, 0.034322, 0.105027;;, + 83;3; 0.009913, 0.034322, 0.105027;;, + 84;3; 0.009913, 0.034322, 0.105027;;, + 85;3; 0.009913, 0.034322, 0.105027;;, + 86;3; 0.009913, 0.034322, 0.105027;;, + 87;3; 0.009913, 0.034322, 0.105027;;, + 88;3; 0.009913, 0.034322, 0.105027;;, + 89;3; 0.009913, 0.034322, 0.105027;;, + 90;3; 0.009913, 0.034322, 0.105027;;, + 91;3; 0.009913, 0.034322, 0.105027;;, + 92;3; 0.009913, 0.034322, 0.105027;;, + 93;3; 0.009913, 0.034322, 0.105027;;, + 94;3; 0.009913, 0.034322, 0.105027;;, + 95;3; 0.009913, 0.034322, 0.105027;;, + 96;3; 0.009913, 0.034322, 0.105027;;, + 97;3; 0.009913, 0.034322, 0.105027;;, + 98;3; 0.009913, 0.034322, 0.105027;;, + 99;3; 0.009913, 0.034322, 0.105027;;, + 100;3; 0.009913, 0.034322, 0.105027;;; + } + AnimationKey { //Rotation + 0; + 101; + 0;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 1;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 2;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 3;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 4;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 5;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 6;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 7;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 8;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 9;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 10;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 11;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 12;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 13;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 14;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 15;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 16;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 17;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 18;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 19;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 20;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 21;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 22;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 23;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 24;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 25;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 26;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 27;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 28;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 29;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 30;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 31;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 32;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 33;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 34;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 35;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 36;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 37;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 38;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 39;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 40;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 41;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 42;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 43;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 44;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 45;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 46;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 47;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 48;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 49;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 50;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 51;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 52;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 53;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 54;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 55;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 56;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 57;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 58;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 59;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 60;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 61;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 62;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 63;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 64;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 65;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 66;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 67;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 68;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 69;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 70;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 71;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 72;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 73;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 74;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 75;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 76;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 77;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 78;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 79;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 80;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 81;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 82;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 83;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 84;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 85;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 86;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 87;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 88;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 89;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 90;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 91;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 92;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 93;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 94;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 95;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 96;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 97;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 98;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 99;4; 0.000000, 0.000000, 0.707107, 0.707107;;, + 100;4; 0.000000, 0.000000, 0.707107, 0.707107;;; + } + AnimationKey { //Scale + 1; + 101; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { //Position + 2; + 101; + 0;3; 1.460671,-0.139217, 4.073730;;, + 1;3; 1.460671,-0.139217, 4.073730;;, + 2;3; 1.460671,-0.139217, 4.073730;;, + 3;3; 1.460671,-0.139217, 4.073730;;, + 4;3; 1.460671,-0.139217, 4.073730;;, + 5;3; 1.460671,-0.139217, 4.073730;;, + 6;3; 1.460671,-0.139217, 4.073730;;, + 7;3; 1.460671,-0.139217, 4.073730;;, + 8;3; 1.460671,-0.139217, 4.073730;;, + 9;3; 1.460671,-0.139217, 4.073730;;, + 10;3; 1.460671,-0.139217, 4.073730;;, + 11;3; 1.460671,-0.139217, 4.073730;;, + 12;3; 1.460671,-0.139217, 4.073730;;, + 13;3; 1.460671,-0.139217, 4.073730;;, + 14;3; 1.460671,-0.139217, 4.073730;;, + 15;3; 1.460671,-0.139217, 4.073730;;, + 16;3; 1.460671,-0.139217, 4.073730;;, + 17;3; 1.460671,-0.139217, 4.073730;;, + 18;3; 1.460671,-0.139217, 4.073730;;, + 19;3; 1.460671,-0.139217, 4.073730;;, + 20;3; 1.460671,-0.139217, 4.073730;;, + 21;3; 1.460671,-0.139217, 4.073730;;, + 22;3; 1.460671,-0.139217, 4.073730;;, + 23;3; 1.460671,-0.139217, 4.073730;;, + 24;3; 1.460671,-0.139217, 4.073730;;, + 25;3; 1.460671,-0.139217, 4.073730;;, + 26;3; 1.460671,-0.139217, 4.073730;;, + 27;3; 1.460671,-0.139217, 4.073730;;, + 28;3; 1.460671,-0.139217, 4.073730;;, + 29;3; 1.460671,-0.139217, 4.073730;;, + 30;3; 1.460671,-0.139217, 4.073730;;, + 31;3; 1.460671,-0.139217, 4.073730;;, + 32;3; 1.460671,-0.139217, 4.073730;;, + 33;3; 1.460671,-0.139217, 4.073730;;, + 34;3; 1.460671,-0.139217, 4.073730;;, + 35;3; 1.460671,-0.139217, 4.073730;;, + 36;3; 1.460671,-0.139217, 4.073730;;, + 37;3; 1.460671,-0.139217, 4.073730;;, + 38;3; 1.460671,-0.139217, 4.073730;;, + 39;3; 1.460671,-0.139217, 4.073730;;, + 40;3; 1.460671,-0.139217, 4.073730;;, + 41;3; 1.460671,-0.139217, 4.073730;;, + 42;3; 1.460671,-0.139217, 4.073730;;, + 43;3; 1.460671,-0.139217, 4.073730;;, + 44;3; 1.460671,-0.139217, 4.073730;;, + 45;3; 1.460671,-0.139217, 4.073730;;, + 46;3; 1.460671,-0.139217, 4.073730;;, + 47;3; 1.460671,-0.139217, 4.073730;;, + 48;3; 1.460671,-0.139217, 4.073730;;, + 49;3; 1.460671,-0.139217, 4.073730;;, + 50;3; 1.460671,-0.139217, 4.073730;;, + 51;3; 1.460671,-0.139217, 4.073730;;, + 52;3; 1.460671,-0.139217, 4.073730;;, + 53;3; 1.460671,-0.139217, 4.073730;;, + 54;3; 1.460671,-0.139217, 4.073730;;, + 55;3; 1.460671,-0.139217, 4.073730;;, + 56;3; 1.460671,-0.139217, 4.073730;;, + 57;3; 1.460671,-0.139217, 4.073730;;, + 58;3; 1.460671,-0.139217, 4.073730;;, + 59;3; 1.460671,-0.139217, 4.073730;;, + 60;3; 1.460671,-0.139217, 4.073730;;, + 61;3; 1.460671,-0.139217, 4.073730;;, + 62;3; 1.460671,-0.139217, 4.073730;;, + 63;3; 1.460671,-0.139217, 4.073730;;, + 64;3; 1.460671,-0.139217, 4.073730;;, + 65;3; 1.460671,-0.139217, 4.073730;;, + 66;3; 1.460671,-0.139217, 4.073730;;, + 67;3; 1.460671,-0.139217, 4.073730;;, + 68;3; 1.460671,-0.139217, 4.073730;;, + 69;3; 1.460671,-0.139217, 4.073730;;, + 70;3; 1.460671,-0.139217, 4.073730;;, + 71;3; 1.460671,-0.139217, 4.073730;;, + 72;3; 1.460671,-0.139217, 4.073730;;, + 73;3; 1.460671,-0.139217, 4.073730;;, + 74;3; 1.460671,-0.139217, 4.073730;;, + 75;3; 1.460671,-0.139217, 4.073730;;, + 76;3; 1.460671,-0.139217, 4.073730;;, + 77;3; 1.460671,-0.139217, 4.073730;;, + 78;3; 1.460671,-0.139217, 4.073730;;, + 79;3; 1.460671,-0.139217, 4.073730;;, + 80;3; 1.460671,-0.139217, 4.073730;;, + 81;3; 1.460671,-0.139217, 4.073730;;, + 82;3; 1.460671,-0.139217, 4.073730;;, + 83;3; 1.460671,-0.139217, 4.073730;;, + 84;3; 1.460671,-0.139217, 4.073730;;, + 85;3; 1.460671,-0.139217, 4.073730;;, + 86;3; 1.460671,-0.139217, 4.073730;;, + 87;3; 1.460671,-0.139217, 4.073730;;, + 88;3; 1.460671,-0.139217, 4.073730;;, + 89;3; 1.460671,-0.139217, 4.073730;;, + 90;3; 1.460671,-0.139217, 4.073730;;, + 91;3; 1.460671,-0.139217, 4.073730;;, + 92;3; 1.460671,-0.139217, 4.073730;;, + 93;3; 1.460671,-0.139217, 4.073730;;, + 94;3; 1.460671,-0.139217, 4.073730;;, + 95;3; 1.460671,-0.139217, 4.073730;;, + 96;3; 1.460671,-0.139217, 4.073730;;, + 97;3; 1.460671,-0.139217, 4.073730;;, + 98;3; 1.460671,-0.139217, 4.073730;;, + 99;3; 1.460671,-0.139217, 4.073730;;, + 100;3; 1.460671,-0.139217, 4.073730;;; + } + AnimationKey { //Rotation + 0; + 101; + 0;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 81;4; -0.023017, 0.996971,-0.000000,-0.000000;;, + 82;4; -0.087830, 0.988440,-0.000000,-0.000000;;, + 83;4; -0.171026, 0.977486,-0.000000,-0.000000;;, + 84;4; -0.235816, 0.968955,-0.000000,-0.000000;;, + 85;4; -0.258819, 0.965926,-0.000000,-0.000000;;, + 86;4; -0.247344, 0.965926,-0.000000,-0.000000;;, + 87;4; -0.212807, 0.965926,-0.000000,-0.000000;;, + 88;4; -0.156652, 0.965926,-0.000000,-0.000000;;, + 89;4; -0.083204, 0.965926,-0.000000,-0.000000;;, + 90;4; -0.000000, 0.965926,-0.000000,-0.000000;;, + 91;4; 0.083204, 0.965926, 0.000000,-0.000000;;, + 92;4; 0.156652, 0.965926, 0.000000,-0.000000;;, + 93;4; 0.212807, 0.965926, 0.000000,-0.000000;;, + 94;4; 0.247343, 0.965926, 0.000000,-0.000000;;, + 95;4; 0.258819, 0.965926, 0.000000,-0.000000;;, + 96;4; 0.235815, 0.968955, 0.000000,-0.000000;;, + 97;4; 0.171026, 0.977486, 0.000000,-0.000000;;, + 98;4; 0.087830, 0.988440, 0.000000,-0.000000;;, + 99;4; 0.023017, 0.996971, 0.000000,-0.000000;;, + 100;4; -0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 101; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { //Position + 2; + 101; + 0;3; 1.460671,-0.139216,-3.633328;;, + 1;3; 1.460671,-0.139216,-3.633328;;, + 2;3; 1.460671,-0.139216,-3.633328;;, + 3;3; 1.460671,-0.139216,-3.633328;;, + 4;3; 1.460671,-0.139216,-3.633328;;, + 5;3; 1.460671,-0.139216,-3.633328;;, + 6;3; 1.460671,-0.139216,-3.633328;;, + 7;3; 1.460671,-0.139216,-3.633328;;, + 8;3; 1.460671,-0.139216,-3.633328;;, + 9;3; 1.460671,-0.139216,-3.633328;;, + 10;3; 1.460671,-0.139216,-3.633328;;, + 11;3; 1.460671,-0.139216,-3.633328;;, + 12;3; 1.460671,-0.139216,-3.633328;;, + 13;3; 1.460671,-0.139216,-3.633328;;, + 14;3; 1.460671,-0.139216,-3.633328;;, + 15;3; 1.460671,-0.139216,-3.633328;;, + 16;3; 1.460671,-0.139216,-3.633328;;, + 17;3; 1.460671,-0.139216,-3.633328;;, + 18;3; 1.460671,-0.139216,-3.633328;;, + 19;3; 1.460671,-0.139216,-3.633328;;, + 20;3; 1.460671,-0.139216,-3.633328;;, + 21;3; 1.460671,-0.139216,-3.633328;;, + 22;3; 1.460671,-0.139216,-3.633328;;, + 23;3; 1.460671,-0.139216,-3.633328;;, + 24;3; 1.460671,-0.139216,-3.633328;;, + 25;3; 1.460671,-0.139216,-3.633328;;, + 26;3; 1.460671,-0.139216,-3.633328;;, + 27;3; 1.460671,-0.139216,-3.633328;;, + 28;3; 1.460671,-0.139216,-3.633328;;, + 29;3; 1.460671,-0.139216,-3.633328;;, + 30;3; 1.460671,-0.139216,-3.633328;;, + 31;3; 1.460671,-0.139216,-3.633328;;, + 32;3; 1.460671,-0.139216,-3.633328;;, + 33;3; 1.460671,-0.139216,-3.633328;;, + 34;3; 1.460671,-0.139216,-3.633328;;, + 35;3; 1.460671,-0.139216,-3.633328;;, + 36;3; 1.460671,-0.139216,-3.633328;;, + 37;3; 1.460671,-0.139216,-3.633328;;, + 38;3; 1.460671,-0.139216,-3.633328;;, + 39;3; 1.460671,-0.139216,-3.633328;;, + 40;3; 1.460671,-0.139216,-3.633328;;, + 41;3; 1.460671,-0.139216,-3.633328;;, + 42;3; 1.460671,-0.139216,-3.633328;;, + 43;3; 1.460671,-0.139216,-3.633328;;, + 44;3; 1.460671,-0.139216,-3.633328;;, + 45;3; 1.460671,-0.139216,-3.633328;;, + 46;3; 1.460671,-0.139216,-3.633328;;, + 47;3; 1.460671,-0.139216,-3.633328;;, + 48;3; 1.460671,-0.139216,-3.633328;;, + 49;3; 1.460671,-0.139216,-3.633328;;, + 50;3; 1.460671,-0.139216,-3.633328;;, + 51;3; 1.460671,-0.139216,-3.633328;;, + 52;3; 1.460671,-0.139216,-3.633328;;, + 53;3; 1.460671,-0.139216,-3.633328;;, + 54;3; 1.460671,-0.139216,-3.633328;;, + 55;3; 1.460671,-0.139216,-3.633328;;, + 56;3; 1.460671,-0.139216,-3.633328;;, + 57;3; 1.460671,-0.139216,-3.633328;;, + 58;3; 1.460671,-0.139216,-3.633328;;, + 59;3; 1.460671,-0.139216,-3.633328;;, + 60;3; 1.460671,-0.139216,-3.633328;;, + 61;3; 1.460671,-0.139216,-3.633328;;, + 62;3; 1.460671,-0.139216,-3.633328;;, + 63;3; 1.460671,-0.139216,-3.633328;;, + 64;3; 1.460671,-0.139216,-3.633328;;, + 65;3; 1.460671,-0.139216,-3.633328;;, + 66;3; 1.460671,-0.139216,-3.633328;;, + 67;3; 1.460671,-0.139216,-3.633328;;, + 68;3; 1.460671,-0.139216,-3.633328;;, + 69;3; 1.460671,-0.139216,-3.633328;;, + 70;3; 1.460671,-0.139216,-3.633328;;, + 71;3; 1.460671,-0.139216,-3.633328;;, + 72;3; 1.460671,-0.139216,-3.633328;;, + 73;3; 1.460671,-0.139216,-3.633328;;, + 74;3; 1.460671,-0.139216,-3.633328;;, + 75;3; 1.460671,-0.139216,-3.633328;;, + 76;3; 1.460671,-0.139216,-3.633328;;, + 77;3; 1.460671,-0.139216,-3.633328;;, + 78;3; 1.460671,-0.139216,-3.633328;;, + 79;3; 1.460671,-0.139216,-3.633328;;, + 80;3; 1.460671,-0.139216,-3.633328;;, + 81;3; 1.460671,-0.139216,-3.633328;;, + 82;3; 1.460671,-0.139216,-3.633328;;, + 83;3; 1.460671,-0.139216,-3.633328;;, + 84;3; 1.460671,-0.139216,-3.633328;;, + 85;3; 1.460671,-0.139216,-3.633328;;, + 86;3; 1.460671,-0.139216,-3.633328;;, + 87;3; 1.460671,-0.139216,-3.633328;;, + 88;3; 1.460671,-0.139216,-3.633328;;, + 89;3; 1.460671,-0.139216,-3.633328;;, + 90;3; 1.460671,-0.139216,-3.633328;;, + 91;3; 1.460671,-0.139216,-3.633328;;, + 92;3; 1.460671,-0.139216,-3.633328;;, + 93;3; 1.460671,-0.139216,-3.633328;;, + 94;3; 1.460671,-0.139216,-3.633328;;, + 95;3; 1.460671,-0.139216,-3.633328;;, + 96;3; 1.460671,-0.139216,-3.633328;;, + 97;3; 1.460671,-0.139216,-3.633328;;, + 98;3; 1.460671,-0.139216,-3.633328;;, + 99;3; 1.460671,-0.139216,-3.633328;;, + 100;3; 1.460671,-0.139216,-3.633328;;; + } + AnimationKey { //Rotation + 0; + 101; + 0;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 81;4; 0.023017, 0.996971, 0.000000,-0.000000;;, + 82;4; 0.087830, 0.988440, 0.000000,-0.000000;;, + 83;4; 0.171026, 0.977486, 0.000000,-0.000000;;, + 84;4; 0.235815, 0.968955, 0.000000,-0.000000;;, + 85;4; 0.258819, 0.965926, 0.000000,-0.000000;;, + 86;4; 0.247343, 0.965926, 0.000000,-0.000000;;, + 87;4; 0.212807, 0.965926, 0.000000,-0.000000;;, + 88;4; 0.156652, 0.965926, 0.000000,-0.000000;;, + 89;4; 0.083204, 0.965926, 0.000000,-0.000000;;, + 90;4; -0.000000, 0.965926,-0.000000,-0.000000;;, + 91;4; -0.083204, 0.965926,-0.000000,-0.000000;;, + 92;4; -0.156652, 0.965926,-0.000000,-0.000000;;, + 93;4; -0.212807, 0.965926,-0.000000,-0.000000;;, + 94;4; -0.247344, 0.965926,-0.000000,-0.000000;;, + 95;4; -0.258819, 0.965926,-0.000000,-0.000000;;, + 96;4; -0.235816, 0.968955,-0.000000,-0.000000;;, + 97;4; -0.171026, 0.977486,-0.000000,-0.000000;;, + 98;4; -0.087830, 0.988440,-0.000000,-0.000000;;, + 99;4; -0.023017, 0.996971,-0.000000,-0.000000;;, + 100;4; -0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 101; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { //Position + 2; + 101; + 0;3; -1.438650,-0.139217, 4.073730;;, + 1;3; -1.438650,-0.139217, 4.073730;;, + 2;3; -1.438650,-0.139217, 4.073730;;, + 3;3; -1.438650,-0.139217, 4.073730;;, + 4;3; -1.438650,-0.139217, 4.073730;;, + 5;3; -1.438650,-0.139217, 4.073730;;, + 6;3; -1.438650,-0.139217, 4.073730;;, + 7;3; -1.438650,-0.139217, 4.073730;;, + 8;3; -1.438650,-0.139217, 4.073730;;, + 9;3; -1.438650,-0.139217, 4.073730;;, + 10;3; -1.438650,-0.139217, 4.073730;;, + 11;3; -1.438650,-0.139217, 4.073730;;, + 12;3; -1.438650,-0.139217, 4.073730;;, + 13;3; -1.438650,-0.139217, 4.073730;;, + 14;3; -1.438650,-0.139217, 4.073730;;, + 15;3; -1.438650,-0.139217, 4.073730;;, + 16;3; -1.438650,-0.139217, 4.073730;;, + 17;3; -1.438650,-0.139217, 4.073730;;, + 18;3; -1.438650,-0.139217, 4.073730;;, + 19;3; -1.438650,-0.139217, 4.073730;;, + 20;3; -1.438650,-0.139217, 4.073730;;, + 21;3; -1.438650,-0.139217, 4.073730;;, + 22;3; -1.438650,-0.139217, 4.073730;;, + 23;3; -1.438650,-0.139217, 4.073730;;, + 24;3; -1.438650,-0.139217, 4.073730;;, + 25;3; -1.438650,-0.139217, 4.073730;;, + 26;3; -1.438650,-0.139217, 4.073730;;, + 27;3; -1.438650,-0.139217, 4.073730;;, + 28;3; -1.438650,-0.139217, 4.073730;;, + 29;3; -1.438650,-0.139217, 4.073730;;, + 30;3; -1.438650,-0.139217, 4.073730;;, + 31;3; -1.438650,-0.139217, 4.073730;;, + 32;3; -1.438650,-0.139217, 4.073730;;, + 33;3; -1.438650,-0.139217, 4.073730;;, + 34;3; -1.438650,-0.139217, 4.073730;;, + 35;3; -1.438650,-0.139217, 4.073730;;, + 36;3; -1.438650,-0.139217, 4.073730;;, + 37;3; -1.438650,-0.139217, 4.073730;;, + 38;3; -1.438650,-0.139217, 4.073730;;, + 39;3; -1.438650,-0.139217, 4.073730;;, + 40;3; -1.438650,-0.139217, 4.073730;;, + 41;3; -1.438650,-0.139217, 4.073730;;, + 42;3; -1.438650,-0.139217, 4.073730;;, + 43;3; -1.438650,-0.139217, 4.073730;;, + 44;3; -1.438650,-0.139217, 4.073730;;, + 45;3; -1.438650,-0.139217, 4.073730;;, + 46;3; -1.438650,-0.139217, 4.073730;;, + 47;3; -1.438650,-0.139217, 4.073730;;, + 48;3; -1.438650,-0.139217, 4.073730;;, + 49;3; -1.438650,-0.139217, 4.073730;;, + 50;3; -1.438650,-0.139217, 4.073730;;, + 51;3; -1.438650,-0.139217, 4.073730;;, + 52;3; -1.438650,-0.139217, 4.073730;;, + 53;3; -1.438650,-0.139217, 4.073730;;, + 54;3; -1.438650,-0.139217, 4.073730;;, + 55;3; -1.438650,-0.139217, 4.073730;;, + 56;3; -1.438650,-0.139217, 4.073730;;, + 57;3; -1.438650,-0.139217, 4.073730;;, + 58;3; -1.438650,-0.139217, 4.073730;;, + 59;3; -1.438650,-0.139217, 4.073730;;, + 60;3; -1.438650,-0.139217, 4.073730;;, + 61;3; -1.438650,-0.139217, 4.073730;;, + 62;3; -1.438650,-0.139217, 4.073730;;, + 63;3; -1.438650,-0.139217, 4.073730;;, + 64;3; -1.438650,-0.139217, 4.073730;;, + 65;3; -1.438650,-0.139217, 4.073730;;, + 66;3; -1.438650,-0.139217, 4.073730;;, + 67;3; -1.438650,-0.139217, 4.073730;;, + 68;3; -1.438650,-0.139217, 4.073730;;, + 69;3; -1.438650,-0.139217, 4.073730;;, + 70;3; -1.438650,-0.139217, 4.073730;;, + 71;3; -1.438650,-0.139217, 4.073730;;, + 72;3; -1.438650,-0.139217, 4.073730;;, + 73;3; -1.438650,-0.139217, 4.073730;;, + 74;3; -1.438650,-0.139217, 4.073730;;, + 75;3; -1.438650,-0.139217, 4.073730;;, + 76;3; -1.438650,-0.139217, 4.073730;;, + 77;3; -1.438650,-0.139217, 4.073730;;, + 78;3; -1.438650,-0.139217, 4.073730;;, + 79;3; -1.438650,-0.139217, 4.073730;;, + 80;3; -1.438650,-0.139217, 4.073730;;, + 81;3; -1.438650,-0.139217, 4.073730;;, + 82;3; -1.438650,-0.139217, 4.073730;;, + 83;3; -1.438650,-0.139217, 4.073730;;, + 84;3; -1.438650,-0.139217, 4.073730;;, + 85;3; -1.438650,-0.139217, 4.073730;;, + 86;3; -1.438650,-0.139217, 4.073730;;, + 87;3; -1.438650,-0.139217, 4.073730;;, + 88;3; -1.438650,-0.139217, 4.073730;;, + 89;3; -1.438650,-0.139217, 4.073730;;, + 90;3; -1.438650,-0.139217, 4.073730;;, + 91;3; -1.438650,-0.139217, 4.073730;;, + 92;3; -1.438650,-0.139217, 4.073730;;, + 93;3; -1.438650,-0.139217, 4.073730;;, + 94;3; -1.438650,-0.139217, 4.073730;;, + 95;3; -1.438650,-0.139217, 4.073730;;, + 96;3; -1.438650,-0.139217, 4.073730;;, + 97;3; -1.438650,-0.139217, 4.073730;;, + 98;3; -1.438650,-0.139217, 4.073730;;, + 99;3; -1.438650,-0.139217, 4.073730;;, + 100;3; -1.438650,-0.139217, 4.073730;;; + } + AnimationKey { //Rotation + 0; + 101; + 0;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; 0.000000, 1.000000,-0.000000,-0.000000;;, + 81;4; 0.023017, 0.996971, 0.000000,-0.000000;;, + 82;4; 0.087830, 0.988440, 0.000000,-0.000000;;, + 83;4; 0.171026, 0.977486, 0.000000,-0.000000;;, + 84;4; 0.235815, 0.968955, 0.000000,-0.000000;;, + 85;4; 0.258819, 0.965926, 0.000000,-0.000000;;, + 86;4; 0.247344, 0.965926, 0.000000,-0.000000;;, + 87;4; 0.212807, 0.965926, 0.000000,-0.000000;;, + 88;4; 0.156652, 0.965926, 0.000000,-0.000000;;, + 89;4; 0.083204, 0.965926, 0.000000,-0.000000;;, + 90;4; -0.000000, 0.965926, 0.000000,-0.000000;;, + 91;4; -0.083204, 0.965926,-0.000000,-0.000000;;, + 92;4; -0.156652, 0.965926,-0.000000,-0.000000;;, + 93;4; -0.212807, 0.965926,-0.000000,-0.000000;;, + 94;4; -0.247344, 0.965926,-0.000000,-0.000000;;, + 95;4; -0.258819, 0.965926,-0.000000,-0.000000;;, + 96;4; -0.235815, 0.968955,-0.000000,-0.000000;;, + 97;4; -0.171026, 0.977486,-0.000000,-0.000000;;, + 98;4; -0.087830, 0.988440,-0.000000,-0.000000;;, + 99;4; -0.023017, 0.996971,-0.000000,-0.000000;;, + 100;4; -0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 101; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_RR_leg} + AnimationKey { //Position + 2; + 101; + 0;3; -1.438651,-0.139216,-3.633328;;, + 1;3; -1.438651,-0.139216,-3.633328;;, + 2;3; -1.438651,-0.139216,-3.633328;;, + 3;3; -1.438651,-0.139216,-3.633328;;, + 4;3; -1.438651,-0.139216,-3.633328;;, + 5;3; -1.438651,-0.139216,-3.633328;;, + 6;3; -1.438651,-0.139216,-3.633328;;, + 7;3; -1.438651,-0.139216,-3.633328;;, + 8;3; -1.438651,-0.139216,-3.633328;;, + 9;3; -1.438651,-0.139216,-3.633328;;, + 10;3; -1.438651,-0.139216,-3.633328;;, + 11;3; -1.438651,-0.139216,-3.633328;;, + 12;3; -1.438651,-0.139216,-3.633328;;, + 13;3; -1.438651,-0.139216,-3.633328;;, + 14;3; -1.438651,-0.139216,-3.633328;;, + 15;3; -1.438651,-0.139216,-3.633328;;, + 16;3; -1.438651,-0.139216,-3.633328;;, + 17;3; -1.438651,-0.139216,-3.633328;;, + 18;3; -1.438651,-0.139216,-3.633328;;, + 19;3; -1.438651,-0.139216,-3.633328;;, + 20;3; -1.438651,-0.139216,-3.633328;;, + 21;3; -1.438651,-0.139216,-3.633328;;, + 22;3; -1.438651,-0.139216,-3.633328;;, + 23;3; -1.438651,-0.139216,-3.633328;;, + 24;3; -1.438651,-0.139216,-3.633328;;, + 25;3; -1.438651,-0.139216,-3.633328;;, + 26;3; -1.438651,-0.139216,-3.633328;;, + 27;3; -1.438651,-0.139216,-3.633328;;, + 28;3; -1.438651,-0.139216,-3.633328;;, + 29;3; -1.438651,-0.139216,-3.633328;;, + 30;3; -1.438651,-0.139216,-3.633328;;, + 31;3; -1.438651,-0.139216,-3.633328;;, + 32;3; -1.438651,-0.139216,-3.633328;;, + 33;3; -1.438651,-0.139216,-3.633328;;, + 34;3; -1.438651,-0.139216,-3.633328;;, + 35;3; -1.438651,-0.139216,-3.633328;;, + 36;3; -1.438651,-0.139216,-3.633328;;, + 37;3; -1.438651,-0.139216,-3.633328;;, + 38;3; -1.438651,-0.139216,-3.633328;;, + 39;3; -1.438651,-0.139216,-3.633328;;, + 40;3; -1.438651,-0.139216,-3.633328;;, + 41;3; -1.438651,-0.139216,-3.633328;;, + 42;3; -1.438651,-0.139216,-3.633328;;, + 43;3; -1.438651,-0.139216,-3.633328;;, + 44;3; -1.438651,-0.139216,-3.633328;;, + 45;3; -1.438651,-0.139216,-3.633328;;, + 46;3; -1.438651,-0.139216,-3.633328;;, + 47;3; -1.438651,-0.139216,-3.633328;;, + 48;3; -1.438651,-0.139216,-3.633328;;, + 49;3; -1.438651,-0.139216,-3.633328;;, + 50;3; -1.438651,-0.139216,-3.633328;;, + 51;3; -1.438651,-0.139216,-3.633328;;, + 52;3; -1.438651,-0.139216,-3.633328;;, + 53;3; -1.438651,-0.139216,-3.633328;;, + 54;3; -1.438651,-0.139216,-3.633328;;, + 55;3; -1.438651,-0.139216,-3.633328;;, + 56;3; -1.438651,-0.139216,-3.633328;;, + 57;3; -1.438651,-0.139216,-3.633328;;, + 58;3; -1.438651,-0.139216,-3.633328;;, + 59;3; -1.438651,-0.139216,-3.633328;;, + 60;3; -1.438651,-0.139216,-3.633328;;, + 61;3; -1.438651,-0.139216,-3.633328;;, + 62;3; -1.438651,-0.139216,-3.633328;;, + 63;3; -1.438651,-0.139216,-3.633328;;, + 64;3; -1.438651,-0.139216,-3.633328;;, + 65;3; -1.438651,-0.139216,-3.633328;;, + 66;3; -1.438651,-0.139216,-3.633328;;, + 67;3; -1.438651,-0.139216,-3.633328;;, + 68;3; -1.438651,-0.139216,-3.633328;;, + 69;3; -1.438651,-0.139216,-3.633328;;, + 70;3; -1.438651,-0.139216,-3.633328;;, + 71;3; -1.438651,-0.139216,-3.633328;;, + 72;3; -1.438651,-0.139216,-3.633328;;, + 73;3; -1.438651,-0.139216,-3.633328;;, + 74;3; -1.438651,-0.139216,-3.633328;;, + 75;3; -1.438651,-0.139216,-3.633328;;, + 76;3; -1.438651,-0.139216,-3.633328;;, + 77;3; -1.438651,-0.139216,-3.633328;;, + 78;3; -1.438651,-0.139216,-3.633328;;, + 79;3; -1.438651,-0.139216,-3.633328;;, + 80;3; -1.438651,-0.139216,-3.633328;;, + 81;3; -1.438651,-0.139216,-3.633328;;, + 82;3; -1.438651,-0.139216,-3.633328;;, + 83;3; -1.438651,-0.139216,-3.633328;;, + 84;3; -1.438651,-0.139216,-3.633328;;, + 85;3; -1.438651,-0.139216,-3.633328;;, + 86;3; -1.438651,-0.139216,-3.633328;;, + 87;3; -1.438651,-0.139216,-3.633328;;, + 88;3; -1.438651,-0.139216,-3.633328;;, + 89;3; -1.438651,-0.139216,-3.633328;;, + 90;3; -1.438651,-0.139216,-3.633328;;, + 91;3; -1.438651,-0.139216,-3.633328;;, + 92;3; -1.438651,-0.139216,-3.633328;;, + 93;3; -1.438651,-0.139216,-3.633328;;, + 94;3; -1.438651,-0.139216,-3.633328;;, + 95;3; -1.438651,-0.139216,-3.633328;;, + 96;3; -1.438651,-0.139216,-3.633328;;, + 97;3; -1.438651,-0.139216,-3.633328;;, + 98;3; -1.438651,-0.139216,-3.633328;;, + 99;3; -1.438651,-0.139216,-3.633328;;, + 100;3; -1.438651,-0.139216,-3.633328;;; + } + AnimationKey { //Rotation + 0; + 101; + 0;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; -0.000000, 1.000000, 0.000000,-0.000000;;, + 81;4; -0.023017, 0.996971,-0.000000,-0.000000;;, + 82;4; -0.087830, 0.988440,-0.000000,-0.000000;;, + 83;4; -0.171026, 0.977486,-0.000000,-0.000000;;, + 84;4; -0.235816, 0.968955,-0.000000,-0.000000;;, + 85;4; -0.258819, 0.965926,-0.000000,-0.000000;;, + 86;4; -0.247344, 0.965926,-0.000000,-0.000000;;, + 87;4; -0.212807, 0.965926,-0.000000,-0.000000;;, + 88;4; -0.156652, 0.965926,-0.000000,-0.000000;;, + 89;4; -0.083204, 0.965926,-0.000000,-0.000000;;, + 90;4; -0.000000, 0.965926,-0.000000,-0.000000;;, + 91;4; 0.083204, 0.965926, 0.000000,-0.000000;;, + 92;4; 0.156652, 0.965926, 0.000000,-0.000000;;, + 93;4; 0.212807, 0.965926, 0.000000,-0.000000;;, + 94;4; 0.247343, 0.965926, 0.000000,-0.000000;;, + 95;4; 0.258819, 0.965926, 0.000000,-0.000000;;, + 96;4; 0.235815, 0.968955, 0.000000,-0.000000;;, + 97;4; 0.171026, 0.977486, 0.000000,-0.000000;;, + 98;4; 0.087830, 0.988440, 0.000000,-0.000000;;, + 99;4; 0.023017, 0.996971, 0.000000,-0.000000;;, + 100;4; -0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 101; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Head} + AnimationKey { //Position + 2; + 101; + 0;3; 0.000000, 4.052526, 3.788038;;, + 1;3; 0.000000, 4.052526, 3.788038;;, + 2;3; 0.000000, 4.052526, 3.788038;;, + 3;3; 0.000000, 4.052526, 3.788038;;, + 4;3; 0.000000, 4.052526, 3.788038;;, + 5;3; 0.000000, 4.052526, 3.788038;;, + 6;3; 0.000000, 4.052526, 3.788038;;, + 7;3; 0.000000, 4.052526, 3.788038;;, + 8;3; 0.000000, 4.052526, 3.788038;;, + 9;3; 0.000000, 4.052526, 3.788038;;, + 10;3; 0.000000, 4.052526, 3.788038;;, + 11;3; 0.000000, 4.052526, 3.788038;;, + 12;3; 0.000000, 4.052526, 3.788038;;, + 13;3; 0.000000, 4.052526, 3.788038;;, + 14;3; 0.000000, 4.052526, 3.788038;;, + 15;3; 0.000000, 4.052526, 3.788038;;, + 16;3; 0.000000, 4.052526, 3.788038;;, + 17;3; 0.000000, 4.052526, 3.788038;;, + 18;3; 0.000000, 4.052526, 3.788038;;, + 19;3; 0.000000, 4.052526, 3.788038;;, + 20;3; 0.000000, 4.052526, 3.788038;;, + 21;3; 0.000000, 4.052526, 3.788038;;, + 22;3; 0.000000, 4.052526, 3.788038;;, + 23;3; 0.000000, 4.052526, 3.788038;;, + 24;3; 0.000000, 4.052526, 3.788038;;, + 25;3; 0.000000, 4.052526, 3.788038;;, + 26;3; 0.000000, 4.052526, 3.788038;;, + 27;3; 0.000000, 4.052526, 3.788038;;, + 28;3; 0.000000, 4.052526, 3.788038;;, + 29;3; 0.000000, 4.052526, 3.788038;;, + 30;3; 0.000000, 4.052526, 3.788038;;, + 31;3; 0.000000, 4.052526, 3.788038;;, + 32;3; 0.000000, 4.052526, 3.788038;;, + 33;3; 0.000000, 4.052526, 3.788038;;, + 34;3; 0.000000, 4.052526, 3.788038;;, + 35;3; 0.000000, 4.052526, 3.788038;;, + 36;3; 0.000000, 4.052526, 3.788038;;, + 37;3; 0.000000, 4.052526, 3.788038;;, + 38;3; 0.000000, 4.052526, 3.788038;;, + 39;3; 0.000000, 4.052526, 3.788038;;, + 40;3; 0.000000, 4.052526, 3.788038;;, + 41;3; 0.000000, 4.052526, 3.788038;;, + 42;3; 0.000000, 4.052526, 3.788038;;, + 43;3; 0.000000, 4.052526, 3.788038;;, + 44;3; 0.000000, 4.052526, 3.788038;;, + 45;3; 0.000000, 4.052526, 3.788038;;, + 46;3; 0.000000, 4.052526, 3.788038;;, + 47;3; 0.000000, 4.052526, 3.788038;;, + 48;3; 0.000000, 4.052526, 3.788038;;, + 49;3; 0.000000, 4.052526, 3.788038;;, + 50;3; 0.000000, 4.052526, 3.788038;;, + 51;3; 0.000000, 4.052526, 3.788038;;, + 52;3; 0.000000, 4.052526, 3.788038;;, + 53;3; 0.000000, 4.052526, 3.788038;;, + 54;3; 0.000000, 4.052526, 3.788038;;, + 55;3; 0.000000, 4.052526, 3.788038;;, + 56;3; 0.000000, 4.052526, 3.788038;;, + 57;3; 0.000000, 4.052526, 3.788038;;, + 58;3; 0.000000, 4.052526, 3.788038;;, + 59;3; 0.000000, 4.052526, 3.788038;;, + 60;3; 0.000000, 4.052526, 3.788038;;, + 61;3; 0.000000, 4.052526, 3.788038;;, + 62;3; 0.000000, 4.052526, 3.788038;;, + 63;3; 0.000000, 4.052526, 3.788038;;, + 64;3; 0.000000, 4.052526, 3.788038;;, + 65;3; 0.000000, 4.052526, 3.788038;;, + 66;3; 0.000000, 4.052526, 3.788038;;, + 67;3; 0.000000, 4.052526, 3.788038;;, + 68;3; 0.000000, 4.052526, 3.788038;;, + 69;3; 0.000000, 4.052526, 3.788038;;, + 70;3; 0.000000, 4.052526, 3.788038;;, + 71;3; 0.000000, 4.052526, 3.788038;;, + 72;3; 0.000000, 4.052526, 3.788038;;, + 73;3; 0.000000, 4.052526, 3.788038;;, + 74;3; 0.000000, 4.052526, 3.788038;;, + 75;3; 0.000000, 4.052526, 3.788038;;, + 76;3; 0.000000, 4.052526, 3.788038;;, + 77;3; 0.000000, 4.052526, 3.788038;;, + 78;3; 0.000000, 4.052526, 3.788038;;, + 79;3; 0.000000, 4.052526, 3.788038;;, + 80;3; 0.000000, 4.052526, 3.788038;;, + 81;3; 0.000000, 4.052526, 3.788038;;, + 82;3; 0.000000, 4.052526, 3.788038;;, + 83;3; 0.000000, 4.052526, 3.788038;;, + 84;3; 0.000000, 4.052526, 3.788038;;, + 85;3; 0.000000, 4.052526, 3.788038;;, + 86;3; 0.000000, 4.052526, 3.788038;;, + 87;3; 0.000000, 4.052526, 3.788038;;, + 88;3; 0.000000, 4.052526, 3.788038;;, + 89;3; 0.000000, 4.052526, 3.788038;;, + 90;3; 0.000000, 4.052526, 3.788038;;, + 91;3; 0.000000, 4.052526, 3.788038;;, + 92;3; 0.000000, 4.052526, 3.788038;;, + 93;3; 0.000000, 4.052526, 3.788038;;, + 94;3; 0.000000, 4.052526, 3.788038;;, + 95;3; 0.000000, 4.052526, 3.788038;;, + 96;3; 0.000000, 4.052526, 3.788038;;, + 97;3; 0.000000, 4.052526, 3.788038;;, + 98;3; 0.000000, 4.052526, 3.788038;;, + 99;3; 0.000000, 4.052526, 3.788038;;, + 100;3; 0.000000, 4.052526, 3.788038;;; + } + AnimationKey { //Rotation + 0; + 101; + 0;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 1;4; -0.000000,-0.000000, 0.706989, 0.707223;;, + 2;4; -0.000000,-0.000000, 0.706631, 0.707576;;, + 3;4; -0.000000,-0.000000, 0.706034, 0.708164;;, + 4;4; -0.000000,-0.000000, 0.705202, 0.708983;;, + 5;4; -0.000000,-0.000000, 0.704147, 0.710022;;, + 6;4; -0.000000,-0.000000, 0.702890, 0.711259;;, + 7;4; -0.000000,-0.000000, 0.701461, 0.712663;;, + 8;4; -0.000000,-0.000000, 0.699901, 0.714196;;, + 9;4; -0.000000,-0.000000, 0.698257, 0.715808;;, + 10;4; -0.000000,-0.000000, 0.696584, 0.717447;;, + 11;4; -0.000000,-0.000000, 0.694937, 0.719057;;, + 12;4; -0.000000,-0.000000, 0.693372, 0.720585;;, + 13;4; -0.000000,-0.000000, 0.691936, 0.721982;;, + 14;4; -0.000000,-0.000000, 0.690669, 0.723209;;, + 15;4; -0.000000,-0.000000, 0.689603, 0.724237;;, + 16;4; -0.000000,-0.000000, 0.688758, 0.725043;;, + 17;4; -0.000000,-0.000000, 0.688146, 0.725617;;, + 18;4; -0.000000,-0.000000, 0.687773, 0.725954;;, + 19;4; -0.000000,-0.000000, 0.687638, 0.726054;;, + 20;4; -0.000000,-0.000000, 0.687896, 0.725759;;, + 21;4; -0.000000,-0.000000, 0.688709, 0.724905;;, + 22;4; -0.000000,-0.000000, 0.690081, 0.723488;;, + 23;4; -0.000000,-0.000000, 0.692002, 0.721519;;, + 24;4; -0.000000,-0.000000, 0.694448, 0.719020;;, + 25;4; -0.000000,-0.000000, 0.697377, 0.716035;;, + 26;4; -0.000000,-0.000000, 0.700729, 0.712626;;, + 27;4; -0.000000,-0.000000, 0.704421, 0.708875;;, + 28;4; -0.000000,-0.000000, 0.708352, 0.704885;;, + 29;4; -0.000000,-0.000000, 0.712408, 0.700772;;, + 30;4; -0.000000,-0.000000, 0.716464, 0.696660;;, + 31;4; -0.000000,-0.000000, 0.720399, 0.692673;;, + 32;4; -0.000000,-0.000000, 0.724097, 0.688928;;, + 33;4; -0.000000,-0.000000, 0.727457, 0.685527;;, + 34;4; -0.000000,-0.000000, 0.730396, 0.682552;;, + 35;4; -0.000000,-0.000000, 0.732854, 0.680065;;, + 36;4; -0.000000,-0.000000, 0.734788, 0.678108;;, + 37;4; -0.000000,-0.000000, 0.736174, 0.676706;;, + 38;4; -0.000000,-0.000000, 0.737003, 0.675868;;, + 39;4; -0.000000,-0.000000, 0.737277, 0.675590;;, + 40;4; -0.000000,-0.000000, 0.737111, 0.675764;;, + 41;4; -0.000000,-0.000000, 0.736609, 0.676289;;, + 42;4; -0.000000,-0.000000, 0.735768, 0.677167;;, + 43;4; -0.000000,-0.000000, 0.734596, 0.678392;;, + 44;4; -0.000000,-0.000000, 0.733105, 0.679949;;, + 45;4; -0.000000,-0.000000, 0.731323, 0.681811;;, + 46;4; -0.000000,-0.000000, 0.729285, 0.683939;;, + 47;4; -0.000000,-0.000000, 0.727042, 0.686283;;, + 48;4; -0.000000,-0.000000, 0.724654, 0.688777;;, + 49;4; -0.000000,-0.000000, 0.722192, 0.691349;;, + 50;4; -0.000000,-0.000000, 0.719730, 0.693920;;, + 51;4; -0.000000,-0.000000, 0.717343, 0.696414;;, + 52;4; -0.000000,-0.000000, 0.715099, 0.698758;;, + 53;4; -0.000000,-0.000000, 0.713062, 0.700886;;, + 54;4; -0.000000,-0.000000, 0.711279, 0.702749;;, + 55;4; -0.000000,-0.000000, 0.709789, 0.704305;;, + 56;4; -0.000000,-0.000000, 0.708616, 0.705530;;, + 57;4; -0.000000,-0.000000, 0.707776, 0.706408;;, + 58;4; -0.000000,-0.000000, 0.707273, 0.706933;;, + 59;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 60;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 61;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 62;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 63;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 64;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 65;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 66;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 67;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 68;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 69;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 70;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 71;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 72;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 73;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 74;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 75;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 76;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 77;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 78;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 79;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 80;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 81;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 82;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 83;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 84;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 85;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 86;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 87;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 88;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 89;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 90;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 91;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 92;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 93;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 94;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 95;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 96;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 97;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 98;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 99;4; -0.000000,-0.000000, 0.707107, 0.707107;;, + 100;4; -0.000000,-0.000000, 0.707107, 0.707107;;; + } + AnimationKey { //Scale + 1; + 101; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {sheep_shaved} + AnimationKey { //Position + 2; + 101; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 101; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 101; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs/models/mobs_spider.png b/mods/mobs/models/mobs_spider.png new file mode 100644 index 0000000..2b992d1 Binary files /dev/null and b/mods/mobs/models/mobs_spider.png differ diff --git a/mods/mobs/models/mobs_spider.x b/mods/mobs/models/mobs_spider.x new file mode 100644 index 0000000..b0a95ca --- /dev/null +++ b/mods/mobs/models/mobs_spider.x @@ -0,0 +1,6110 @@ +xof 0303txt 0032 + +template AnimTicksPerSecond { + <9E415A43-7BA6-4a73-8743-B73D47E88476> + DWORD AnimTicksPerSecond; +} + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + -0.000000, 1.000000, 0.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature_Bone { + FrameTransformMatrix { + 0.000000,-0.000000,-1.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -0.250000, 0.000000, 0.450000, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.550000,-0.000000, 1.000000;; + } + } // End of Armature_Bone_001 + Frame Armature_Bone_002 { + FrameTransformMatrix { + -0.000000,-0.000000,-1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.995258, 0.000000, 1.000000;; + } + } // End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.230000,-0.350000, 1.000000;; + } + } // End of Armature_Bone_003 + Frame Armature_Bone_004 { + FrameTransformMatrix { + -0.000000,-1.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.230000, 0.350000, 1.000000;; + } + } // End of Armature_Bone_004 + Frame Armature_Bone_005 { + FrameTransformMatrix { + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.900000,-0.350000, 1.000000;; + } + } // End of Armature_Bone_005 + Frame Armature_Bone_006 { + FrameTransformMatrix { + -0.000000,-1.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.900000, 0.350000, 1.000000;; + } + } // End of Armature_Bone_006 + Frame Armature_Bone_007 { + FrameTransformMatrix { + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.230000,-0.350000, 1.000000;; + } + } // End of Armature_Bone_007 + Frame Armature_Bone_008 { + FrameTransformMatrix { + -0.000000,-1.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.230000, 0.350000, 1.000000;; + } + } // End of Armature_Bone_008 + Frame Armature_Bone_009 { + FrameTransformMatrix { + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.670000,-0.350000, 1.000000;; + } + } // End of Armature_Bone_009 + Frame Armature_Bone_010 { + FrameTransformMatrix { + -0.000000,-1.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.670000, 0.350000, 1.000000;; + } + } // End of Armature_Bone_010 + } // End of Armature_Bone + Frame Group8 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { // Group8 mesh + 396; + -1.021228; 2.035352; 0.360000;, + -0.841228; 0.300332; 0.360000;, + -1.021228; 0.300332; 0.360000;, + -0.841228; 0.300332; 0.360000;, + -1.021228; 2.035352; 0.360000;, + -0.841228; 2.035352; 0.360000;, + -1.021228; 2.035352; 0.360000;, + -0.841228; 2.035352; 0.540000;, + -0.841228; 2.035352; 0.360000;, + -0.841228; 2.035352; 0.540000;, + -1.021228; 2.035352; 0.360000;, + -1.021228; 2.035352; 0.540000;, + -1.021228; 2.035352; 0.360000;, + -1.021228; 0.300332; 0.540000;, + -1.021228; 2.035352; 0.540000;, + -1.021228; 0.300332; 0.540000;, + -1.021228; 2.035352; 0.360000;, + -1.021228; 0.300332; 0.360000;, + -0.841228; 0.300332; 0.360000;, + -1.021228; 0.300332; 0.540000;, + -1.021228; 0.300332; 0.360000;, + -1.021228; 0.300332; 0.540000;, + -0.841228; 0.300332; 0.360000;, + -0.841228; 0.300332; 0.540000;, + -0.841228; 0.300332; 0.360000;, + -0.841228; 2.035352; 0.540000;, + -0.841228; 0.300332; 0.540000;, + -0.841228; 2.035352; 0.540000;, + -0.841228; 0.300332; 0.360000;, + -0.841228; 2.035352; 0.360000;, + -0.841228; 2.035352; 0.540000;, + -1.021228; 0.300332; 0.540000;, + -0.841228; 0.300332; 0.540000;, + -1.021228; 0.300332; 0.540000;, + -0.841228; 2.035352; 0.540000;, + -1.021228; 2.035352; 0.540000;, + -1.246228;-0.499668; 0.900000;, + -2.546228;-0.499668; 0.000000;, + -1.246228;-0.499668; 0.000000;, + -2.546228;-0.499668; 0.000000;, + -1.246228;-0.499668; 0.900000;, + -2.546228;-0.499668; 0.900000;, + -1.246228;-0.499668; 0.900000;, + -2.546228; 0.550332; 0.900000;, + -2.546228;-0.499668; 0.900000;, + -2.546228; 0.550332; 0.900000;, + -1.246228;-0.499668; 0.900000;, + -1.246228; 0.550332; 0.900000;, + -1.246228;-0.499668; 0.900000;, + -1.246228; 0.550332; 0.000000;, + -1.246228; 0.550332; 0.900000;, + -1.246228; 0.550332; 0.000000;, + -1.246228;-0.499668; 0.900000;, + -1.246228;-0.499668; 0.000000;, + -2.546228;-0.499668; 0.000000;, + -1.246228; 0.550332; 0.000000;, + -1.246228;-0.499668; 0.000000;, + -1.246228; 0.550332; 0.000000;, + -2.546228;-0.499668; 0.000000;, + -2.546228; 0.550332; 0.000000;, + -2.546228;-0.499668; 0.000000;, + -2.546228; 0.550332; 0.900000;, + -2.546228; 0.550332; 0.000000;, + -2.546228; 0.550332; 0.900000;, + -2.546228;-0.499668; 0.000000;, + -2.546228;-0.499668; 0.900000;, + -2.546228; 0.550332; 0.900000;, + -1.246228; 0.550332; 0.000000;, + -2.546228; 0.550332; 0.000000;, + -1.246228; 0.550332; 0.000000;, + -2.546228; 0.550332; 0.900000;, + -1.246228; 0.550332; 0.900000;, + -0.581228; 2.035352; 0.360000;, + -0.401228; 0.300332; 0.360000;, + -0.581228; 0.300332; 0.360000;, + -0.401228; 0.300332; 0.360000;, + -0.581228; 2.035352; 0.360000;, + -0.401228; 2.035352; 0.360000;, + -0.581228; 2.035352; 0.360000;, + -0.401228; 2.035352; 0.540000;, + -0.401228; 2.035352; 0.360000;, + -0.401228; 2.035352; 0.540000;, + -0.581228; 2.035352; 0.360000;, + -0.581228; 2.035352; 0.540000;, + -0.581228; 2.035352; 0.360000;, + -0.581228; 0.300332; 0.540000;, + -0.581228; 2.035352; 0.540000;, + -0.581228; 0.300332; 0.540000;, + -0.581228; 2.035352; 0.360000;, + -0.581228; 0.300332; 0.360000;, + -0.401228; 0.300332; 0.360000;, + -0.581228; 0.300332; 0.540000;, + -0.581228; 0.300332; 0.360000;, + -0.581228; 0.300332; 0.540000;, + -0.401228; 0.300332; 0.360000;, + -0.401228; 0.300332; 0.540000;, + -0.401228; 0.300332; 0.360000;, + -0.401228; 2.035352; 0.540000;, + -0.401228; 0.300332; 0.540000;, + -0.401228; 2.035352; 0.540000;, + -0.401228; 0.300332; 0.360000;, + -0.401228; 2.035352; 0.360000;, + -0.401228; 2.035352; 0.540000;, + -0.581228; 0.300332; 0.540000;, + -0.401228; 0.300332; 0.540000;, + -0.581228; 0.300332; 0.540000;, + -0.401228; 2.035352; 0.540000;, + -0.581228; 2.035352; 0.540000;, + 0.481772;-0.349668; 0.800000;, + -0.246228;-0.349668; 0.100000;, + 0.481772;-0.349668; 0.100000;, + -0.246228;-0.349668; 0.100000;, + 0.481772;-0.349668; 0.800000;, + -0.246228;-0.349668; 0.800000;, + 0.481772;-0.349668; 0.800000;, + -0.246228; 0.350332; 0.800000;, + -0.246228;-0.349668; 0.800000;, + -0.246228; 0.350332; 0.800000;, + 0.481772;-0.349668; 0.800000;, + 0.481772; 0.350332; 0.800000;, + 0.481772;-0.349668; 0.800000;, + 0.481772; 0.350332; 0.100000;, + 0.481772; 0.350332; 0.800000;, + 0.481772; 0.350332; 0.100000;, + 0.481772;-0.349668; 0.800000;, + 0.481772;-0.349668; 0.100000;, + -0.246228;-0.349668; 0.100000;, + 0.481772; 0.350332; 0.100000;, + 0.481772;-0.349668; 0.100000;, + 0.481772; 0.350332; 0.100000;, + -0.246228;-0.349668; 0.100000;, + -0.246228; 0.350332; 0.100000;, + -0.246228;-0.349668; 0.100000;, + -0.246228; 0.350332; 0.800000;, + -0.246228; 0.350332; 0.100000;, + -0.246228; 0.350332; 0.800000;, + -0.246228;-0.349668; 0.100000;, + -0.246228;-0.349668; 0.800000;, + -0.246228; 0.350332; 0.800000;, + 0.481772; 0.350332; 0.100000;, + -0.246228; 0.350332; 0.100000;, + 0.481772; 0.350332; 0.100000;, + -0.246228; 0.350332; 0.800000;, + 0.481772; 0.350332; 0.800000;, + 0.558772; 2.035352; 0.360000;, + 0.738772; 0.300332; 0.360000;, + 0.558772; 0.300332; 0.360000;, + 0.738772; 0.300332; 0.360000;, + 0.558772; 2.035352; 0.360000;, + 0.738772; 2.035352; 0.360000;, + 0.558772; 2.035352; 0.360000;, + 0.738772; 2.035352; 0.540000;, + 0.738772; 2.035352; 0.360000;, + 0.738772; 2.035352; 0.540000;, + 0.558772; 2.035352; 0.360000;, + 0.558772; 2.035352; 0.540000;, + 0.558772; 2.035352; 0.360000;, + 0.558772; 0.300332; 0.540000;, + 0.558772; 2.035352; 0.540000;, + 0.558772; 0.300332; 0.540000;, + 0.558772; 2.035352; 0.360000;, + 0.558772; 0.300332; 0.360000;, + 0.738772; 0.300332; 0.360000;, + 0.558772; 0.300332; 0.540000;, + 0.558772; 0.300332; 0.360000;, + 0.558772; 0.300332; 0.540000;, + 0.738772; 0.300332; 0.360000;, + 0.738772; 0.300332; 0.540000;, + 0.738772; 0.300332; 0.360000;, + 0.738772; 2.035352; 0.540000;, + 0.738772; 0.300332; 0.540000;, + 0.738772; 2.035352; 0.540000;, + 0.738772; 0.300332; 0.360000;, + 0.738772; 2.035352; 0.360000;, + 0.738772; 2.035352; 0.540000;, + 0.558772; 0.300332; 0.540000;, + 0.738772; 0.300332; 0.540000;, + 0.558772; 0.300332; 0.540000;, + 0.738772; 2.035352; 0.540000;, + 0.558772; 2.035352; 0.540000;, + -0.581228;-0.299668; 0.360000;, + -0.401228;-2.034688; 0.360000;, + -0.581228;-2.034688; 0.360000;, + -0.401228;-2.034688; 0.360000;, + -0.581228;-0.299668; 0.360000;, + -0.401228;-0.299668; 0.360000;, + -0.581228;-0.299668; 0.360000;, + -0.401228;-0.299668; 0.540000;, + -0.401228;-0.299668; 0.360000;, + -0.401228;-0.299668; 0.540000;, + -0.581228;-0.299668; 0.360000;, + -0.581228;-0.299668; 0.540000;, + -0.581228;-0.299668; 0.360000;, + -0.581228;-2.034688; 0.540000;, + -0.581228;-0.299668; 0.540000;, + -0.581228;-2.034688; 0.540000;, + -0.581228;-0.299668; 0.360000;, + -0.581228;-2.034688; 0.360000;, + -0.401228;-2.034688; 0.360000;, + -0.581228;-2.034688; 0.540000;, + -0.581228;-2.034688; 0.360000;, + -0.581228;-2.034688; 0.540000;, + -0.401228;-2.034688; 0.360000;, + -0.401228;-2.034688; 0.540000;, + -0.401228;-2.034688; 0.360000;, + -0.401228;-0.299668; 0.540000;, + -0.401228;-2.034688; 0.540000;, + -0.401228;-0.299668; 0.540000;, + -0.401228;-2.034688; 0.360000;, + -0.401228;-0.299668; 0.360000;, + -0.401228;-0.299668; 0.540000;, + -0.581228;-2.034688; 0.540000;, + -0.401228;-2.034688; 0.540000;, + -0.581228;-2.034688; 0.540000;, + -0.401228;-0.299668; 0.540000;, + -0.581228;-0.299668; 0.540000;, + 0.558772;-0.299668; 0.360000;, + 0.738772;-2.034688; 0.360000;, + 0.558772;-2.034688; 0.360000;, + 0.738772;-2.034688; 0.360000;, + 0.558772;-0.299668; 0.360000;, + 0.738772;-0.299668; 0.360000;, + 0.558772;-0.299668; 0.360000;, + 0.738772;-0.299668; 0.540000;, + 0.738772;-0.299668; 0.360000;, + 0.738772;-0.299668; 0.540000;, + 0.558772;-0.299668; 0.360000;, + 0.558772;-0.299668; 0.540000;, + 0.558772;-0.299668; 0.360000;, + 0.558772;-2.034688; 0.540000;, + 0.558772;-0.299668; 0.540000;, + 0.558772;-2.034688; 0.540000;, + 0.558772;-0.299668; 0.360000;, + 0.558772;-2.034688; 0.360000;, + 0.738772;-2.034688; 0.360000;, + 0.558772;-2.034688; 0.540000;, + 0.558772;-2.034688; 0.360000;, + 0.558772;-2.034688; 0.540000;, + 0.738772;-2.034688; 0.360000;, + 0.738772;-2.034688; 0.540000;, + 0.738772;-2.034688; 0.360000;, + 0.738772;-0.299668; 0.540000;, + 0.738772;-2.034688; 0.540000;, + 0.738772;-0.299668; 0.540000;, + 0.738772;-2.034688; 0.360000;, + 0.738772;-0.299668; 0.360000;, + 0.738772;-0.299668; 0.540000;, + 0.558772;-2.034688; 0.540000;, + 0.738772;-2.034688; 0.540000;, + 0.558772;-2.034688; 0.540000;, + 0.738772;-0.299668; 0.540000;, + 0.558772;-0.299668; 0.540000;, + -1.021228;-0.299668; 0.360000;, + -0.841228;-2.034688; 0.360000;, + -1.021228;-2.034688; 0.360000;, + -0.841228;-2.034688; 0.360000;, + -1.021228;-0.299668; 0.360000;, + -0.841228;-0.299668; 0.360000;, + -1.021228;-0.299668; 0.360000;, + -0.841228;-0.299668; 0.540000;, + -0.841228;-0.299668; 0.360000;, + -0.841228;-0.299668; 0.540000;, + -1.021228;-0.299668; 0.360000;, + -1.021228;-0.299668; 0.540000;, + -1.021228;-0.299668; 0.360000;, + -1.021228;-2.034688; 0.540000;, + -1.021228;-0.299668; 0.540000;, + -1.021228;-2.034688; 0.540000;, + -1.021228;-0.299668; 0.360000;, + -1.021228;-2.034688; 0.360000;, + -0.841228;-2.034688; 0.360000;, + -1.021228;-2.034688; 0.540000;, + -1.021228;-2.034688; 0.360000;, + -1.021228;-2.034688; 0.540000;, + -0.841228;-2.034688; 0.360000;, + -0.841228;-2.034688; 0.540000;, + -0.841228;-2.034688; 0.360000;, + -0.841228;-0.299668; 0.540000;, + -0.841228;-2.034688; 0.540000;, + -0.841228;-0.299668; 0.540000;, + -0.841228;-2.034688; 0.360000;, + -0.841228;-0.299668; 0.360000;, + -0.841228;-0.299668; 0.540000;, + -1.021228;-2.034688; 0.540000;, + -0.841228;-2.034688; 0.540000;, + -1.021228;-2.034688; 0.540000;, + -0.841228;-0.299668; 0.540000;, + -1.021228;-0.299668; 0.540000;, + 0.898772;-0.299668; 0.360000;, + 1.078772;-2.034688; 0.360000;, + 0.898772;-2.034688; 0.360000;, + 1.078772;-2.034688; 0.360000;, + 0.898772;-0.299668; 0.360000;, + 1.078772;-0.299668; 0.360000;, + 0.898772;-0.299668; 0.360000;, + 1.078772;-0.299668; 0.540000;, + 1.078772;-0.299668; 0.360000;, + 1.078772;-0.299668; 0.540000;, + 0.898772;-0.299668; 0.360000;, + 0.898772;-0.299668; 0.540000;, + 0.898772;-0.299668; 0.360000;, + 0.898772;-2.034688; 0.540000;, + 0.898772;-0.299668; 0.540000;, + 0.898772;-2.034688; 0.540000;, + 0.898772;-0.299668; 0.360000;, + 0.898772;-2.034688; 0.360000;, + 1.078772;-2.034688; 0.360000;, + 0.898772;-2.034688; 0.540000;, + 0.898772;-2.034688; 0.360000;, + 0.898772;-2.034688; 0.540000;, + 1.078772;-2.034688; 0.360000;, + 1.078772;-2.034688; 0.540000;, + 1.078772;-2.034688; 0.360000;, + 1.078772;-0.299668; 0.540000;, + 1.078772;-2.034688; 0.540000;, + 1.078772;-0.299668; 0.540000;, + 1.078772;-2.034688; 0.360000;, + 1.078772;-0.299668; 0.360000;, + 1.078772;-0.299668; 0.540000;, + 0.898772;-2.034688; 0.540000;, + 1.078772;-2.034688; 0.540000;, + 0.898772;-2.034688; 0.540000;, + 1.078772;-0.299668; 0.540000;, + 0.898772;-0.299668; 0.540000;, + 0.898772; 2.035352; 0.360000;, + 1.078772; 0.300332; 0.360000;, + 0.898772; 0.300332; 0.360000;, + 1.078772; 0.300332; 0.360000;, + 0.898772; 2.035352; 0.360000;, + 1.078772; 2.035352; 0.360000;, + 0.898772; 2.035352; 0.360000;, + 1.078772; 2.035352; 0.540000;, + 1.078772; 2.035352; 0.360000;, + 1.078772; 2.035352; 0.540000;, + 0.898772; 2.035352; 0.360000;, + 0.898772; 2.035352; 0.540000;, + 0.898772; 2.035352; 0.360000;, + 0.898772; 0.300332; 0.540000;, + 0.898772; 2.035352; 0.540000;, + 0.898772; 0.300332; 0.540000;, + 0.898772; 2.035352; 0.360000;, + 0.898772; 0.300332; 0.360000;, + 1.078772; 0.300332; 0.360000;, + 0.898772; 0.300332; 0.540000;, + 0.898772; 0.300332; 0.360000;, + 0.898772; 0.300332; 0.540000;, + 1.078772; 0.300332; 0.360000;, + 1.078772; 0.300332; 0.540000;, + 1.078772; 0.300332; 0.360000;, + 1.078772; 2.035352; 0.540000;, + 1.078772; 0.300332; 0.540000;, + 1.078772; 2.035352; 0.540000;, + 1.078772; 0.300332; 0.360000;, + 1.078772; 2.035352; 0.360000;, + 1.078772; 2.035352; 0.540000;, + 0.898772; 0.300332; 0.540000;, + 1.078772; 0.300332; 0.540000;, + 0.898772; 0.300332; 0.540000;, + 1.078772; 2.035352; 0.540000;, + 0.898772; 2.035352; 0.540000;, + 2.153772;-0.424668; 0.875000;, + 1.303772;-0.424668; 0.025000;, + 2.153772;-0.424668; 0.025000;, + 1.303772;-0.424668; 0.025000;, + 2.153772;-0.424668; 0.875000;, + 1.303772;-0.424668; 0.875000;, + 2.153772;-0.424668; 0.875000;, + 1.303772; 0.425332; 0.875000;, + 1.303772;-0.424668; 0.875000;, + 1.303772; 0.425332; 0.875000;, + 2.153772;-0.424668; 0.875000;, + 2.153772; 0.425332; 0.875000;, + 2.153772;-0.424668; 0.875000;, + 2.153772; 0.425332; 0.025000;, + 2.153772; 0.425332; 0.875000;, + 2.153772; 0.425332; 0.025000;, + 2.153772;-0.424668; 0.875000;, + 2.153772;-0.424668; 0.025000;, + 1.303772;-0.424668; 0.025000;, + 2.153772; 0.425332; 0.025000;, + 2.153772;-0.424668; 0.025000;, + 2.153772; 0.425332; 0.025000;, + 1.303772;-0.424668; 0.025000;, + 1.303772; 0.425332; 0.025000;, + 1.303772;-0.424668; 0.025000;, + 1.303772; 0.425332; 0.875000;, + 1.303772; 0.425332; 0.025000;, + 1.303772; 0.425332; 0.875000;, + 1.303772;-0.424668; 0.025000;, + 1.303772;-0.424668; 0.875000;, + 1.303772; 0.425332; 0.875000;, + 2.153772; 0.425332; 0.025000;, + 1.303772; 0.425332; 0.025000;, + 2.153772; 0.425332; 0.025000;, + 1.303772; 0.425332; 0.875000;, + 2.153772; 0.425332; 0.875000;; + 132; + 3;2,1,0;, + 3;5,4,3;, + 3;8,7,6;, + 3;11,10,9;, + 3;14,13,12;, + 3;17,16,15;, + 3;20,19,18;, + 3;23,22,21;, + 3;26,25,24;, + 3;29,28,27;, + 3;32,31,30;, + 3;35,34,33;, + 3;38,37,36;, + 3;41,40,39;, + 3;44,43,42;, + 3;47,46,45;, + 3;50,49,48;, + 3;53,52,51;, + 3;56,55,54;, + 3;59,58,57;, + 3;62,61,60;, + 3;65,64,63;, + 3;68,67,66;, + 3;71,70,69;, + 3;74,73,72;, + 3;77,76,75;, + 3;80,79,78;, + 3;83,82,81;, + 3;86,85,84;, + 3;89,88,87;, + 3;92,91,90;, + 3;95,94,93;, + 3;98,97,96;, + 3;101,100,99;, + 3;104,103,102;, + 3;107,106,105;, + 3;110,109,108;, + 3;113,112,111;, + 3;116,115,114;, + 3;119,118,117;, + 3;122,121,120;, + 3;125,124,123;, + 3;128,127,126;, + 3;131,130,129;, + 3;134,133,132;, + 3;137,136,135;, + 3;140,139,138;, + 3;143,142,141;, + 3;146,145,144;, + 3;149,148,147;, + 3;152,151,150;, + 3;155,154,153;, + 3;158,157,156;, + 3;161,160,159;, + 3;164,163,162;, + 3;167,166,165;, + 3;170,169,168;, + 3;173,172,171;, + 3;176,175,174;, + 3;179,178,177;, + 3;182,181,180;, + 3;185,184,183;, + 3;188,187,186;, + 3;191,190,189;, + 3;194,193,192;, + 3;197,196,195;, + 3;200,199,198;, + 3;203,202,201;, + 3;206,205,204;, + 3;209,208,207;, + 3;212,211,210;, + 3;215,214,213;, + 3;218,217,216;, + 3;221,220,219;, + 3;224,223,222;, + 3;227,226,225;, + 3;230,229,228;, + 3;233,232,231;, + 3;236,235,234;, + 3;239,238,237;, + 3;242,241,240;, + 3;245,244,243;, + 3;248,247,246;, + 3;251,250,249;, + 3;254,253,252;, + 3;257,256,255;, + 3;260,259,258;, + 3;263,262,261;, + 3;266,265,264;, + 3;269,268,267;, + 3;272,271,270;, + 3;275,274,273;, + 3;278,277,276;, + 3;281,280,279;, + 3;284,283,282;, + 3;287,286,285;, + 3;290,289,288;, + 3;293,292,291;, + 3;296,295,294;, + 3;299,298,297;, + 3;302,301,300;, + 3;305,304,303;, + 3;308,307,306;, + 3;311,310,309;, + 3;314,313,312;, + 3;317,316,315;, + 3;320,319,318;, + 3;323,322,321;, + 3;326,325,324;, + 3;329,328,327;, + 3;332,331,330;, + 3;335,334,333;, + 3;338,337,336;, + 3;341,340,339;, + 3;344,343,342;, + 3;347,346,345;, + 3;350,349,348;, + 3;353,352,351;, + 3;356,355,354;, + 3;359,358,357;, + 3;362,361,360;, + 3;365,364,363;, + 3;368,367,366;, + 3;371,370,369;, + 3;374,373,372;, + 3;377,376,375;, + 3;380,379,378;, + 3;383,382,381;, + 3;386,385,384;, + 3;389,388,387;, + 3;392,391,390;, + 3;395,394,393;; + MeshNormals { // Group8 normals + 132; + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;; + 132; + 3;0,0,0;, + 3;1,1,1;, + 3;2,2,2;, + 3;3,3,3;, + 3;4,4,4;, + 3;5,5,5;, + 3;6,6,6;, + 3;7,7,7;, + 3;8,8,8;, + 3;9,9,9;, + 3;10,10,10;, + 3;11,11,11;, + 3;12,12,12;, + 3;13,13,13;, + 3;14,14,14;, + 3;15,15,15;, + 3;16,16,16;, + 3;17,17,17;, + 3;18,18,18;, + 3;19,19,19;, + 3;20,20,20;, + 3;21,21,21;, + 3;22,22,22;, + 3;23,23,23;, + 3;24,24,24;, + 3;25,25,25;, + 3;26,26,26;, + 3;27,27,27;, + 3;28,28,28;, + 3;29,29,29;, + 3;30,30,30;, + 3;31,31,31;, + 3;32,32,32;, + 3;33,33,33;, + 3;34,34,34;, + 3;35,35,35;, + 3;36,36,36;, + 3;37,37,37;, + 3;38,38,38;, + 3;39,39,39;, + 3;40,40,40;, + 3;41,41,41;, + 3;42,42,42;, + 3;43,43,43;, + 3;44,44,44;, + 3;45,45,45;, + 3;46,46,46;, + 3;47,47,47;, + 3;48,48,48;, + 3;49,49,49;, + 3;50,50,50;, + 3;51,51,51;, + 3;52,52,52;, + 3;53,53,53;, + 3;54,54,54;, + 3;55,55,55;, + 3;56,56,56;, + 3;57,57,57;, + 3;58,58,58;, + 3;59,59,59;, + 3;60,60,60;, + 3;61,61,61;, + 3;62,62,62;, + 3;63,63,63;, + 3;64,64,64;, + 3;65,65,65;, + 3;66,66,66;, + 3;67,67,67;, + 3;68,68,68;, + 3;69,69,69;, + 3;70,70,70;, + 3;71,71,71;, + 3;72,72,72;, + 3;73,73,73;, + 3;74,74,74;, + 3;75,75,75;, + 3;76,76,76;, + 3;77,77,77;, + 3;78,78,78;, + 3;79,79,79;, + 3;80,80,80;, + 3;81,81,81;, + 3;82,82,82;, + 3;83,83,83;, + 3;84,84,84;, + 3;85,85,85;, + 3;86,86,86;, + 3;87,87,87;, + 3;88,88,88;, + 3;89,89,89;, + 3;90,90,90;, + 3;91,91,91;, + 3;92,92,92;, + 3;93,93,93;, + 3;94,94,94;, + 3;95,95,95;, + 3;96,96,96;, + 3;97,97,97;, + 3;98,98,98;, + 3;99,99,99;, + 3;100,100,100;, + 3;101,101,101;, + 3;102,102,102;, + 3;103,103,103;, + 3;104,104,104;, + 3;105,105,105;, + 3;106,106,106;, + 3;107,107,107;, + 3;108,108,108;, + 3;109,109,109;, + 3;110,110,110;, + 3;111,111,111;, + 3;112,112,112;, + 3;113,113,113;, + 3;114,114,114;, + 3;115,115,115;, + 3;116,116,116;, + 3;117,117,117;, + 3;118,118,118;, + 3;119,119,119;, + 3;120,120,120;, + 3;121,121,121;, + 3;122,122,122;, + 3;123,123,123;, + 3;124,124,124;, + 3;125,125,125;, + 3;126,126,126;, + 3;127,127,127;, + 3;128,128,128;, + 3;129,129,129;, + 3;130,130,130;, + 3;131,131,131;; + } // End of Group8 normals + MeshTextureCoords { // Group8 UV coordinates + 396; + 0.791890; 0.042023;, + 0.769813; 0.261376;, + 0.792562; 0.261306;, + 0.769813; 0.261376;, + 0.791890; 0.042023;, + 0.769140; 0.042093;, + 0.654039; 0.687069;, + 0.631220; 0.664389;, + 0.631290; 0.687139;, + 0.631220; 0.664389;, + 0.654039; 0.687069;, + 0.653970; 0.664319;, + 0.840589; 0.506007;, + 0.818513; 0.286654;, + 0.817840; 0.505937;, + 0.818513; 0.286654;, + 0.840589; 0.506007;, + 0.841262; 0.286723;, + 0.761662; 0.579451;, + 0.738843; 0.602130;, + 0.761592; 0.602200;, + 0.738843; 0.602130;, + 0.761662; 0.579451;, + 0.738912; 0.579381;, + 0.889289; 0.261376;, + 0.867212; 0.042023;, + 0.866540; 0.261306;, + 0.867212; 0.042023;, + 0.889289; 0.261376;, + 0.889962; 0.042093;, + 0.915912; 0.261376;, + 0.937989; 0.042023;, + 0.915239; 0.042093;, + 0.937989; 0.042023;, + 0.915912; 0.261376;, + 0.938662; 0.261306;, + 0.175538; 0.625391;, + 0.291573; 0.794100;, + 0.292089; 0.625748;, + 0.291573; 0.794100;, + 0.175538; 0.625391;, + 0.175022; 0.793742;, + 0.016501; 0.983071;, + 0.154432; 0.813366;, + 0.017022; 0.812944;, + 0.154432; 0.813366;, + 0.016501; 0.983071;, + 0.153910; 0.983492;, + 0.330007; 0.992934;, + 0.452425; 0.850997;, + 0.330444; 0.850622;, + 0.452425; 0.850997;, + 0.330007; 0.992934;, + 0.451989; 0.993308;, + 0.312934; 0.813407;, + 0.174973; 0.985292;, + 0.313460; 0.984867;, + 0.174973; 0.985292;, + 0.312934; 0.813407;, + 0.174447; 0.813831;, + 0.436312; 0.657161;, + 0.316831; 0.795693;, + 0.435886; 0.796059;, + 0.316831; 0.795693;, + 0.436312; 0.657161;, + 0.317258; 0.656796;, + 0.033508; 0.622901;, + 0.154544; 0.796589;, + 0.154010; 0.622532;, + 0.154544; 0.796589;, + 0.033508; 0.622901;, + 0.034042; 0.796959;, + 0.623041; 0.391917;, + 0.646463; 0.172704;, + 0.623714; 0.172634;, + 0.646463; 0.172704;, + 0.623041; 0.391917;, + 0.645790; 0.391987;, + 0.569101; 0.820105;, + 0.546281; 0.797425;, + 0.546351; 0.820174;, + 0.546281; 0.797425;, + 0.569101; 0.820105;, + 0.569031; 0.797355;, + 0.333405; 0.388448;, + 0.311328; 0.169095;, + 0.310655; 0.388379;, + 0.311328; 0.169095;, + 0.333405; 0.388448;, + 0.334078; 0.169165;, + 0.750233; 0.664389;, + 0.727414; 0.687069;, + 0.750163; 0.687139;, + 0.727414; 0.687069;, + 0.750233; 0.664389;, + 0.727483; 0.664320;, + 0.079845; 0.356852;, + 0.057769; 0.137499;, + 0.057096; 0.356782;, + 0.057769; 0.137499;, + 0.079845; 0.356852;, + 0.080518; 0.137569;, + 0.743863; 0.286723;, + 0.720440; 0.505937;, + 0.743190; 0.506007;, + 0.720440; 0.505937;, + 0.743863; 0.286723;, + 0.721113; 0.286654;, + 0.049423; 0.374174;, + 0.137611; 0.466455;, + 0.137893; 0.374445;, + 0.137611; 0.466455;, + 0.049423; 0.374174;, + 0.049141; 0.466183;, + 0.174944; 0.469990;, + 0.263132; 0.377710;, + 0.174662; 0.377981;, + 0.263132; 0.377710;, + 0.174944; 0.469990;, + 0.263415; 0.469719;, + 0.580273; 0.622991;, + 0.670973; 0.532845;, + 0.580550; 0.532567;, + 0.670973; 0.532845;, + 0.580273; 0.622991;, + 0.670696; 0.623268;, + 0.529615; 0.406926;, + 0.440862; 0.498664;, + 0.529333; 0.498935;, + 0.440862; 0.498664;, + 0.529615; 0.406926;, + 0.441145; 0.406654;, + 0.638413; 0.497521;, + 0.550214; 0.408779;, + 0.549943; 0.497250;, + 0.550214; 0.408779;, + 0.638413; 0.497521;, + 0.638685; 0.409050;, + 0.313837; 0.406042;, + 0.402590; 0.497780;, + 0.402308; 0.405770;, + 0.402590; 0.497780;, + 0.313837; 0.406042;, + 0.314120; 0.498051;, + 0.122426; 0.356782;, + 0.145849; 0.137569;, + 0.123099; 0.137499;, + 0.145849; 0.137569;, + 0.122426; 0.356782;, + 0.145176; 0.356852;, + 0.605943; 0.687069;, + 0.583123; 0.664389;, + 0.583193; 0.687139;, + 0.583123; 0.664389;, + 0.605943; 0.687069;, + 0.605873; 0.664319;, + 0.398735; 0.388448;, + 0.376659; 0.169095;, + 0.375986; 0.388379;, + 0.376659; 0.169095;, + 0.398735; 0.388448;, + 0.399408; 0.169165;, + 0.702136; 0.735166;, + 0.679317; 0.712486;, + 0.679387; 0.735236;, + 0.679317; 0.712486;, + 0.702136; 0.735166;, + 0.702066; 0.712416;, + 0.259206; 0.356852;, + 0.237129; 0.137499;, + 0.236457; 0.356782;, + 0.237129; 0.137499;, + 0.259206; 0.356852;, + 0.259879; 0.137569;, + 0.771603; 0.768078;, + 0.748180; 0.987291;, + 0.770930; 0.987361;, + 0.748180; 0.987291;, + 0.771603; 0.768078;, + 0.748853; 0.768008;, + 0.796880; 0.987291;, + 0.820302; 0.768078;, + 0.797553; 0.768008;, + 0.820302; 0.768078;, + 0.796880; 0.987291;, + 0.819630; 0.987361;, + 0.654039; 0.712486;, + 0.631220; 0.735166;, + 0.653970; 0.735236;, + 0.631220; 0.735166;, + 0.654039; 0.712486;, + 0.631290; 0.712416;, + 0.531771; 0.388448;, + 0.509694; 0.169095;, + 0.509021; 0.388379;, + 0.509694; 0.169095;, + 0.531771; 0.388448;, + 0.532444; 0.169165;, + 0.521004; 0.820105;, + 0.498185; 0.797425;, + 0.498254; 0.820174;, + 0.498185; 0.797425;, + 0.521004; 0.820105;, + 0.520934; 0.797355;, + 0.965729; 0.987361;, + 0.943652; 0.768008;, + 0.942979; 0.987291;, + 0.943652; 0.768008;, + 0.965729; 0.987361;, + 0.966402; 0.768078;, + 0.171799; 0.356852;, + 0.193876; 0.137499;, + 0.171126; 0.137569;, + 0.193876; 0.137499;, + 0.171799; 0.356852;, + 0.194548; 0.356782;, + 0.557721; 0.391917;, + 0.581143; 0.172704;, + 0.558394; 0.172634;, + 0.581143; 0.172704;, + 0.557721; 0.391917;, + 0.580471; 0.391987;, + 0.798330; 0.687069;, + 0.775510; 0.664389;, + 0.775580; 0.687139;, + 0.775510; 0.664389;, + 0.798330; 0.687069;, + 0.798260; 0.664320;, + 0.937989; 0.506007;, + 0.915912; 0.286654;, + 0.915239; 0.505937;, + 0.915912; 0.286654;, + 0.937989; 0.506007;, + 0.938662; 0.286723;, + 0.713565; 0.554034;, + 0.690746; 0.531354;, + 0.690816; 0.554103;, + 0.690746; 0.531354;, + 0.713565; 0.554034;, + 0.713495; 0.531284;, + 0.840589; 0.261376;, + 0.818513; 0.042023;, + 0.817840; 0.261306;, + 0.818513; 0.042023;, + 0.840589; 0.261376;, + 0.841262; 0.042093;, + 0.722903; 0.768078;, + 0.699481; 0.987291;, + 0.722230; 0.987361;, + 0.699481; 0.987291;, + 0.722903; 0.768078;, + 0.700153; 0.768008;, + 0.791890; 0.286654;, + 0.769813; 0.506007;, + 0.792562; 0.505937;, + 0.769813; 0.506007;, + 0.791890; 0.286654;, + 0.769140; 0.286723;, + 0.750233; 0.735166;, + 0.727414; 0.712486;, + 0.727483; 0.735236;, + 0.727414; 0.712486;, + 0.750233; 0.735166;, + 0.750163; 0.712416;, + 0.868329; 0.987361;, + 0.846253; 0.768008;, + 0.845580; 0.987292;, + 0.846253; 0.768008;, + 0.868329; 0.987361;, + 0.869002; 0.768078;, + 0.761662; 0.531354;, + 0.738843; 0.554034;, + 0.761592; 0.554103;, + 0.738843; 0.554034;, + 0.761662; 0.531354;, + 0.738912; 0.531284;, + 0.694490; 0.261376;, + 0.672413; 0.042023;, + 0.671741; 0.261306;, + 0.672413; 0.042023;, + 0.694490; 0.261376;, + 0.695163; 0.042093;, + 0.964612; 0.261376;, + 0.986689; 0.042023;, + 0.963939; 0.042093;, + 0.986689; 0.042023;, + 0.964612; 0.261376;, + 0.987361; 0.261306;, + 0.671741; 0.505937;, + 0.695163; 0.286723;, + 0.672413; 0.286654;, + 0.695163; 0.286723;, + 0.671741; 0.505937;, + 0.694490; 0.506007;, + 0.679387; 0.664320;, + 0.702066; 0.687139;, + 0.702136; 0.664389;, + 0.702066; 0.687139;, + 0.679387; 0.664320;, + 0.679317; 0.687069;, + 0.889289; 0.506007;, + 0.867212; 0.286654;, + 0.866540; 0.505937;, + 0.867212; 0.286654;, + 0.889289; 0.506007;, + 0.889962; 0.286723;, + 0.583193; 0.712416;, + 0.605873; 0.735236;, + 0.605943; 0.712486;, + 0.605873; 0.735236;, + 0.583193; 0.712416;, + 0.583123; 0.735166;, + 0.743190; 0.261376;, + 0.721113; 0.042023;, + 0.720440; 0.261306;, + 0.721113; 0.042023;, + 0.743190; 0.261376;, + 0.743863; 0.042093;, + 0.625504; 0.768078;, + 0.602081; 0.987292;, + 0.624831; 0.987361;, + 0.602081; 0.987292;, + 0.625504; 0.768078;, + 0.602754; 0.768008;, + 0.986689; 0.286654;, + 0.964612; 0.506006;, + 0.987361; 0.505937;, + 0.964612; 0.506006;, + 0.986689; 0.286654;, + 0.963939; 0.286723;, + 0.472907; 0.820105;, + 0.450088; 0.797425;, + 0.450158; 0.820174;, + 0.450088; 0.797425;, + 0.472907; 0.820105;, + 0.472837; 0.797355;, + 0.447435; 0.388448;, + 0.425358; 0.169095;, + 0.424686; 0.388379;, + 0.425358; 0.169095;, + 0.447435; 0.388448;, + 0.448108; 0.169165;, + 0.713565; 0.597276;, + 0.690746; 0.619956;, + 0.713495; 0.620026;, + 0.690746; 0.619956;, + 0.713565; 0.597276;, + 0.690816; 0.597207;, + 0.917029; 0.987361;, + 0.894952; 0.768008;, + 0.894280; 0.987292;, + 0.894952; 0.768008;, + 0.917029; 0.987361;, + 0.917702; 0.768078;, + 0.651454; 0.987361;, + 0.673531; 0.768008;, + 0.650781; 0.768078;, + 0.673531; 0.768008;, + 0.651454; 0.987361;, + 0.674203; 0.987291;, + 0.171126; 0.607116;, + 0.278884; 0.500017;, + 0.171456; 0.499687;, + 0.278884; 0.500017;, + 0.171126; 0.607116;, + 0.278555; 0.607445;, + 0.561052; 0.780245;, + 0.453953; 0.657919;, + 0.453623; 0.779871;, + 0.453953; 0.657919;, + 0.561052; 0.780245;, + 0.561381; 0.658294;, + 0.440634; 0.530577;, + 0.560163; 0.638335;, + 0.560531; 0.530906;, + 0.560163; 0.638335;, + 0.440634; 0.530577;, + 0.440266; 0.638005;, + 0.469375; 0.879603;, + 0.576474; 0.987361;, + 0.576804; 0.879933;, + 0.576474; 0.987361;, + 0.469375; 0.879603;, + 0.469046; 0.987032;, + 0.145519; 0.607445;, + 0.038420; 0.499687;, + 0.038090; 0.607116;, + 0.038420; 0.499687;, + 0.145519; 0.607445;, + 0.145849; 0.500017;, + 0.418084; 0.531284;, + 0.310985; 0.639042;, + 0.418413; 0.638712;, + 0.310985; 0.639042;, + 0.418084; 0.531284;, + 0.310655; 0.531613;; + } // End of Group8 UV coordinates + MeshMaterialList { // Group8 material list + 1; + 132; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material FrontCol { + 0.800000; 0.800000; 0.800000; 1.000000;; + 96.078431; + 0.164706; 0.164706; 0.164706;; + 0.000000; 0.000000; 0.000000;; + } + } // End of Group8 material list + XSkinMeshHeader { + 1; + 3; + 11; + } + SkinWeights { + "Armature_Bone_010"; + 36; + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + -0.920000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_010 skin weights + SkinWeights { + "Armature_Bone_008"; + 36; + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + -0.480000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_008 skin weights + SkinWeights { + "Armature_Bone_009"; + 36; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + 0.920000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_009 skin weights + SkinWeights { + "Armature_Bone"; + 36; + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.450000, 0.250000,-0.000000, 1.000000;; + } // End of Armature_Bone skin weights + SkinWeights { + "Armature_Bone_001"; + 36; + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000, 1.000000, 0.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -0.000000,-1.300000,-0.450000, 1.000000;; + } // End of Armature_Bone_001 skin weights + SkinWeights { + "Armature_Bone_002"; + 36; + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.000000,-1.000000,-0.000000, 0.000000, + 1.000000,-0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.245258,-0.450000, 1.000000;; + } // End of Armature_Bone_002 skin weights + SkinWeights { + "Armature_Bone_003"; + 36; + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.980000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_003 skin weights + SkinWeights { + "Armature_Bone_004"; + 36; + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.980000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_004 skin weights + SkinWeights { + "Armature_Bone_005"; + 36; + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.650000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_005 skin weights + SkinWeights { + "Armature_Bone_006"; + 36; + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.650000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_006 skin weights + SkinWeights { + "Armature_Bone_007"; + 36; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + 0.480000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_007 skin weights + } // End of Group8 mesh + } // End of Group8 + } // End of Armature +} // End of Root +AnimTicksPerSecond { + 24; +} +AnimationSet Global { + Animation { + {Armature} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 1;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 2;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 3;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 4;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 5;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 6;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 7;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 8;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 9;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 10;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 11;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 12;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 13;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 14;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 15;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 16;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 17;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 18;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 19;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 20;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 21;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 22;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 23;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 24;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 25;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 26;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 27;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 28;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 29;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 30;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 31;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 32;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 33;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 34;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 35;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 36;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 37;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 38;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 39;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 40;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 41;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 42;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 43;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 44;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 45;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 46;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 47;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 48;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 49;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 50;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 51;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 52;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 53;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 54;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 55;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 56;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 57;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 58;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 59;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 60;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 61;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 62;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 63;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 64;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 65;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 66;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 67;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 68;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 69;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 70;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 71;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 72;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 73;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 74;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 75;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 76;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 77;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 78;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 79;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 80;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 81;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 82;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 83;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 84;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 85;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 86;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 87;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 88;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 89;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 90;4;-0.707107, 0.000000, 0.000000, 0.707107;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Armature_Bone} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 1;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 2;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 3;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 4;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 5;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 6;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 7;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 8;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 9;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 10;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 11;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 12;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 13;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 14;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 15;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 16;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 17;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 18;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 19;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 20;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 21;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 22;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 23;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 24;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 25;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 26;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 27;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 28;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 29;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 30;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 31;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 32;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 33;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 34;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 35;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 36;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 37;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 38;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 39;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 40;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 41;4;-0.499506, 0.499506, 0.500473,-0.500473;;, + 42;4;-0.498019, 0.498019, 0.501896,-0.501896;;, + 43;4;-0.495602, 0.495601, 0.504211,-0.504211;;, + 44;4;-0.492439, 0.492439, 0.507238,-0.507238;;, + 45;4;-0.488857, 0.488857, 0.510667,-0.510667;;, + 46;4;-0.485275, 0.485275, 0.514096,-0.514096;;, + 47;4;-0.482113, 0.482113, 0.517123,-0.517123;;, + 48;4;-0.479695, 0.479695, 0.519437,-0.519437;;, + 49;4;-0.478209, 0.478208, 0.520861,-0.520861;;, + 50;4;-0.477714, 0.477714, 0.521334,-0.521334;;, + 51;4;-0.478682, 0.478681, 0.520367,-0.520367;;, + 52;4;-0.481592, 0.481592, 0.517456,-0.517457;;, + 53;4;-0.486324, 0.486324, 0.512725,-0.512725;;, + 54;4;-0.492513, 0.492513, 0.506535,-0.506535;;, + 55;4;-0.499524, 0.499524, 0.499524,-0.499524;;, + 56;4;-0.506535, 0.506535, 0.492513,-0.492513;;, + 57;4;-0.512725, 0.512725, 0.486324,-0.486324;;, + 58;4;-0.517457, 0.517456, 0.481592,-0.481592;;, + 59;4;-0.520367, 0.520367, 0.478681,-0.478681;;, + 60;4;-0.521334, 0.521334, 0.477714,-0.477714;;, + 61;4;-0.521286, 0.521286, 0.477768,-0.477768;;, + 62;4;-0.521135, 0.521135, 0.477934,-0.477934;;, + 63;4;-0.520874, 0.520874, 0.478222,-0.478222;;, + 64;4;-0.520494, 0.520494, 0.478639,-0.478639;;, + 65;4;-0.519987, 0.519987, 0.479193,-0.479193;;, + 66;4;-0.519348, 0.519348, 0.479888,-0.479888;;, + 67;4;-0.518574, 0.518574, 0.480726,-0.480726;;, + 68;4;-0.517665, 0.517665, 0.481706,-0.481706;;, + 69;4;-0.516623, 0.516623, 0.482823,-0.482823;;, + 70;4;-0.515456, 0.515456, 0.484068,-0.484068;;, + 71;4;-0.514175, 0.514175, 0.485426,-0.485426;;, + 72;4;-0.512794, 0.512794, 0.486883,-0.486883;;, + 73;4;-0.511327, 0.511327, 0.488420,-0.488420;;, + 74;4;-0.509793, 0.509793, 0.490019,-0.490019;;, + 75;4;-0.508208, 0.508208, 0.491660,-0.491660;;, + 76;4;-0.506587, 0.506587, 0.493328,-0.493328;;, + 77;4;-0.504945, 0.504945, 0.495007,-0.495007;;, + 78;4;-0.503293, 0.503293, 0.496685,-0.496686;;, + 79;4;-0.501642, 0.501642, 0.498352,-0.498352;;, + 80;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 81;4;-0.498096, 0.498096, 0.501883,-0.501883;;, + 82;4;-0.495674, 0.495674, 0.504242,-0.504242;;, + 83;4;-0.492810, 0.492810, 0.507002,-0.507002;;, + 84;4;-0.489661, 0.489661, 0.510016,-0.510016;;, + 85;4;-0.486463, 0.486462, 0.513062,-0.513062;;, + 86;4;-0.483491, 0.483491, 0.515880,-0.515880;;, + 87;4;-0.481000, 0.481000, 0.518236,-0.518236;;, + 88;4;-0.479167, 0.479167, 0.519965,-0.519965;;, + 89;4;-0.478071, 0.478071, 0.520998,-0.520998;;, + 90;4;-0.477714, 0.477714, 0.521334,-0.521334;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.250000, 0.000000, 0.450000;;, + 1;3;-0.250000, 0.000000, 0.450000;;, + 2;3;-0.250000, 0.000000, 0.450000;;, + 3;3;-0.250000, 0.000000, 0.450000;;, + 4;3;-0.250000, 0.000000, 0.450000;;, + 5;3;-0.250000, 0.000000, 0.450000;;, + 6;3;-0.250000, 0.000000, 0.450000;;, + 7;3;-0.250000, 0.000000, 0.450000;;, + 8;3;-0.250000, 0.000000, 0.450000;;, + 9;3;-0.250000, 0.000000, 0.450000;;, + 10;3;-0.250000, 0.000000, 0.450000;;, + 11;3;-0.250000, 0.000000, 0.450000;;, + 12;3;-0.250000, 0.000000, 0.450000;;, + 13;3;-0.250000, 0.000000, 0.450000;;, + 14;3;-0.250000, 0.000000, 0.450000;;, + 15;3;-0.250000, 0.000000, 0.450000;;, + 16;3;-0.250000, 0.000000, 0.450000;;, + 17;3;-0.250000, 0.000000, 0.450000;;, + 18;3;-0.250000, 0.000000, 0.450000;;, + 19;3;-0.250000, 0.000000, 0.450000;;, + 20;3;-0.250000, 0.000000, 0.450000;;, + 21;3;-0.250000, 0.000000, 0.450000;;, + 22;3;-0.250000, 0.000000, 0.450000;;, + 23;3;-0.250000, 0.000000, 0.450000;;, + 24;3;-0.250000, 0.000000, 0.450000;;, + 25;3;-0.250000, 0.000000, 0.450000;;, + 26;3;-0.250000, 0.000000, 0.450000;;, + 27;3;-0.250000, 0.000000, 0.450000;;, + 28;3;-0.250000, 0.000000, 0.450000;;, + 29;3;-0.250000, 0.000000, 0.450000;;, + 30;3;-0.250000, 0.000000, 0.450000;;, + 31;3;-0.250000, 0.000000, 0.450000;;, + 32;3;-0.250000, 0.000000, 0.450000;;, + 33;3;-0.250000, 0.000000, 0.450000;;, + 34;3;-0.250000, 0.000000, 0.450000;;, + 35;3;-0.250000, 0.000000, 0.450000;;, + 36;3;-0.250000, 0.000000, 0.450000;;, + 37;3;-0.250000, 0.000000, 0.450000;;, + 38;3;-0.250000, 0.000000, 0.450000;;, + 39;3;-0.250000, 0.000000, 0.450000;;, + 40;3;-0.250000, 0.000000, 0.450000;;, + 41;3;-0.256652,-0.000000, 0.450000;;, + 42;3;-0.276671,-0.000000, 0.450000;;, + 43;3;-0.309217,-0.000000, 0.450000;;, + 44;3;-0.351785,-0.000000, 0.450000;;, + 45;3;-0.400005,-0.000000, 0.450000;;, + 46;3;-0.448223,-0.000000, 0.450000;;, + 47;3;-0.490788,-0.000000, 0.450000;;, + 48;3;-0.523332,-0.000000, 0.450000;;, + 49;3;-0.543349,-0.000000, 0.450000;;, + 50;3;-0.550000, 0.000000, 0.450000;;, + 51;3;-0.538915, 0.000000, 0.450665;;, + 52;3;-0.505555, 0.000000, 0.452667;;, + 53;3;-0.451317, 0.000000, 0.455921;;, + 54;3;-0.380379, 0.000000, 0.460178;;, + 55;3;-0.300018, 0.000000, 0.465000;;, + 56;3;-0.219653, 0.000000, 0.469822;;, + 57;3;-0.148705, 0.000000, 0.474079;;, + 58;3;-0.094456, 0.000000, 0.477333;;, + 59;3;-0.061088, 0.000000, 0.479335;;, + 60;3;-0.050000, 0.000000, 0.480000;;, + 61;3;-0.050255, 0.000000, 0.479835;;, + 62;3;-0.051081, 0.000000, 0.479335;;, + 63;3;-0.052583, 0.000000, 0.478499;;, + 64;3;-0.054869, 0.000000, 0.477333;;, + 65;3;-0.058060, 0.000000, 0.475851;;, + 66;3;-0.062274, 0.000000, 0.474079;;, + 67;3;-0.067628, 0.000000, 0.472053;;, + 68;3;-0.074226, 0.000000, 0.469822;;, + 69;3;-0.082149, 0.000000, 0.467448;;, + 70;3;-0.091450, 0.000000, 0.465000;;, + 71;3;-0.102149, 0.000000, 0.462552;;, + 72;3;-0.114226, 0.000000, 0.460178;;, + 73;3;-0.127628, 0.000000, 0.457947;;, + 74;3;-0.142274, 0.000000, 0.455921;;, + 75;3;-0.158060, 0.000000, 0.454149;;, + 76;3;-0.174869, 0.000000, 0.452667;;, + 77;3;-0.192583, 0.000000, 0.451501;;, + 78;3;-0.211082, 0.000000, 0.450665;;, + 79;3;-0.230255,-0.000000, 0.450165;;, + 80;3;-0.250000,-0.000000, 0.450000;;, + 81;3;-0.273894,-0.000000, 0.450000;;, + 82;3;-0.305344,-0.000000, 0.450000;;, + 83;3;-0.343336,-0.000000, 0.450000;;, + 84;3;-0.385731,-0.000000, 0.450000;;, + 85;3;-0.429259,-0.000000, 0.450000;;, + 86;3;-0.470015,-0.000000, 0.450000;;, + 87;3;-0.504371,-0.000000, 0.450000;;, + 88;3;-0.529776,-0.000000, 0.450000;;, + 89;3;-0.545022,-0.000000, 0.450000;;, + 90;3;-0.550000, 0.000000, 0.450000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 1;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 2;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 3;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 4;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 5;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 6;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 7;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 8;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 9;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 10;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 11;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 12;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 13;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 14;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 15;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 16;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 17;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 18;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 19;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 20;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 21;4;-0.707085,-0.001645,-0.707085, 0.001645;;, + 22;4;-0.707025,-0.006280,-0.707025, 0.006280;;, + 23;4;-0.706947,-0.012230,-0.706947, 0.012230;;, + 24;4;-0.706886,-0.016865,-0.706886, 0.016865;;, + 25;4;-0.706865,-0.018510,-0.706865, 0.018510;;, + 26;4;-0.706886,-0.017462,-0.706886, 0.017462;;, + 27;4;-0.706947,-0.014250,-0.706947, 0.014249;;, + 28;4;-0.707025,-0.009423,-0.707025, 0.009423;;, + 29;4;-0.707085,-0.004300,-0.707085, 0.004300;;, + 30;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 31;4;-0.707085, 0.004299,-0.707085,-0.004300;;, + 32;4;-0.707025, 0.009423,-0.707025,-0.009423;;, + 33;4;-0.706947, 0.014249,-0.706947,-0.014249;;, + 34;4;-0.706886, 0.017462,-0.706886,-0.017462;;, + 35;4;-0.706865, 0.018510,-0.706865,-0.018510;;, + 36;4;-0.706886, 0.016864,-0.706886,-0.016865;;, + 37;4;-0.706947, 0.012230,-0.706947,-0.012230;;, + 38;4;-0.707025, 0.006280,-0.707025,-0.006280;;, + 39;4;-0.707085, 0.001645,-0.707085,-0.001645;;, + 40;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 41;4;-0.707092, 0.000684,-0.707092, 0.000684;;, + 42;4;-0.707047, 0.002742,-0.707047, 0.002742;;, + 43;4;-0.706974, 0.006088,-0.706974, 0.006088;;, + 44;4;-0.706879, 0.010464,-0.706879, 0.010464;;, + 45;4;-0.706770, 0.015422,-0.706770, 0.015422;;, + 46;4;-0.706662, 0.020379,-0.706662, 0.020380;;, + 47;4;-0.706567, 0.024756,-0.706567, 0.024756;;, + 48;4;-0.706494, 0.028102,-0.706494, 0.028102;;, + 49;4;-0.706449, 0.030160,-0.706449, 0.030160;;, + 50;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 51;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 52;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 53;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 54;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 55;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 56;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 57;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 58;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 59;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 60;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 61;4;-0.706438, 0.030673,-0.706438, 0.030674;;, + 62;4;-0.706449, 0.030160,-0.706449, 0.030160;;, + 63;4;-0.706468, 0.029301,-0.706468, 0.029301;;, + 64;4;-0.706494, 0.028102,-0.706494, 0.028102;;, + 65;4;-0.706527, 0.026578,-0.706527, 0.026578;;, + 66;4;-0.706567, 0.024756,-0.706567, 0.024756;;, + 67;4;-0.706612, 0.022673,-0.706612, 0.022673;;, + 68;4;-0.706662, 0.020379,-0.706662, 0.020380;;, + 69;4;-0.706716, 0.017939,-0.706716, 0.017939;;, + 70;4;-0.706770, 0.015422,-0.706770, 0.015422;;, + 71;4;-0.706825, 0.012905,-0.706825, 0.012905;;, + 72;4;-0.706879, 0.010464,-0.706879, 0.010464;;, + 73;4;-0.706929, 0.008171,-0.706929, 0.008171;;, + 74;4;-0.706974, 0.006088,-0.706974, 0.006088;;, + 75;4;-0.707014, 0.004265,-0.707014, 0.004265;;, + 76;4;-0.707047, 0.002742,-0.707047, 0.002742;;, + 77;4;-0.707073, 0.001543,-0.707073, 0.001543;;, + 78;4;-0.707092, 0.000684,-0.707092, 0.000684;;, + 79;4;-0.707103, 0.000170,-0.707103, 0.000170;;, + 80;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 81;4;-0.707092, 0.000684,-0.707092, 0.000684;;, + 82;4;-0.707047, 0.002742,-0.707047, 0.002742;;, + 83;4;-0.706974, 0.006088,-0.706974, 0.006088;;, + 84;4;-0.706879, 0.010464,-0.706879, 0.010464;;, + 85;4;-0.706770, 0.015422,-0.706770, 0.015422;;, + 86;4;-0.706662, 0.020379,-0.706662, 0.020379;;, + 87;4;-0.706567, 0.024756,-0.706567, 0.024756;;, + 88;4;-0.706494, 0.028102,-0.706494, 0.028102;;, + 89;4;-0.706449, 0.030160,-0.706449, 0.030160;;, + 90;4;-0.706434, 0.030843,-0.706434, 0.030844;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.650000, 0.000000;;, + 1;3;-0.000000, 0.650000, 0.000000;;, + 2;3;-0.000000, 0.650000, 0.000000;;, + 3;3;-0.000000, 0.650000, 0.000000;;, + 4;3;-0.000000, 0.650000, 0.000000;;, + 5;3;-0.000000, 0.650000, 0.000000;;, + 6;3;-0.000000, 0.650000, 0.000000;;, + 7;3;-0.000000, 0.650000, 0.000000;;, + 8;3;-0.000000, 0.650000, 0.000000;;, + 9;3;-0.000000, 0.650000, 0.000000;;, + 10;3;-0.000000, 0.650000, 0.000000;;, + 11;3;-0.000000, 0.650000, 0.000000;;, + 12;3;-0.000000, 0.650000, 0.000000;;, + 13;3;-0.000000, 0.650000, 0.000000;;, + 14;3;-0.000000, 0.650000, 0.000000;;, + 15;3;-0.000000, 0.650000, 0.000000;;, + 16;3;-0.000000, 0.650000, 0.000000;;, + 17;3;-0.000000, 0.650000, 0.000000;;, + 18;3;-0.000000, 0.650000, 0.000000;;, + 19;3;-0.000000, 0.650000, 0.000000;;, + 20;3;-0.000000, 0.650000, 0.000000;;, + 21;3;-0.000000, 0.650000, 0.000000;;, + 22;3;-0.000000, 0.650000, 0.000000;;, + 23;3;-0.000000, 0.650000, 0.000000;;, + 24;3;-0.000000, 0.650000, 0.000000;;, + 25;3;-0.000000, 0.650000, 0.000000;;, + 26;3;-0.000000, 0.650000, 0.000000;;, + 27;3;-0.000000, 0.650000, 0.000000;;, + 28;3;-0.000000, 0.650000, 0.000000;;, + 29;3;-0.000000, 0.650000, 0.000000;;, + 30;3;-0.000000, 0.650000, 0.000000;;, + 31;3;-0.000000, 0.650000, 0.000000;;, + 32;3;-0.000000, 0.650000, 0.000000;;, + 33;3;-0.000000, 0.650000, 0.000000;;, + 34;3;-0.000000, 0.650000, 0.000000;;, + 35;3;-0.000000, 0.650000, 0.000000;;, + 36;3;-0.000000, 0.650000, 0.000000;;, + 37;3;-0.000000, 0.650000, 0.000000;;, + 38;3;-0.000000, 0.650000, 0.000000;;, + 39;3;-0.000000, 0.650000, 0.000000;;, + 40;3;-0.000000, 0.650000, 0.000000;;, + 41;3; 0.000000, 0.650000, 0.000000;;, + 42;3; 0.000000, 0.650000, 0.000000;;, + 43;3; 0.000000, 0.650000, 0.000000;;, + 44;3;-0.000000, 0.650000, 0.000000;;, + 45;3;-0.000000, 0.650000, 0.000000;;, + 46;3;-0.000000, 0.650000,-0.000000;;, + 47;3; 0.000000, 0.650000, 0.000000;;, + 48;3; 0.000000, 0.650000,-0.000000;;, + 49;3; 0.000000, 0.650000,-0.000000;;, + 50;3; 0.000000, 0.650000,-0.000000;;, + 51;3; 0.000000, 0.650000,-0.000000;;, + 52;3;-0.000000, 0.650000, 0.000000;;, + 53;3; 0.000000, 0.650000,-0.000000;;, + 54;3;-0.000000, 0.650000,-0.000000;;, + 55;3;-0.000000, 0.650000,-0.000000;;, + 56;3; 0.000000, 0.650000,-0.000000;;, + 57;3; 0.000000, 0.650000,-0.000000;;, + 58;3;-0.000000, 0.650000,-0.000000;;, + 59;3; 0.000000, 0.650000,-0.000000;;, + 60;3;-0.000000, 0.650000,-0.000000;;, + 61;3; 0.000000, 0.650000,-0.000000;;, + 62;3;-0.000000, 0.650000, 0.000000;;, + 63;3; 0.000000, 0.650000,-0.000000;;, + 64;3; 0.000000, 0.650000, 0.000000;;, + 65;3;-0.000000, 0.650000, 0.000000;;, + 66;3;-0.000000, 0.650000,-0.000000;;, + 67;3;-0.000000, 0.650000,-0.000000;;, + 68;3;-0.000000, 0.650000, 0.000000;;, + 69;3;-0.000000, 0.650000,-0.000000;;, + 70;3;-0.000000, 0.650000, 0.000000;;, + 71;3; 0.000000, 0.650000,-0.000000;;, + 72;3;-0.000000, 0.650000,-0.000000;;, + 73;3;-0.000000, 0.650000,-0.000000;;, + 74;3;-0.000000, 0.650000, 0.000000;;, + 75;3; 0.000000, 0.650000, 0.000000;;, + 76;3;-0.000000, 0.650000,-0.000000;;, + 77;3;-0.000000, 0.650000, 0.000000;;, + 78;3; 0.000000, 0.650000,-0.000000;;, + 79;3;-0.000000, 0.650000, 0.000000;;, + 80;3;-0.000000, 0.650000, 0.000000;;, + 81;3;-0.000000, 0.650000, 0.000000;;, + 82;3;-0.000000, 0.650000, 0.000000;;, + 83;3; 0.000000, 0.650000,-0.000000;;, + 84;3;-0.000000, 0.650000, 0.000000;;, + 85;3; 0.000000, 0.650000,-0.000000;;, + 86;3;-0.000000, 0.650000, 0.000000;;, + 87;3;-0.000000, 0.650000,-0.000000;;, + 88;3; 0.000000, 0.650000,-0.000000;;, + 89;3; 0.000000, 0.650000,-0.000000;;, + 90;3; 0.000000, 0.650000,-0.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { // Rotation + 0; + 91; + 0;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 1;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 2;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 3;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 4;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 5;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 6;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 7;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 8;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 9;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 10;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 11;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 12;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 13;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 14;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 15;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 16;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 17;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 18;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 19;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 20;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 21;4; 0.001645,-0.707085, 0.001645, 0.707085;;, + 22;4; 0.006280,-0.707025, 0.006280, 0.707025;;, + 23;4; 0.012230,-0.706947, 0.012230, 0.706947;;, + 24;4; 0.016865,-0.706886, 0.016865, 0.706886;;, + 25;4; 0.018510,-0.706864, 0.018510, 0.706865;;, + 26;4; 0.017462,-0.706886, 0.017462, 0.706886;;, + 27;4; 0.014249,-0.706947, 0.014250, 0.706947;;, + 28;4; 0.009423,-0.707025, 0.009423, 0.707025;;, + 29;4; 0.004300,-0.707085, 0.004300, 0.707085;;, + 30;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 31;4;-0.004299,-0.707085,-0.004299, 0.707085;;, + 32;4;-0.009423,-0.707025,-0.009423, 0.707025;;, + 33;4;-0.014249,-0.706947,-0.014249, 0.706947;;, + 34;4;-0.017462,-0.706886,-0.017462, 0.706886;;, + 35;4;-0.018510,-0.706864,-0.018510, 0.706865;;, + 36;4;-0.016865,-0.706886,-0.016864, 0.706886;;, + 37;4;-0.012230,-0.706947,-0.012230, 0.706947;;, + 38;4;-0.006280,-0.707025,-0.006280, 0.707025;;, + 39;4;-0.001645,-0.707085,-0.001645, 0.707085;;, + 40;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 41;4; 0.001366,-0.707047,-0.001366, 0.707047;;, + 42;4; 0.005478,-0.706868,-0.005478, 0.706868;;, + 43;4; 0.012164,-0.706576,-0.012164, 0.706576;;, + 44;4; 0.020908,-0.706194,-0.020908, 0.706194;;, + 45;4; 0.030814,-0.705761,-0.030814, 0.705762;;, + 46;4; 0.040720,-0.705329,-0.040720, 0.705329;;, + 47;4; 0.049465,-0.704947,-0.049465, 0.704947;;, + 48;4; 0.056150,-0.704655,-0.056150, 0.704655;;, + 49;4; 0.060262,-0.704476,-0.060262, 0.704476;;, + 50;4; 0.061628,-0.704416,-0.061628, 0.704416;;, + 51;4; 0.060262,-0.704476,-0.060262, 0.704476;;, + 52;4; 0.056150,-0.704655,-0.056150, 0.704655;;, + 53;4; 0.049465,-0.704947,-0.049465, 0.704947;;, + 54;4; 0.040720,-0.705329,-0.040720, 0.705329;;, + 55;4; 0.030814,-0.705761,-0.030814, 0.705762;;, + 56;4; 0.020908,-0.706194,-0.020908, 0.706194;;, + 57;4; 0.012164,-0.706576,-0.012164, 0.706576;;, + 58;4; 0.005478,-0.706868,-0.005478, 0.706868;;, + 59;4; 0.001366,-0.707047,-0.001366, 0.707047;;, + 60;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 61;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 62;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 63;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 64;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 65;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 66;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 67;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 68;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 69;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 70;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 71;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 72;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 73;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 74;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 75;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 76;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 77;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 78;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 79;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 80;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 81;4; 0.001366,-0.707047,-0.001366, 0.707047;;, + 82;4; 0.005478,-0.706868,-0.005478, 0.706868;;, + 83;4; 0.012164,-0.706576,-0.012164, 0.706576;;, + 84;4; 0.020908,-0.706194,-0.020908, 0.706194;;, + 85;4; 0.030814,-0.705761,-0.030814, 0.705762;;, + 86;4; 0.040720,-0.705329,-0.040720, 0.705329;;, + 87;4; 0.049464,-0.704947,-0.049464, 0.704947;;, + 88;4; 0.056150,-0.704655,-0.056150, 0.704655;;, + 89;4; 0.060262,-0.704476,-0.060262, 0.704476;;, + 90;4; 0.061628,-0.704416,-0.061628, 0.704416;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.104742,-0.000000;;, + 1;3;-0.000000, 0.104742,-0.000000;;, + 2;3;-0.000000, 0.104742,-0.000000;;, + 3;3;-0.000000, 0.104742,-0.000000;;, + 4;3;-0.000000, 0.104742,-0.000000;;, + 5;3;-0.000000, 0.104742,-0.000000;;, + 6;3;-0.000000, 0.104742,-0.000000;;, + 7;3;-0.000000, 0.104742,-0.000000;;, + 8;3;-0.000000, 0.104742,-0.000000;;, + 9;3;-0.000000, 0.104742,-0.000000;;, + 10;3;-0.000000, 0.104742,-0.000000;;, + 11;3;-0.000000, 0.104742,-0.000000;;, + 12;3;-0.000000, 0.104742,-0.000000;;, + 13;3;-0.000000, 0.104742,-0.000000;;, + 14;3;-0.000000, 0.104742,-0.000000;;, + 15;3;-0.000000, 0.104742,-0.000000;;, + 16;3;-0.000000, 0.104742,-0.000000;;, + 17;3;-0.000000, 0.104742,-0.000000;;, + 18;3;-0.000000, 0.104742,-0.000000;;, + 19;3;-0.000000, 0.104742,-0.000000;;, + 20;3;-0.000000, 0.104742,-0.000000;;, + 21;3;-0.000000, 0.104742,-0.000000;;, + 22;3;-0.000000, 0.104742,-0.000000;;, + 23;3;-0.000000, 0.104742,-0.000000;;, + 24;3;-0.000000, 0.104742,-0.000000;;, + 25;3;-0.000000, 0.104742,-0.000000;;, + 26;3;-0.000000, 0.104742,-0.000000;;, + 27;3;-0.000000, 0.104742,-0.000000;;, + 28;3;-0.000000, 0.104742,-0.000000;;, + 29;3;-0.000000, 0.104742,-0.000000;;, + 30;3;-0.000000, 0.104742,-0.000000;;, + 31;3;-0.000000, 0.104742,-0.000000;;, + 32;3;-0.000000, 0.104742,-0.000000;;, + 33;3;-0.000000, 0.104742,-0.000000;;, + 34;3;-0.000000, 0.104742,-0.000000;;, + 35;3;-0.000000, 0.104742,-0.000000;;, + 36;3;-0.000000, 0.104742,-0.000000;;, + 37;3;-0.000000, 0.104742,-0.000000;;, + 38;3;-0.000000, 0.104742,-0.000000;;, + 39;3;-0.000000, 0.104742,-0.000000;;, + 40;3;-0.000000, 0.104742,-0.000000;;, + 41;3;-0.000000, 0.104742,-0.000000;;, + 42;3;-0.000000, 0.104742,-0.000000;;, + 43;3;-0.000000, 0.104742,-0.000000;;, + 44;3;-0.000000, 0.104742, 0.000000;;, + 45;3;-0.000000, 0.104742, 0.000000;;, + 46;3;-0.000000, 0.104742, 0.000000;;, + 47;3;-0.000000, 0.104742,-0.000000;;, + 48;3;-0.000000, 0.104742,-0.000000;;, + 49;3;-0.000000, 0.104742,-0.000000;;, + 50;3;-0.000000, 0.104742,-0.000000;;, + 51;3;-0.000000, 0.104742,-0.000000;;, + 52;3;-0.000000, 0.104742,-0.000000;;, + 53;3;-0.000000, 0.104742,-0.000000;;, + 54;3;-0.000000, 0.104742,-0.000000;;, + 55;3;-0.000000, 0.104742,-0.000000;;, + 56;3;-0.000000, 0.104742,-0.000000;;, + 57;3;-0.000000, 0.104742, 0.000000;;, + 58;3;-0.000000, 0.104742,-0.000000;;, + 59;3;-0.000000, 0.104742,-0.000000;;, + 60;3;-0.000000, 0.104742,-0.000000;;, + 61;3;-0.000000, 0.104742,-0.000000;;, + 62;3;-0.000000, 0.104742, 0.000000;;, + 63;3;-0.000000, 0.104742,-0.000000;;, + 64;3;-0.000000, 0.104742,-0.000000;;, + 65;3;-0.000000, 0.104742,-0.000000;;, + 66;3;-0.000000, 0.104742,-0.000000;;, + 67;3;-0.000000, 0.104742, 0.000000;;, + 68;3;-0.000000, 0.104742,-0.000000;;, + 69;3;-0.000000, 0.104742,-0.000000;;, + 70;3;-0.000000, 0.104742,-0.000000;;, + 71;3;-0.000000, 0.104742,-0.000000;;, + 72;3;-0.000000, 0.104742,-0.000000;;, + 73;3;-0.000000, 0.104742,-0.000000;;, + 74;3;-0.000000, 0.104742,-0.000000;;, + 75;3;-0.000000, 0.104742, 0.000000;;, + 76;3;-0.000000, 0.104742,-0.000000;;, + 77;3;-0.000000, 0.104742, 0.000000;;, + 78;3;-0.000000, 0.104742,-0.000000;;, + 79;3;-0.000000, 0.104742,-0.000000;;, + 80;3;-0.000000, 0.104742,-0.000000;;, + 81;3;-0.000000, 0.104742,-0.000000;;, + 82;3;-0.000000, 0.104742,-0.000000;;, + 83;3;-0.000000, 0.104742,-0.000000;;, + 84;3;-0.000000, 0.104742,-0.000000;;, + 85;3;-0.000000, 0.104742,-0.000000;;, + 86;3;-0.000000, 0.104742,-0.000000;;, + 87;3;-0.000000, 0.104742,-0.000000;;, + 88;3;-0.000000, 0.104742,-0.000000;;, + 89;3;-0.000000, 0.104742,-0.000000;;, + 90;3;-0.000000, 0.104742,-0.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.521372,-0.373562,-0.717607, 0.271409;;, + 1;4;-0.521372,-0.373562,-0.717607, 0.271409;;, + 2;4;-0.521720,-0.372975,-0.717828, 0.270623;;, + 3;4;-0.522772,-0.371198,-0.718497, 0.268245;;, + 4;4;-0.524529,-0.368229,-0.719615, 0.264272;;, + 5;4;-0.526978,-0.364092,-0.721173, 0.258737;;, + 6;4;-0.530082,-0.358848,-0.723148, 0.251720;;, + 7;4;-0.533779,-0.352602,-0.725500, 0.243363;;, + 8;4;-0.537979,-0.345506,-0.728172, 0.233868;;, + 9;4;-0.542564,-0.337759,-0.731089, 0.223503;;, + 10;4;-0.547392,-0.329604,-0.734159, 0.212591;;, + 11;4;-0.552301,-0.321309,-0.737283, 0.201492;;, + 12;4;-0.557128,-0.313154,-0.740354, 0.190580;;, + 13;4;-0.561713,-0.305408,-0.743270, 0.180215;;, + 14;4;-0.565913,-0.298312,-0.745942, 0.170720;;, + 15;4;-0.569610,-0.292066,-0.748294, 0.162363;;, + 16;4;-0.572714,-0.286823,-0.750268, 0.155347;;, + 17;4;-0.575163,-0.282686,-0.751826, 0.149811;;, + 18;4;-0.576920,-0.279716,-0.752944, 0.145838;;, + 19;4;-0.577972,-0.277940,-0.753613, 0.143461;;, + 20;4;-0.578320,-0.277352,-0.753834, 0.142675;;, + 21;4;-0.576627,-0.280156,-0.752890, 0.146237;;, + 22;4;-0.571448,-0.288742,-0.749983, 0.157172;;, + 23;4;-0.563701,-0.301608,-0.745583, 0.173632;;, + 24;4;-0.555528,-0.315215,-0.740860, 0.191158;;, + 25;4;-0.548739,-0.326564,-0.736827, 0.205935;;, + 26;4;-0.541934,-0.337929,-0.732811, 0.220696;;, + 27;4;-0.533807,-0.351491,-0.728041, 0.238268;;, + 28;4;-0.526369,-0.364047,-0.723332, 0.255037;;, + 29;4;-0.521920,-0.371903,-0.719696, 0.266701;;, + 30;4;-0.521372,-0.373562,-0.717607, 0.271409;;, + 31;4;-0.532218,-0.367504,-0.710577, 0.272070;;, + 32;4;-0.560598,-0.352141,-0.693602, 0.270643;;, + 33;4;-0.597293,-0.330912,-0.673316, 0.266052;;, + 34;4;-0.627395,-0.310427,-0.659430, 0.258134;;, + 35;4;-0.641170,-0.295651,-0.657655, 0.247754;;, + 36;4;-0.639448,-0.286484,-0.669021, 0.229826;;, + 37;4;-0.625575,-0.281662,-0.692470, 0.200783;;, + 38;4;-0.604942,-0.280181,-0.720988, 0.169433;;, + 39;4;-0.586986,-0.279490,-0.743709, 0.147873;;, + 40;4;-0.578320,-0.277352,-0.753834, 0.142675;;, + 41;4;-0.574801,-0.274652,-0.756772, 0.147268;;, + 42;4;-0.570734,-0.273188,-0.759001, 0.154621;;, + 43;4;-0.566146,-0.273163,-0.760382, 0.164665;;, + 44;4;-0.561133,-0.274717,-0.760810, 0.177022;;, + 45;4;-0.555865,-0.277866,-0.760245, 0.190947;;, + 46;4;-0.550567,-0.282455,-0.758748, 0.205409;;, + 47;4;-0.545468,-0.288185,-0.756475, 0.219327;;, + 48;4;-0.540745,-0.294692,-0.753632, 0.231814;;, + 49;4;-0.536503,-0.301636,-0.750423, 0.242310;;, + 50;4;-0.532782,-0.308746,-0.747016, 0.250572;;, + 51;4;-0.528397,-0.317047,-0.743526, 0.257785;;, + 52;4;-0.522205,-0.327623,-0.740018, 0.265075;;, + 53;4;-0.514426,-0.340152,-0.736573, 0.272232;;, + 54;4;-0.505542,-0.353969,-0.733301, 0.278967;;, + 55;4;-0.496301,-0.368064,-0.730328, 0.284949;;, + 56;4;-0.487609,-0.381238,-0.727769, 0.289874;;, + 57;4;-0.480314,-0.392384,-0.725694, 0.293546;;, + 58;4;-0.475022,-0.400732,-0.724122, 0.295908;;, + 59;4;-0.472031,-0.405927,-0.723024, 0.297027;;, + 60;4;-0.471380,-0.407950,-0.722347, 0.297040;;, + 61;4;-0.472005,-0.408360,-0.721822, 0.296528;;, + 62;4;-0.472912,-0.408603,-0.721227, 0.295965;;, + 63;4;-0.474113,-0.408659,-0.720567, 0.295341;;, + 64;4;-0.475616,-0.408507,-0.719854, 0.294648;;, + 65;4;-0.477422,-0.408126,-0.719101, 0.293879;;, + 66;4;-0.479526,-0.407496,-0.718327, 0.293025;;, + 67;4;-0.481916,-0.406601,-0.717553, 0.292077;;, + 68;4;-0.484568,-0.405429,-0.716805, 0.291031;;, + 69;4;-0.487450,-0.403974,-0.716108, 0.289880;;, + 70;4;-0.490519,-0.402236,-0.715492, 0.288624;;, + 71;4;-0.493728,-0.400223,-0.714982, 0.287263;;, + 72;4;-0.497026,-0.397953,-0.714604, 0.285801;;, + 73;4;-0.500359,-0.395447,-0.714376, 0.284242;;, + 74;4;-0.503678,-0.392730,-0.714315, 0.282597;;, + 75;4;-0.506940,-0.389831,-0.714427, 0.280873;;, + 76;4;-0.510109,-0.386780,-0.714718, 0.279080;;, + 77;4;-0.513155,-0.383603,-0.715187, 0.277228;;, + 78;4;-0.516056,-0.380326,-0.715829, 0.275327;;, + 79;4;-0.518798,-0.376973,-0.716639, 0.273385;;, + 80;4;-0.521372,-0.373562,-0.717607, 0.271409;;, + 81;4;-0.523770,-0.369166,-0.719159, 0.269231;;, + 82;4;-0.525953,-0.362878,-0.721719, 0.266703;;, + 83;4;-0.527869,-0.354911,-0.725194, 0.263900;;, + 84;4;-0.529468,-0.345742,-0.729358, 0.260960;;, + 85;4;-0.530719,-0.336128,-0.733840, 0.258077;;, + 86;4;-0.531625,-0.326991,-0.738178, 0.255470;;, + 87;4;-0.532222,-0.319204,-0.741922, 0.253331;;, + 88;4;-0.532571,-0.313399,-0.744739, 0.251782;;, + 89;4;-0.532738,-0.309895,-0.746451, 0.250867;;, + 90;4;-0.532782,-0.308746,-0.747016, 0.250572;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.530000,-0.350000;;, + 1;3;-0.000000, 0.530000,-0.350000;;, + 2;3;-0.000000, 0.530000,-0.350000;;, + 3;3;-0.000000, 0.530000,-0.350000;;, + 4;3;-0.000000, 0.530000,-0.350000;;, + 5;3;-0.000000, 0.530000,-0.350000;;, + 6;3;-0.000000, 0.530000,-0.350000;;, + 7;3;-0.000000, 0.530000,-0.350000;;, + 8;3;-0.000000, 0.530000,-0.350000;;, + 9;3;-0.000000, 0.530000,-0.350000;;, + 10;3;-0.000000, 0.530000,-0.350000;;, + 11;3;-0.000000, 0.530000,-0.350000;;, + 12;3;-0.000000, 0.530000,-0.350000;;, + 13;3;-0.000000, 0.530000,-0.350000;;, + 14;3;-0.000000, 0.530000,-0.350000;;, + 15;3;-0.000000, 0.530000,-0.350000;;, + 16;3;-0.000000, 0.530000,-0.350000;;, + 17;3;-0.000000, 0.530000,-0.350000;;, + 18;3;-0.000000, 0.530000,-0.350000;;, + 19;3;-0.000000, 0.530000,-0.350000;;, + 20;3;-0.000000, 0.530000,-0.350000;;, + 21;3;-0.000000, 0.530000,-0.350000;;, + 22;3;-0.000000, 0.530000,-0.350000;;, + 23;3;-0.000000, 0.530000,-0.350000;;, + 24;3;-0.000000, 0.530000,-0.350000;;, + 25;3;-0.000000, 0.530000,-0.350000;;, + 26;3;-0.000000, 0.530000,-0.350000;;, + 27;3;-0.000000, 0.530000,-0.350000;;, + 28;3;-0.000000, 0.530000,-0.350000;;, + 29;3;-0.000000, 0.530000,-0.350000;;, + 30;3;-0.000000, 0.530000,-0.350000;;, + 31;3;-0.000000, 0.530000,-0.350000;;, + 32;3;-0.000000, 0.530000,-0.350000;;, + 33;3;-0.000000, 0.530000,-0.350000;;, + 34;3;-0.000000, 0.530000,-0.350000;;, + 35;3;-0.000000, 0.530000,-0.350000;;, + 36;3;-0.000000, 0.530000,-0.350000;;, + 37;3;-0.000000, 0.530000,-0.350000;;, + 38;3;-0.000000, 0.530000,-0.350000;;, + 39;3;-0.000000, 0.530000,-0.350000;;, + 40;3;-0.000000, 0.530000,-0.350000;;, + 41;3;-0.000237, 0.529993,-0.350000;;, + 42;3;-0.000949, 0.529973,-0.350000;;, + 43;3;-0.002107, 0.529938,-0.350000;;, + 44;3;-0.003622, 0.529889,-0.350000;;, + 45;3;-0.005338, 0.529831,-0.350000;;, + 46;3;-0.007054, 0.529766,-0.350000;;, + 47;3;-0.008569, 0.529700,-0.350000;;, + 48;3;-0.009728, 0.529638,-0.350000;;, + 49;3;-0.010440, 0.529582,-0.350000;;, + 50;3;-0.010677, 0.529534,-0.350000;;, + 51;3;-0.010475, 0.529488,-0.350300;;, + 52;3;-0.009864, 0.529436,-0.351204;;, + 53;3;-0.008868, 0.529381,-0.352674;;, + 54;3;-0.007558, 0.529324,-0.354597;;, + 55;3;-0.006060, 0.529270,-0.356775;;, + 56;3;-0.004545, 0.529222,-0.358953;;, + 57;3;-0.003180, 0.529183,-0.360876;;, + 58;3;-0.002099, 0.529155,-0.362346;;, + 59;3;-0.001380, 0.529138,-0.363250;;, + 60;3;-0.001050, 0.529133,-0.363550;;, + 61;3;-0.000919, 0.529138,-0.363476;;, + 62;3;-0.000795, 0.529152,-0.363250;;, + 63;3;-0.000679, 0.529176,-0.362872;;, + 64;3;-0.000571, 0.529210,-0.362346;;, + 65;3;-0.000473, 0.529253,-0.361676;;, + 66;3;-0.000384, 0.529304,-0.360876;;, + 67;3;-0.000305, 0.529363,-0.359961;;, + 68;3;-0.000237, 0.529427,-0.358953;;, + 69;3;-0.000179, 0.529496,-0.357881;;, + 70;3;-0.000131, 0.529566,-0.356775;;, + 71;3;-0.000093, 0.529637,-0.355669;;, + 72;3;-0.000063, 0.529706,-0.354597;;, + 73;3;-0.000040, 0.529770,-0.353590;;, + 74;3;-0.000024, 0.529829,-0.352674;;, + 75;3;-0.000013, 0.529880,-0.351874;;, + 76;3;-0.000007, 0.529923,-0.351204;;, + 77;3;-0.000003, 0.529957,-0.350678;;, + 78;3;-0.000001, 0.529981,-0.350300;;, + 79;3;-0.000000, 0.529995,-0.350075;;, + 80;3;-0.000000, 0.530000,-0.350000;;, + 81;3;-0.000237, 0.529990,-0.350000;;, + 82;3;-0.000949, 0.529959,-0.350000;;, + 83;3;-0.002107, 0.529908,-0.350000;;, + 84;3;-0.003622, 0.529842,-0.350000;;, + 85;3;-0.005338, 0.529767,-0.350000;;, + 86;3;-0.007054, 0.529692,-0.350000;;, + 87;3;-0.008569, 0.529626,-0.350000;;, + 88;3;-0.009728, 0.529575,-0.350000;;, + 89;3;-0.010440, 0.529544,-0.350000;;, + 90;3;-0.010677, 0.529534,-0.350000;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 1;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 2;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 3;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 4;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 5;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 6;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 7;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 8;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 9;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 10;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 11;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 12;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 13;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 14;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 15;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 16;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 17;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 18;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 19;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 20;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 21;4;-0.711526, 0.271122,-0.531270,-0.368452;;, + 22;4;-0.694726, 0.269518,-0.559476,-0.353263;;, + 23;4;-0.674039, 0.265328,-0.596574,-0.331632;;, + 24;4;-0.659646, 0.257918,-0.627184,-0.310638;;, + 25;4;-0.657658, 0.247750,-0.641173,-0.295648;;, + 26;4;-0.669148, 0.229947,-0.639326,-0.286357;;, + 27;4;-0.692894, 0.201204,-0.625155,-0.281238;;, + 28;4;-0.721647, 0.170090,-0.604285,-0.279522;;, + 29;4;-0.744265, 0.148428,-0.586431,-0.278935;;, + 30;4;-0.753835, 0.142675,-0.578320,-0.277352;;, + 31;4;-0.754582, 0.148090,-0.574936,-0.278303;;, + 32;4;-0.751765, 0.159588,-0.569668,-0.286325;;, + 33;4;-0.746292, 0.175619,-0.562995,-0.299617;;, + 34;4;-0.740329, 0.192487,-0.556063,-0.313882;;, + 35;4;-0.735723, 0.207039,-0.549848,-0.325455;;, + 36;4;-0.731359, 0.221682,-0.543390,-0.336938;;, + 37;4;-0.725972, 0.238766,-0.535879,-0.350989;;, + 38;4;-0.720955, 0.254969,-0.528748,-0.364113;;, + 39;4;-0.717939, 0.266394,-0.523678,-0.372210;;, + 40;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 41;4;-0.719093, 0.272596,-0.520790,-0.370477;;, + 42;4;-0.721609, 0.272299,-0.520998,-0.365059;;, + 43;4;-0.725063, 0.270560,-0.521972,-0.357506;;, + 44;4;-0.729228, 0.267588,-0.523599,-0.348325;;, + 45;4;-0.733729, 0.263791,-0.525660,-0.338354;;, + 46;4;-0.738095, 0.259728,-0.527855,-0.328649;;, + 47;4;-0.741870, 0.255986,-0.529872,-0.320238;;, + 48;4;-0.744714, 0.253042,-0.531456,-0.313890;;, + 49;4;-0.746445, 0.251194,-0.532448,-0.310023;;, + 50;4;-0.747016, 0.250572,-0.532782,-0.308746;;, + 51;4;-0.746510, 0.251643,-0.531380,-0.310905;;, + 52;4;-0.744981, 0.254860,-0.527167,-0.317407;;, + 53;4;-0.742479, 0.260075,-0.520332,-0.327995;;, + 54;4;-0.739178, 0.266868,-0.511419,-0.341870;;, + 55;4;-0.735395, 0.274519,-0.501368,-0.357634;;, + 56;4;-0.731544, 0.282102,-0.491384,-0.373466;;, + 57;4;-0.728048, 0.288700,-0.482667,-0.387538;;, + 58;4;-0.725239, 0.293608,-0.476139,-0.398433;;, + 59;4;-0.723314, 0.296429,-0.472321,-0.405330;;, + 60;4;-0.722347, 0.297039,-0.471380,-0.407950;;, + 61;4;-0.721823, 0.296528,-0.472004,-0.408360;;, + 62;4;-0.721227, 0.295965,-0.472912,-0.408603;;, + 63;4;-0.720567, 0.295341,-0.474113,-0.408659;;, + 64;4;-0.719854, 0.294648,-0.475615,-0.408507;;, + 65;4;-0.719101, 0.293879,-0.477422,-0.408126;;, + 66;4;-0.718327, 0.293024,-0.479526,-0.407496;;, + 67;4;-0.717553, 0.292077,-0.481916,-0.406602;;, + 68;4;-0.716805, 0.291030,-0.484568,-0.405429;;, + 69;4;-0.716108, 0.289880,-0.487450,-0.403974;;, + 70;4;-0.715492, 0.288624,-0.490519,-0.402236;;, + 71;4;-0.714982, 0.287263,-0.493728,-0.400224;;, + 72;4;-0.714604, 0.285800,-0.497025,-0.397953;;, + 73;4;-0.714377, 0.284242,-0.500358,-0.395447;;, + 74;4;-0.714315, 0.282597,-0.503678,-0.392730;;, + 75;4;-0.714427, 0.280872,-0.506940,-0.389831;;, + 76;4;-0.714718, 0.279080,-0.510109,-0.386780;;, + 77;4;-0.715187, 0.277228,-0.513155,-0.383603;;, + 78;4;-0.715829, 0.275327,-0.516056,-0.380326;;, + 79;4;-0.716639, 0.273385,-0.518798,-0.376973;;, + 80;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 81;4;-0.719159, 0.269231,-0.523770,-0.369166;;, + 82;4;-0.721719, 0.266703,-0.525953,-0.362878;;, + 83;4;-0.725194, 0.263900,-0.527869,-0.354911;;, + 84;4;-0.729358, 0.260960,-0.529468,-0.345742;;, + 85;4;-0.733841, 0.258077,-0.530719,-0.336128;;, + 86;4;-0.738178, 0.255470,-0.531625,-0.326991;;, + 87;4;-0.741922, 0.253331,-0.532222,-0.319204;;, + 88;4;-0.744739, 0.251782,-0.532571,-0.313400;;, + 89;4;-0.746452, 0.250867,-0.532738,-0.309896;;, + 90;4;-0.747016, 0.250572,-0.532782,-0.308746;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.530000, 0.350000;;, + 1;3;-0.000000, 0.530000, 0.350000;;, + 2;3;-0.000000, 0.530000, 0.350000;;, + 3;3;-0.000000, 0.530000, 0.350000;;, + 4;3;-0.000000, 0.530000, 0.350000;;, + 5;3;-0.000000, 0.530000, 0.350000;;, + 6;3;-0.000000, 0.530000, 0.350000;;, + 7;3;-0.000000, 0.530000, 0.350000;;, + 8;3;-0.000000, 0.530000, 0.350000;;, + 9;3;-0.000000, 0.530000, 0.350000;;, + 10;3;-0.000000, 0.530000, 0.350000;;, + 11;3;-0.000000, 0.530000, 0.350000;;, + 12;3;-0.000000, 0.530000, 0.350000;;, + 13;3;-0.000000, 0.530000, 0.350000;;, + 14;3;-0.000000, 0.530000, 0.350000;;, + 15;3;-0.000000, 0.530000, 0.350000;;, + 16;3;-0.000000, 0.530000, 0.350000;;, + 17;3;-0.000000, 0.530000, 0.350000;;, + 18;3;-0.000000, 0.530000, 0.350000;;, + 19;3;-0.000000, 0.530000, 0.350000;;, + 20;3;-0.000000, 0.530000, 0.350000;;, + 21;3;-0.000000, 0.530000, 0.350000;;, + 22;3;-0.000000, 0.530000, 0.350000;;, + 23;3;-0.000000, 0.530000, 0.350000;;, + 24;3;-0.000000, 0.530000, 0.350000;;, + 25;3;-0.000000, 0.530000, 0.350000;;, + 26;3;-0.000000, 0.530000, 0.350000;;, + 27;3;-0.000000, 0.530000, 0.350000;;, + 28;3;-0.000000, 0.530000, 0.350000;;, + 29;3;-0.000000, 0.530000, 0.350000;;, + 30;3;-0.000000, 0.530000, 0.350000;;, + 31;3;-0.000000, 0.530000, 0.350000;;, + 32;3;-0.000000, 0.530000, 0.350000;;, + 33;3;-0.000000, 0.530000, 0.350000;;, + 34;3;-0.000000, 0.530000, 0.350000;;, + 35;3;-0.000000, 0.530000, 0.350000;;, + 36;3;-0.000000, 0.530000, 0.350000;;, + 37;3;-0.000000, 0.530000, 0.350000;;, + 38;3;-0.000000, 0.530000, 0.350000;;, + 39;3;-0.000000, 0.530000, 0.350000;;, + 40;3;-0.000000, 0.530000, 0.350000;;, + 41;3;-0.000237, 0.529993, 0.350000;;, + 42;3;-0.000949, 0.529972, 0.350000;;, + 43;3;-0.002107, 0.529937, 0.350000;;, + 44;3;-0.003622, 0.529889, 0.350000;;, + 45;3;-0.005338, 0.529830, 0.350000;;, + 46;3;-0.007054, 0.529766, 0.350000;;, + 47;3;-0.008569, 0.529700, 0.350000;;, + 48;3;-0.009727, 0.529637, 0.350000;;, + 49;3;-0.010440, 0.529581, 0.350000;;, + 50;3;-0.010677, 0.529534, 0.350000;;, + 51;3;-0.010474, 0.529487, 0.350300;;, + 52;3;-0.009864, 0.529436, 0.351204;;, + 53;3;-0.008868, 0.529381, 0.352674;;, + 54;3;-0.007557, 0.529324, 0.354597;;, + 55;3;-0.006060, 0.529270, 0.356775;;, + 56;3;-0.004545, 0.529221, 0.358953;;, + 57;3;-0.003180, 0.529183, 0.360876;;, + 58;3;-0.002099, 0.529154, 0.362346;;, + 59;3;-0.001380, 0.529138, 0.363250;;, + 60;3;-0.001050, 0.529133, 0.363550;;, + 61;3;-0.000919, 0.529138, 0.363476;;, + 62;3;-0.000795, 0.529152, 0.363250;;, + 63;3;-0.000679, 0.529176, 0.362872;;, + 64;3;-0.000571, 0.529210, 0.362346;;, + 65;3;-0.000473, 0.529253, 0.361676;;, + 66;3;-0.000384, 0.529304, 0.360876;;, + 67;3;-0.000305, 0.529363, 0.359961;;, + 68;3;-0.000237, 0.529427, 0.358953;;, + 69;3;-0.000179, 0.529496, 0.357881;;, + 70;3;-0.000131, 0.529566, 0.356775;;, + 71;3;-0.000093, 0.529637, 0.355669;;, + 72;3;-0.000063, 0.529706, 0.354597;;, + 73;3;-0.000040, 0.529770, 0.353590;;, + 74;3;-0.000024, 0.529829, 0.352674;;, + 75;3;-0.000013, 0.529880, 0.351874;;, + 76;3;-0.000007, 0.529923, 0.351204;;, + 77;3;-0.000003, 0.529957, 0.350678;;, + 78;3;-0.000001, 0.529981, 0.350300;;, + 79;3;-0.000000, 0.529995, 0.350075;;, + 80;3;-0.000000, 0.530000, 0.350000;;, + 81;3;-0.000237, 0.529990, 0.350000;;, + 82;3;-0.000949, 0.529959, 0.350000;;, + 83;3;-0.002107, 0.529908, 0.350000;;, + 84;3;-0.003622, 0.529842, 0.350000;;, + 85;3;-0.005338, 0.529767, 0.350000;;, + 86;3;-0.007054, 0.529692, 0.350000;;, + 87;3;-0.008569, 0.529626, 0.350000;;, + 88;3;-0.009728, 0.529575, 0.350000;;, + 89;3;-0.010440, 0.529544, 0.350000;;, + 90;3;-0.010677, 0.529534, 0.350000;;; + } + } + Animation { + {Armature_Bone_005} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 1;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 2;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 3;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 4;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 5;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 6;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 7;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 8;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 9;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 10;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 11;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 12;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 13;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 14;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 15;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 16;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 17;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 18;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 19;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 20;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 21;4;-0.458165,-0.529128,-0.580253, 0.413424;;, + 22;4;-0.485022,-0.509173,-0.567658, 0.418827;;, + 23;4;-0.520997,-0.481797,-0.552980, 0.424009;;, + 24;4;-0.551918,-0.457063,-0.544453, 0.424631;;, + 25;4;-0.568174,-0.442078,-0.546703, 0.418648;;, + 26;4;-0.571035,-0.436250,-0.561149, 0.401655;;, + 27;4;-0.564162,-0.437257,-0.587043, 0.371317;;, + 28;4;-0.551425,-0.442800,-0.616746, 0.336882;;, + 29;4;-0.539986,-0.448221,-0.639074, 0.311690;;, + 30;4;-0.535080,-0.449901,-0.647452, 0.303455;;, + 31;4;-0.531946,-0.451827,-0.646375, 0.307016;;, + 32;4;-0.524334,-0.459202,-0.641077, 0.316466;;, + 33;4;-0.513384,-0.470639,-0.632633, 0.330305;;, + 34;4;-0.501818,-0.482826,-0.623608, 0.344954;;, + 35;4;-0.491956,-0.492938,-0.616190, 0.357361;;, + 36;4;-0.482171,-0.503169,-0.608694, 0.369650;;, + 37;4;-0.470787,-0.515639,-0.599484, 0.384019;;, + 38;4;-0.459980,-0.527301,-0.590892, 0.397638;;, + 39;4;-0.452303,-0.534580,-0.585656, 0.407186;;, + 40;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 41;4;-0.447915,-0.533507,-0.587177, 0.412167;;, + 42;4;-0.448096,-0.528982,-0.591044, 0.411934;;, + 43;4;-0.449338,-0.522574,-0.596382, 0.410607;;, + 44;4;-0.451489,-0.514719,-0.602837, 0.408344;;, + 45;4;-0.454251,-0.506145,-0.609825, 0.405456;;, + 46;4;-0.457213,-0.497772,-0.616612, 0.402367;;, + 47;4;-0.459946,-0.490498,-0.622486, 0.399523;;, + 48;4;-0.462097,-0.484999,-0.626914, 0.397286;;, + 49;4;-0.463449,-0.481645,-0.629610, 0.395882;;, + 50;4;-0.463904,-0.480537,-0.630499, 0.395409;;, + 51;4;-0.462538,-0.482319,-0.629304, 0.396271;;, + 52;4;-0.458438,-0.487692,-0.625698, 0.398855;;, + 53;4;-0.451796,-0.496454,-0.619816, 0.403038;;, + 54;4;-0.443156,-0.507961,-0.612087, 0.408474;;, + 55;4;-0.433443,-0.521071,-0.603275, 0.414574;;, + 56;4;-0.423843,-0.534294,-0.594377, 0.420589;;, + 57;4;-0.415531,-0.546129,-0.586399, 0.425776;;, + 58;4;-0.409404,-0.555405,-0.580127, 0.429570;;, + 59;4;-0.405965,-0.561440,-0.576020, 0.431653;;, + 60;4;-0.405371,-0.563994,-0.574240, 0.431930;;, + 61;4;-0.406259,-0.564713,-0.573641, 0.431321;;, + 62;4;-0.407297,-0.565226,-0.573088, 0.430729;;, + 63;4;-0.408494,-0.565514,-0.572593, 0.430147;;, + 64;4;-0.409860,-0.565560,-0.572172, 0.429565;;, + 65;4;-0.411400,-0.565347,-0.571841, 0.428976;;, + 66;4;-0.413120,-0.564864,-0.571616, 0.428366;;, + 67;4;-0.415018,-0.564102,-0.571516, 0.427721;;, + 68;4;-0.417090,-0.563058,-0.571558, 0.427028;;, + 69;4;-0.419326,-0.561739,-0.571757, 0.426271;;, + 70;4;-0.421710,-0.560156,-0.572126, 0.425436;;, + 71;4;-0.424223,-0.558330,-0.572673, 0.424509;;, + 72;4;-0.426842,-0.556289,-0.573401, 0.423480;;, + 73;4;-0.429540,-0.554063,-0.574310, 0.422342;;, + 74;4;-0.432294,-0.551687,-0.575393, 0.421089;;, + 75;4;-0.435078,-0.549194,-0.576642, 0.419721;;, + 76;4;-0.437872,-0.546617,-0.578044, 0.418239;;, + 77;4;-0.440658,-0.543984,-0.579587, 0.416647;;, + 78;4;-0.443419,-0.541320,-0.581257, 0.414952;;, + 79;4;-0.446145,-0.538647,-0.583039, 0.413158;;, + 80;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 81;4;-0.451451,-0.532462,-0.587594, 0.409260;;, + 82;4;-0.453975,-0.527244,-0.591737, 0.407099;;, + 83;4;-0.456335,-0.520506,-0.597207, 0.404853;;, + 84;4;-0.458453,-0.512660,-0.603658, 0.402617;;, + 85;4;-0.460254,-0.504371,-0.610532, 0.400519;;, + 86;4;-0.461687,-0.496450,-0.617139, 0.398688;;, + 87;4;-0.462735,-0.489674,-0.622814, 0.397229;;, + 88;4;-0.463421,-0.484608,-0.627070, 0.396197;;, + 89;4;-0.463792,-0.481544,-0.629650, 0.395599;;, + 90;4;-0.463904,-0.480537,-0.630499, 0.395409;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.450000,-0.350000;;, + 1;3;-0.000000, 0.450000,-0.350000;;, + 2;3;-0.000000, 0.450000,-0.350000;;, + 3;3;-0.000000, 0.450000,-0.350000;;, + 4;3;-0.000000, 0.450000,-0.350000;;, + 5;3;-0.000000, 0.450000,-0.350000;;, + 6;3;-0.000000, 0.450000,-0.350000;;, + 7;3;-0.000000, 0.450000,-0.350000;;, + 8;3;-0.000000, 0.450000,-0.350000;;, + 9;3;-0.000000, 0.450000,-0.350000;;, + 10;3;-0.000000, 0.450000,-0.350000;;, + 11;3;-0.000000, 0.450000,-0.350000;;, + 12;3;-0.000000, 0.450000,-0.350000;;, + 13;3;-0.000000, 0.450000,-0.350000;;, + 14;3;-0.000000, 0.450000,-0.350000;;, + 15;3;-0.000000, 0.450000,-0.350000;;, + 16;3;-0.000000, 0.450000,-0.350000;;, + 17;3;-0.000000, 0.450000,-0.350000;;, + 18;3;-0.000000, 0.450000,-0.350000;;, + 19;3;-0.000000, 0.450000,-0.350000;;, + 20;3;-0.000000, 0.450000,-0.350000;;, + 21;3;-0.000000, 0.450000,-0.350000;;, + 22;3;-0.000000, 0.450000,-0.350000;;, + 23;3;-0.000000, 0.450000,-0.350000;;, + 24;3;-0.000000, 0.450000,-0.350000;;, + 25;3;-0.000000, 0.450000,-0.350000;;, + 26;3;-0.000000, 0.450000,-0.350000;;, + 27;3;-0.000000, 0.450000,-0.350000;;, + 28;3;-0.000000, 0.450000,-0.350000;;, + 29;3;-0.000000, 0.450000,-0.350000;;, + 30;3;-0.000000, 0.450000,-0.350000;;, + 31;3;-0.000000, 0.450000,-0.350000;;, + 32;3;-0.000000, 0.450000,-0.350000;;, + 33;3;-0.000000, 0.450000,-0.350000;;, + 34;3;-0.000000, 0.450000,-0.350000;;, + 35;3;-0.000000, 0.450000,-0.350000;;, + 36;3;-0.000000, 0.450000,-0.350000;;, + 37;3;-0.000000, 0.450000,-0.350000;;, + 38;3;-0.000000, 0.450000,-0.350000;;, + 39;3;-0.000000, 0.450000,-0.350000;;, + 40;3;-0.000000, 0.450000,-0.350000;;, + 41;3;-0.000082, 0.449998,-0.350000;;, + 42;3;-0.000329, 0.449991,-0.350000;;, + 43;3;-0.000731, 0.449978,-0.350000;;, + 44;3;-0.001257, 0.449962,-0.350000;;, + 45;3;-0.001852, 0.449941,-0.350000;;, + 46;3;-0.002448, 0.449919,-0.350000;;, + 47;3;-0.002973, 0.449896,-0.350000;;, + 48;3;-0.003375, 0.449874,-0.350000;;, + 49;3;-0.003622, 0.449855,-0.350000;;, + 50;3;-0.003704, 0.449838,-0.350000;;, + 51;3;-0.003634, 0.449822,-0.350104;;, + 52;3;-0.003422, 0.449804,-0.350418;;, + 53;3;-0.003077, 0.449785,-0.350928;;, + 54;3;-0.002622, 0.449766,-0.351595;;, + 55;3;-0.002103, 0.449747,-0.352351;;, + 56;3;-0.001577, 0.449730,-0.353106;;, + 57;3;-0.001103, 0.449716,-0.353773;;, + 58;3;-0.000728, 0.449707,-0.354283;;, + 59;3;-0.000479, 0.449701,-0.354597;;, + 60;3;-0.000364, 0.449699,-0.354701;;, + 61;3;-0.000319, 0.449701,-0.354675;;, + 62;3;-0.000276, 0.449706,-0.354597;;, + 63;3;-0.000236, 0.449714,-0.354466;;, + 64;3;-0.000198, 0.449726,-0.354283;;, + 65;3;-0.000164, 0.449741,-0.354051;;, + 66;3;-0.000133, 0.449759,-0.353773;;, + 67;3;-0.000106, 0.449779,-0.353456;;, + 68;3;-0.000082, 0.449801,-0.353106;;, + 69;3;-0.000062, 0.449825,-0.352734;;, + 70;3;-0.000046, 0.449850,-0.352351;;, + 71;3;-0.000032, 0.449874,-0.351967;;, + 72;3;-0.000022, 0.449898,-0.351595;;, + 73;3;-0.000014, 0.449920,-0.351245;;, + 74;3;-0.000009, 0.449941,-0.350928;;, + 75;3;-0.000005, 0.449959,-0.350650;;, + 76;3;-0.000002, 0.449973,-0.350418;;, + 77;3;-0.000001, 0.449985,-0.350235;;, + 78;3;-0.000000, 0.449993,-0.350104;;, + 79;3;-0.000000, 0.449998,-0.350026;;, + 80;3;-0.000000, 0.450000,-0.350000;;, + 81;3;-0.000082, 0.449997,-0.350000;;, + 82;3;-0.000329, 0.449986,-0.350000;;, + 83;3;-0.000731, 0.449968,-0.350000;;, + 84;3;-0.001257, 0.449945,-0.350000;;, + 85;3;-0.001852, 0.449919,-0.350000;;, + 86;3;-0.002448, 0.449893,-0.350000;;, + 87;3;-0.002973, 0.449870,-0.350000;;, + 88;3;-0.003375, 0.449853,-0.350000;;, + 89;3;-0.003622, 0.449842,-0.350000;;, + 90;3;-0.003704, 0.449838,-0.350000;;; + } + } + Animation { + {Armature_Bone_006} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.584921, 0.411273,-0.448826,-0.535982;;, + 1;4;-0.584921, 0.411273,-0.448826,-0.535982;;, + 2;4;-0.585303, 0.410615,-0.449353,-0.535456;;, + 3;4;-0.586458, 0.408623,-0.450946,-0.533866;;, + 4;4;-0.588388, 0.405296,-0.453608,-0.531210;;, + 5;4;-0.591077, 0.400660,-0.457317,-0.527508;;, + 6;4;-0.594485, 0.394783,-0.462018,-0.522816;;, + 7;4;-0.598545, 0.387783,-0.467618,-0.517228;;, + 8;4;-0.603157, 0.379831,-0.473979,-0.510879;;, + 9;4;-0.608191, 0.371150,-0.480924,-0.503948;;, + 10;4;-0.613492, 0.362011,-0.488235,-0.496652;;, + 11;4;-0.618883, 0.352715,-0.495672,-0.489230;;, + 12;4;-0.624183, 0.343576,-0.502983,-0.481934;;, + 13;4;-0.629218, 0.334895,-0.509927,-0.475003;;, + 14;4;-0.633830, 0.326943,-0.516289,-0.468654;;, + 15;4;-0.637889, 0.319944,-0.521888,-0.463066;;, + 16;4;-0.641297, 0.314068,-0.526589,-0.458375;;, + 17;4;-0.643986, 0.309432,-0.530298,-0.454673;;, + 18;4;-0.645915, 0.306104,-0.532960,-0.452017;;, + 19;4;-0.647070, 0.304113,-0.534553,-0.450427;;, + 20;4;-0.647452, 0.303455,-0.535080,-0.449901;;, + 21;4;-0.645682, 0.306506,-0.532638,-0.452338;;, + 22;4;-0.640256, 0.315863,-0.525153,-0.459808;;, + 23;4;-0.632104, 0.329919,-0.513909,-0.471030;;, + 24;4;-0.623449, 0.344842,-0.501970,-0.482944;;, + 25;4;-0.616187, 0.357364,-0.491953,-0.492942;;, + 26;4;-0.608924, 0.369886,-0.481935,-0.502939;;, + 27;4;-0.600269, 0.384809,-0.469997,-0.514854;;, + 28;4;-0.592118, 0.398865,-0.458752,-0.526076;;, + 29;4;-0.586691, 0.408221,-0.451267,-0.533545;;, + 30;4;-0.584921, 0.411273,-0.448826,-0.535982;;, + 31;4;-0.580252, 0.413424,-0.458164,-0.529129;;, + 32;4;-0.567657, 0.418828,-0.485020,-0.509174;;, + 33;4;-0.552978, 0.424012,-0.520994,-0.481800;;, + 34;4;-0.544451, 0.424634,-0.551914,-0.457067;;, + 35;4;-0.546700, 0.418652,-0.568169,-0.442082;;, + 36;4;-0.561078, 0.401550,-0.571099,-0.436362;;, + 37;4;-0.586812, 0.370952,-0.564388,-0.437627;;, + 38;4;-0.616388, 0.336310,-0.551780,-0.443374;;, + 39;4;-0.638773, 0.311207,-0.540287,-0.448705;;, + 40;4;-0.647452, 0.303455,-0.535080,-0.449901;;, + 41;4;-0.648710, 0.306194,-0.532745,-0.448891;;, + 42;4;-0.649623, 0.311711,-0.528455,-0.448732;;, + 43;4;-0.650033, 0.319956,-0.522227,-0.449569;;, + 44;4;-0.649768, 0.330568,-0.514291,-0.451503;;, + 45;4;-0.648672, 0.342823,-0.505129,-0.454551;;, + 46;4;-0.646656, 0.355703,-0.495432,-0.458610;;, + 47;4;-0.643724, 0.368133,-0.485945,-0.463478;;, + 48;4;-0.639962, 0.379222,-0.477292,-0.468905;;, + 49;4;-0.635506, 0.388399,-0.469880,-0.474655;;, + 50;4;-0.630499, 0.395409,-0.463904,-0.480537;;, + 51;4;-0.624789, 0.401358,-0.458023,-0.487406;;, + 52;4;-0.618189, 0.407316,-0.450929,-0.496154;;, + 53;4;-0.610879, 0.413107,-0.442860,-0.506524;;, + 54;4;-0.603194, 0.418495,-0.434262,-0.517982;;, + 55;4;-0.595608, 0.423213,-0.425776,-0.529710;;, + 56;4;-0.588664, 0.427027,-0.418130,-0.540732;;, + 57;4;-0.582837, 0.429790,-0.411969,-0.550143;;, + 58;4;-0.578437, 0.431475,-0.407714,-0.557310;;, + 59;4;-0.575581, 0.432148,-0.405526,-0.561935;;, + 60;4;-0.574240, 0.431930,-0.405371,-0.563994;;, + 61;4;-0.573641, 0.431321,-0.406259,-0.564713;;, + 62;4;-0.573088, 0.430729,-0.407296,-0.565226;;, + 63;4;-0.572594, 0.430147,-0.408494,-0.565514;;, + 64;4;-0.572172, 0.429565,-0.409859,-0.565560;;, + 65;4;-0.571841, 0.428976,-0.411400,-0.565348;;, + 66;4;-0.571616, 0.428365,-0.413120,-0.564864;;, + 67;4;-0.571516, 0.427721,-0.415018,-0.564102;;, + 68;4;-0.571558, 0.427028,-0.417090,-0.563059;;, + 69;4;-0.571757, 0.426271,-0.419326,-0.561739;;, + 70;4;-0.572126, 0.425436,-0.421710,-0.560156;;, + 71;4;-0.572673, 0.424509,-0.424223,-0.558330;;, + 72;4;-0.573401, 0.423480,-0.426841,-0.556289;;, + 73;4;-0.574310, 0.422342,-0.429540,-0.554063;;, + 74;4;-0.575393, 0.421089,-0.432293,-0.551687;;, + 75;4;-0.576642, 0.419721,-0.435078,-0.549194;;, + 76;4;-0.578044, 0.418239,-0.437872,-0.546617;;, + 77;4;-0.579587, 0.416647,-0.440658,-0.543984;;, + 78;4;-0.581257, 0.414952,-0.443419,-0.541320;;, + 79;4;-0.583039, 0.413158,-0.446145,-0.538647;;, + 80;4;-0.584921, 0.411273,-0.448826,-0.535982;;, + 81;4;-0.587594, 0.409259,-0.451450,-0.532463;;, + 82;4;-0.591737, 0.407099,-0.453975,-0.527244;;, + 83;4;-0.597207, 0.404852,-0.456335,-0.520506;;, + 84;4;-0.603658, 0.402617,-0.458453,-0.512660;;, + 85;4;-0.610532, 0.400519,-0.460254,-0.504371;;, + 86;4;-0.617139, 0.398688,-0.461686,-0.496450;;, + 87;4;-0.622814, 0.397229,-0.462735,-0.489674;;, + 88;4;-0.627070, 0.396197,-0.463421,-0.484608;;, + 89;4;-0.629650, 0.395599,-0.463792,-0.481544;;, + 90;4;-0.630499, 0.395409,-0.463904,-0.480537;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.450000, 0.350000;;, + 1;3;-0.000000, 0.450000, 0.350000;;, + 2;3;-0.000000, 0.450000, 0.350000;;, + 3;3;-0.000000, 0.450000, 0.350000;;, + 4;3;-0.000000, 0.450000, 0.350000;;, + 5;3;-0.000000, 0.450000, 0.350000;;, + 6;3;-0.000000, 0.450000, 0.350000;;, + 7;3;-0.000000, 0.450000, 0.350000;;, + 8;3;-0.000000, 0.450000, 0.350000;;, + 9;3;-0.000000, 0.450000, 0.350000;;, + 10;3;-0.000000, 0.450000, 0.350000;;, + 11;3;-0.000000, 0.450000, 0.350000;;, + 12;3;-0.000000, 0.450000, 0.350000;;, + 13;3;-0.000000, 0.450000, 0.350000;;, + 14;3;-0.000000, 0.450000, 0.350000;;, + 15;3;-0.000000, 0.450000, 0.350000;;, + 16;3;-0.000000, 0.450000, 0.350000;;, + 17;3;-0.000000, 0.450000, 0.350000;;, + 18;3;-0.000000, 0.450000, 0.350000;;, + 19;3;-0.000000, 0.450000, 0.350000;;, + 20;3;-0.000000, 0.450000, 0.350000;;, + 21;3;-0.000000, 0.450000, 0.350000;;, + 22;3;-0.000000, 0.450000, 0.350000;;, + 23;3;-0.000000, 0.450000, 0.350000;;, + 24;3;-0.000000, 0.450000, 0.350000;;, + 25;3;-0.000000, 0.450000, 0.350000;;, + 26;3;-0.000000, 0.450000, 0.350000;;, + 27;3;-0.000000, 0.450000, 0.350000;;, + 28;3;-0.000000, 0.450000, 0.350000;;, + 29;3;-0.000000, 0.450000, 0.350000;;, + 30;3;-0.000000, 0.450000, 0.350000;;, + 31;3;-0.000000, 0.450000, 0.350000;;, + 32;3;-0.000000, 0.450000, 0.350000;;, + 33;3;-0.000000, 0.450000, 0.350000;;, + 34;3;-0.000000, 0.450000, 0.350000;;, + 35;3;-0.000000, 0.450000, 0.350000;;, + 36;3;-0.000000, 0.450000, 0.350000;;, + 37;3;-0.000000, 0.450000, 0.350000;;, + 38;3;-0.000000, 0.450000, 0.350000;;, + 39;3;-0.000000, 0.450000, 0.350000;;, + 40;3;-0.000000, 0.450000, 0.350000;;, + 41;3;-0.000082, 0.449998, 0.350000;;, + 42;3;-0.000329, 0.449991, 0.350000;;, + 43;3;-0.000731, 0.449978, 0.350000;;, + 44;3;-0.001257, 0.449962, 0.350000;;, + 45;3;-0.001852, 0.449941, 0.350000;;, + 46;3;-0.002447, 0.449919, 0.350000;;, + 47;3;-0.002973, 0.449896, 0.350000;;, + 48;3;-0.003375, 0.449874, 0.350000;;, + 49;3;-0.003622, 0.449855, 0.350000;;, + 50;3;-0.003704, 0.449838, 0.350000;;, + 51;3;-0.003634, 0.449822, 0.350104;;, + 52;3;-0.003422, 0.449804, 0.350418;;, + 53;3;-0.003077, 0.449785, 0.350928;;, + 54;3;-0.002622, 0.449766, 0.351595;;, + 55;3;-0.002103, 0.449747, 0.352351;;, + 56;3;-0.001577, 0.449730, 0.353106;;, + 57;3;-0.001103, 0.449716, 0.353773;;, + 58;3;-0.000728, 0.449707, 0.354283;;, + 59;3;-0.000479, 0.449701, 0.354597;;, + 60;3;-0.000364, 0.449699, 0.354701;;, + 61;3;-0.000319, 0.449701, 0.354675;;, + 62;3;-0.000276, 0.449706, 0.354597;;, + 63;3;-0.000236, 0.449714, 0.354466;;, + 64;3;-0.000198, 0.449726, 0.354283;;, + 65;3;-0.000164, 0.449741, 0.354051;;, + 66;3;-0.000133, 0.449759, 0.353773;;, + 67;3;-0.000106, 0.449779, 0.353456;;, + 68;3;-0.000082, 0.449801, 0.353106;;, + 69;3;-0.000062, 0.449825, 0.352734;;, + 70;3;-0.000046, 0.449850, 0.352351;;, + 71;3;-0.000032, 0.449874, 0.351967;;, + 72;3;-0.000022, 0.449898, 0.351595;;, + 73;3;-0.000014, 0.449920, 0.351245;;, + 74;3;-0.000008, 0.449941, 0.350928;;, + 75;3;-0.000005, 0.449958, 0.350650;;, + 76;3;-0.000002, 0.449973, 0.350418;;, + 77;3;-0.000001, 0.449985, 0.350235;;, + 78;3;-0.000000, 0.449993, 0.350104;;, + 79;3;-0.000000, 0.449998, 0.350026;;, + 80;3;-0.000000, 0.450000, 0.350000;;, + 81;3;-0.000082, 0.449997, 0.350000;;, + 82;3;-0.000329, 0.449986, 0.350000;;, + 83;3;-0.000731, 0.449968, 0.350000;;, + 84;3;-0.001257, 0.449945, 0.350000;;, + 85;3;-0.001852, 0.449919, 0.350000;;, + 86;3;-0.002447, 0.449893, 0.350000;;, + 87;3;-0.002973, 0.449870, 0.350000;;, + 88;3;-0.003375, 0.449853, 0.350000;;, + 89;3;-0.003622, 0.449842, 0.350000;;, + 90;3;-0.003704, 0.449838, 0.350000;;; + } + } + Animation { + {Armature_Bone_007} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.319598,-0.677966,-0.431912, 0.501669;;, + 1;4;-0.319598,-0.677966,-0.431912, 0.501669;;, + 2;4;-0.320288,-0.677564,-0.432404, 0.501164;;, + 3;4;-0.322372,-0.676349,-0.433891, 0.499638;;, + 4;4;-0.325856,-0.674318,-0.436378, 0.497088;;, + 5;4;-0.330709,-0.671489,-0.439841, 0.493535;;, + 6;4;-0.336861,-0.667903,-0.444232, 0.489032;;, + 7;4;-0.344189,-0.663631,-0.449461, 0.483668;;, + 8;4;-0.352514,-0.658778,-0.455403, 0.477574;;, + 9;4;-0.361602,-0.653480,-0.461888, 0.470922;;, + 10;4;-0.371169,-0.647903,-0.468716, 0.463918;;, + 11;4;-0.380901,-0.642230,-0.475661, 0.456795;;, + 12;4;-0.390468,-0.636653,-0.482489, 0.449792;;, + 13;4;-0.399556,-0.631356,-0.488974, 0.443140;;, + 14;4;-0.407880,-0.626503,-0.494915, 0.437046;;, + 15;4;-0.415208,-0.622231,-0.500145, 0.431682;;, + 16;4;-0.421360,-0.618645,-0.504535, 0.427179;;, + 17;4;-0.426213,-0.615816,-0.507998, 0.423627;;, + 18;4;-0.429696,-0.613786,-0.510484, 0.421077;;, + 19;4;-0.431781,-0.612571,-0.511972, 0.419551;;, + 20;4;-0.432470,-0.612169,-0.512464, 0.419046;;, + 21;4;-0.429387,-0.614143,-0.510072, 0.421273;;, + 22;4;-0.419907,-0.620167,-0.502767, 0.428129;;, + 23;4;-0.405596,-0.629149,-0.491862, 0.438496;;, + 24;4;-0.390288,-0.638570,-0.480398, 0.449617;;, + 25;4;-0.377291,-0.646324,-0.470931, 0.459101;;, + 26;4;-0.364229,-0.654013,-0.461528, 0.468650;;, + 27;4;-0.348669,-0.663183,-0.450316, 0.480022;;, + 28;4;-0.333850,-0.671656,-0.439920, 0.490898;;, + 29;4;-0.323610,-0.676921,-0.433375, 0.498513;;, + 30;4;-0.319598,-0.677966,-0.431912, 0.501669;;, + 31;4;-0.327670,-0.669831,-0.430042, 0.507163;;, + 32;4;-0.352888,-0.648194,-0.423547, 0.520203;;, + 33;4;-0.387412,-0.619323,-0.416423, 0.534923;;, + 34;4;-0.417717,-0.593952,-0.414002, 0.543210;;, + 35;4;-0.434447,-0.579463,-0.419063, 0.540621;;, + 36;4;-0.440884,-0.576226,-0.433477, 0.524172;;, + 37;4;-0.442160,-0.582730,-0.457437, 0.493244;;, + 38;4;-0.439302,-0.595269,-0.484296, 0.457130;;, + 39;4;-0.435193,-0.606820,-0.504479, 0.429642;;, + 40;4;-0.432470,-0.612169,-0.512464, 0.419046;;, + 41;4;-0.429595,-0.613661,-0.513835, 0.418885;;, + 42;4;-0.424003,-0.615068,-0.514731, 0.421605;;, + 43;4;-0.415735,-0.616478,-0.514971, 0.427194;;, + 44;4;-0.405129,-0.618016,-0.514359, 0.435331;;, + 45;4;-0.392883,-0.619833,-0.512733, 0.445324;;, + 46;4;-0.379976,-0.622073,-0.510015, 0.456171;;, + 47;4;-0.367454,-0.624838,-0.506235, 0.466788;;, + 48;4;-0.356187,-0.628169,-0.501517, 0.476256;;, + 49;4;-0.346735,-0.632048,-0.496033, 0.483969;;, + 50;4;-0.339356,-0.636425,-0.489959, 0.489634;;, + 51;4;-0.332631,-0.641463,-0.482758, 0.494513;;, + 52;4;-0.325176,-0.647323,-0.473852, 0.499877;;, + 53;4;-0.317225,-0.653846,-0.463499, 0.505551;;, + 54;4;-0.309166,-0.660738,-0.452224, 0.511256;;, + 55;4;-0.301519,-0.667569,-0.440811, 0.516622;;, + 56;4;-0.294842,-0.673854,-0.430183, 0.521256;;, + 57;4;-0.289593,-0.679160,-0.421182, 0.524840;;, + 58;4;-0.286040,-0.683203,-0.414389, 0.527195;;, + 59;4;-0.284245,-0.685870,-0.410063, 0.528286;;, + 60;4;-0.284124,-0.687183,-0.408206, 0.528181;;, + 61;4;-0.284832,-0.687823,-0.407596, 0.527496;;, + 62;4;-0.285632,-0.688402,-0.407109, 0.526768;;, + 63;4;-0.286533,-0.688910,-0.406763, 0.525992;;, + 64;4;-0.287546,-0.689333,-0.406577, 0.525161;;, + 65;4;-0.288679,-0.689658,-0.406571, 0.524266;;, + 66;4;-0.289941,-0.689870,-0.406764, 0.523301;;, + 67;4;-0.291339,-0.689955,-0.407173, 0.522260;;, + 68;4;-0.292877,-0.689900,-0.407814, 0.521136;;, + 69;4;-0.294555,-0.689694,-0.408696, 0.519926;;, + 70;4;-0.296371,-0.689331,-0.409825, 0.518627;;, + 71;4;-0.298318,-0.688807,-0.411198, 0.517240;;, + 72;4;-0.300386,-0.688122,-0.412807, 0.515767;;, + 73;4;-0.302562,-0.687282,-0.414637, 0.514213;;, + 74;4;-0.304831,-0.686294,-0.416671, 0.512584;;, + 75;4;-0.307179,-0.685170,-0.418887, 0.510887;;, + 76;4;-0.309589,-0.683923,-0.421261, 0.509131;;, + 77;4;-0.312048,-0.682566,-0.423771, 0.507324;;, + 78;4;-0.314543,-0.681113,-0.426396, 0.505473;;, + 79;4;-0.317063,-0.679575,-0.429116, 0.503586;;, + 80;4;-0.319598,-0.677966,-0.431912, 0.501669;;, + 81;4;-0.322226,-0.675630,-0.435638, 0.499738;;, + 82;4;-0.324997,-0.671919,-0.441128, 0.497831;;, + 83;4;-0.327833,-0.666965,-0.448197, 0.495999;;, + 84;4;-0.330616,-0.661085,-0.456410, 0.494307;;, + 85;4;-0.333197,-0.654792,-0.465078, 0.492825;;, + 86;4;-0.335425,-0.648727,-0.473352, 0.491611;;, + 87;4;-0.337185,-0.643507,-0.480427, 0.490696;;, + 88;4;-0.338420,-0.639587,-0.485713, 0.490080;;, + 89;4;-0.339131,-0.637208,-0.488909, 0.489739;;, + 90;4;-0.339356,-0.636425,-0.489959, 0.489634;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.370000,-0.350000;;, + 1;3;-0.000000, 0.370000,-0.350000;;, + 2;3;-0.000000, 0.370000,-0.350000;;, + 3;3;-0.000000, 0.370000,-0.350000;;, + 4;3;-0.000000, 0.370000,-0.350000;;, + 5;3;-0.000000, 0.370000,-0.350000;;, + 6;3;-0.000000, 0.370000,-0.350000;;, + 7;3;-0.000000, 0.370000,-0.350000;;, + 8;3;-0.000000, 0.370000,-0.350000;;, + 9;3;-0.000000, 0.370000,-0.350000;;, + 10;3;-0.000000, 0.370000,-0.350000;;, + 11;3;-0.000000, 0.370000,-0.350000;;, + 12;3;-0.000000, 0.370000,-0.350000;;, + 13;3;-0.000000, 0.370000,-0.350000;;, + 14;3;-0.000000, 0.370000,-0.350000;;, + 15;3;-0.000000, 0.370000,-0.350000;;, + 16;3;-0.000000, 0.370000,-0.350000;;, + 17;3;-0.000000, 0.370000,-0.350000;;, + 18;3;-0.000000, 0.370000,-0.350000;;, + 19;3;-0.000000, 0.370000,-0.350000;;, + 20;3;-0.000000, 0.370000,-0.350000;;, + 21;3;-0.000000, 0.370000,-0.350000;;, + 22;3;-0.000000, 0.370000,-0.350000;;, + 23;3;-0.000000, 0.370000,-0.350000;;, + 24;3;-0.000000, 0.370000,-0.350000;;, + 25;3;-0.000000, 0.370000,-0.350000;;, + 26;3;-0.000000, 0.370000,-0.350000;;, + 27;3;-0.000000, 0.370000,-0.350000;;, + 28;3;-0.000000, 0.370000,-0.350000;;, + 29;3;-0.000000, 0.370000,-0.350000;;, + 30;3;-0.000000, 0.370000,-0.350000;;, + 31;3;-0.000000, 0.370000,-0.350000;;, + 32;3;-0.000000, 0.370000,-0.350000;;, + 33;3;-0.000000, 0.370000,-0.350000;;, + 34;3;-0.000000, 0.370000,-0.350000;;, + 35;3;-0.000000, 0.370000,-0.350000;;, + 36;3;-0.000000, 0.370000,-0.350000;;, + 37;3;-0.000000, 0.370000,-0.350000;;, + 38;3;-0.000000, 0.370000,-0.350000;;, + 39;3;-0.000000, 0.370000,-0.350000;;, + 40;3;-0.000000, 0.370000,-0.350000;;, + 41;3; 0.000072, 0.370002,-0.350000;;, + 42;3; 0.000290, 0.370008,-0.350000;;, + 43;3; 0.000645, 0.370019,-0.350000;;, + 44;3; 0.001109, 0.370034,-0.350000;;, + 45;3; 0.001634, 0.370052,-0.350000;;, + 46;3; 0.002159, 0.370072,-0.350000;;, + 47;3; 0.002623, 0.370092,-0.350000;;, + 48;3; 0.002978, 0.370111,-0.350000;;, + 49;3; 0.003196, 0.370128,-0.350000;;, + 50;3; 0.003268, 0.370143,-0.350000;;, + 51;3; 0.003206, 0.370157,-0.349908;;, + 52;3; 0.003020, 0.370173,-0.349631;;, + 53;3; 0.002715, 0.370190,-0.349181;;, + 54;3; 0.002313, 0.370207,-0.348593;;, + 55;3; 0.001855, 0.370224,-0.347926;;, + 56;3; 0.001391, 0.370238,-0.347259;;, + 57;3; 0.000973, 0.370250,-0.346671;;, + 58;3; 0.000642, 0.370259,-0.346221;;, + 59;3; 0.000422, 0.370264,-0.345944;;, + 60;3; 0.000321, 0.370265,-0.345852;;, + 61;3; 0.000281, 0.370264,-0.345875;;, + 62;3; 0.000243, 0.370259,-0.345944;;, + 63;3; 0.000208, 0.370252,-0.346059;;, + 64;3; 0.000175, 0.370242,-0.346221;;, + 65;3; 0.000145, 0.370229,-0.346426;;, + 66;3; 0.000117, 0.370213,-0.346671;;, + 67;3; 0.000093, 0.370195,-0.346951;;, + 68;3; 0.000073, 0.370175,-0.347259;;, + 69;3; 0.000055, 0.370154,-0.347587;;, + 70;3; 0.000040, 0.370133,-0.347926;;, + 71;3; 0.000028, 0.370111,-0.348264;;, + 72;3; 0.000019, 0.370090,-0.348593;;, + 73;3; 0.000012, 0.370070,-0.348901;;, + 74;3; 0.000007, 0.370052,-0.349181;;, + 75;3; 0.000004, 0.370037,-0.349426;;, + 76;3; 0.000002, 0.370024,-0.349631;;, + 77;3; 0.000001, 0.370013,-0.349792;;, + 78;3; 0.000000, 0.370006,-0.349908;;, + 79;3;-0.000000, 0.370002,-0.349977;;, + 80;3;-0.000000, 0.370000,-0.350000;;, + 81;3; 0.000072, 0.370003,-0.350000;;, + 82;3; 0.000290, 0.370013,-0.350000;;, + 83;3; 0.000645, 0.370028,-0.350000;;, + 84;3; 0.001109, 0.370048,-0.350000;;, + 85;3; 0.001634, 0.370072,-0.350000;;, + 86;3; 0.002159, 0.370094,-0.350000;;, + 87;3; 0.002623, 0.370115,-0.350000;;, + 88;3; 0.002978, 0.370130,-0.350000;;, + 89;3; 0.003196, 0.370140,-0.350000;;, + 90;3; 0.003268, 0.370143,-0.350000;;; + } + } + Animation { + {Armature_Bone_008} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 1;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 2;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 3;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 4;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 5;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 6;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 7;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 8;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 9;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 10;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 11;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 12;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 13;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 14;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 15;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 16;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 17;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 18;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 19;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 20;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 21;4;-0.430343, 0.506930,-0.327682,-0.669908;;, + 22;4;-0.426552, 0.521158,-0.351077,-0.646621;;, + 23;4;-0.423372, 0.537841,-0.382799,-0.615139;;, + 24;4;-0.424177, 0.547749,-0.410786,-0.587535;;, + 25;4;-0.430424, 0.545661,-0.426685,-0.572130;;, + 26;4;-0.446036, 0.529623,-0.431828,-0.568361;;, + 27;4;-0.473165, 0.500168,-0.429575,-0.573601;;, + 28;4;-0.503646, 0.466128,-0.422607,-0.584473;;, + 29;4;-0.525804, 0.440497,-0.416136,-0.594529;;, + 30;4;-0.532957, 0.430963,-0.414106,-0.598952;;, + 31;4;-0.529573, 0.432276,-0.411956,-0.601876;;, + 32;4;-0.520708, 0.438284,-0.403853,-0.608859;;, + 33;4;-0.507758, 0.447792,-0.391311,-0.618867;;, + 34;4;-0.494055, 0.457946,-0.377950,-0.629434;;, + 35;4;-0.482438, 0.466313,-0.366855,-0.638456;;, + 36;4;-0.470683, 0.474543,-0.355897,-0.647615;;, + 37;4;-0.456654, 0.484374,-0.342859,-0.658508;;, + 38;4;-0.443445, 0.493627,-0.330572,-0.668775;;, + 39;4;-0.434691, 0.499748,-0.322355,-0.675648;;, + 40;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 41;4;-0.433297, 0.501304,-0.319938,-0.677143;;, + 42;4;-0.437234, 0.500436,-0.321192,-0.674436;;, + 43;4;-0.443562, 0.499099,-0.323304,-0.669960;;, + 44;4;-0.451798, 0.497393,-0.326109,-0.664065;;, + 45;4;-0.461102, 0.495485,-0.329311,-0.657361;;, + 46;4;-0.470390, 0.493593,-0.332529,-0.650642;;, + 47;4;-0.478580, 0.491932,-0.335379,-0.644701;;, + 48;4;-0.484836, 0.490667,-0.337563,-0.640154;;, + 49;4;-0.488682, 0.489891,-0.338909,-0.637355;;, + 50;4;-0.489959, 0.489634,-0.339356,-0.636425;;, + 51;4;-0.488203, 0.490544,-0.338076,-0.637494;;, + 52;4;-0.482907, 0.493275,-0.334232,-0.640722;;, + 53;4;-0.474276, 0.497695,-0.328002,-0.645990;;, + 54;4;-0.462950, 0.503437,-0.319892,-0.652919;;, + 55;4;-0.450057, 0.509882,-0.310765,-0.660829;;, + 56;4;-0.437072, 0.516234,-0.301731,-0.668832;;, + 57;4;-0.425478, 0.521708,-0.293889,-0.676029;;, + 58;4;-0.416428, 0.525709,-0.288078,-0.681717;;, + 59;4;-0.410592, 0.527900,-0.284774,-0.685484;;, + 60;4;-0.408206, 0.528180,-0.284123,-0.687183;;, + 61;4;-0.407596, 0.527496,-0.284832,-0.687823;;, + 62;4;-0.407109, 0.526768,-0.285632,-0.688402;;, + 63;4;-0.406763, 0.525992,-0.286533,-0.688910;;, + 64;4;-0.406577, 0.525161,-0.287546,-0.689333;;, + 65;4;-0.406571, 0.524266,-0.288679,-0.689658;;, + 66;4;-0.406764, 0.523301,-0.289941,-0.689870;;, + 67;4;-0.407173, 0.522260,-0.291339,-0.689955;;, + 68;4;-0.407814, 0.521136,-0.292877,-0.689900;;, + 69;4;-0.408696, 0.519926,-0.294555,-0.689694;;, + 70;4;-0.409825, 0.518627,-0.296371,-0.689331;;, + 71;4;-0.411198, 0.517240,-0.298318,-0.688807;;, + 72;4;-0.412807, 0.515767,-0.300386,-0.688122;;, + 73;4;-0.414638, 0.514213,-0.302562,-0.687282;;, + 74;4;-0.416671, 0.512583,-0.304831,-0.686294;;, + 75;4;-0.418887, 0.510887,-0.307178,-0.685170;;, + 76;4;-0.421261, 0.509131,-0.309589,-0.683923;;, + 77;4;-0.423772, 0.507324,-0.312048,-0.682566;;, + 78;4;-0.426396, 0.505473,-0.314543,-0.681113;;, + 79;4;-0.429116, 0.503586,-0.317062,-0.679575;;, + 80;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 81;4;-0.435638, 0.499737,-0.322226,-0.675630;;, + 82;4;-0.441129, 0.497831,-0.324997,-0.671920;;, + 83;4;-0.448197, 0.495999,-0.327833,-0.666966;;, + 84;4;-0.456410, 0.494307,-0.330616,-0.661085;;, + 85;4;-0.465078, 0.492825,-0.333197,-0.654792;;, + 86;4;-0.473352, 0.491611,-0.335425,-0.648727;;, + 87;4;-0.480427, 0.490696,-0.337185,-0.643507;;, + 88;4;-0.485713, 0.490080,-0.338420,-0.639587;;, + 89;4;-0.488910, 0.489739,-0.339131,-0.637208;;, + 90;4;-0.489959, 0.489634,-0.339356,-0.636425;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.370000, 0.350000;;, + 1;3;-0.000000, 0.370000, 0.350000;;, + 2;3;-0.000000, 0.370000, 0.350000;;, + 3;3;-0.000000, 0.370000, 0.350000;;, + 4;3;-0.000000, 0.370000, 0.350000;;, + 5;3;-0.000000, 0.370000, 0.350000;;, + 6;3;-0.000000, 0.370000, 0.350000;;, + 7;3;-0.000000, 0.370000, 0.350000;;, + 8;3;-0.000000, 0.370000, 0.350000;;, + 9;3;-0.000000, 0.370000, 0.350000;;, + 10;3;-0.000000, 0.370000, 0.350000;;, + 11;3;-0.000000, 0.370000, 0.350000;;, + 12;3;-0.000000, 0.370000, 0.350000;;, + 13;3;-0.000000, 0.370000, 0.350000;;, + 14;3;-0.000000, 0.370000, 0.350000;;, + 15;3;-0.000000, 0.370000, 0.350000;;, + 16;3;-0.000000, 0.370000, 0.350000;;, + 17;3;-0.000000, 0.370000, 0.350000;;, + 18;3;-0.000000, 0.370000, 0.350000;;, + 19;3;-0.000000, 0.370000, 0.350000;;, + 20;3;-0.000000, 0.370000, 0.350000;;, + 21;3;-0.000000, 0.370000, 0.350000;;, + 22;3;-0.000000, 0.370000, 0.350000;;, + 23;3;-0.000000, 0.370000, 0.350000;;, + 24;3;-0.000000, 0.370000, 0.350000;;, + 25;3;-0.000000, 0.370000, 0.350000;;, + 26;3;-0.000000, 0.370000, 0.350000;;, + 27;3;-0.000000, 0.370000, 0.350000;;, + 28;3;-0.000000, 0.370000, 0.350000;;, + 29;3;-0.000000, 0.370000, 0.350000;;, + 30;3;-0.000000, 0.370000, 0.350000;;, + 31;3;-0.000000, 0.370000, 0.350000;;, + 32;3;-0.000000, 0.370000, 0.350000;;, + 33;3;-0.000000, 0.370000, 0.350000;;, + 34;3;-0.000000, 0.370000, 0.350000;;, + 35;3;-0.000000, 0.370000, 0.350000;;, + 36;3;-0.000000, 0.370000, 0.350000;;, + 37;3;-0.000000, 0.370000, 0.350000;;, + 38;3;-0.000000, 0.370000, 0.350000;;, + 39;3;-0.000000, 0.370000, 0.350000;;, + 40;3;-0.000000, 0.370000, 0.350000;;, + 41;3; 0.000072, 0.370002, 0.350000;;, + 42;3; 0.000291, 0.370008, 0.350000;;, + 43;3; 0.000645, 0.370019, 0.350000;;, + 44;3; 0.001109, 0.370034, 0.350000;;, + 45;3; 0.001634, 0.370052, 0.350000;;, + 46;3; 0.002159, 0.370072, 0.350000;;, + 47;3; 0.002623, 0.370092, 0.350000;;, + 48;3; 0.002978, 0.370111, 0.350000;;, + 49;3; 0.003196, 0.370128, 0.350000;;, + 50;3; 0.003268, 0.370143, 0.350000;;, + 51;3; 0.003206, 0.370157, 0.349908;;, + 52;3; 0.003020, 0.370173, 0.349631;;, + 53;3; 0.002715, 0.370190, 0.349181;;, + 54;3; 0.002314, 0.370207, 0.348593;;, + 55;3; 0.001855, 0.370224, 0.347926;;, + 56;3; 0.001391, 0.370238, 0.347259;;, + 57;3; 0.000973, 0.370250, 0.346671;;, + 58;3; 0.000643, 0.370259, 0.346221;;, + 59;3; 0.000422, 0.370264, 0.345944;;, + 60;3; 0.000322, 0.370265, 0.345852;;, + 61;3; 0.000281, 0.370264, 0.345875;;, + 62;3; 0.000243, 0.370260, 0.345944;;, + 63;3; 0.000208, 0.370252, 0.346060;;, + 64;3; 0.000175, 0.370242, 0.346221;;, + 65;3; 0.000145, 0.370229, 0.346426;;, + 66;3; 0.000118, 0.370213, 0.346671;;, + 67;3; 0.000093, 0.370195, 0.346951;;, + 68;3; 0.000073, 0.370175, 0.347259;;, + 69;3; 0.000055, 0.370154, 0.347587;;, + 70;3; 0.000040, 0.370133, 0.347926;;, + 71;3; 0.000028, 0.370111, 0.348264;;, + 72;3; 0.000019, 0.370090, 0.348593;;, + 73;3; 0.000012, 0.370070, 0.348901;;, + 74;3; 0.000007, 0.370052, 0.349181;;, + 75;3; 0.000004, 0.370037, 0.349426;;, + 76;3; 0.000002, 0.370024, 0.349631;;, + 77;3; 0.000001, 0.370013, 0.349793;;, + 78;3; 0.000000, 0.370006, 0.349908;;, + 79;3;-0.000000, 0.370002, 0.349977;;, + 80;3;-0.000000, 0.370000, 0.350000;;, + 81;3; 0.000072, 0.370003, 0.350000;;, + 82;3; 0.000290, 0.370013, 0.350000;;, + 83;3; 0.000645, 0.370028, 0.350000;;, + 84;3; 0.001109, 0.370049, 0.350000;;, + 85;3; 0.001634, 0.370071, 0.350000;;, + 86;3; 0.002159, 0.370094, 0.350000;;, + 87;3; 0.002623, 0.370115, 0.350000;;, + 88;3; 0.002978, 0.370130, 0.350000;;, + 89;3; 0.003196, 0.370140, 0.350000;;, + 90;3; 0.003268, 0.370143, 0.350000;;; + } + } + Animation { + {Armature_Bone_009} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 1;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 2;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 3;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 4;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 5;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 6;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 7;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 8;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 9;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 10;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 11;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 12;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 13;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 14;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 15;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 16;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 17;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 18;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 19;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 20;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 21;4;-0.171292,-0.792475,-0.251317, 0.526549;;, + 22;4;-0.193248,-0.771364,-0.249637, 0.546270;;, + 23;4;-0.223546,-0.743385,-0.249591, 0.570717;;, + 24;4;-0.251250,-0.719894,-0.253662, 0.588055;;, + 25;4;-0.268549,-0.708463,-0.262571, 0.591119;;, + 26;4;-0.279750,-0.709268,-0.276909, 0.577247;;, + 27;4;-0.290100,-0.720419,-0.296449, 0.546706;;, + 28;4;-0.297644,-0.737394,-0.316737, 0.509204;;, + 29;4;-0.300956,-0.752215,-0.331815, 0.479757;;, + 30;4;-0.300181,-0.759263,-0.338560, 0.467747;;, + 31;4;-0.294533,-0.762200,-0.337904, 0.467422;;, + 32;4;-0.282366,-0.766052,-0.330739, 0.471577;;, + 33;4;-0.265342,-0.770585,-0.318723, 0.479071;;, + 34;4;-0.247421,-0.775245,-0.305812, 0.487182;;, + 35;4;-0.231981,-0.779557,-0.295379, 0.493587;;, + 36;4;-0.216498,-0.784385,-0.284989, 0.499477;;, + 37;4;-0.198473,-0.790273,-0.272179, 0.506361;;, + 38;4;-0.181365,-0.795779,-0.260244, 0.512886;;, + 39;4;-0.169233,-0.799209,-0.253042, 0.517465;;, + 40;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 41;4;-0.162442,-0.798703,-0.255561, 0.519869;;, + 42;4;-0.162930,-0.796660,-0.261194, 0.519765;;, + 43;4;-0.165185,-0.793799,-0.268891, 0.519134;;, + 44;4;-0.168946,-0.790314,-0.278146, 0.518052;;, + 45;4;-0.173708,-0.786524,-0.288130, 0.516669;;, + 46;4;-0.178778,-0.782831,-0.297805, 0.515188;;, + 47;4;-0.183435,-0.779629,-0.306165, 0.513823;;, + 48;4;-0.187092,-0.777211,-0.312460, 0.512749;;, + 49;4;-0.189384,-0.775737,-0.316289, 0.512075;;, + 50;4;-0.190155,-0.775251,-0.317551, 0.511848;;, + 51;4;-0.188583,-0.775815,-0.315644, 0.512426;;, + 52;4;-0.183859,-0.777517,-0.309895, 0.514159;;, + 53;4;-0.176198,-0.780295,-0.300528, 0.516967;;, + 54;4;-0.166213,-0.783949,-0.288242, 0.520619;;, + 55;4;-0.154958,-0.788121,-0.274267, 0.524724;;, + 56;4;-0.143790,-0.792342,-0.260205, 0.528780;;, + 57;4;-0.134055,-0.796137,-0.247668, 0.532291;;, + 58;4;-0.126785,-0.799138,-0.237910, 0.534877;;, + 59;4;-0.122565,-0.801125,-0.231658, 0.536325;;, + 60;4;-0.121580,-0.802023,-0.229163, 0.536569;;, + 61;4;-0.122260,-0.802383,-0.228579, 0.536191;;, + 62;4;-0.123065,-0.802757,-0.228082, 0.535757;;, + 63;4;-0.124009,-0.803138,-0.227689, 0.535265;;, + 64;4;-0.125105,-0.803515,-0.227422, 0.534711;;, + 65;4;-0.126364,-0.803880,-0.227305, 0.534092;;, + 66;4;-0.127799,-0.804220,-0.227360, 0.533407;;, + 67;4;-0.129416,-0.804520,-0.227612, 0.532656;;, + 68;4;-0.131222,-0.804766,-0.228084, 0.531841;;, + 69;4;-0.133216,-0.804941,-0.228794, 0.530964;;, + 70;4;-0.135394,-0.805033,-0.229757, 0.530032;;, + 71;4;-0.137745,-0.805026,-0.230980, 0.529051;;, + 72;4;-0.140256,-0.804911,-0.232466, 0.528030;;, + 73;4;-0.142909,-0.804681,-0.234207, 0.526978;;, + 74;4;-0.145683,-0.804331,-0.236193, 0.525905;;, + 75;4;-0.148557,-0.803862,-0.238407, 0.524818;;, + 76;4;-0.151511,-0.803274,-0.240830, 0.523727;;, + 77;4;-0.154526,-0.802573,-0.243440, 0.522638;;, + 78;4;-0.157585,-0.801765,-0.246218, 0.521556;;, + 79;4;-0.160672,-0.800856,-0.249142, 0.520486;;, + 80;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 81;4;-0.167041,-0.798407,-0.256322, 0.518362;;, + 82;4;-0.170579,-0.796167,-0.262460, 0.517258;;, + 83;4;-0.174288,-0.793213,-0.270398, 0.516150;;, + 84;4;-0.178005,-0.789731,-0.279646, 0.515083;;, + 85;4;-0.181517,-0.786021,-0.289423, 0.514109;;, + 86;4;-0.184597,-0.782457,-0.298769, 0.513280;;, + 87;4;-0.187063,-0.779396,-0.306766, 0.512634;;, + 88;4;-0.188814,-0.777100,-0.312745, 0.512185;;, + 89;4;-0.189831,-0.775709,-0.316363, 0.511929;;, + 90;4;-0.190155,-0.775251,-0.317551, 0.511848;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.280000,-0.350000;;, + 1;3;-0.000000, 0.280000,-0.350000;;, + 2;3;-0.000000, 0.280000,-0.350000;;, + 3;3;-0.000000, 0.280000,-0.350000;;, + 4;3;-0.000000, 0.280000,-0.350000;;, + 5;3;-0.000000, 0.280000,-0.350000;;, + 6;3;-0.000000, 0.280000,-0.350000;;, + 7;3;-0.000000, 0.280000,-0.350000;;, + 8;3;-0.000000, 0.280000,-0.350000;;, + 9;3;-0.000000, 0.280000,-0.350000;;, + 10;3;-0.000000, 0.280000,-0.350000;;, + 11;3;-0.000000, 0.280000,-0.350000;;, + 12;3;-0.000000, 0.280000,-0.350000;;, + 13;3;-0.000000, 0.280000,-0.350000;;, + 14;3;-0.000000, 0.280000,-0.350000;;, + 15;3;-0.000000, 0.280000,-0.350000;;, + 16;3;-0.000000, 0.280000,-0.350000;;, + 17;3;-0.000000, 0.280000,-0.350000;;, + 18;3;-0.000000, 0.280000,-0.350000;;, + 19;3;-0.000000, 0.280000,-0.350000;;, + 20;3;-0.000000, 0.280000,-0.350000;;, + 21;3;-0.000000, 0.280000,-0.350000;;, + 22;3;-0.000000, 0.280000,-0.350000;;, + 23;3;-0.000000, 0.280000,-0.350000;;, + 24;3;-0.000000, 0.280000,-0.350000;;, + 25;3;-0.000000, 0.280000,-0.350000;;, + 26;3;-0.000000, 0.280000,-0.350000;;, + 27;3;-0.000000, 0.280000,-0.350000;;, + 28;3;-0.000000, 0.280000,-0.350000;;, + 29;3;-0.000000, 0.280000,-0.350000;;, + 30;3;-0.000000, 0.280000,-0.350000;;, + 31;3;-0.000000, 0.280000,-0.350000;;, + 32;3;-0.000000, 0.280000,-0.350000;;, + 33;3;-0.000000, 0.280000,-0.350000;;, + 34;3;-0.000000, 0.280000,-0.350000;;, + 35;3;-0.000000, 0.280000,-0.350000;;, + 36;3;-0.000000, 0.280000,-0.350000;;, + 37;3;-0.000000, 0.280000,-0.350000;;, + 38;3;-0.000000, 0.280000,-0.350000;;, + 39;3;-0.000000, 0.280000,-0.350000;;, + 40;3;-0.000000, 0.280000,-0.350000;;, + 41;3; 0.000246, 0.280007,-0.350000;;, + 42;3; 0.000988, 0.280029,-0.350000;;, + 43;3; 0.002193, 0.280065,-0.350000;;, + 44;3; 0.003770, 0.280115,-0.350000;;, + 45;3; 0.005556, 0.280177,-0.350000;;, + 46;3; 0.007342, 0.280244,-0.350000;;, + 47;3; 0.008919, 0.280313,-0.350000;;, + 48;3; 0.010124, 0.280378,-0.350000;;, + 49;3; 0.010866, 0.280436,-0.350000;;, + 50;3; 0.011112, 0.280485,-0.350000;;, + 51;3; 0.010902, 0.280533,-0.349687;;, + 52;3; 0.010267, 0.280587,-0.348746;;, + 53;3; 0.009230, 0.280645,-0.347216;;, + 54;3; 0.007866, 0.280703,-0.345215;;, + 55;3; 0.006308, 0.280760,-0.342948;;, + 56;3; 0.004730, 0.280810,-0.340681;;, + 57;3; 0.003310, 0.280851,-0.338680;;, + 58;3; 0.002184, 0.280880,-0.337150;;, + 59;3; 0.001436, 0.280897,-0.336209;;, + 60;3; 0.001093, 0.280902,-0.335897;;, + 61;3; 0.000957, 0.280897,-0.335974;;, + 62;3; 0.000827, 0.280882,-0.336209;;, + 63;3; 0.000706, 0.280857,-0.336602;;, + 64;3; 0.000594, 0.280822,-0.337150;;, + 65;3; 0.000492, 0.280778,-0.337847;;, + 66;3; 0.000400, 0.280724,-0.338680;;, + 67;3; 0.000318, 0.280663,-0.339633;;, + 68;3; 0.000247, 0.280596,-0.340681;;, + 69;3; 0.000186, 0.280525,-0.341797;;, + 70;3; 0.000137, 0.280451,-0.342948;;, + 71;3; 0.000096, 0.280378,-0.344099;;, + 72;3; 0.000065, 0.280306,-0.345215;;, + 73;3; 0.000042, 0.280239,-0.346264;;, + 74;3; 0.000025, 0.280178,-0.347216;;, + 75;3; 0.000014, 0.280125,-0.348050;;, + 76;3; 0.000007, 0.280080,-0.348746;;, + 77;3; 0.000003, 0.280045,-0.349295;;, + 78;3; 0.000001, 0.280020,-0.349687;;, + 79;3;-0.000000, 0.280005,-0.349922;;, + 80;3;-0.000000, 0.280000,-0.350000;;, + 81;3; 0.000246, 0.280011,-0.350000;;, + 82;3; 0.000988, 0.280043,-0.350000;;, + 83;3; 0.002193, 0.280096,-0.350000;;, + 84;3; 0.003770, 0.280165,-0.350000;;, + 85;3; 0.005556, 0.280243,-0.350000;;, + 86;3; 0.007342, 0.280321,-0.350000;;, + 87;3; 0.008919, 0.280389,-0.350000;;, + 88;3; 0.010125, 0.280442,-0.350000;;, + 89;3; 0.010866, 0.280474,-0.350000;;, + 90;3; 0.011112, 0.280485,-0.350000;;; + } + } + Animation { + {Armature_Bone_010} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.252193, 0.519431,-0.163776,-0.799855;;, + 1;4;-0.252193, 0.519431,-0.163776,-0.799855;;, + 2;4;-0.252721, 0.519116,-0.164609,-0.799607;;, + 3;4;-0.254316, 0.518161,-0.167128,-0.798857;;, + 4;4;-0.256981, 0.516566,-0.171338,-0.797604;;, + 5;4;-0.260695, 0.514344,-0.177204,-0.795859;;, + 6;4;-0.265402, 0.511527,-0.184638,-0.793646;;, + 7;4;-0.271009, 0.508171,-0.193494,-0.791011;;, + 8;4;-0.277379, 0.504359,-0.203554,-0.788017;;, + 9;4;-0.284333, 0.500198,-0.214537,-0.784749;;, + 10;4;-0.291654, 0.495817,-0.226099,-0.781308;;, + 11;4;-0.299100, 0.491361,-0.237859,-0.777809;;, + 12;4;-0.306421, 0.486980,-0.249422,-0.774368;;, + 13;4;-0.313375, 0.482819,-0.260404,-0.771100;;, + 14;4;-0.319744, 0.479007,-0.270465,-0.768106;;, + 15;4;-0.325351, 0.475652,-0.279320,-0.765471;;, + 16;4;-0.330058, 0.472835,-0.286754,-0.763259;;, + 17;4;-0.333772, 0.470612,-0.292619,-0.761514;;, + 18;4;-0.336438, 0.469017,-0.296829,-0.760261;;, + 19;4;-0.338032, 0.468063,-0.299348,-0.759511;;, + 20;4;-0.338560, 0.467747,-0.300181,-0.759264;;, + 21;4;-0.335792, 0.468887,-0.296643,-0.760735;;, + 22;4;-0.327388, 0.472463,-0.285716,-0.765167;;, + 23;4;-0.314961, 0.478033,-0.269101,-0.771627;;, + 24;4;-0.302097, 0.484277,-0.251131,-0.778154;;, + 25;4;-0.291744, 0.489957,-0.235611,-0.783192;;, + 26;4;-0.281576, 0.495824,-0.219905,-0.788042;;, + 27;4;-0.269440, 0.502794,-0.201209,-0.793843;;, + 28;4;-0.258484, 0.509836,-0.183122,-0.798831;;, + 29;4;-0.252275, 0.515606,-0.169999,-0.801068;;, + 30;4;-0.252193, 0.519431,-0.163776,-0.799855;;, + 31;4;-0.253356, 0.528589,-0.169252,-0.790436;;, + 32;4;-0.252052, 0.548687,-0.190830,-0.768950;;, + 33;4;-0.251141, 0.572270,-0.221992,-0.741836;;, + 34;4;-0.254119, 0.588517,-0.250788,-0.719438;;, + 35;4;-0.262568, 0.591122,-0.268546,-0.708465;;, + 36;4;-0.276680, 0.577477,-0.279973,-0.709043;;, + 37;4;-0.295680, 0.547475,-0.290865,-0.719653;;, + 38;4;-0.315542, 0.510399,-0.298837,-0.736201;;, + 39;4;-0.330806, 0.480766,-0.301963,-0.751207;;, + 40;4;-0.338560, 0.467747,-0.300181,-0.759264;;, + 41;4;-0.342060, 0.465129,-0.294983,-0.762747;;, + 42;4;-0.344609, 0.465174,-0.287133,-0.765377;;, + 43;4;-0.345966, 0.467899,-0.276707,-0.767177;;, + 44;4;-0.345911, 0.473042,-0.264084,-0.768268;;, + 45;4;-0.344307, 0.480004,-0.249999,-0.768883;;, + 46;4;-0.341161, 0.487894,-0.235456,-0.769344;;, + 47;4;-0.336637, 0.495731,-0.221505,-0.769988;;, + 48;4;-0.331002, 0.502669,-0.209000,-0.771089;;, + 49;4;-0.324552, 0.508139,-0.198475,-0.772818;;, + 50;4;-0.317551, 0.511848,-0.190155,-0.775251;;, + 51;4;-0.309437, 0.514831,-0.182375,-0.778220;;, + 52;4;-0.299571, 0.518159,-0.173535,-0.781517;;, + 53;4;-0.288242, 0.521727,-0.163911,-0.785056;;, + 54;4;-0.276014, 0.525357,-0.153985,-0.788687;;, + 55;4;-0.263725, 0.528808,-0.144417,-0.792205;;, + 56;4;-0.252350, 0.531824,-0.135936,-0.795385;;, + 57;4;-0.242771, 0.534188,-0.129158,-0.798035;;, + 58;4;-0.235586, 0.535777,-0.124461,-0.800038;;, + 59;4;-0.231055, 0.536558,-0.121961,-0.801359;;, + 60;4;-0.229163, 0.536569,-0.121580,-0.802023;;, + 61;4;-0.228579, 0.536190,-0.122260,-0.802383;;, + 62;4;-0.228082, 0.535757,-0.123065,-0.802757;;, + 63;4;-0.227689, 0.535265,-0.124009,-0.803138;;, + 64;4;-0.227422, 0.534711,-0.125105,-0.803515;;, + 65;4;-0.227305, 0.534092,-0.126364,-0.803880;;, + 66;4;-0.227360, 0.533407,-0.127799,-0.804220;;, + 67;4;-0.227612, 0.532656,-0.129416,-0.804520;;, + 68;4;-0.228084, 0.531840,-0.131222,-0.804766;;, + 69;4;-0.228794, 0.530964,-0.133216,-0.804942;;, + 70;4;-0.229757, 0.530031,-0.135394,-0.805033;;, + 71;4;-0.230980, 0.529051,-0.137745,-0.805026;;, + 72;4;-0.232466, 0.528030,-0.140256,-0.804911;;, + 73;4;-0.234207, 0.526978,-0.142909,-0.804681;;, + 74;4;-0.236193, 0.525905,-0.145683,-0.804332;;, + 75;4;-0.238407, 0.524818,-0.148557,-0.803862;;, + 76;4;-0.240830, 0.523727,-0.151511,-0.803274;;, + 77;4;-0.243440, 0.522638,-0.154526,-0.802573;;, + 78;4;-0.246218, 0.521556,-0.157584,-0.801765;;, + 79;4;-0.249142, 0.520486,-0.160672,-0.800856;;, + 80;4;-0.252193, 0.519431,-0.163776,-0.799855;;, + 81;4;-0.256322, 0.518362,-0.167041,-0.798407;;, + 82;4;-0.262460, 0.517258,-0.170579,-0.796168;;, + 83;4;-0.270398, 0.516150,-0.174288,-0.793214;;, + 84;4;-0.279646, 0.515082,-0.178005,-0.789731;;, + 85;4;-0.289423, 0.514109,-0.181517,-0.786021;;, + 86;4;-0.298769, 0.513280,-0.184597,-0.782457;;, + 87;4;-0.306766, 0.512634,-0.187063,-0.779396;;, + 88;4;-0.312745, 0.512185,-0.188814,-0.777100;;, + 89;4;-0.316363, 0.511929,-0.189831,-0.775709;;, + 90;4;-0.317551, 0.511848,-0.190155,-0.775251;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.280000, 0.350000;;, + 1;3;-0.000000, 0.280000, 0.350000;;, + 2;3;-0.000000, 0.280000, 0.350000;;, + 3;3;-0.000000, 0.280000, 0.350000;;, + 4;3;-0.000000, 0.280000, 0.350000;;, + 5;3;-0.000000, 0.280000, 0.350000;;, + 6;3;-0.000000, 0.280000, 0.350000;;, + 7;3;-0.000000, 0.280000, 0.350000;;, + 8;3;-0.000000, 0.280000, 0.350000;;, + 9;3;-0.000000, 0.280000, 0.350000;;, + 10;3;-0.000000, 0.280000, 0.350000;;, + 11;3;-0.000000, 0.280000, 0.350000;;, + 12;3;-0.000000, 0.280000, 0.350000;;, + 13;3;-0.000000, 0.280000, 0.350000;;, + 14;3;-0.000000, 0.280000, 0.350000;;, + 15;3;-0.000000, 0.280000, 0.350000;;, + 16;3;-0.000000, 0.280000, 0.350000;;, + 17;3;-0.000000, 0.280000, 0.350000;;, + 18;3;-0.000000, 0.280000, 0.350000;;, + 19;3;-0.000000, 0.280000, 0.350000;;, + 20;3;-0.000000, 0.280000, 0.350000;;, + 21;3;-0.000000, 0.280000, 0.350000;;, + 22;3;-0.000000, 0.280000, 0.350000;;, + 23;3;-0.000000, 0.280000, 0.350000;;, + 24;3;-0.000000, 0.280000, 0.350000;;, + 25;3;-0.000000, 0.280000, 0.350000;;, + 26;3;-0.000000, 0.280000, 0.350000;;, + 27;3;-0.000000, 0.280000, 0.350000;;, + 28;3;-0.000000, 0.280000, 0.350000;;, + 29;3;-0.000000, 0.280000, 0.350000;;, + 30;3;-0.000000, 0.280000, 0.350000;;, + 31;3;-0.000000, 0.280000, 0.350000;;, + 32;3;-0.000000, 0.280000, 0.350000;;, + 33;3;-0.000000, 0.280000, 0.350000;;, + 34;3;-0.000000, 0.280000, 0.350000;;, + 35;3;-0.000000, 0.280000, 0.350000;;, + 36;3;-0.000000, 0.280000, 0.350000;;, + 37;3;-0.000000, 0.280000, 0.350000;;, + 38;3;-0.000000, 0.280000, 0.350000;;, + 39;3;-0.000000, 0.280000, 0.350000;;, + 40;3;-0.000000, 0.280000, 0.350000;;, + 41;3; 0.000246, 0.280007, 0.350000;;, + 42;3; 0.000988, 0.280029, 0.350000;;, + 43;3; 0.002193, 0.280065, 0.350000;;, + 44;3; 0.003770, 0.280115, 0.350000;;, + 45;3; 0.005556, 0.280177, 0.350000;;, + 46;3; 0.007342, 0.280244, 0.350000;;, + 47;3; 0.008919, 0.280313, 0.350000;;, + 48;3; 0.010125, 0.280378, 0.350000;;, + 49;3; 0.010866, 0.280436, 0.350000;;, + 50;3; 0.011112, 0.280485, 0.350000;;, + 51;3; 0.010902, 0.280534, 0.349687;;, + 52;3; 0.010267, 0.280587, 0.348746;;, + 53;3; 0.009230, 0.280645, 0.347216;;, + 54;3; 0.007866, 0.280703, 0.345215;;, + 55;3; 0.006308, 0.280760, 0.342948;;, + 56;3; 0.004730, 0.280810, 0.340681;;, + 57;3; 0.003310, 0.280851, 0.338680;;, + 58;3; 0.002185, 0.280880, 0.337150;;, + 59;3; 0.001436, 0.280897, 0.336209;;, + 60;3; 0.001093, 0.280903, 0.335897;;, + 61;3; 0.000957, 0.280898, 0.335974;;, + 62;3; 0.000828, 0.280883, 0.336209;;, + 63;3; 0.000707, 0.280857, 0.336602;;, + 64;3; 0.000595, 0.280822, 0.337150;;, + 65;3; 0.000492, 0.280778, 0.337847;;, + 66;3; 0.000400, 0.280724, 0.338680;;, + 67;3; 0.000318, 0.280664, 0.339633;;, + 68;3; 0.000247, 0.280596, 0.340681;;, + 69;3; 0.000186, 0.280525, 0.341797;;, + 70;3; 0.000137, 0.280451, 0.342948;;, + 71;3; 0.000097, 0.280378, 0.344099;;, + 72;3; 0.000065, 0.280306, 0.345215;;, + 73;3; 0.000042, 0.280239, 0.346264;;, + 74;3; 0.000025, 0.280178, 0.347216;;, + 75;3; 0.000014, 0.280125, 0.348050;;, + 76;3; 0.000007, 0.280080, 0.348746;;, + 77;3; 0.000003, 0.280045, 0.349295;;, + 78;3; 0.000001, 0.280020, 0.349687;;, + 79;3; 0.000000, 0.280005, 0.349922;;, + 80;3;-0.000000, 0.280000, 0.350000;;, + 81;3; 0.000246, 0.280011, 0.350000;;, + 82;3; 0.000988, 0.280043, 0.350000;;, + 83;3; 0.002193, 0.280096, 0.350000;;, + 84;3; 0.003770, 0.280165, 0.350000;;, + 85;3; 0.005556, 0.280243, 0.350000;;, + 86;3; 0.007342, 0.280321, 0.350000;;, + 87;3; 0.008919, 0.280390, 0.350000;;, + 88;3; 0.010125, 0.280442, 0.350000;;, + 89;3; 0.010866, 0.280475, 0.350000;;, + 90;3; 0.011112, 0.280485, 0.350000;;; + } + } + Animation { + {Group8} + AnimationKey { // Rotation + 0; + 91; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs/models/mobs_stone_monster.png b/mods/mobs/models/mobs_stone_monster.png new file mode 100644 index 0000000..95c3c16 Binary files /dev/null and b/mods/mobs/models/mobs_stone_monster.png differ diff --git a/mods/mobs/models/mobs_stone_monster.x b/mods/mobs/models/mobs_stone_monster.x new file mode 100644 index 0000000..ad0c6d8 --- /dev/null +++ b/mods/mobs/models/mobs_stone_monster.x @@ -0,0 +1,2753 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.019749, 0.002151, 3.487330, 1.000000;; + } + Frame Armature_Root { + FrameTransformMatrix { + 0.999981,-0.000000,-0.006250, 0.000000, + 0.006250, 0.000000, 0.999981, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -0.013160,-0.000000,-0.231382, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 0.992969, 0.003712,-0.118316, 0.000000, + -0.118209,-0.021667,-0.992752, 0.000000, + -0.006249, 0.999758,-0.021075, 0.000000, + -0.777564, 2.195408, 0.000000, 1.000000;; + } + } //End of Armature_Bone_001 + Frame Armature_Bone_002 { + FrameTransformMatrix { + 0.986605, 0.002728, 0.163107, 0.000000, + 0.163010, 0.021813,-0.986383, 0.000000, + -0.006249, 0.999758, 0.021076, 0.000000, + 0.734794, 2.204861, 0.000000, 1.000000;; + } + } //End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 0.999979, 0.006415,-0.000010, 0.000000, + 0.006403,-0.997984, 0.063140, 0.000000, + 0.000395,-0.063139,-0.998005, 0.000000, + 0.287642,-0.253263, 0.000001, 1.000000;; + } + } //End of Armature_Bone_003 + Frame Armature_Bone_004 { + FrameTransformMatrix { + 0.999979, 0.006415, 0.000010, 0.000000, + 0.006403,-0.997984,-0.063141, 0.000000, + -0.000395, 0.063139,-0.998005, 0.000000, + -0.421866,-0.257697, 0.000001, 1.000000;; + } + } //End of Armature_Bone_004 + } //End of Armature_Root + Frame Cube_003 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -0.019749,-0.002151,-3.487330, 1.000000;; + } + Mesh { //Cube_000 Mesh + 192; + -0.137080; 0.268539; 0.030404;, + -0.137080;-0.268539; 0.030404;, + -0.137080;-0.268539; 3.018199;, + -0.137080; 0.268539; 3.018199;, + -0.137080;-0.268539; 0.030404;, + -0.674158;-0.268539; 0.030404;, + -0.674158;-0.268539; 3.018199;, + -0.137080;-0.268539; 3.018199;, + -0.674158;-0.268539; 0.030404;, + -0.674158; 0.268539; 0.030404;, + -0.674157; 0.268539; 3.018199;, + -0.674158;-0.268539; 3.018199;, + -0.674158; 0.268539; 0.030404;, + -0.137080; 0.268539; 0.030404;, + -0.137080; 0.268539; 3.018199;, + -0.674157; 0.268539; 3.018199;, + -0.674158; 0.268539; 0.030404;, + -0.674158;-0.268539; 0.030404;, + -0.137080;-0.268539; 0.030404;, + -0.137080; 0.268539; 0.030404;, + -0.137080; 0.268539; 3.018199;, + -0.137080;-0.268539; 3.018199;, + -0.674158;-0.268539; 3.018199;, + -0.674157; 0.268539; 3.018199;, + 0.588564; 0.268539; 3.018199;, + 0.588564;-0.268539; 3.018199;, + 0.051486;-0.268539; 3.018199;, + 0.051486; 0.268539; 3.018199;, + 0.051486; 0.268539; 0.030404;, + 0.051486;-0.268539; 0.030404;, + 0.588564;-0.268539; 0.030404;, + 0.588564; 0.268539; 0.030404;, + 0.051486; 0.268539; 0.030404;, + 0.588564; 0.268539; 0.030404;, + 0.588564; 0.268539; 3.018199;, + 0.051486; 0.268539; 3.018199;, + 0.051486;-0.268539; 0.030404;, + 0.051486; 0.268539; 0.030404;, + 0.051486; 0.268539; 3.018199;, + 0.051486;-0.268539; 3.018199;, + 0.588564;-0.268539; 0.030404;, + 0.051486;-0.268539; 0.030404;, + 0.051486;-0.268539; 3.018199;, + 0.588564;-0.268539; 3.018199;, + 0.588564; 0.268539; 0.030404;, + 0.588564;-0.268539; 0.030404;, + 0.588564;-0.268539; 3.018199;, + 0.588564; 0.268539; 3.018199;, + 0.814262;-0.268539; 5.580909;, + 1.351340;-0.268539; 5.580909;, + 1.351340;-0.268538; 3.042300;, + 0.814262;-0.268538; 3.042300;, + 0.814262;-0.268538; 3.042300;, + 1.351340;-0.268538; 3.042300;, + 1.351340; 0.268540; 3.042300;, + 0.814262; 0.268540; 3.042300;, + 0.814262; 0.268539; 5.580909;, + 1.351340; 0.268539; 5.580909;, + 1.351340;-0.268539; 5.580909;, + 0.814262;-0.268539; 5.580909;, + 0.814262; 0.268539; 5.580909;, + 0.814262;-0.268539; 5.580909;, + 0.814262;-0.268538; 3.042300;, + 0.814262; 0.268540; 3.042300;, + 1.351340; 0.268539; 5.580909;, + 0.814262; 0.268539; 5.580909;, + 0.814262; 0.268540; 3.042300;, + 1.351340; 0.268540; 3.042300;, + 1.351340;-0.268539; 5.580909;, + 1.351340; 0.268539; 5.580909;, + 1.351340; 0.268540; 3.042300;, + 1.351340;-0.268538; 3.042300;, + -0.793544; 0.268540; 3.042300;, + -0.793544;-0.268538; 3.042300;, + -0.793544;-0.268538; 5.580909;, + -0.793544; 0.268540; 5.580909;, + -0.793544;-0.268538; 3.042300;, + -1.330622;-0.268538; 3.042300;, + -1.330622;-0.268538; 5.580909;, + -0.793544;-0.268538; 5.580909;, + -1.330622;-0.268538; 3.042300;, + -1.330622; 0.268540; 3.042300;, + -1.330622; 0.268540; 5.580909;, + -1.330622;-0.268538; 5.580909;, + -1.330622; 0.268540; 3.042300;, + -0.793544; 0.268540; 3.042300;, + -0.793544; 0.268540; 5.580909;, + -1.330622; 0.268540; 5.580909;, + -1.330622; 0.268540; 3.042300;, + -1.330622;-0.268538; 3.042300;, + -0.793544;-0.268538; 3.042300;, + -0.793544; 0.268540; 3.042300;, + -0.793544; 0.268540; 5.580909;, + -0.793544;-0.268538; 5.580909;, + -1.330622;-0.268538; 5.580909;, + -1.330622; 0.268540; 5.580909;, + 0.723870; 0.449627; 4.785883;, + 0.723870;-0.388245; 4.785883;, + 0.723870;-0.388245; 5.594183;, + 0.723870; 0.449627; 5.594183;, + 0.723870;-0.388245; 4.785883;, + -0.723870;-0.388244; 4.785883;, + -0.723870;-0.388244; 5.594183;, + 0.723870;-0.388245; 5.594183;, + -0.723870;-0.388244; 4.785883;, + -0.723870; 0.449627; 4.785883;, + -0.723870; 0.449627; 5.594183;, + -0.723870;-0.388244; 5.594183;, + -0.723870; 0.449627; 4.785883;, + 0.723870; 0.449627; 4.785883;, + 0.723870; 0.449627; 5.594183;, + -0.723870; 0.449627; 5.594183;, + -0.723870; 0.449627; 4.785883;, + -0.723870;-0.388244; 4.785883;, + 0.723870;-0.388245; 4.785883;, + 0.723870; 0.449627; 4.785883;, + 0.723870; 0.449627; 5.594183;, + 0.723870;-0.388245; 5.594183;, + -0.723870;-0.388244; 5.594183;, + -0.723870; 0.449627; 5.594183;, + 0.543860; 0.421971; 4.056024;, + 0.543860;-0.421971; 4.056024;, + 0.543860;-0.421971; 4.737846;, + 0.543860; 0.421971; 4.737846;, + 0.543860;-0.421971; 4.056024;, + -0.543860;-0.421971; 4.056024;, + -0.543860;-0.421971; 4.737846;, + 0.543860;-0.421971; 4.737846;, + -0.543860;-0.421971; 4.056024;, + -0.543860; 0.421971; 4.056024;, + -0.543860; 0.421971; 4.737846;, + -0.543860;-0.421971; 4.737846;, + -0.543860; 0.421971; 4.056024;, + 0.543860; 0.421971; 4.056024;, + 0.543860; 0.421971; 4.737846;, + -0.543860; 0.421971; 4.737846;, + -0.543860; 0.421971; 4.056024;, + -0.543860;-0.421971; 4.056024;, + 0.543860;-0.421971; 4.056024;, + 0.543860; 0.421971; 4.056024;, + 0.543860; 0.421971; 4.737846;, + 0.543860;-0.421971; 4.737846;, + -0.543860;-0.421971; 4.737846;, + -0.543860; 0.421971; 4.737846;, + 0.722887; 0.385108; 3.087850;, + 0.722887;-0.385109; 3.087850;, + 0.722887;-0.385109; 3.994113;, + 0.722887; 0.385108; 3.994113;, + 0.722887;-0.385109; 3.087850;, + -0.722887;-0.385108; 3.087850;, + -0.722887;-0.385108; 3.994113;, + 0.722887;-0.385109; 3.994113;, + -0.722887;-0.385108; 3.087850;, + -0.722887; 0.385109; 3.087850;, + -0.722887; 0.385109; 3.994113;, + -0.722887;-0.385108; 3.994113;, + -0.722887; 0.385109; 3.087850;, + 0.722887; 0.385108; 3.087850;, + 0.722887; 0.385108; 3.994113;, + -0.722887; 0.385109; 3.994113;, + -0.722887; 0.385109; 3.087850;, + -0.722887;-0.385108; 3.087850;, + 0.722887;-0.385109; 3.087850;, + 0.722887; 0.385108; 3.087850;, + 0.722887; 0.385108; 3.994113;, + 0.722887;-0.385109; 3.994113;, + -0.722887;-0.385108; 3.994113;, + -0.722887; 0.385109; 3.994113;, + 0.698014; 0.682134; 5.657978;, + 0.698014;-0.713894; 5.657978;, + 0.698014;-0.713894; 6.662416;, + 0.698014; 0.682134; 6.662416;, + 0.698014;-0.713894; 5.657978;, + -0.698014;-0.713894; 5.657978;, + -0.698014;-0.713894; 6.662416;, + 0.698014;-0.713894; 6.662416;, + -0.698014;-0.713894; 5.657978;, + -0.698014; 0.682134; 5.657978;, + -0.698014; 0.682134; 6.662416;, + -0.698014;-0.713894; 6.662416;, + -0.698014; 0.682134; 5.657978;, + 0.698014; 0.682134; 5.657978;, + 0.698014; 0.682134; 6.662416;, + -0.698014; 0.682134; 6.662416;, + -0.698014; 0.682134; 5.657978;, + -0.698014;-0.713894; 5.657978;, + 0.698014;-0.713894; 5.657978;, + 0.698014; 0.682134; 5.657978;, + 0.698014; 0.682134; 6.662416;, + 0.698014;-0.713894; 6.662416;, + -0.698014;-0.713894; 6.662416;, + -0.698014; 0.682134; 6.662416;; + 48; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;; + MeshNormals { //Cube_000 Normals + 192; + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;; + 48; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;; + } //End of Cube_000 Normals + MeshMaterialList { //Cube_000 Material List + 1; + 48; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material_002 { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Cube_000 Material List + MeshTextureCoords { //Cube_000 UV Coordinates + 192; + 0.359375; 0.250000;, + 0.359375; 0.375000;, + 0.656250; 0.375000;, + 0.656250; 0.250000;, + 0.359375; 0.500000;, + 0.359375; 0.375000;, + 0.656250; 0.375000;, + 0.656250; 0.500000;, + 0.359375; 0.125000;, + 0.359375; 0.000000;, + 0.656250; 0.000000;, + 0.656250; 0.125000;, + 0.359375; 0.125000;, + 0.359375; 0.250000;, + 0.656250; 0.250000;, + 0.656250; 0.125000;, + 0.359375; 0.000000;, + 0.359375; 0.125000;, + 0.296875; 0.125000;, + 0.296875; 0.000000;, + 0.359375; 0.125000;, + 0.359375; 0.250000;, + 0.296875; 0.250000;, + 0.296875; 0.125000;, + 0.359375; 0.250000;, + 0.359375; 0.125000;, + 0.296875; 0.125000;, + 0.296875; 0.250000;, + 0.359375; 0.125000;, + 0.359375; 0.000000;, + 0.296875; 0.000000;, + 0.296875; 0.125000;, + 0.359375; 0.250000;, + 0.359375; 0.125000;, + 0.656250; 0.125000;, + 0.656250; 0.250000;, + 0.359375; 0.375000;, + 0.359375; 0.250000;, + 0.656250; 0.250000;, + 0.656250; 0.375000;, + 0.359375; 0.375000;, + 0.359375; 0.500000;, + 0.656250; 0.500000;, + 0.656250; 0.375000;, + 0.359375; 0.000000;, + 0.359375; 0.125000;, + 0.656250; 0.125000;, + 0.656250; 0.000000;, + 0.000000; 0.125000;, + 0.000000; 0.250000;, + 0.296875; 0.250000;, + 0.296875; 0.125000;, + 0.359375; 0.250000;, + 0.359375; 0.375000;, + 0.296875; 0.375000;, + 0.296875; 0.250000;, + 0.359375; 0.375000;, + 0.359375; 0.500000;, + 0.296875; 0.500000;, + 0.296875; 0.375000;, + 0.000000; 0.000000;, + 0.000000; 0.125000;, + 0.296875; 0.125000;, + 0.296875; 0.000000;, + 0.000000; 0.500000;, + 0.000000; 0.375000;, + 0.296875; 0.375000;, + 0.296875; 0.500000;, + 0.000000; 0.250000;, + 0.000000; 0.375000;, + 0.296875; 0.375000;, + 0.296875; 0.250000;, + 0.296875; 0.000000;, + 0.296875; 0.125000;, + 0.000000; 0.125000;, + 0.000000; 0.000000;, + 0.296875; 0.125000;, + 0.296875; 0.250000;, + 0.000000; 0.250000;, + 0.000000; 0.125000;, + 0.296875; 0.250000;, + 0.296875; 0.375000;, + 0.000000; 0.375000;, + 0.000000; 0.250000;, + 0.296875; 0.500000;, + 0.296875; 0.375000;, + 0.000000; 0.375000;, + 0.000000; 0.500000;, + 0.296875; 0.375000;, + 0.296875; 0.250000;, + 0.359375; 0.250000;, + 0.359375; 0.375000;, + 0.359375; 0.375000;, + 0.296875; 0.375000;, + 0.296875; 0.500000;, + 0.359375; 0.500000;, + 0.187500; 0.750000;, + 0.125000; 0.750000;, + 0.125000; 0.625000;, + 0.187500; 0.625000;, + 0.125000; 0.750000;, + 0.000000; 0.750000;, + 0.000000; 0.625000;, + 0.125000; 0.625000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.312500; 0.750000;, + 0.187500; 0.750000;, + 0.187500; 0.625000;, + 0.312500; 0.625000;, + 0.125000; 0.500000;, + 0.125000; 0.625000;, + 0.000000; 0.625000;, + 0.000000; 0.500000;, + 0.187500; 0.625000;, + 0.187500; 0.500000;, + 0.312500; 0.500000;, + 0.312500; 0.625000;, + 0.312500; 0.875000;, + 0.312500; 0.718750;, + 0.375000; 0.718750;, + 0.375000; 0.875000;, + 0.312500; 0.718750;, + 0.312500; 0.500000;, + 0.375000; 0.500000;, + 0.375000; 0.718750;, + 0.375000; 0.875000;, + 0.375000; 0.718750;, + 0.437500; 0.718750;, + 0.437500; 0.875000;, + 0.312500; 1.000000;, + 0.312500; 0.875000;, + 0.375000; 0.875000;, + 0.375000; 1.000000;, + 0.437500; 0.718750;, + 0.375000; 0.718750;, + 0.375000; 0.500000;, + 0.437500; 0.500000;, + 0.375000; 0.875000;, + 0.437500; 0.875000;, + 0.437500; 1.000000;, + 0.375000; 1.000000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.875000;, + 0.187500; 0.875000;, + 0.125000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 0.875000;, + 0.125000; 0.875000;, + 0.187500; 0.875000;, + 0.125000; 0.875000;, + 0.125000; 0.750000;, + 0.187500; 0.750000;, + 0.312500; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.875000;, + 0.312500; 0.875000;, + 0.125000; 0.750000;, + 0.125000; 0.875000;, + 0.000000; 0.875000;, + 0.000000; 0.750000;, + 0.187500; 0.875000;, + 0.187500; 0.750000;, + 0.312500; 0.750000;, + 0.312500; 0.875000;, + 0.656250; 0.000000;, + 0.656250; 0.250000;, + 0.750000; 0.250000;, + 0.750000; 0.000000;, + 0.656250; 0.250000;, + 0.656250; 0.500000;, + 0.750000; 0.500000;, + 0.750000; 0.250000;, + 0.656250; 0.500000;, + 0.656250; 0.750000;, + 0.750000; 0.750000;, + 0.750000; 0.500000;, + 0.656250; 0.750000;, + 0.656250; 1.000000;, + 0.750000; 1.000000;, + 0.750000; 0.750000;, + 0.656250; 0.750000;, + 0.500000; 0.750000;, + 0.500000; 1.000000;, + 0.656250; 1.000000;, + 0.500000; 0.750000;, + 0.656250; 0.750000;, + 0.656250; 0.500000;, + 0.500000; 0.500000;; + } //End of Cube_000 UV Coordinates + XSkinMeshHeader { + 2; + 6; + 5; + } + SkinWeights { + "Armature_Bone_003"; + 24; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000165, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + 0.000165,-1.000000, 0.000000, 0.000000, + -0.293140, 3.021661,-0.002151, 1.000000;; + } //End of Armature_Bone_003 Skin Weights + SkinWeights { + "Armature_Root"; + 100; + 72, + 73, + 74, + 75, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191; + 0.000012, + 0.000000, + 0.000000, + 0.000009, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.999980, 0.006250, 0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -0.006250, 0.999980, 0.000000, 0.000000, + 0.013893,-3.276741, 0.002150, 1.000000;; + } //End of Armature_Root Skin Weights + SkinWeights { + "Armature_Bone_004"; + 24; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000165, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + 0.000165,-1.000000, 0.000000, 0.000000, + 0.416382, 3.021777,-0.002151, 1.000000;; + } //End of Armature_Bone_004 Skin Weights + SkinWeights { + "Armature_Bone_001"; + 24; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95; + 0.999988, + 1.000000, + 1.000000, + 0.999991, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.992973,-0.118342, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.118342,-0.992973, 0.000000, 0.000000, + 1.400077, 5.348889,-0.002152, 1.000000;; + } //End of Armature_Bone_001 Skin Weights + SkinWeights { + "Armature_Bone_002"; + 24; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.986602, 0.163144, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + 0.163144,-0.986602, 0.000000, 0.000000, + -1.638568, 5.280413,-0.002152, 1.000000;; + } //End of Armature_Bone_002 Skin Weights + } //End of Cube_000 Mesh + } //End of Cube_003 + } //End of Armature +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 66; + 0;3; 0.019749, 0.002151, 3.487330;;, + 1;3; 0.019749, 0.002151, 3.487330;;, + 2;3; 0.019749, 0.002151, 3.487330;;, + 3;3; 0.019749, 0.002151, 3.487330;;, + 4;3; 0.019749, 0.002151, 3.487330;;, + 5;3; 0.019749, 0.002151, 3.487330;;, + 6;3; 0.019749, 0.002151, 3.487330;;, + 7;3; 0.019749, 0.002151, 3.487330;;, + 8;3; 0.019749, 0.002151, 3.487330;;, + 9;3; 0.019749, 0.002151, 3.487330;;, + 10;3; 0.019749, 0.002151, 3.487330;;, + 11;3; 0.019749, 0.002151, 3.487330;;, + 12;3; 0.019749, 0.002151, 3.487330;;, + 13;3; 0.019749, 0.002151, 3.487330;;, + 14;3; 0.019749, 0.002151, 3.487330;;, + 15;3; 0.019749, 0.002151, 3.487330;;, + 16;3; 0.019749, 0.002151, 3.487330;;, + 17;3; 0.019749, 0.002151, 3.487330;;, + 18;3; 0.019749, 0.002151, 3.487330;;, + 19;3; 0.019749, 0.002151, 3.487330;;, + 20;3; 0.019749, 0.002151, 3.487330;;, + 21;3; 0.019749, 0.002151, 3.487330;;, + 22;3; 0.019749, 0.002151, 3.487330;;, + 23;3; 0.019749, 0.002151, 3.487330;;, + 24;3; 0.019749, 0.002151, 3.487330;;, + 25;3; 0.019749, 0.002151, 3.487330;;, + 26;3; 0.019749, 0.002151, 3.487330;;, + 27;3; 0.019749, 0.002151, 3.487330;;, + 28;3; 0.019749, 0.002151, 3.487330;;, + 29;3; 0.019749, 0.002151, 3.487330;;, + 30;3; 0.019749, 0.002151, 3.487330;;, + 31;3; 0.019749, 0.002151, 3.487330;;, + 32;3; 0.019749, 0.002151, 3.487330;;, + 33;3; 0.019749, 0.002151, 3.487330;;, + 34;3; 0.019749, 0.002151, 3.487330;;, + 35;3; 0.019749, 0.002151, 3.487330;;, + 36;3; 0.019749, 0.002151, 3.487330;;, + 37;3; 0.019749, 0.002151, 3.487330;;, + 38;3; 0.019749, 0.002151, 3.487330;;, + 39;3; 0.019749, 0.002151, 3.487330;;, + 40;3; 0.019749, 0.002151, 3.487330;;, + 41;3; 0.019749, 0.002151, 3.487330;;, + 42;3; 0.019749, 0.002151, 3.487330;;, + 43;3; 0.019749, 0.002151, 3.487330;;, + 44;3; 0.019749, 0.002151, 3.487330;;, + 45;3; 0.019749, 0.002151, 3.487330;;, + 46;3; 0.019749, 0.002151, 3.487330;;, + 47;3; 0.019749, 0.002151, 3.487330;;, + 48;3; 0.019749, 0.002151, 3.487330;;, + 49;3; 0.019749, 0.002151, 3.487330;;, + 50;3; 0.019749, 0.002151, 3.487330;;, + 51;3; 0.019749, 0.002151, 3.487330;;, + 52;3; 0.019749, 0.002151, 3.487330;;, + 53;3; 0.019749, 0.002151, 3.487330;;, + 54;3; 0.019749, 0.002151, 3.487330;;, + 55;3; 0.019749, 0.002151, 3.487330;;, + 56;3; 0.019749, 0.002151, 3.487330;;, + 57;3; 0.019749, 0.002151, 3.487330;;, + 58;3; 0.019749, 0.002151, 3.487330;;, + 59;3; 0.019749, 0.002151, 3.487330;;, + 60;3; 0.019749, 0.002151, 3.487330;;, + 61;3; 0.019749, 0.002151, 3.487330;;, + 62;3; 0.019749, 0.002151, 3.487330;;, + 63;3; 0.019749, 0.002151, 3.487330;;, + 64;3; 0.019749, 0.002151, 3.487330;;, + 65;3; 0.019749, 0.002151, 3.487330;;; + } + AnimationKey { //Rotation + 0; + 66; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 66; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Root} + AnimationKey { //Position + 2; + 66; + 0;3; -0.013160,-0.000000,-0.210566;;, + 1;3; -0.013160,-0.000000,-0.210566;;, + 2;3; -0.013160,-0.000000,-0.210566;;, + 3;3; -0.013160,-0.000000,-0.210566;;, + 4;3; -0.013160,-0.000000,-0.210566;;, + 5;3; -0.013160,-0.000000,-0.210566;;, + 6;3; -0.013160,-0.000000,-0.210566;;, + 7;3; -0.013160,-0.000000,-0.210566;;, + 8;3; -0.013160,-0.000000,-0.210566;;, + 9;3; -0.013160,-0.000000,-0.210566;;, + 10;3; -0.013160,-0.000000,-0.210566;;, + 11;3; -0.013160,-0.000000,-0.210566;;, + 12;3; -0.013160,-0.000000,-0.210566;;, + 13;3; -0.013160,-0.000000,-0.210566;;, + 14;3; -0.013160,-0.000000,-0.210566;;, + 15;3; -0.013160,-0.000000,-0.210566;;, + 16;3; -0.013160,-0.000000,-0.215889;;, + 17;3; -0.013160,-0.000000,-0.231380;;, + 18;3; -0.013160,-0.000000,-0.253650;;, + 19;3; -0.013160,-0.000000,-0.275918;;, + 20;3; -0.013160,-0.000000,-0.291409;;, + 21;3; -0.013160,-0.000000,-0.296732;;, + 22;3; -0.013160,-0.000000,-0.291409;;, + 23;3; -0.013160,-0.000000,-0.275918;;, + 24;3; -0.013160,-0.000000,-0.253649;;, + 25;3; -0.013160,-0.000000,-0.231380;;, + 26;3; -0.013160,-0.000000,-0.215889;;, + 27;3; -0.013160,-0.000000,-0.210566;;, + 28;3; -0.013160,-0.000000,-0.215889;;, + 29;3; -0.013160,-0.000000,-0.231380;;, + 30;3; -0.013160,-0.000000,-0.253649;;, + 31;3; -0.013160,-0.000000,-0.275918;;, + 32;3; -0.013160,-0.000000,-0.291409;;, + 33;3; -0.013160,-0.000000,-0.296732;;, + 34;3; -0.013160,-0.000000,-0.291639;;, + 35;3; -0.013160,-0.000000,-0.277407;;, + 36;3; -0.013160,-0.000000,-0.256912;;, + 37;3; -0.013160,-0.000000,-0.234908;;, + 38;3; -0.013160,-0.000000,-0.217469;;, + 39;3; -0.013160,-0.000000,-0.210566;;, + 40;3; -0.013160,-0.000000,-0.210566;;, + 41;3; -0.013160,-0.000000,-0.217469;;, + 42;3; -0.013160,-0.000000,-0.234908;;, + 43;3; -0.013160,-0.000000,-0.256912;;, + 44;3; -0.013160,-0.000000,-0.277407;;, + 45;3; -0.013160,-0.000000,-0.291639;;, + 46;3; -0.013160,-0.000000,-0.296732;;, + 47;3; -0.013160,-0.000000,-0.291409;;, + 48;3; -0.013160,-0.000000,-0.275918;;, + 49;3; -0.013160,-0.000000,-0.253649;;, + 50;3; -0.013160,-0.000000,-0.231380;;, + 51;3; -0.013160,-0.000000,-0.215889;;, + 52;3; -0.013160,-0.000000,-0.210566;;, + 53;3; -0.013160,-0.000000,-0.215889;;, + 54;3; -0.013160,-0.000000,-0.231380;;, + 55;3; -0.013160,-0.000000,-0.253649;;, + 56;3; -0.013160,-0.000000,-0.275918;;, + 57;3; -0.013160,-0.000000,-0.291409;;, + 58;3; -0.013160,-0.000000,-0.296732;;, + 59;3; -0.013160,-0.000000,-0.291409;;, + 60;3; -0.013160,-0.000000,-0.275919;;, + 61;3; -0.013160,-0.000000,-0.253651;;, + 62;3; -0.013160,-0.000000,-0.231382;;, + 63;3; -0.013160,-0.000000,-0.215890;;, + 64;3; -0.013160,-0.000000,-0.210566;;, + 65;3; -0.013160,-0.000000,-0.210566;;; + } + AnimationKey { //Rotation + 0; + 66; + 0;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 1;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 2;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 3;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 4;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 5;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 6;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 7;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 8;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 9;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 10;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 11;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 12;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 13;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 14;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 15;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 16;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 17;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 18;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 19;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 20;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 21;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 22;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 23;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 24;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 25;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 26;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 27;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 28;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 29;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 30;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 31;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 32;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 33;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 34;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 35;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 36;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 37;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 38;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 39;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 40;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 41;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 42;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 43;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 44;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 45;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 46;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 47;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 48;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 49;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 50;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 51;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 52;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 53;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 54;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 55;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 56;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 57;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 58;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 59;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 60;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 61;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 62;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 63;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 64;4; -0.707103, 0.707103, 0.002210,-0.002210;;, + 65;4; -0.707103, 0.707103, 0.002210,-0.002210;;; + } + AnimationKey { //Scale + 1; + 66; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { //Position + 2; + 66; + 0;3; -0.777564, 2.195408, 0.000000;;, + 1;3; -0.777564, 2.195408, 0.000000;;, + 2;3; -0.777564, 2.195408, 0.000000;;, + 3;3; -0.777564, 2.195408, 0.000000;;, + 4;3; -0.777564, 2.195408, 0.000000;;, + 5;3; -0.777564, 2.195408, 0.000000;;, + 6;3; -0.777564, 2.195408, 0.000000;;, + 7;3; -0.777564, 2.195408, 0.000000;;, + 8;3; -0.777564, 2.195408, 0.000000;;, + 9;3; -0.777564, 2.195408, 0.000000;;, + 10;3; -0.777564, 2.195408, 0.000000;;, + 11;3; -0.777564, 2.195408, 0.000000;;, + 12;3; -0.777564, 2.195408, 0.000000;;, + 13;3; -0.777564, 2.195408, 0.000000;;, + 14;3; -0.777564, 2.195408, 0.000000;;, + 15;3; -0.777564, 2.195408, 0.000000;;, + 16;3; -0.777564, 2.195408, 0.000000;;, + 17;3; -0.777564, 2.195408, 0.000000;;, + 18;3; -0.777564, 2.195408, 0.000000;;, + 19;3; -0.777564, 2.195408, 0.000000;;, + 20;3; -0.777564, 2.195408, 0.000000;;, + 21;3; -0.777564, 2.195408, 0.000000;;, + 22;3; -0.777564, 2.195408, 0.000000;;, + 23;3; -0.777564, 2.195408, 0.000000;;, + 24;3; -0.777564, 2.195408, 0.000000;;, + 25;3; -0.777564, 2.195408, 0.000000;;, + 26;3; -0.777564, 2.195408, 0.000000;;, + 27;3; -0.777564, 2.195408, 0.000000;;, + 28;3; -0.777564, 2.195408, 0.000000;;, + 29;3; -0.777564, 2.195408, 0.000000;;, + 30;3; -0.777564, 2.195408, 0.000000;;, + 31;3; -0.777564, 2.195408, 0.000000;;, + 32;3; -0.777564, 2.195408, 0.000000;;, + 33;3; -0.777564, 2.195408, 0.000000;;, + 34;3; -0.777564, 2.195408, 0.000000;;, + 35;3; -0.777564, 2.195408, 0.000000;;, + 36;3; -0.777564, 2.195408, 0.000000;;, + 37;3; -0.777564, 2.195408, 0.000000;;, + 38;3; -0.777564, 2.195408, 0.000000;;, + 39;3; -0.777564, 2.195408, 0.000000;;, + 40;3; -0.777564, 2.195408, 0.000000;;, + 41;3; -0.777564, 2.195408, 0.000000;;, + 42;3; -0.777564, 2.195408, 0.000000;;, + 43;3; -0.777564, 2.195408, 0.000000;;, + 44;3; -0.777564, 2.195408, 0.000000;;, + 45;3; -0.777564, 2.195408, 0.000000;;, + 46;3; -0.777564, 2.195408, 0.000000;;, + 47;3; -0.777564, 2.195408, 0.000000;;, + 48;3; -0.777564, 2.195408, 0.000000;;, + 49;3; -0.777564, 2.195408, 0.000000;;, + 50;3; -0.777564, 2.195408, 0.000000;;, + 51;3; -0.777564, 2.195408, 0.000000;;, + 52;3; -0.777564, 2.195408, 0.000000;;, + 53;3; -0.777564, 2.195408, 0.000000;;, + 54;3; -0.777564, 2.195408, 0.000000;;, + 55;3; -0.777564, 2.195408, 0.000000;;, + 56;3; -0.777564, 2.195408, 0.000000;;, + 57;3; -0.777564, 2.195408, 0.000000;;, + 58;3; -0.777564, 2.195408, 0.000000;;, + 59;3; -0.777564, 2.195408, 0.000000;;, + 60;3; -0.777564, 2.195408, 0.000000;;, + 61;3; -0.777564, 2.195408, 0.000000;;, + 62;3; -0.777564, 2.195408, 0.000000;;, + 63;3; -0.777564, 2.195408, 0.000000;;, + 64;3; -0.777564, 2.195408, 0.000000;;, + 65;3; -0.777564, 2.195408, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 66; + 0;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 1;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 2;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 3;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 4;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 5;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 6;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 7;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 8;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 9;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 10;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 11;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 12;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 13;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 14;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 15;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 16;4; 0.008050, 0.997895,-0.056126,-0.000503;;, + 17;4; 0.031475, 0.996359,-0.056039,-0.001967;;, + 18;4; 0.065143, 0.994151,-0.055915,-0.004072;;, + 19;4; 0.098808, 0.991944,-0.055791,-0.006177;;, + 20;4; 0.122225, 0.990408,-0.055705,-0.007641;;, + 21;4; 0.130272, 0.989881,-0.055675,-0.008144;;, + 22;4; 0.126267, 0.989881,-0.055675,-0.007894;;, + 23;4; 0.114177, 0.989881,-0.055675,-0.007138;;, + 24;4; 0.094243, 0.989881,-0.055675,-0.005892;;, + 25;4; 0.067337, 0.989881,-0.055675,-0.004210;;, + 26;4; 0.035117, 0.989881,-0.055675,-0.002195;;, + 27;4; -0.000000, 0.989881,-0.055675, 0.000000;;, + 28;4; -0.035117, 0.989881,-0.055675, 0.002195;;, + 29;4; -0.067337, 0.989881,-0.055675, 0.004210;;, + 30;4; -0.094243, 0.989881,-0.055675, 0.005892;;, + 31;4; -0.114178, 0.989881,-0.055675, 0.007138;;, + 32;4; -0.126267, 0.989881,-0.055675, 0.007894;;, + 33;4; -0.130272, 0.989881,-0.055675, 0.008144;;, + 34;4; -0.129860, 0.990384,-0.055703, 0.008117;;, + 35;4; -0.126652, 0.991789,-0.055782, 0.007902;;, + 36;4; -0.116937, 0.993812,-0.055896, 0.007240;;, + 37;4; -0.096055, 0.995991,-0.056019, 0.005833;;, + 38;4; -0.058763, 0.997728,-0.056116, 0.003444;;, + 39;4; -0.000000, 0.998422,-0.056155, 0.000000;;, + 40;4; 0.705729, 0.705991,-0.039708,-0.044120;;, + 41;4; 0.719292, 0.692185,-0.038931,-0.044917;;, + 42;4; 0.727918, 0.683078,-0.038419,-0.045469;;, + 43;4; 0.732753, 0.677864,-0.038126,-0.045794;;, + 44;4; 0.735003, 0.675425,-0.037989,-0.045946;;, + 45;4; 0.735745, 0.674626,-0.037944,-0.045996;;, + 46;4; 0.735841, 0.674524,-0.037938,-0.046002;;, + 47;4; 0.734894, 0.675471,-0.037991,-0.045943;;, + 48;4; 0.732038, 0.678329,-0.038152,-0.045765;;, + 49;4; 0.727327, 0.683041,-0.038417,-0.045470;;, + 50;4; 0.720969, 0.689402,-0.038775,-0.045073;;, + 51;4; 0.713355, 0.697018,-0.039203,-0.044597;;, + 52;4; 0.705057, 0.705319,-0.039670,-0.044078;;, + 53;4; 0.696759, 0.713621,-0.040137,-0.043559;;, + 54;4; 0.689146, 0.721237,-0.040565,-0.043083;;, + 55;4; 0.682788, 0.727597,-0.040923,-0.042686;;, + 56;4; 0.678077, 0.732310,-0.041188,-0.042391;;, + 57;4; 0.675220, 0.735168,-0.041349,-0.042212;;, + 58;4; 0.674274, 0.736114,-0.041402,-0.042153;;, + 59;4; 0.676217, 0.734253,-0.041297,-0.042275;;, + 60;4; 0.681872, 0.728838,-0.040993,-0.042628;;, + 61;4; 0.690001, 0.721053,-0.040555,-0.043137;;, + 62;4; 0.698131, 0.713268,-0.040117,-0.043645;;, + 63;4; 0.703786, 0.707852,-0.039813,-0.043998;;, + 64;4; 0.705729, 0.705991,-0.039708,-0.044120;;, + 65;4; 0.705729, 0.705991,-0.039708,-0.044120;;; + } + AnimationKey { //Scale + 1; + 66; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { //Position + 2; + 66; + 0;3; 0.734794, 2.204861, 0.000000;;, + 1;3; 0.734794, 2.204861, 0.000000;;, + 2;3; 0.734794, 2.204861, 0.000000;;, + 3;3; 0.734794, 2.204861, 0.000000;;, + 4;3; 0.734794, 2.204861, 0.000000;;, + 5;3; 0.734794, 2.204861, 0.000000;;, + 6;3; 0.734794, 2.204861, 0.000000;;, + 7;3; 0.734794, 2.204861, 0.000000;;, + 8;3; 0.734794, 2.204861, 0.000000;;, + 9;3; 0.734794, 2.204861, 0.000000;;, + 10;3; 0.734794, 2.204861, 0.000000;;, + 11;3; 0.734794, 2.204861, 0.000000;;, + 12;3; 0.734794, 2.204861, 0.000000;;, + 13;3; 0.734794, 2.204861, 0.000000;;, + 14;3; 0.734794, 2.204861, 0.000000;;, + 15;3; 0.734794, 2.204861, 0.000000;;, + 16;3; 0.734794, 2.204861, 0.000000;;, + 17;3; 0.734794, 2.204861, 0.000000;;, + 18;3; 0.734794, 2.204861, 0.000000;;, + 19;3; 0.734794, 2.204861, 0.000000;;, + 20;3; 0.734794, 2.204861, 0.000000;;, + 21;3; 0.734794, 2.204861, 0.000000;;, + 22;3; 0.734794, 2.204861, 0.000000;;, + 23;3; 0.734794, 2.204861, 0.000000;;, + 24;3; 0.734794, 2.204861, 0.000000;;, + 25;3; 0.734794, 2.204861, 0.000000;;, + 26;3; 0.734794, 2.204861, 0.000000;;, + 27;3; 0.734794, 2.204861, 0.000000;;, + 28;3; 0.734794, 2.204861, 0.000000;;, + 29;3; 0.734794, 2.204861, 0.000000;;, + 30;3; 0.734794, 2.204861, 0.000000;;, + 31;3; 0.734794, 2.204861, 0.000000;;, + 32;3; 0.734794, 2.204861, 0.000000;;, + 33;3; 0.734794, 2.204861, 0.000000;;, + 34;3; 0.734794, 2.204861, 0.000000;;, + 35;3; 0.734794, 2.204861, 0.000000;;, + 36;3; 0.734794, 2.204861, 0.000000;;, + 37;3; 0.734794, 2.204861, 0.000000;;, + 38;3; 0.734794, 2.204861, 0.000000;;, + 39;3; 0.734794, 2.204861, 0.000000;;, + 40;3; 0.734794, 2.204861, 0.000000;;, + 41;3; 0.734794, 2.204861, 0.000000;;, + 42;3; 0.734794, 2.204861, 0.000000;;, + 43;3; 0.734794, 2.204861, 0.000000;;, + 44;3; 0.734794, 2.204861, 0.000000;;, + 45;3; 0.734794, 2.204861, 0.000000;;, + 46;3; 0.734794, 2.204861, 0.000000;;, + 47;3; 0.734794, 2.204861, 0.000000;;, + 48;3; 0.734794, 2.204861, 0.000000;;, + 49;3; 0.734794, 2.204861, 0.000000;;, + 50;3; 0.734794, 2.204861, 0.000000;;, + 51;3; 0.734794, 2.204861, 0.000000;;, + 52;3; 0.734794, 2.204861, 0.000000;;, + 53;3; 0.734794, 2.204861, 0.000000;;, + 54;3; 0.734794, 2.204861, 0.000000;;, + 55;3; 0.734794, 2.204861, 0.000000;;, + 56;3; 0.734794, 2.204861, 0.000000;;, + 57;3; 0.734794, 2.204861, 0.000000;;, + 58;3; 0.734794, 2.204861, 0.000000;;, + 59;3; 0.734794, 2.204861, 0.000000;;, + 60;3; 0.734794, 2.204861, 0.000000;;, + 61;3; 0.734794, 2.204861, 0.000000;;, + 62;3; 0.734794, 2.204861, 0.000000;;, + 63;3; 0.734794, 2.204861, 0.000000;;, + 64;3; 0.734794, 2.204861, 0.000000;;, + 65;3; 0.734794, 2.204861, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 66; + 0;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 1;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 2;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 3;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 4;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 5;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 6;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 7;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 8;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 9;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 10;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 11;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 12;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 13;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 14;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 15;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 16;4; -0.008041, 0.995858, 0.084916,-0.000635;;, + 17;4; -0.031438, 0.994325, 0.084785,-0.002482;;, + 18;4; -0.065068, 0.992122, 0.084597,-0.005138;;, + 19;4; -0.098693, 0.989919, 0.084409,-0.007794;;, + 20;4; -0.122084, 0.988387, 0.084279,-0.009642;;, + 21;4; -0.130121, 0.987860, 0.084234,-0.010276;;, + 22;4; -0.126121, 0.987860, 0.084234,-0.009961;;, + 23;4; -0.114046, 0.987860, 0.084234,-0.009007;;, + 24;4; -0.094134, 0.987860, 0.084234,-0.007434;;, + 25;4; -0.067259, 0.987860, 0.084234,-0.005312;;, + 26;4; -0.035076, 0.987860, 0.084234,-0.002770;;, + 27;4; -0.000000, 0.987860, 0.084234, 0.000000;;, + 28;4; 0.035076, 0.987860, 0.084234, 0.002770;;, + 29;4; 0.067259, 0.987860, 0.084234, 0.005312;;, + 30;4; 0.094134, 0.987860, 0.084234, 0.007434;;, + 31;4; 0.114045, 0.987860, 0.084234, 0.009007;;, + 32;4; 0.126121, 0.987860, 0.084234, 0.009961;;, + 33;4; 0.130121, 0.987860, 0.084234, 0.010277;;, + 34;4; 0.122514, 0.988363, 0.084277, 0.009662;;, + 35;4; 0.101466, 0.989765, 0.084396, 0.007929;;, + 36;4; 0.071176, 0.991784, 0.084568, 0.005432;;, + 37;4; 0.038174, 0.993958, 0.084754, 0.002789;;, + 38;4; 0.011162, 0.995692, 0.084902, 0.000764;;, + 39;4; -0.000000, 0.996384, 0.084961, 0.000000;;, + 40;4; 0.704912, 0.704550, 0.060076, 0.055671;;, + 41;4; 0.702208, 0.706991, 0.060284, 0.055488;;, + 42;4; 0.695679, 0.713106, 0.060806, 0.054999;;, + 43;4; 0.687713, 0.720774, 0.061460, 0.054361;;, + 44;4; 0.680406, 0.727894, 0.062067, 0.053757;;, + 45;4; 0.675329, 0.732839, 0.062488, 0.053338;;, + 46;4; 0.673493, 0.734612, 0.062640, 0.053190;;, + 47;4; 0.674438, 0.733667, 0.062559, 0.053265;;, + 48;4; 0.677292, 0.730815, 0.062316, 0.053490;;, + 49;4; 0.681997, 0.726112, 0.061915, 0.053862;;, + 50;4; 0.688347, 0.719765, 0.061374, 0.054363;;, + 51;4; 0.695952, 0.712164, 0.060726, 0.054964;;, + 52;4; 0.704241, 0.703880, 0.060019, 0.055618;;, + 53;4; 0.712529, 0.695595, 0.059313, 0.056273;;, + 54;4; 0.720134, 0.687995, 0.058665, 0.056874;;, + 55;4; 0.726485, 0.681647, 0.058123, 0.057375;;, + 56;4; 0.731190, 0.676944, 0.057722, 0.057747;;, + 57;4; 0.734043, 0.674092, 0.057479, 0.057972;;, + 58;4; 0.734989, 0.673148, 0.057399, 0.058047;;, + 59;4; 0.733131, 0.675087, 0.057564, 0.057900;;, + 60;4; 0.727724, 0.680733, 0.058045, 0.057473;;, + 61;4; 0.719950, 0.688849, 0.058737, 0.056859;;, + 62;4; 0.712177, 0.696965, 0.059430, 0.056245;;, + 63;4; 0.706770, 0.702610, 0.059911, 0.055818;;, + 64;4; 0.704912, 0.704550, 0.060076, 0.055671;;, + 65;4; 0.704912, 0.704550, 0.060076, 0.055671;;; + } + AnimationKey { //Scale + 1; + 66; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { //Position + 2; + 66; + 0;3; 0.287642,-0.253263, 0.000001;;, + 1;3; 0.287642,-0.253263, 0.000001;;, + 2;3; 0.287642,-0.253263, 0.000001;;, + 3;3; 0.287642,-0.253263, 0.000001;;, + 4;3; 0.287642,-0.253263, 0.000001;;, + 5;3; 0.287642,-0.253263, 0.000001;;, + 6;3; 0.287642,-0.253263, 0.000001;;, + 7;3; 0.287642,-0.253263, 0.000001;;, + 8;3; 0.287642,-0.253263, 0.000001;;, + 9;3; 0.287642,-0.253263, 0.000001;;, + 10;3; 0.287642,-0.253263, 0.000001;;, + 11;3; 0.287642,-0.253263, 0.000001;;, + 12;3; 0.287642,-0.253263, 0.000001;;, + 13;3; 0.287642,-0.253263, 0.000001;;, + 14;3; 0.287642,-0.253263, 0.000001;;, + 15;3; 0.287642,-0.253263, 0.000001;;, + 16;3; 0.287642,-0.253263, 0.000001;;, + 17;3; 0.287642,-0.253262, 0.000001;;, + 18;3; 0.287642,-0.253262, 0.000001;;, + 19;3; 0.287642,-0.253262, 0.000001;;, + 20;3; 0.287642,-0.253263, 0.000001;;, + 21;3; 0.287642,-0.253262, 0.000001;;, + 22;3; 0.287642,-0.253263, 0.000001;;, + 23;3; 0.287642,-0.253262, 0.000001;;, + 24;3; 0.287642,-0.253262, 0.000001;;, + 25;3; 0.287642,-0.253263, 0.000001;;, + 26;3; 0.287642,-0.253263, 0.000001;;, + 27;3; 0.287642,-0.253263, 0.000001;;, + 28;3; 0.287642,-0.253263, 0.000001;;, + 29;3; 0.287642,-0.253263, 0.000001;;, + 30;3; 0.287642,-0.253263, 0.000001;;, + 31;3; 0.287642,-0.253262, 0.000001;;, + 32;3; 0.287642,-0.253263, 0.000001;;, + 33;3; 0.287642,-0.253262, 0.000001;;, + 34;3; 0.287642,-0.253262, 0.000001;;, + 35;3; 0.287642,-0.253262, 0.000001;;, + 36;3; 0.287642,-0.253262, 0.000001;;, + 37;3; 0.287642,-0.253263, 0.000001;;, + 38;3; 0.287642,-0.253262, 0.000001;;, + 39;3; 0.287642,-0.253263, 0.000001;;, + 40;3; 0.287642,-0.253263, 0.000001;;, + 41;3; 0.287642,-0.253263, 0.000001;;, + 42;3; 0.287642,-0.253263, 0.000001;;, + 43;3; 0.287642,-0.253262, 0.000001;;, + 44;3; 0.287642,-0.253263, 0.000001;;, + 45;3; 0.287642,-0.253263, 0.000001;;, + 46;3; 0.287642,-0.253262, 0.000001;;, + 47;3; 0.287642,-0.253263, 0.000001;;, + 48;3; 0.287642,-0.253262, 0.000001;;, + 49;3; 0.287642,-0.253262, 0.000001;;, + 50;3; 0.287642,-0.253263, 0.000001;;, + 51;3; 0.287642,-0.253263, 0.000001;;, + 52;3; 0.287642,-0.253263, 0.000001;;, + 53;3; 0.287642,-0.253263, 0.000001;;, + 54;3; 0.287642,-0.253263, 0.000001;;, + 55;3; 0.287642,-0.253263, 0.000001;;, + 56;3; 0.287642,-0.253262, 0.000001;;, + 57;3; 0.287642,-0.253263, 0.000001;;, + 58;3; 0.287642,-0.253262, 0.000001;;, + 59;3; 0.287642,-0.253262, 0.000001;;, + 60;3; 0.287642,-0.253263, 0.000001;;, + 61;3; 0.287642,-0.253262, 0.000001;;, + 62;3; 0.287642,-0.253263, 0.000001;;, + 63;3; 0.287642,-0.253263, 0.000001;;, + 64;3; 0.287642,-0.253263, 0.000001;;, + 65;3; 0.287642,-0.253263, 0.000001;;; + } + AnimationKey { //Rotation + 0; + 66; + 0;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 1;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 2;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 3;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 4;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 5;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 6;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 7;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 8;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 9;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 10;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 11;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 12;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 13;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 14;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 15;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 16;4; 0.008066, 0.999466, 0.003206,-0.000025;;, + 17;4; 0.031536, 0.997928, 0.003201,-0.000096;;, + 18;4; 0.065270, 0.995717, 0.003194,-0.000199;;, + 19;4; 0.099000, 0.993506, 0.003187,-0.000301;;, + 20;4; 0.122463, 0.991968, 0.003182,-0.000373;;, + 21;4; 0.130525, 0.991440, 0.003180,-0.000397;;, + 22;4; 0.126513, 0.991440, 0.003180,-0.000385;;, + 23;4; 0.114400, 0.991440, 0.003180,-0.000348;;, + 24;4; 0.094426, 0.991440, 0.003180,-0.000287;;, + 25;4; 0.067468, 0.991440, 0.003180,-0.000205;;, + 26;4; 0.035185, 0.991440, 0.003180,-0.000107;;, + 27;4; -0.000000, 0.991440, 0.003180, 0.000000;;, + 28;4; -0.035185, 0.991440, 0.003180, 0.000107;;, + 29;4; -0.067468, 0.991440, 0.003180, 0.000205;;, + 30;4; -0.094426, 0.991440, 0.003180, 0.000287;;, + 31;4; -0.114400, 0.991440, 0.003180, 0.000348;;, + 32;4; -0.126513, 0.991440, 0.003180, 0.000385;;, + 33;4; -0.130526, 0.991440, 0.003180, 0.000397;;, + 34;4; -0.122811, 0.991945, 0.003182, 0.000374;;, + 35;4; -0.101252, 0.993358, 0.003186, 0.000308;;, + 36;4; -0.070207, 0.995393, 0.003193, 0.000214;;, + 37;4; -0.036874, 0.997578, 0.003200, 0.000112;;, + 38;4; -0.010457, 0.999310, 0.003205, 0.000032;;, + 39;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 40;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 41;4; 0.010456, 0.999310, 0.003205,-0.000032;;, + 42;4; 0.036874, 0.997578, 0.003200,-0.000112;;, + 43;4; 0.070207, 0.995393, 0.003193,-0.000214;;, + 44;4; 0.101252, 0.993359, 0.003186,-0.000308;;, + 45;4; 0.122811, 0.991945, 0.003182,-0.000374;;, + 46;4; 0.130525, 0.991440, 0.003180,-0.000397;;, + 47;4; 0.126513, 0.991440, 0.003180,-0.000385;;, + 48;4; 0.114400, 0.991440, 0.003180,-0.000348;;, + 49;4; 0.094426, 0.991440, 0.003180,-0.000287;;, + 50;4; 0.067468, 0.991440, 0.003180,-0.000205;;, + 51;4; 0.035185, 0.991440, 0.003180,-0.000107;;, + 52;4; -0.000000, 0.991440, 0.003180, 0.000000;;, + 53;4; -0.035185, 0.991440, 0.003180, 0.000107;;, + 54;4; -0.067468, 0.991440, 0.003180, 0.000205;;, + 55;4; -0.094426, 0.991440, 0.003180, 0.000287;;, + 56;4; -0.114400, 0.991440, 0.003180, 0.000348;;, + 57;4; -0.126513, 0.991440, 0.003180, 0.000385;;, + 58;4; -0.130526, 0.991440, 0.003180, 0.000397;;, + 59;4; -0.122463, 0.991968, 0.003182, 0.000373;;, + 60;4; -0.099000, 0.993506, 0.003187, 0.000301;;, + 61;4; -0.065270, 0.995717, 0.003194, 0.000199;;, + 62;4; -0.031536, 0.997928, 0.003201, 0.000096;;, + 63;4; -0.008066, 0.999466, 0.003206, 0.000025;;, + 64;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 65;4; -0.000000, 0.999995, 0.003208, 0.000000;;; + } + AnimationKey { //Scale + 1; + 66; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { //Position + 2; + 66; + 0;3; -0.421866,-0.257697, 0.000001;;, + 1;3; -0.421866,-0.257697, 0.000001;;, + 2;3; -0.421866,-0.257697, 0.000001;;, + 3;3; -0.421866,-0.257697, 0.000001;;, + 4;3; -0.421866,-0.257697, 0.000001;;, + 5;3; -0.421866,-0.257697, 0.000001;;, + 6;3; -0.421866,-0.257697, 0.000001;;, + 7;3; -0.421866,-0.257697, 0.000001;;, + 8;3; -0.421866,-0.257697, 0.000001;;, + 9;3; -0.421866,-0.257697, 0.000001;;, + 10;3; -0.421866,-0.257697, 0.000001;;, + 11;3; -0.421866,-0.257697, 0.000001;;, + 12;3; -0.421866,-0.257697, 0.000001;;, + 13;3; -0.421866,-0.257697, 0.000001;;, + 14;3; -0.421866,-0.257697, 0.000001;;, + 15;3; -0.421866,-0.257697, 0.000001;;, + 16;3; -0.421866,-0.257697, 0.000001;;, + 17;3; -0.421866,-0.257697, 0.000001;;, + 18;3; -0.421866,-0.257697, 0.000001;;, + 19;3; -0.421866,-0.257697, 0.000001;;, + 20;3; -0.421866,-0.257697, 0.000001;;, + 21;3; -0.421866,-0.257697, 0.000001;;, + 22;3; -0.421866,-0.257697, 0.000001;;, + 23;3; -0.421866,-0.257697, 0.000001;;, + 24;3; -0.421866,-0.257697, 0.000001;;, + 25;3; -0.421866,-0.257697, 0.000001;;, + 26;3; -0.421866,-0.257697, 0.000001;;, + 27;3; -0.421866,-0.257697, 0.000001;;, + 28;3; -0.421866,-0.257697, 0.000001;;, + 29;3; -0.421866,-0.257697, 0.000001;;, + 30;3; -0.421866,-0.257697, 0.000001;;, + 31;3; -0.421866,-0.257697, 0.000001;;, + 32;3; -0.421866,-0.257697, 0.000001;;, + 33;3; -0.421866,-0.257697, 0.000001;;, + 34;3; -0.421866,-0.257697, 0.000001;;, + 35;3; -0.421866,-0.257697, 0.000001;;, + 36;3; -0.421866,-0.257697, 0.000001;;, + 37;3; -0.421866,-0.257697, 0.000001;;, + 38;3; -0.421866,-0.257697, 0.000001;;, + 39;3; -0.421866,-0.257697, 0.000001;;, + 40;3; -0.421866,-0.257697, 0.000001;;, + 41;3; -0.421866,-0.257697, 0.000001;;, + 42;3; -0.421866,-0.257697, 0.000001;;, + 43;3; -0.421866,-0.257697, 0.000001;;, + 44;3; -0.421866,-0.257697, 0.000001;;, + 45;3; -0.421866,-0.257697, 0.000001;;, + 46;3; -0.421866,-0.257697, 0.000001;;, + 47;3; -0.421866,-0.257697, 0.000001;;, + 48;3; -0.421866,-0.257697, 0.000001;;, + 49;3; -0.421866,-0.257697, 0.000001;;, + 50;3; -0.421866,-0.257697, 0.000001;;, + 51;3; -0.421866,-0.257697, 0.000001;;, + 52;3; -0.421866,-0.257697, 0.000001;;, + 53;3; -0.421866,-0.257697, 0.000001;;, + 54;3; -0.421866,-0.257697, 0.000001;;, + 55;3; -0.421866,-0.257697, 0.000001;;, + 56;3; -0.421866,-0.257697, 0.000001;;, + 57;3; -0.421866,-0.257697, 0.000001;;, + 58;3; -0.421866,-0.257697, 0.000001;;, + 59;3; -0.421866,-0.257697, 0.000001;;, + 60;3; -0.421866,-0.257697, 0.000001;;, + 61;3; -0.421866,-0.257697, 0.000001;;, + 62;3; -0.421866,-0.257697, 0.000001;;, + 63;3; -0.421866,-0.257697, 0.000001;;, + 64;3; -0.421866,-0.257697, 0.000001;;, + 65;3; -0.421866,-0.257697, 0.000001;;; + } + AnimationKey { //Rotation + 0; + 66; + 0;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 1;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 2;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 3;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 4;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 5;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 6;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 7;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 8;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 9;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 10;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 11;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 12;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 13;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 14;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 15;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 16;4; -0.008066, 0.999466, 0.003206, 0.000025;;, + 17;4; -0.031536, 0.997928, 0.003201, 0.000096;;, + 18;4; -0.065270, 0.995717, 0.003194, 0.000199;;, + 19;4; -0.099000, 0.993506, 0.003187, 0.000301;;, + 20;4; -0.122463, 0.991968, 0.003182, 0.000373;;, + 21;4; -0.130526, 0.991440, 0.003180, 0.000397;;, + 22;4; -0.126513, 0.991440, 0.003180, 0.000385;;, + 23;4; -0.114400, 0.991440, 0.003180, 0.000348;;, + 24;4; -0.094426, 0.991440, 0.003180, 0.000287;;, + 25;4; -0.067468, 0.991440, 0.003180, 0.000205;;, + 26;4; -0.035185, 0.991440, 0.003180, 0.000107;;, + 27;4; -0.000000, 0.991440, 0.003180, 0.000000;;, + 28;4; 0.035185, 0.991440, 0.003180,-0.000107;;, + 29;4; 0.067468, 0.991440, 0.003180,-0.000205;;, + 30;4; 0.094426, 0.991440, 0.003180,-0.000287;;, + 31;4; 0.114400, 0.991440, 0.003180,-0.000348;;, + 32;4; 0.126513, 0.991440, 0.003180,-0.000385;;, + 33;4; 0.130526, 0.991440, 0.003180,-0.000397;;, + 34;4; 0.122811, 0.991945, 0.003182,-0.000374;;, + 35;4; 0.101252, 0.993359, 0.003186,-0.000308;;, + 36;4; 0.070207, 0.995393, 0.003193,-0.000214;;, + 37;4; 0.036874, 0.997578, 0.003200,-0.000112;;, + 38;4; 0.010456, 0.999310, 0.003205,-0.000032;;, + 39;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 40;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 41;4; -0.010457, 0.999310, 0.003205, 0.000032;;, + 42;4; -0.036874, 0.997578, 0.003200, 0.000112;;, + 43;4; -0.070207, 0.995393, 0.003193, 0.000214;;, + 44;4; -0.101252, 0.993358, 0.003186, 0.000308;;, + 45;4; -0.122811, 0.991945, 0.003182, 0.000374;;, + 46;4; -0.130526, 0.991440, 0.003180, 0.000397;;, + 47;4; -0.126513, 0.991440, 0.003180, 0.000385;;, + 48;4; -0.114400, 0.991440, 0.003180, 0.000348;;, + 49;4; -0.094426, 0.991440, 0.003180, 0.000287;;, + 50;4; -0.067468, 0.991440, 0.003180, 0.000205;;, + 51;4; -0.035185, 0.991440, 0.003180, 0.000107;;, + 52;4; -0.000000, 0.991440, 0.003180, 0.000000;;, + 53;4; 0.035185, 0.991440, 0.003180,-0.000107;;, + 54;4; 0.067468, 0.991440, 0.003180,-0.000205;;, + 55;4; 0.094426, 0.991440, 0.003180,-0.000287;;, + 56;4; 0.114400, 0.991440, 0.003180,-0.000348;;, + 57;4; 0.126513, 0.991440, 0.003180,-0.000385;;, + 58;4; 0.130526, 0.991440, 0.003180,-0.000397;;, + 59;4; 0.122463, 0.991968, 0.003182,-0.000373;;, + 60;4; 0.099000, 0.993506, 0.003187,-0.000301;;, + 61;4; 0.065270, 0.995717, 0.003194,-0.000199;;, + 62;4; 0.031536, 0.997928, 0.003201,-0.000096;;, + 63;4; 0.008066, 0.999466, 0.003206,-0.000025;;, + 64;4; -0.000000, 0.999995, 0.003208, 0.000000;;, + 65;4; -0.000000, 0.999995, 0.003208, 0.000000;;; + } + AnimationKey { //Scale + 1; + 66; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Cube_003} + AnimationKey { //Position + 2; + 66; + 0;3; -0.019749,-0.002151,-3.487330;;, + 1;3; -0.019749,-0.002151,-3.487330;;, + 2;3; -0.019749,-0.002151,-3.487330;;, + 3;3; -0.019749,-0.002151,-3.487330;;, + 4;3; -0.019749,-0.002151,-3.487330;;, + 5;3; -0.019749,-0.002151,-3.487330;;, + 6;3; -0.019749,-0.002151,-3.487330;;, + 7;3; -0.019749,-0.002151,-3.487330;;, + 8;3; -0.019749,-0.002151,-3.487330;;, + 9;3; -0.019749,-0.002151,-3.487330;;, + 10;3; -0.019749,-0.002151,-3.487330;;, + 11;3; -0.019749,-0.002151,-3.487330;;, + 12;3; -0.019749,-0.002151,-3.487330;;, + 13;3; -0.019749,-0.002151,-3.487330;;, + 14;3; -0.019749,-0.002151,-3.487330;;, + 15;3; -0.019749,-0.002151,-3.487330;;, + 16;3; -0.019749,-0.002151,-3.487330;;, + 17;3; -0.019749,-0.002151,-3.487330;;, + 18;3; -0.019749,-0.002151,-3.487330;;, + 19;3; -0.019749,-0.002151,-3.487330;;, + 20;3; -0.019749,-0.002151,-3.487330;;, + 21;3; -0.019749,-0.002151,-3.487330;;, + 22;3; -0.019749,-0.002151,-3.487330;;, + 23;3; -0.019749,-0.002151,-3.487330;;, + 24;3; -0.019749,-0.002151,-3.487330;;, + 25;3; -0.019749,-0.002151,-3.487330;;, + 26;3; -0.019749,-0.002151,-3.487330;;, + 27;3; -0.019749,-0.002151,-3.487330;;, + 28;3; -0.019749,-0.002151,-3.487330;;, + 29;3; -0.019749,-0.002151,-3.487330;;, + 30;3; -0.019749,-0.002151,-3.487330;;, + 31;3; -0.019749,-0.002151,-3.487330;;, + 32;3; -0.019749,-0.002151,-3.487330;;, + 33;3; -0.019749,-0.002151,-3.487330;;, + 34;3; -0.019749,-0.002151,-3.487330;;, + 35;3; -0.019749,-0.002151,-3.487330;;, + 36;3; -0.019749,-0.002151,-3.487330;;, + 37;3; -0.019749,-0.002151,-3.487330;;, + 38;3; -0.019749,-0.002151,-3.487330;;, + 39;3; -0.019749,-0.002151,-3.487330;;, + 40;3; -0.019749,-0.002151,-3.487330;;, + 41;3; -0.019749,-0.002151,-3.487330;;, + 42;3; -0.019749,-0.002151,-3.487330;;, + 43;3; -0.019749,-0.002151,-3.487330;;, + 44;3; -0.019749,-0.002151,-3.487330;;, + 45;3; -0.019749,-0.002151,-3.487330;;, + 46;3; -0.019749,-0.002151,-3.487330;;, + 47;3; -0.019749,-0.002151,-3.487330;;, + 48;3; -0.019749,-0.002151,-3.487330;;, + 49;3; -0.019749,-0.002151,-3.487330;;, + 50;3; -0.019749,-0.002151,-3.487330;;, + 51;3; -0.019749,-0.002151,-3.487330;;, + 52;3; -0.019749,-0.002151,-3.487330;;, + 53;3; -0.019749,-0.002151,-3.487330;;, + 54;3; -0.019749,-0.002151,-3.487330;;, + 55;3; -0.019749,-0.002151,-3.487330;;, + 56;3; -0.019749,-0.002151,-3.487330;;, + 57;3; -0.019749,-0.002151,-3.487330;;, + 58;3; -0.019749,-0.002151,-3.487330;;, + 59;3; -0.019749,-0.002151,-3.487330;;, + 60;3; -0.019749,-0.002151,-3.487330;;, + 61;3; -0.019749,-0.002151,-3.487330;;, + 62;3; -0.019749,-0.002151,-3.487330;;, + 63;3; -0.019749,-0.002151,-3.487330;;, + 64;3; -0.019749,-0.002151,-3.487330;;, + 65;3; -0.019749,-0.002151,-3.487330;;; + } + AnimationKey { //Rotation + 0; + 66; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 66; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs/models/mobs_tree_monster.png b/mods/mobs/models/mobs_tree_monster.png new file mode 100644 index 0000000..909af19 Binary files /dev/null and b/mods/mobs/models/mobs_tree_monster.png differ diff --git a/mods/mobs/models/mobs_tree_monster.x b/mods/mobs/models/mobs_tree_monster.x new file mode 100644 index 0000000..57c681d --- /dev/null +++ b/mods/mobs/models/mobs_tree_monster.x @@ -0,0 +1,4009 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.003210,-0.035207, 1.015033, 1.000000;; + } + Frame Armature_root { + FrameTransformMatrix { + -1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000,-0.000000,-0.189446, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 0.376699, 0.433080, 1.000000;; + } + } //End of Armature_Bone_001 + Frame Armature_Bone_002 { + FrameTransformMatrix { + -0.234777, 0.000000,-0.972049, 0.000000, + 0.687342,-0.707107,-0.166012, 0.000000, + -0.687343,-0.707106, 0.166012, 0.000000, + 0.305704,-0.008069, 0.509506, 1.000000;; + } + } //End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 0.707093,-0.004414, 0.707107, 0.000000, + -0.504404,-0.703972, 0.500000, 0.000000, + 0.495577,-0.710214,-0.500000, 0.000000, + -0.299335,-0.008069, 0.509506, 1.000000;; + } + } //End of Armature_Bone_003 + Frame Armature_Bone_004 { + FrameTransformMatrix { + -0.223872,-0.000000, 0.974619, 0.000000, + 0.689160,-0.707106, 0.158302, 0.000000, + 0.689159, 0.707107, 0.158302, 0.000000, + 0.305704,-0.008069,-0.057320, 1.000000;; + } + } //End of Armature_Bone_004 + Frame Armature_Bone_005 { + FrameTransformMatrix { + 0.707093,-0.004414,-0.707107, 0.000000, + -0.504404,-0.703971,-0.500000, 0.000000, + -0.495576, 0.710215,-0.500000, 0.000000, + -0.299335,-0.008069,-0.057320, 1.000000;; + } + } //End of Armature_Bone_005 + } //End of Armature_root + Frame Cube_005 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.003210, 0.035207,-1.015033, 1.000000;; + } + Mesh { //Cube_020 Mesh + 396; + -0.698333; 0.388762;-0.235020;, + 0.039704;-0.349276;-0.235020;, + 0.039704;-0.349276; 0.968695;, + -0.698333; 0.388761; 0.968695;, + 0.039704;-0.349276;-0.235020;, + -0.698333; 0.388761;-0.235020;, + -0.698333; 0.388761; 0.968695;, + 0.039704;-0.349276; 0.968695;, + 0.039704; 0.388761;-0.235020;, + -0.698333;-0.349276;-0.235020;, + -0.698333;-0.349276; 0.968695;, + 0.039704; 0.388761; 0.968695;, + -0.698333;-0.349276;-0.235020;, + 0.039704; 0.388761;-0.235020;, + 0.039704; 0.388761; 0.968695;, + -0.698333;-0.349276; 0.968695;, + -0.666674;-0.178368;-0.310436;, + 0.071363;-0.916405;-0.310436;, + 0.071363;-0.916405; 0.893279;, + -0.666674;-0.178368; 0.893279;, + 0.071363;-0.916405;-0.310436;, + -0.666674;-0.178368;-0.310436;, + -0.666674;-0.178368; 0.893279;, + 0.071363;-0.916405; 0.893279;, + 0.071363;-0.178368;-0.310436;, + -0.666674;-0.916405;-0.310436;, + -0.666674;-0.916405; 0.893279;, + 0.071363;-0.178368; 0.893279;, + -0.666674;-0.916405;-0.310436;, + 0.071363;-0.178368;-0.310436;, + 0.071363;-0.178368; 0.893279;, + -0.666674;-0.916405; 0.893279;, + -0.102420;-0.182496;-0.129728;, + 0.635618;-0.920533;-0.129728;, + 0.635617;-0.920533; 1.073987;, + -0.102420;-0.182496; 1.073987;, + 0.635618;-0.920533;-0.129728;, + -0.102420;-0.182496;-0.129728;, + -0.102420;-0.182496; 1.073987;, + 0.635618;-0.920533; 1.073987;, + 0.635618;-0.182496;-0.129728;, + -0.102420;-0.920533;-0.129728;, + -0.102420;-0.920533; 1.073987;, + 0.635618;-0.182496; 1.073987;, + -0.102420;-0.920533;-0.129728;, + 0.635618;-0.182496;-0.129728;, + 0.635618;-0.182496; 1.073987;, + -0.102420;-0.920533; 1.073987;, + -0.089112; 0.390430;-0.176739;, + 0.648926;-0.347607;-0.176739;, + 0.648925;-0.347607; 1.026976;, + -0.089112; 0.390430; 1.026976;, + 0.648926;-0.347607;-0.176739;, + -0.089112; 0.390430;-0.176739;, + -0.089112; 0.390430; 1.026976;, + 0.648926;-0.347607; 1.026976;, + 0.648926; 0.390430;-0.176739;, + -0.089112;-0.347607;-0.176739;, + -0.089112;-0.347607; 1.026976;, + 0.648926; 0.390430; 1.026976;, + -0.089112;-0.347607;-0.176739;, + 0.648926; 0.390430;-0.176739;, + 0.648926; 0.390430; 1.026976;, + -0.089112;-0.347607; 1.026976;, + 0.226582; 0.413095; 2.965844;, + -0.178494;-0.255726; 2.274475;, + -0.895898; 0.614223; 1.853227;, + -0.490822; 1.283045; 2.544595;, + -0.178494;-0.255726; 2.274475;, + 0.226582; 0.413095; 2.965844;, + -0.490822; 1.283045; 2.544595;, + -0.895898; 0.614224; 1.853227;, + -0.342818;-0.056461; 2.965843;, + 0.390906; 0.213830; 2.274476;, + -0.326498; 1.083779; 1.853227;, + -1.060222; 0.813489; 2.544595;, + 0.390906; 0.213830; 2.274476;, + -0.342818;-0.056461; 2.965843;, + -1.060222; 0.813489; 2.544595;, + -0.326498; 1.083779; 1.853227;, + 0.538129;-0.026167; 2.965844;, + -0.237751; 0.070879; 2.274476;, + 0.263923; 1.080732; 1.853227;, + 1.039804; 0.983687; 2.544595;, + -0.237751; 0.070879; 2.274476;, + 0.538129;-0.026167; 2.965844;, + 1.039804; 0.983687; 2.544595;, + 0.263923; 1.080732; 1.853227;, + -0.122841; 0.302190; 2.965844;, + 0.423219;-0.257477; 2.274476;, + 0.924893; 0.752376; 1.853227;, + 0.378834; 1.312043; 2.544595;, + 0.423219;-0.257477; 2.274476;, + -0.122841; 0.302190; 2.965844;, + 0.378834; 1.312043; 2.544595;, + 0.924893; 0.752376; 1.853227;, + -0.452051;-0.303906; 2.707328;, + 0.323830;-0.206860; 3.398696;, + -0.177845; 0.802993; 3.819944;, + -0.953725; 0.705948; 3.128576;, + 0.323830;-0.206860; 3.398696;, + -0.452051;-0.303906; 2.707328;, + -0.953725; 0.705948; 3.128576;, + -0.177845; 0.802993; 3.819944;, + 0.208919; 0.024451; 2.707328;, + -0.337140;-0.535217; 3.398695;, + -0.838815; 0.474637; 3.819944;, + -0.292755; 1.034304; 3.128576;, + -0.337140;-0.535217; 3.398695;, + 0.208919; 0.024451; 2.707328;, + -0.292755; 1.034304; 3.128576;, + -0.838815; 0.474637; 3.819944;, + -0.140504; 0.135356; 2.707328;, + 0.264572;-0.533466; 3.398696;, + 0.981976; 0.336484; 3.819944;, + 0.576900; 1.005305; 3.128576;, + 0.264572;-0.533466; 3.398696;, + -0.140504; 0.135356; 2.707328;, + 0.576900; 1.005305; 3.128576;, + 0.981976; 0.336484; 3.819944;, + 0.428896;-0.334200; 2.707328;, + -0.304828;-0.063910; 3.398695;, + 0.412576; 0.806040; 3.819944;, + 1.146301; 0.535749; 3.128576;, + -0.304828;-0.063910; 3.398695;, + 0.428896;-0.334200; 2.707328;, + 1.146301; 0.535749; 3.128576;, + 0.412576; 0.806040; 3.819944;, + -0.302501; 0.103625; 3.405081;, + 0.435537;-0.393769; 3.950332;, + 0.435537; 0.495518; 4.761565;, + -0.302501; 0.992912; 4.216314;, + 0.435537;-0.393769; 3.950332;, + -0.302501; 0.103625; 3.405081;, + -0.302501; 0.992912; 4.216314;, + 0.435537; 0.495518; 4.761565;, + 0.435537; 0.103625; 3.405081;, + -0.302501;-0.393769; 3.950331;, + -0.302501; 0.495518; 4.761565;, + 0.435537; 0.992911; 4.216314;, + -0.302501;-0.393769; 3.950331;, + 0.435537; 0.103625; 3.405081;, + 0.435537; 0.992911; 4.216314;, + -0.302501; 0.495518; 4.761565;, + -0.102694; 0.415625; 3.502965;, + -0.102694;-0.628117; 3.502965;, + -0.908686;-0.628117; 4.397006;, + -0.908686; 0.415625; 4.397006;, + -0.102694;-0.628117; 3.502965;, + -0.102694; 0.415625; 3.502965;, + -0.908686; 0.415625; 4.397006;, + -0.908686;-0.628117; 4.397006;, + 0.284917;-0.106246; 3.852403;, + -0.490306;-0.106246; 3.153527;, + -1.296297;-0.106246; 4.047568;, + -0.521074;-0.106246; 4.746444;, + -0.490306;-0.106246; 3.153527;, + 0.284917;-0.106246; 3.852403;, + -0.521074;-0.106246; 4.746444;, + -1.296297;-0.106246; 4.047568;, + 0.249779; 0.415625; 3.501722;, + 0.249779;-0.628117; 3.501721;, + 0.723046;-0.628117; 4.608496;, + 0.723046; 0.415625; 4.608496;, + 0.249779;-0.628117; 3.501721;, + 0.249779; 0.415625; 3.501722;, + 0.723046; 0.415625; 4.608496;, + 0.723046;-0.628117; 4.608496;, + 0.729621;-0.106246; 3.296537;, + -0.230063;-0.106246; 3.706906;, + 0.243203;-0.106246; 4.813681;, + 1.202888;-0.106246; 4.403311;, + -0.230063;-0.106246; 3.706906;, + 0.729621;-0.106246; 3.296537;, + 1.202888;-0.106246; 4.403311;, + 0.243203;-0.106246; 4.813681;, + -0.356476; 0.081197; 3.794902;, + 0.381561;-0.656840; 3.794902;, + 0.381561;-0.656840; 4.998618;, + -0.356476; 0.081197; 4.998618;, + 0.381561;-0.656840; 3.794902;, + -0.356476; 0.081197; 3.794902;, + -0.356476; 0.081197; 4.998618;, + 0.381561;-0.656840; 4.998618;, + 0.381561; 0.081197; 3.794902;, + -0.356476;-0.656840; 3.794902;, + -0.356476;-0.656840; 4.998617;, + 0.381561; 0.081197; 4.998618;, + -0.356476;-0.656840; 3.794902;, + 0.381561; 0.081197; 3.794902;, + 0.381561; 0.081197; 4.998618;, + -0.356476;-0.656840; 4.998617;, + 0.404418;-0.274915; 2.000674;, + 0.404418;-0.671309; 2.000674;, + 0.404418;-0.671309; 2.966957;, + 0.404418;-0.274915; 2.966957;, + 0.404418;-0.671309; 2.000674;, + -0.404418;-0.671309; 2.000674;, + -0.404418;-0.671309; 2.966957;, + 0.404418;-0.671309; 2.966957;, + -0.404418;-0.671309; 2.000674;, + -0.404418;-0.274915; 2.000674;, + -0.404418;-0.274915; 2.966957;, + -0.404418;-0.671309; 2.966957;, + -0.404418;-0.671309; 2.966957;, + -0.404418;-0.671309; 2.000674;, + 0.404418;-0.671309; 2.000674;, + 0.404418;-0.671309; 2.966957;, + 0.404418;-0.671309; 2.966957;, + 0.404418;-0.671309; 2.000674;, + 0.404418;-0.274915; 2.000674;, + 0.404418;-0.274915; 2.966957;, + -0.404418;-0.274915; 2.966957;, + -0.404418;-0.274915; 2.000674;, + -0.404418;-0.671309; 2.000674;, + -0.404418;-0.671309; 2.966957;, + -0.400414;-0.659994; 2.846577;, + -0.400414; 0.119126; 2.846577;, + -0.400414; 0.119126; 3.812860;, + -0.400414;-0.659994; 3.812860;, + -0.400414; 0.119126; 2.846577;, + 0.400414; 0.119126; 2.846577;, + 0.400414; 0.119126; 3.812860;, + -0.400414; 0.119126; 3.812860;, + 0.400414; 0.119126; 2.846577;, + 0.400414;-0.659994; 2.846577;, + 0.400414;-0.659994; 3.812860;, + 0.400414; 0.119126; 3.812860;, + 0.400414;-0.659994; 2.846577;, + -0.400414;-0.659994; 2.846577;, + -0.400414;-0.659994; 3.812860;, + 0.400414;-0.659994; 3.812860;, + -0.400414;-0.659994; 3.812860;, + -0.400414; 0.119126; 3.812860;, + 0.400414; 0.119126; 3.812860;, + 0.400414;-0.659994; 3.812860;, + -0.400414;-0.263600; 1.882061;, + -0.400414; 0.119126; 1.882061;, + -0.400414; 0.119126; 2.848344;, + -0.400414;-0.263600; 2.848344;, + -0.400414; 0.119126; 1.882061;, + 0.400414; 0.119126; 1.882061;, + 0.400414; 0.119126; 2.848344;, + -0.400414; 0.119126; 2.848344;, + 0.400414; 0.119126; 1.882061;, + 0.400414;-0.263600; 1.882061;, + 0.400414;-0.263600; 2.848344;, + 0.400414; 0.119126; 2.848344;, + -0.452774;-0.710935; 0.935603;, + -0.452774; 0.170067; 0.935603;, + -0.452774; 0.170067; 2.028242;, + -0.452774;-0.710935; 2.028242;, + -0.452774; 0.170067; 0.935603;, + 0.452774; 0.170067; 0.935603;, + 0.452774; 0.170067; 2.028242;, + -0.452774; 0.170067; 2.028242;, + 0.452774; 0.170067; 0.935603;, + 0.452774;-0.710935; 0.935603;, + 0.452774;-0.710935; 2.028242;, + 0.452774; 0.170067; 2.028242;, + 0.452774;-0.710935; 0.935603;, + -0.452774;-0.710935; 0.935603;, + -0.452774;-0.710935; 2.028242;, + 0.452774;-0.710935; 2.028242;, + -0.452774;-0.710935; 2.028242;, + -0.452774; 0.170067; 2.028242;, + 0.452774; 0.170067; 2.028242;, + 0.452774;-0.710935; 2.028242;, + -0.400414; 0.119126; 3.022741;, + -0.400414;-0.659994; 3.022741;, + 0.400414;-0.659994; 3.022741;, + 0.400414; 0.119126; 3.022741;, + -0.452774;-0.710935; 0.935603;, + 0.452774;-0.710935; 0.935603;, + 0.452774; 0.170067; 0.935603;, + -0.452774; 0.170067; 0.935603;, + -0.400414;-0.266082; 2.848344;, + -0.400414;-0.266082; 1.882061;, + -0.400414;-0.263600; 1.882061;, + -0.400414;-0.263600; 2.848344;, + 0.400414;-0.266082; 2.848344;, + 0.400414;-0.266082; 1.882061;, + -0.400414;-0.266082; 1.882061;, + -0.400414;-0.266082; 2.848344;, + 0.400414;-0.263600; 2.848344;, + 0.400414;-0.263600; 1.882061;, + 0.400414;-0.266082; 1.882061;, + 0.400414;-0.266082; 2.848344;, + -0.391039;-0.271441; 3.810754;, + -0.391039;-0.271441; 2.844472;, + -0.400414;-0.659994; 2.846577;, + -0.400414;-0.659994; 3.812860;, + 0.409790;-0.271441; 3.810754;, + 0.409790;-0.271441; 2.844472;, + -0.391039;-0.271441; 2.844472;, + -0.391039;-0.271441; 3.810754;, + 0.400414;-0.659994; 3.812860;, + 0.400414;-0.659994; 2.846577;, + 0.409790;-0.271441; 2.844472;, + 0.409790;-0.271441; 3.810754;, + 0.133916;-0.391466;-0.146526;, + 0.433240;-0.391466;-0.146526;, + 0.433240;-0.391466; 1.070661;, + 0.133916;-0.391466; 1.070661;, + 0.433240;-0.391466;-0.146526;, + 0.433240;-0.690790;-0.146526;, + 0.433240;-0.690790; 1.070661;, + 0.433240;-0.391466; 1.070661;, + 0.433240;-0.690790;-0.146526;, + 0.133916;-0.690790;-0.146526;, + 0.133916;-0.690790; 1.070661;, + 0.433240;-0.690790; 1.070661;, + 0.133916;-0.690790;-0.146526;, + 0.133916;-0.391466;-0.146526;, + 0.133916;-0.391466; 1.070661;, + 0.133916;-0.690790; 1.070661;, + 0.133916;-0.690790;-0.146526;, + 0.433240;-0.690790;-0.146526;, + 0.433240;-0.391466;-0.146526;, + 0.133916;-0.391466;-0.146526;, + 0.133916;-0.391466; 1.070661;, + 0.433240;-0.391466; 1.070661;, + 0.433240;-0.690790; 1.070661;, + 0.133916;-0.690790; 1.070661;, + 0.141919;-0.135520;-0.146526;, + 0.141919; 0.163804;-0.146526;, + 0.141919; 0.163804; 1.070661;, + 0.141919;-0.135520; 1.070661;, + 0.141919; 0.163804;-0.146526;, + 0.441243; 0.163804;-0.146526;, + 0.441242; 0.163804; 1.070661;, + 0.141919; 0.163804; 1.070661;, + 0.441243; 0.163804;-0.146526;, + 0.441243;-0.135520;-0.146526;, + 0.441243;-0.135520; 1.070661;, + 0.441242; 0.163804; 1.070661;, + 0.441243;-0.135520;-0.146526;, + 0.141919;-0.135520;-0.146526;, + 0.141919;-0.135520; 1.070661;, + 0.441243;-0.135520; 1.070661;, + 0.441243;-0.135520;-0.146526;, + 0.441243; 0.163804;-0.146526;, + 0.141919; 0.163804;-0.146526;, + 0.141919;-0.135520;-0.146526;, + 0.141919;-0.135520; 1.070661;, + 0.141919; 0.163804; 1.070661;, + 0.441242; 0.163804; 1.070661;, + 0.441243;-0.135520; 1.070661;, + -0.158719;-0.383464;-0.146526;, + -0.158719;-0.682787;-0.146526;, + -0.158719;-0.682787; 1.070661;, + -0.158719;-0.383464; 1.070661;, + -0.158719;-0.682787;-0.146526;, + -0.458043;-0.682787;-0.146526;, + -0.458042;-0.682787; 1.070661;, + -0.158719;-0.682787; 1.070661;, + -0.458043;-0.682787;-0.146526;, + -0.458043;-0.383464;-0.146526;, + -0.458043;-0.383464; 1.070661;, + -0.458042;-0.682787; 1.070661;, + -0.458043;-0.383464;-0.146526;, + -0.158719;-0.383464;-0.146526;, + -0.158719;-0.383464; 1.070661;, + -0.458043;-0.383464; 1.070661;, + -0.458043;-0.383464;-0.146526;, + -0.458043;-0.682787;-0.146526;, + -0.158719;-0.682787;-0.146526;, + -0.158719;-0.383464;-0.146526;, + -0.158719;-0.383464; 1.070661;, + -0.158719;-0.682787; 1.070661;, + -0.458042;-0.682787; 1.070661;, + -0.458043;-0.383464; 1.070661;, + -0.150716;-0.127518;-0.146526;, + -0.450040;-0.127518;-0.146526;, + -0.450040;-0.127518; 1.070661;, + -0.150716;-0.127518; 1.070661;, + -0.450040;-0.127518;-0.146526;, + -0.450040; 0.171806;-0.146526;, + -0.450040; 0.171806; 1.070661;, + -0.450040;-0.127518; 1.070661;, + -0.450040; 0.171806;-0.146526;, + -0.150716; 0.171806;-0.146526;, + -0.150716; 0.171806; 1.070661;, + -0.450040; 0.171806; 1.070661;, + -0.150716; 0.171806;-0.146526;, + -0.150716;-0.127518;-0.146526;, + -0.150716;-0.127518; 1.070661;, + -0.150716; 0.171806; 1.070661;, + -0.150716; 0.171806;-0.146526;, + -0.450040; 0.171806;-0.146526;, + -0.450040;-0.127518;-0.146526;, + -0.150716;-0.127518;-0.146526;, + -0.150716;-0.127518; 1.070661;, + -0.450040;-0.127518; 1.070661;, + -0.450040; 0.171806; 1.070661;, + -0.150716; 0.171806; 1.070661;; + 99; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;; + MeshNormals { //Cube_020 Normals + 396; + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.702975;-0.258963; 0.662393;, + -0.702975;-0.258963; 0.662393;, + -0.702975;-0.258963; 0.662393;, + -0.702975;-0.258963; 0.662393;, + 0.702974; 0.258963;-0.662393;, + 0.702974; 0.258963;-0.662393;, + 0.702974; 0.258963;-0.662393;, + 0.702974; 0.258963;-0.662393;, + -0.388099;-0.640791;-0.662394;, + -0.388099;-0.640791;-0.662394;, + -0.388099;-0.640791;-0.662394;, + -0.388099;-0.640791;-0.662394;, + 0.388099; 0.640791; 0.662394;, + 0.388099; 0.640791; 0.662394;, + 0.388099; 0.640791; 0.662394;, + 0.388099; 0.640791; 0.662394;, + -0.523175; 0.536212; 0.662394;, + -0.523175; 0.536212; 0.662394;, + -0.523175; 0.536212; 0.662394;, + -0.523175; 0.536212; 0.662394;, + 0.523174;-0.536212;-0.662394;, + 0.523174;-0.536212;-0.662394;, + 0.523174;-0.536212;-0.662394;, + 0.523174;-0.536212;-0.662394;, + -0.743364; 0.092978;-0.662394;, + -0.743364; 0.092978;-0.662394;, + -0.743364; 0.092978;-0.662394;, + -0.743364; 0.092978;-0.662394;, + 0.743364;-0.092978; 0.662393;, + 0.743364;-0.092978; 0.662393;, + 0.743364;-0.092978; 0.662393;, + 0.743364;-0.092978; 0.662393;, + 0.523175; 0.536212;-0.662393;, + 0.523175; 0.536212;-0.662393;, + 0.523175; 0.536212;-0.662393;, + 0.523175; 0.536212;-0.662393;, + -0.523175;-0.536212; 0.662394;, + -0.523175;-0.536212; 0.662394;, + -0.523175;-0.536212; 0.662394;, + -0.523175;-0.536212; 0.662394;, + 0.743364; 0.092978; 0.662394;, + 0.743364; 0.092978; 0.662394;, + 0.743364; 0.092978; 0.662394;, + 0.743364; 0.092978; 0.662394;, + -0.743364;-0.092978;-0.662394;, + -0.743364;-0.092978;-0.662394;, + -0.743364;-0.092978;-0.662394;, + -0.743364;-0.092978;-0.662394;, + 0.702975;-0.258963;-0.662393;, + 0.702975;-0.258963;-0.662393;, + 0.702975;-0.258963;-0.662393;, + 0.702975;-0.258963;-0.662393;, + -0.702974; 0.258963; 0.662394;, + -0.702974; 0.258963; 0.662394;, + -0.702974; 0.258963; 0.662394;, + -0.702974; 0.258963; 0.662394;, + 0.388099;-0.640792; 0.662394;, + 0.388099;-0.640792; 0.662394;, + 0.388099;-0.640792; 0.662394;, + 0.388099;-0.640792; 0.662394;, + -0.388099; 0.640792;-0.662394;, + -0.388099; 0.640792;-0.662394;, + -0.388099; 0.640792;-0.662394;, + -0.388099; 0.640792;-0.662394;, + 0.707107; 0.476548;-0.522400;, + 0.707107; 0.476548;-0.522400;, + 0.707107; 0.476548;-0.522400;, + 0.707107; 0.476548;-0.522400;, + -0.707107;-0.476548; 0.522400;, + -0.707107;-0.476548; 0.522400;, + -0.707107;-0.476548; 0.522400;, + -0.707107;-0.476548; 0.522400;, + 0.707107;-0.476549; 0.522400;, + 0.707107;-0.476549; 0.522400;, + 0.707107;-0.476549; 0.522400;, + 0.707107;-0.476549; 0.522400;, + -0.707107; 0.476549;-0.522400;, + -0.707107; 0.476549;-0.522400;, + -0.707107; 0.476549;-0.522400;, + -0.707107; 0.476549;-0.522400;, + 0.742734;-0.000000; 0.669586;, + 0.742734;-0.000000; 0.669586;, + 0.742734;-0.000000; 0.669586;, + 0.742734;-0.000000; 0.669586;, + -0.742734; 0.000000;-0.669586;, + -0.742734; 0.000000;-0.669586;, + -0.742734; 0.000000;-0.669586;, + -0.742734; 0.000000;-0.669586;, + -0.000000;-1.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.919465;-0.000000;-0.393171;, + 0.919465;-0.000000;-0.393171;, + 0.919465;-0.000000;-0.393171;, + 0.919465;-0.000000;-0.393171;, + -0.919465;-0.000000; 0.393172;, + -0.919465;-0.000000; 0.393172;, + -0.919465;-0.000000; 0.393172;, + -0.919465;-0.000000; 0.393172;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + 0.707107; 0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + -0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + 0.707107;-0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + -0.707107; 0.707107; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.999709;-0.024122; 0.000000;, + 0.999709;-0.024122; 0.000000;, + 0.999709;-0.024122; 0.000000;, + 0.999709;-0.024122; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.999709; 0.024122; 0.000000;, + -0.999709; 0.024122; 0.000000;, + -0.999709; 0.024122; 0.000000;, + -0.999709; 0.024122; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000;-0.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000;-0.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;; + 99; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;; + } //End of Cube_020 Normals + MeshMaterialList { //Cube_020 Material List + 1; + 1; + 0;; + Material Default_Material { + 0.800000; 0.800000; 0.800000; 0.800000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Cube_020 Material List + MeshTextureCoords { //Cube_020 UV Coordinates + 396; + 0.004311; 0.997873;, + 0.215553; 0.997873;, + 0.215553; 0.725464;, + 0.004311; 0.725464;, + 0.234926; 0.999800;, + 0.000200; 0.999800;, + 0.000200; 0.729576;, + 0.234926; 0.729576;, + 0.238056; 0.999800;, + 0.520057; 0.999800;, + 0.520056; 0.675133;, + 0.238056; 0.675133;, + 0.513453; 0.999512;, + 0.243229; 0.999512;, + 0.243229; 0.671943;, + 0.513453; 0.671943;, + 0.004311; 0.997873;, + 0.215553; 0.997873;, + 0.215553; 0.725464;, + 0.004311; 0.725464;, + 0.234926; 0.999800;, + 0.000200; 0.999800;, + 0.000200; 0.729576;, + 0.234926; 0.729576;, + 0.238056; 0.999800;, + 0.520057; 0.999800;, + 0.520056; 0.675133;, + 0.238056; 0.675133;, + 0.513453; 0.999512;, + 0.243229; 0.999512;, + 0.243229; 0.671943;, + 0.513453; 0.671943;, + 0.004311; 0.997873;, + 0.215553; 0.997873;, + 0.215553; 0.725464;, + 0.004311; 0.725464;, + 0.234926; 0.999800;, + 0.000200; 0.999800;, + 0.000200; 0.729576;, + 0.234926; 0.729576;, + 0.238056; 0.999800;, + 0.520057; 0.999800;, + 0.520056; 0.675133;, + 0.238056; 0.675133;, + 0.513453; 0.999512;, + 0.243229; 0.999512;, + 0.243229; 0.671943;, + 0.513453; 0.671943;, + 0.004311; 0.997873;, + 0.215553; 0.997873;, + 0.215553; 0.725464;, + 0.004311; 0.725464;, + 0.234926; 0.999800;, + 0.000200; 0.999800;, + 0.000200; 0.729576;, + 0.234926; 0.729576;, + 0.238056; 0.999800;, + 0.520057; 0.999800;, + 0.520056; 0.675133;, + 0.238056; 0.675133;, + 0.513453; 0.999512;, + 0.243229; 0.999512;, + 0.243229; 0.671943;, + 0.513453; 0.671943;, + 0.004311; 0.997873;, + 0.215553; 0.997873;, + 0.215553; 0.725464;, + 0.004311; 0.725464;, + 0.234926; 0.999800;, + 0.000200; 0.999800;, + 0.000200; 0.729576;, + 0.234926; 0.729576;, + 0.238056; 0.999800;, + 0.520057; 0.999800;, + 0.520056; 0.675133;, + 0.238056; 0.675133;, + 0.513453; 0.999512;, + 0.243229; 0.999512;, + 0.243229; 0.671943;, + 0.513453; 0.671943;, + 0.004311; 0.997873;, + 0.215553; 0.997873;, + 0.215553; 0.725464;, + 0.004311; 0.725464;, + 0.234926; 0.999800;, + 0.000200; 0.999800;, + 0.000200; 0.729576;, + 0.234926; 0.729576;, + 0.238056; 0.999800;, + 0.520057; 0.999800;, + 0.520056; 0.675133;, + 0.238056; 0.675133;, + 0.513453; 0.999512;, + 0.243229; 0.999512;, + 0.243229; 0.671943;, + 0.513453; 0.671943;, + 0.004311; 0.997873;, + 0.215553; 0.997873;, + 0.215553; 0.725464;, + 0.004311; 0.725464;, + 0.234926; 0.999800;, + 0.000200; 0.999800;, + 0.000200; 0.729576;, + 0.234926; 0.729576;, + 0.238056; 0.999800;, + 0.520057; 0.999800;, + 0.520056; 0.675133;, + 0.238056; 0.675133;, + 0.513453; 0.999512;, + 0.243229; 0.999512;, + 0.243229; 0.671943;, + 0.513453; 0.671943;, + 0.004311; 0.997873;, + 0.215553; 0.997873;, + 0.215553; 0.725464;, + 0.004311; 0.725464;, + 0.234926; 0.999800;, + 0.000200; 0.999800;, + 0.000200; 0.729576;, + 0.234926; 0.729576;, + 0.238056; 0.999800;, + 0.520057; 0.999800;, + 0.520056; 0.675133;, + 0.238056; 0.675133;, + 0.513453; 0.999512;, + 0.243229; 0.999512;, + 0.243229; 0.671943;, + 0.513453; 0.671943;, + 0.004311; 0.997873;, + 0.215553; 0.997873;, + 0.215553; 0.725464;, + 0.004311; 0.725464;, + 0.234926; 0.999800;, + 0.000200; 0.999800;, + 0.000200; 0.729576;, + 0.234926; 0.729576;, + 0.238056; 0.999800;, + 0.520057; 0.999800;, + 0.520056; 0.675133;, + 0.238056; 0.675133;, + 0.513453; 0.999512;, + 0.243229; 0.999512;, + 0.243229; 0.671943;, + 0.513453; 0.671943;, + 0.004311; 0.997873;, + 0.215553; 0.997873;, + 0.215553; 0.725464;, + 0.004311; 0.725464;, + 0.234926; 0.999800;, + 0.000200; 0.999800;, + 0.000200; 0.729576;, + 0.234926; 0.729576;, + 0.238056; 0.999800;, + 0.520057; 0.999800;, + 0.520056; 0.675133;, + 0.238056; 0.675133;, + 0.513453; 0.999512;, + 0.243229; 0.999512;, + 0.243229; 0.671943;, + 0.513453; 0.671943;, + 0.004311; 0.997873;, + 0.215553; 0.997873;, + 0.215553; 0.725464;, + 0.004311; 0.725464;, + 0.234926; 0.999800;, + 0.000200; 0.999800;, + 0.000200; 0.729576;, + 0.234926; 0.729576;, + 0.238056; 0.999800;, + 0.520057; 0.999800;, + 0.520056; 0.675133;, + 0.238056; 0.675133;, + 0.513453; 0.999512;, + 0.243229; 0.999512;, + 0.243229; 0.671943;, + 0.513453; 0.671943;, + 0.004311; 0.997873;, + 0.215553; 0.997873;, + 0.215553; 0.725464;, + 0.004311; 0.725464;, + 0.234926; 0.999800;, + 0.000200; 0.999800;, + 0.000200; 0.729576;, + 0.234926; 0.729576;, + 0.238056; 0.999800;, + 0.520057; 0.999800;, + 0.520056; 0.675133;, + 0.238056; 0.675133;, + 0.513453; 0.999512;, + 0.243229; 0.999512;, + 0.243229; 0.671943;, + 0.513453; 0.671943;, + 0.306607; 0.667855;, + 0.472407; 0.667855;, + 0.472407; 0.338749;, + 0.306607; 0.338749;, + 0.664431; 0.667855;, + 0.343449; 0.667855;, + 0.343449; 0.334991;, + 0.664431; 0.334991;, + 0.469977; 0.660865;, + 0.304177; 0.660865;, + 0.304177; 0.335341;, + 0.469977; 0.335341;, + 0.343449; 0.334991;, + 0.343449; 0.667855;, + 0.664431; 0.667855;, + 0.664431; 0.334991;, + 0.472407; 0.338749;, + 0.472407; 0.667855;, + 0.306607; 0.667855;, + 0.306607; 0.338749;, + 0.304177; 0.335341;, + 0.304177; 0.660865;, + 0.469977; 0.660865;, + 0.469977; 0.335341;, + 0.001890; 0.339551;, + 0.329664; 0.339551;, + 0.329664; 0.670730;, + 0.001890; 0.670730;, + 0.335222; 0.330358;, + 0.002264; 0.330358;, + 0.002265; 0.004421;, + 0.335222; 0.004421;, + 0.327917; 0.335697;, + 0.001890; 0.335697;, + 0.001890; 0.665529;, + 0.327917; 0.665529;, + 0.662024; 0.329090;, + 0.344359; 0.329090;, + 0.346595; 0.004762;, + 0.664261; 0.004762;, + 0.679193; 0.338611;, + 0.998453; 0.338611;, + 0.998453; 0.665780;, + 0.679193; 0.665780;, + 0.326857; 0.333405;, + 0.187547; 0.333426;, + 0.187494; 0.002442;, + 0.326804; 0.002421;, + 0.001477; 0.001367;, + 0.328143; 0.001323;, + 0.328196; 0.333202;, + 0.001530; 0.333246;, + 0.134182; 0.333469;, + 0.000240; 0.333490;, + 0.000187; 0.002506;, + 0.134129; 0.002486;, + 0.328582; 0.329763;, + 0.001252; 0.329763;, + 0.001252; 0.002494;, + 0.328582; 0.002494;, + 0.330483; 0.331867;, + 0.001487; 0.331866;, + 0.001487; 0.001126;, + 0.330483; 0.001126;, + 0.329421; 0.328859;, + 0.003210; 0.328859;, + 0.003210; 0.002709;, + 0.329421; 0.002709;, + 0.328413; 0.332297;, + 0.001672; 0.332297;, + 0.001672; 0.002642;, + 0.328413; 0.002642;, + 0.673230; 0.999736;, + 0.673230; 0.669819;, + 1.000041; 0.669819;, + 1.000041; 0.999736;, + 0.676706; 0.996359;, + 0.676706; 0.671731;, + 1.001974; 0.671731;, + 1.001974; 0.996359;, + 0.678604; 0.337458;, + 1.000197; 0.337458;, + 1.000197; 0.667940;, + 0.678604; 0.667940;, + 0.187494; 0.002442;, + 0.187547; 0.333426;, + 0.326857; 0.333405;, + 0.326804; 0.002421;, + 0.999939; 0.999484;, + 0.999886; 0.667605;, + 0.673221; 0.667649;, + 0.673273; 0.999528;, + 0.000187; 0.002506;, + 0.000240; 0.333490;, + 0.134182; 0.333469;, + 0.134129; 0.002486;, + 0.160145; 0.670730;, + 0.160145; 0.339551;, + 0.001890; 0.339551;, + 0.001890; 0.670730;, + 0.668546; 0.665242;, + 0.668546; 0.991178;, + 1.001503; 0.991178;, + 1.001504; 0.665242;, + 0.001890; 0.665529;, + 0.001890; 0.335697;, + 0.160145; 0.335697;, + 0.160145; 0.665529;, + 0.832705; 0.338036;, + 0.750766; 0.338036;, + 0.750766; 0.004838;, + 0.832705; 0.004838;, + 0.996985; 0.338036;, + 0.915047; 0.338036;, + 0.915047; 0.004838;, + 0.996985; 0.004838;, + 0.750564; 0.338036;, + 0.668626; 0.338036;, + 0.668626; 0.004838;, + 0.750564; 0.004838;, + 0.914845; 0.338036;, + 0.832907; 0.338036;, + 0.832907; 0.004838;, + 0.914845; 0.004838;, + 0.671692; 0.335852;, + 0.671692; 0.253914;, + 0.753631; 0.253914;, + 0.753630; 0.335852;, + 0.669508; 0.254853;, + 0.751446; 0.254853;, + 0.751446; 0.336791;, + 0.669508; 0.336791;, + 0.832705; 0.338036;, + 0.750766; 0.338036;, + 0.750766; 0.004838;, + 0.832705; 0.004838;, + 0.996985; 0.338036;, + 0.915047; 0.338036;, + 0.915047; 0.004838;, + 0.996985; 0.004838;, + 0.750564; 0.338036;, + 0.668626; 0.338036;, + 0.668626; 0.004838;, + 0.750564; 0.004838;, + 0.914845; 0.338036;, + 0.832907; 0.338036;, + 0.832907; 0.004838;, + 0.914845; 0.004838;, + 0.671692; 0.335852;, + 0.671692; 0.253914;, + 0.753631; 0.253914;, + 0.753630; 0.335852;, + 0.669508; 0.254853;, + 0.751446; 0.254853;, + 0.751446; 0.336791;, + 0.669508; 0.336791;, + 0.832705; 0.338036;, + 0.750766; 0.338036;, + 0.750766; 0.004838;, + 0.832705; 0.004838;, + 0.996985; 0.338036;, + 0.915047; 0.338036;, + 0.915047; 0.004838;, + 0.996985; 0.004838;, + 0.750564; 0.338036;, + 0.668626; 0.338036;, + 0.668626; 0.004838;, + 0.750564; 0.004838;, + 0.914845; 0.338036;, + 0.832907; 0.338036;, + 0.832907; 0.004838;, + 0.914845; 0.004838;, + 0.671692; 0.335852;, + 0.671692; 0.253914;, + 0.753631; 0.253914;, + 0.753630; 0.335852;, + 0.669508; 0.254853;, + 0.751446; 0.254853;, + 0.751446; 0.336791;, + 0.669508; 0.336791;, + 0.832705; 0.338036;, + 0.750766; 0.338036;, + 0.750766; 0.004838;, + 0.832705; 0.004838;, + 0.996985; 0.338036;, + 0.915047; 0.338036;, + 0.915047; 0.004838;, + 0.996985; 0.004838;, + 0.750564; 0.338036;, + 0.668626; 0.338036;, + 0.668626; 0.004838;, + 0.750564; 0.004838;, + 0.914845; 0.338036;, + 0.832907; 0.338036;, + 0.832907; 0.004838;, + 0.914845; 0.004838;, + 0.671692; 0.335852;, + 0.671692; 0.253914;, + 0.753631; 0.253914;, + 0.753630; 0.335852;, + 0.669508; 0.254853;, + 0.751446; 0.254853;, + 0.751446; 0.336791;, + 0.669508; 0.336791;; + } //End of Cube_020 UV Coordinates + XSkinMeshHeader { + 2; + 6; + 6; + } + SkinWeights { + "Armature_Bone_002"; + 40; + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000001, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000001, 0.000000, + -0.308914, 1.006964, 0.544713, 1.000000;; + } //End of Armature_Bone_002 Skin Weights + SkinWeights { + "Armature_Bone_003"; + 40; + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000001, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000001, 0.000000, + 0.296125, 1.006964, 0.544713, 1.000000;; + } //End of Armature_Bone_003 Skin Weights + SkinWeights { + "Armature_Bone_004"; + 40; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000001, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000001, 0.000000, + -0.308914, 1.006964,-0.022113, 1.000000;; + } //End of Armature_Bone_004 Skin Weights + SkinWeights { + "Armature_Bone_005"; + 40; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000001, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000001, 0.000000, + 0.296125, 1.006964,-0.022113, 1.000000;; + } //End of Armature_Bone_005 Skin Weights + SkinWeights { + "Armature_root"; + 216; + 51, + 54, + 58, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299; + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.003210,-1.015033,-0.035207, 1.000000;; + } //End of Armature_root Skin Weights + SkinWeights { + "Armature_Bone_001"; + 24; + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.003210,-1.958306,-0.468288, 1.000000;; + } //End of Armature_Bone_001 Skin Weights + } //End of Cube_020 Mesh + } //End of Cube_005 + } //End of Armature +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 64; + 0;3; 0.003210,-0.035207, 1.015033;;, + 1;3; 0.003210,-0.035207, 1.015033;;, + 2;3; 0.003210,-0.035207, 1.015033;;, + 3;3; 0.003210,-0.035207, 1.015033;;, + 4;3; 0.003210,-0.035207, 1.015033;;, + 5;3; 0.003210,-0.035207, 1.015033;;, + 6;3; 0.003210,-0.035207, 1.015033;;, + 7;3; 0.003210,-0.035207, 1.015033;;, + 8;3; 0.003210,-0.035207, 1.015033;;, + 9;3; 0.003210,-0.035207, 1.015033;;, + 10;3; 0.003210,-0.035207, 1.015033;;, + 11;3; 0.003210,-0.035207, 1.015033;;, + 12;3; 0.003210,-0.035207, 1.015033;;, + 13;3; 0.003210,-0.035207, 1.015033;;, + 14;3; 0.003210,-0.035207, 1.015033;;, + 15;3; 0.003210,-0.035207, 1.015033;;, + 16;3; 0.003210,-0.035207, 1.015033;;, + 17;3; 0.003210,-0.035207, 1.015033;;, + 18;3; 0.003210,-0.035207, 1.015033;;, + 19;3; 0.003210,-0.035207, 1.015033;;, + 20;3; 0.003210,-0.035207, 1.015033;;, + 21;3; 0.003210,-0.035207, 1.015033;;, + 22;3; 0.003210,-0.035207, 1.015033;;, + 23;3; 0.003210,-0.035207, 1.015033;;, + 24;3; 0.003210,-0.035207, 1.015033;;, + 25;3; 0.003210,-0.035207, 1.015033;;, + 26;3; 0.003210,-0.035207, 1.015033;;, + 27;3; 0.003210,-0.035207, 1.015033;;, + 28;3; 0.003210,-0.035207, 1.015033;;, + 29;3; 0.003210,-0.035207, 1.015033;;, + 30;3; 0.003210,-0.035207, 1.015033;;, + 31;3; 0.003210,-0.035207, 1.015033;;, + 32;3; 0.003210,-0.035207, 1.015033;;, + 33;3; 0.003210,-0.035207, 1.015033;;, + 34;3; 0.003210,-0.035207, 1.015033;;, + 35;3; 0.003210,-0.035207, 1.015033;;, + 36;3; 0.003210,-0.035207, 1.015033;;, + 37;3; 0.003210,-0.035207, 1.015033;;, + 38;3; 0.003210,-0.035207, 1.015033;;, + 39;3; 0.003210,-0.035207, 1.015033;;, + 40;3; 0.003210,-0.035207, 1.015033;;, + 41;3; 0.003210,-0.035207, 1.015033;;, + 42;3; 0.003210,-0.035207, 1.015033;;, + 43;3; 0.003210,-0.035207, 1.015033;;, + 44;3; 0.003210,-0.035207, 1.015033;;, + 45;3; 0.003210,-0.035207, 1.015033;;, + 46;3; 0.003210,-0.035207, 1.015033;;, + 47;3; 0.003210,-0.035207, 1.015033;;, + 48;3; 0.003210,-0.035207, 1.015033;;, + 49;3; 0.003210,-0.035207, 1.015033;;, + 50;3; 0.003210,-0.035207, 1.015033;;, + 51;3; 0.003210,-0.035207, 1.015033;;, + 52;3; 0.003210,-0.035207, 1.015033;;, + 53;3; 0.003210,-0.035207, 1.015033;;, + 54;3; 0.003210,-0.035207, 1.015033;;, + 55;3; 0.003210,-0.035207, 1.015033;;, + 56;3; 0.003210,-0.035207, 1.015033;;, + 57;3; 0.003210,-0.035207, 1.015033;;, + 58;3; 0.003210,-0.035207, 1.015033;;, + 59;3; 0.003210,-0.035207, 1.015033;;, + 60;3; 0.003210,-0.035207, 1.015033;;, + 61;3; 0.003210,-0.035207, 1.015033;;, + 62;3; 0.003210,-0.035207, 1.015033;;, + 63;3; 0.003210,-0.035207, 1.015033;;; + } + AnimationKey { //Rotation + 0; + 64; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 64; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_root} + AnimationKey { //Position + 2; + 64; + 0;3; 0.000000,-0.000000,-0.189446;;, + 1;3; 0.000000,-0.000000,-0.189446;;, + 2;3; 0.000000,-0.000000,-0.189446;;, + 3;3; 0.000000,-0.000000,-0.189446;;, + 4;3; 0.000000,-0.000000,-0.189446;;, + 5;3; 0.000000,-0.000000,-0.189446;;, + 6;3; 0.000000,-0.000000,-0.189446;;, + 7;3; 0.000000,-0.000000,-0.189446;;, + 8;3; 0.000000,-0.000000,-0.189446;;, + 9;3; 0.000000,-0.000000,-0.189446;;, + 10;3; 0.000000,-0.000000,-0.189446;;, + 11;3; 0.000000,-0.000000,-0.189446;;, + 12;3; 0.000000,-0.000000,-0.189446;;, + 13;3; 0.000000,-0.000000,-0.189446;;, + 14;3; 0.000000,-0.000000,-0.189446;;, + 15;3; 0.000000,-0.000000,-0.189446;;, + 16;3; 0.000000,-0.000000,-0.189446;;, + 17;3; 0.000000,-0.000000,-0.189446;;, + 18;3; 0.000000,-0.000000,-0.189446;;, + 19;3; 0.000000,-0.000000,-0.189446;;, + 20;3; 0.000000,-0.000000,-0.189446;;, + 21;3; 0.000000,-0.000000,-0.189446;;, + 22;3; 0.000000,-0.000000,-0.189446;;, + 23;3; 0.000000,-0.000000,-0.189446;;, + 24;3; 0.000000,-0.000000,-0.189446;;, + 25;3; 0.000000,-0.000000,-0.189446;;, + 26;3; 0.000000,-0.000000,-0.189446;;, + 27;3; 0.000000,-0.000000,-0.189446;;, + 28;3; 0.000000,-0.000000,-0.189446;;, + 29;3; 0.000000,-0.000000,-0.189446;;, + 30;3; 0.000000,-0.000000,-0.189446;;, + 31;3; 0.000000,-0.000000,-0.189446;;, + 32;3; 0.000000,-0.000000,-0.189446;;, + 33;3; 0.000000,-0.000000,-0.189446;;, + 34;3; 0.000000,-0.000000,-0.189446;;, + 35;3; 0.000000,-0.000000,-0.189446;;, + 36;3; 0.000000,-0.000000,-0.189446;;, + 37;3; 0.000000,-0.000000,-0.189446;;, + 38;3; 0.000000,-0.000000,-0.189446;;, + 39;3; 0.000000,-0.000000,-0.189446;;, + 40;3; 0.000000,-0.000000,-0.189446;;, + 41;3; 0.000000,-0.000000,-0.189446;;, + 42;3; 0.000000,-0.000000,-0.189446;;, + 43;3; 0.000000,-0.000000,-0.189446;;, + 44;3; 0.000000,-0.000000,-0.189446;;, + 45;3; 0.000000,-0.000000,-0.189446;;, + 46;3; 0.000000,-0.000000,-0.189446;;, + 47;3; 0.000000,-0.000000,-0.189446;;, + 48;3; 0.000000,-0.000000,-0.189446;;, + 49;3; 0.000000,-0.000000,-0.189446;;, + 50;3; 0.000000,-0.000000,-0.189446;;, + 51;3; 0.000000,-0.000000,-0.189446;;, + 52;3; 0.000000,-0.000000,-0.189446;;, + 53;3; 0.000000,-0.000000,-0.189446;;, + 54;3; 0.000000,-0.000000,-0.189446;;, + 55;3; 0.000000,-0.000000,-0.189446;;, + 56;3; 0.000000,-0.000000,-0.189446;;, + 57;3; 0.000000,-0.000000,-0.189446;;, + 58;3; 0.000000,-0.000000,-0.189446;;, + 59;3; 0.000000,-0.000000,-0.189446;;, + 60;3; 0.000000,-0.000000,-0.189446;;, + 61;3; 0.000000,-0.000000,-0.189446;;, + 62;3; 0.000000,-0.000000,-0.189446;;, + 63;3; 0.000000,-0.000000,-0.189446;;; + } + AnimationKey { //Rotation + 0; + 64; + 0;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 1;4; -0.000000, 0.000000, 0.707107, 0.707107;;, + 2;4; -0.001256,-0.001256, 0.707097, 0.707097;;, + 3;4; -0.004793,-0.004793, 0.707069, 0.707069;;, + 4;4; -0.009335,-0.009335, 0.707030, 0.707030;;, + 5;4; -0.012873,-0.012873, 0.706992, 0.706992;;, + 6;4; -0.014129,-0.014129, 0.706966, 0.706966;;, + 7;4; -0.013710,-0.013710, 0.706947, 0.706947;;, + 8;4; -0.012446,-0.012446, 0.706929, 0.706929;;, + 9;4; -0.010363,-0.010363, 0.706912, 0.706912;;, + 10;4; -0.007551,-0.007551, 0.706896, 0.706896;;, + 11;4; -0.004183,-0.004183, 0.706883, 0.706883;;, + 12;4; -0.000513,-0.000513, 0.706871, 0.706871;;, + 13;4; 0.003158, 0.003158, 0.706862, 0.706862;;, + 14;4; 0.006525, 0.006525, 0.706855, 0.706855;;, + 15;4; 0.009337, 0.009337, 0.706850, 0.706850;;, + 16;4; 0.011421, 0.011421, 0.706847, 0.706846;;, + 17;4; 0.012684, 0.012684, 0.706845, 0.706845;;, + 18;4; 0.013103, 0.013103, 0.706844, 0.706844;;, + 19;4; 0.012294, 0.012294, 0.706844, 0.706844;;, + 20;4; 0.009938, 0.009938, 0.706844, 0.706844;;, + 21;4; 0.006551, 0.006552, 0.706844, 0.706844;;, + 22;4; 0.003165, 0.003165, 0.706844, 0.706844;;, + 23;4; 0.000809, 0.000809, 0.706844, 0.706844;;, + 24;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 25;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 26;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 27;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 28;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 29;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 30;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 31;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 32;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 33;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 34;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 35;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 36;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 37;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 38;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 39;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 40;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 41;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 42;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 43;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 44;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 45;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 46;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 47;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 48;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 49;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 50;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 51;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 52;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 53;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 54;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 55;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 56;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 57;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 58;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 59;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 60;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 61;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 62;4; -0.000000, 0.000000, 0.706844, 0.706844;;, + 63;4; -0.000000, 0.000000, 0.706844, 0.706844;;; + } + AnimationKey { //Scale + 1; + 64; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { //Position + 2; + 64; + 0;3; 0.000000, 0.943273, 0.433080;;, + 1;3; 0.000000, 0.943273, 0.433080;;, + 2;3; 0.000000, 0.943273, 0.433080;;, + 3;3; -0.000000, 0.943273, 0.433080;;, + 4;3; 0.000000, 0.943273, 0.433080;;, + 5;3; -0.000000, 0.943273, 0.433080;;, + 6;3; 0.000000, 0.943273, 0.433080;;, + 7;3; -0.000000, 0.943273, 0.433080;;, + 8;3; -0.000000, 0.943273, 0.433080;;, + 9;3; -0.000000, 0.943273, 0.433080;;, + 10;3; 0.000000, 0.943273, 0.433080;;, + 11;3; -0.000000, 0.943273, 0.433080;;, + 12;3; -0.000000, 0.943273, 0.433080;;, + 13;3; -0.000000, 0.943273, 0.433080;;, + 14;3; -0.000000, 0.943273, 0.433080;;, + 15;3; 0.000000, 0.943273, 0.433080;;, + 16;3; 0.000000, 0.943273, 0.433080;;, + 17;3; -0.000000, 0.943273, 0.433080;;, + 18;3; 0.000000, 0.943273, 0.433080;;, + 19;3; 0.000000, 0.943273, 0.433080;;, + 20;3; -0.000000, 0.943273, 0.433080;;, + 21;3; -0.000000, 0.943273, 0.433080;;, + 22;3; -0.000000, 0.943273, 0.433080;;, + 23;3; -0.000000, 0.943273, 0.433080;;, + 24;3; 0.000000, 0.943273, 0.433080;;, + 25;3; 0.000000, 0.943273, 0.433080;;, + 26;3; 0.000000, 0.943273, 0.433080;;, + 27;3; 0.000000, 0.943273, 0.433080;;, + 28;3; 0.000000, 0.943273, 0.433080;;, + 29;3; 0.000000, 0.943273, 0.433080;;, + 30;3; 0.000000, 0.943273, 0.433080;;, + 31;3; 0.000000, 0.943273, 0.433080;;, + 32;3; 0.000000, 0.943273, 0.433080;;, + 33;3; 0.000000, 0.943273, 0.433080;;, + 34;3; 0.000000, 0.943273, 0.433080;;, + 35;3; 0.000000, 0.943273, 0.433080;;, + 36;3; 0.000000, 0.943273, 0.433080;;, + 37;3; 0.000000, 0.943273, 0.433080;;, + 38;3; 0.000000, 0.943273, 0.433080;;, + 39;3; 0.000000, 0.943273, 0.433080;;, + 40;3; 0.000000, 0.943273, 0.433080;;, + 41;3; 0.000000, 0.943273, 0.433080;;, + 42;3; 0.000000, 0.943273, 0.433080;;, + 43;3; 0.000000, 0.943273, 0.433080;;, + 44;3; 0.000000, 0.943273, 0.433080;;, + 45;3; 0.000000, 0.943273, 0.433080;;, + 46;3; 0.000000, 0.943273, 0.433080;;, + 47;3; 0.000000, 0.943273, 0.433080;;, + 48;3; -0.000000, 0.376699, 0.433080;;, + 49;3; 0.000000, 0.298801, 0.433080;;, + 50;3; -0.000000, 0.250242, 0.433080;;, + 51;3; -0.000000, 0.221263, 0.433080;;, + 52;3; -0.000000, 0.205343, 0.433080;;, + 53;3; -0.000000, 0.197838, 0.433080;;, + 54;3; -0.000000, 0.195269, 0.433080;;, + 55;3; -0.000000, 0.194923, 0.433080;;, + 56;3; -0.000000, 0.203169, 0.433080;;, + 57;3; -0.000000, 0.227559, 0.433080;;, + 58;3; 0.000000, 0.264720, 0.433080;;, + 59;3; 0.000000, 0.306874, 0.433080;;, + 60;3; -0.000000, 0.344046, 0.433080;;, + 61;3; -0.000000, 0.368448, 0.433080;;, + 62;3; -0.000000, 0.376699, 0.433080;;, + 63;3; -0.000000, 0.376699, 0.433080;;; + } + AnimationKey { //Rotation + 0; + 64; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 64; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { //Position + 2; + 64; + 0;3; 0.305704,-0.008069, 0.509506;;, + 1;3; 0.305704,-0.008069, 0.509506;;, + 2;3; 0.305704,-0.008069, 0.509506;;, + 3;3; 0.305704,-0.008069, 0.509506;;, + 4;3; 0.305704,-0.008069, 0.509506;;, + 5;3; 0.305704,-0.008069, 0.509506;;, + 6;3; 0.305704,-0.008069, 0.509506;;, + 7;3; 0.305704,-0.008069, 0.509506;;, + 8;3; 0.305704,-0.008069, 0.509506;;, + 9;3; 0.305704,-0.008069, 0.509506;;, + 10;3; 0.305704,-0.008069, 0.509506;;, + 11;3; 0.305704,-0.008069, 0.509506;;, + 12;3; 0.305704,-0.008069, 0.509506;;, + 13;3; 0.305704,-0.008069, 0.509506;;, + 14;3; 0.305704,-0.008069, 0.509506;;, + 15;3; 0.305704,-0.008069, 0.509506;;, + 16;3; 0.305704,-0.008069, 0.509506;;, + 17;3; 0.305704,-0.008069, 0.509506;;, + 18;3; 0.305704,-0.008069, 0.509506;;, + 19;3; 0.305704,-0.008069, 0.509506;;, + 20;3; 0.305704,-0.008069, 0.509506;;, + 21;3; 0.305704,-0.008069, 0.509506;;, + 22;3; 0.305704,-0.008069, 0.509506;;, + 23;3; 0.305704,-0.008069, 0.509506;;, + 24;3; 0.305704,-0.008069, 0.509506;;, + 25;3; 0.305704,-0.008069, 0.509506;;, + 26;3; 0.305704,-0.008069, 0.509506;;, + 27;3; 0.305704,-0.008069, 0.509506;;, + 28;3; 0.305704,-0.008069, 0.509506;;, + 29;3; 0.305704,-0.008069, 0.509506;;, + 30;3; 0.305704,-0.008069, 0.509506;;, + 31;3; 0.305704,-0.008069, 0.509506;;, + 32;3; 0.305704,-0.008069, 0.509506;;, + 33;3; 0.305704,-0.008069, 0.509506;;, + 34;3; 0.305704,-0.008069, 0.509506;;, + 35;3; 0.305704,-0.008069, 0.509506;;, + 36;3; 0.305704,-0.008069, 0.509506;;, + 37;3; 0.305704,-0.008069, 0.509506;;, + 38;3; 0.305704,-0.008069, 0.509506;;, + 39;3; 0.305704,-0.008069, 0.509506;;, + 40;3; 0.305704,-0.008069, 0.509506;;, + 41;3; 0.305704,-0.008069, 0.509506;;, + 42;3; 0.305704,-0.008069, 0.509506;;, + 43;3; 0.305704,-0.008069, 0.509506;;, + 44;3; 0.305704,-0.008069, 0.509506;;, + 45;3; 0.305704,-0.008069, 0.509506;;, + 46;3; 0.305704,-0.008069, 0.509506;;, + 47;3; 0.305704,-0.008069, 0.509506;;, + 48;3; 0.305704,-0.008069, 0.509506;;, + 49;3; 0.305704,-0.008069, 0.509506;;, + 50;3; 0.305704,-0.008069, 0.509506;;, + 51;3; 0.305704,-0.008069, 0.509506;;, + 52;3; 0.305704,-0.008069, 0.509506;;, + 53;3; 0.305704,-0.008069, 0.509506;;, + 54;3; 0.305704,-0.008069, 0.509506;;, + 55;3; 0.305704,-0.008069, 0.509506;;, + 56;3; 0.305704,-0.008069, 0.509506;;, + 57;3; 0.305704,-0.008069, 0.509506;;, + 58;3; 0.305704,-0.008069, 0.509506;;, + 59;3; 0.305704,-0.008069, 0.509506;;, + 60;3; 0.305704,-0.008069, 0.509506;;, + 61;3; 0.305704,-0.008069, 0.509506;;, + 62;3; 0.305704,-0.008069, 0.509506;;, + 63;3; 0.305704,-0.008069, 0.509506;;; + } + AnimationKey { //Rotation + 0; + 64; + 0;4; -0.353554, 0.853553, 0.146446,-0.353554;;, + 1;4; -0.353554, 0.853553, 0.146446,-0.353554;;, + 2;4; -0.354246, 0.853245, 0.148133,-0.352846;;, + 3;4; -0.356195, 0.852375, 0.152883,-0.350853;;, + 4;4; -0.358698, 0.851259, 0.158982,-0.348293;;, + 5;4; -0.360647, 0.850389, 0.163732,-0.346300;;, + 6;4; -0.361339, 0.850080, 0.165418,-0.345593;;, + 7;4; -0.361034, 0.850201, 0.164685,-0.345894;;, + 8;4; -0.360112, 0.850566, 0.162472,-0.346804;;, + 9;4; -0.358593, 0.851168, 0.158822,-0.348304;;, + 10;4; -0.356541, 0.851981, 0.153896,-0.350329;;, + 11;4; -0.354085, 0.852954, 0.147998,-0.352754;;, + 12;4; -0.351408, 0.854014, 0.141569,-0.355397;;, + 13;4; -0.348731, 0.855074, 0.135140,-0.358039;;, + 14;4; -0.346274, 0.856047, 0.129241,-0.360464;;, + 15;4; -0.344223, 0.856859, 0.124315,-0.362489;;, + 16;4; -0.342703, 0.857461, 0.120666,-0.363989;;, + 17;4; -0.341782, 0.857826, 0.118453,-0.364899;;, + 18;4; -0.341476, 0.857947, 0.117719,-0.365201;;, + 19;4; -0.342190, 0.857933, 0.117812,-0.364515;;, + 20;4; -0.344184, 0.857822, 0.118545,-0.362604;;, + 21;4; -0.347054, 0.857481, 0.120786,-0.359853;;, + 22;4; -0.350138, 0.856752, 0.125571,-0.356884;;, + 23;4; -0.352584, 0.855480, 0.133899,-0.354507;;, + 24;4; -0.353554, 0.853553, 0.146446,-0.353554;;, + 25;4; -0.236711, 0.571471, 0.300689,-0.725930;;, + 26;4; -0.239958, 0.579385, 0.296309,-0.715181;;, + 27;4; -0.248828, 0.600935, 0.284350,-0.685992;;, + 28;4; -0.261873, 0.632536, 0.266769,-0.643301;;, + 29;4; -0.277554, 0.670429, 0.245643,-0.592218;;, + 30;4; -0.294358, 0.710963, 0.223010,-0.537657;;, + 31;4; -0.310901, 0.750824, 0.200732,-0.484054;;, + 32;4; -0.326002, 0.787189, 0.180399,-0.435175;;, + 33;4; -0.338709, 0.817789, 0.163289,-0.394045;;, + 34;4; -0.348305, 0.840907, 0.150367,-0.362961;;, + 35;4; -0.354286, 0.855325, 0.142312,-0.343564;;, + 36;4; -0.356327, 0.860248, 0.139563,-0.336936;;, + 37;4; -0.354235, 0.855200, 0.142381,-0.343736;;, + 38;4; -0.347919, 0.839956, 0.150888,-0.364263;;, + 39;4; -0.337521, 0.814865, 0.164894,-0.398046;;, + 40;4; -0.323558, 0.781175, 0.183700,-0.443403;;, + 41;4; -0.307020, 0.741269, 0.205976,-0.497130;;, + 42;4; -0.289351, 0.698626, 0.229776,-0.554553;;, + 43;4; -0.272258, 0.657360, 0.252800,-0.610138;;, + 44;4; -0.257395, 0.621463, 0.272823,-0.658513;;, + 45;4; -0.246060, 0.594075, 0.288093,-0.695437;;, + 46;4; -0.239056, 0.577142, 0.297530,-0.718277;;, + 47;4; -0.236711, 0.571471, 0.300689,-0.725930;;, + 48;4; -0.236711, 0.571471, 0.300689,-0.725930;;, + 49;4; -0.243308, 0.587520, 0.291792,-0.704168;;, + 50;4; -0.261054, 0.630533, 0.267874,-0.646029;;, + 51;4; -0.285725, 0.690132, 0.234639,-0.565704;;, + 52;4; -0.312134, 0.753789, 0.199073,-0.480072;;, + 53;4; -0.335178, 0.809286, 0.168043,-0.405474;;, + 54;4; -0.350782, 0.846876, 0.147031,-0.354932;;, + 55;4; -0.356327, 0.860248, 0.139563,-0.336936;;, + 56;4; -0.350909, 0.847172, 0.146861,-0.354547;;, + 57;4; -0.334837, 0.808388, 0.168509,-0.406767;;, + 58;4; -0.310303, 0.749191, 0.201554,-0.486466;;, + 59;4; -0.282492, 0.682066, 0.239015,-0.576860;;, + 60;4; -0.258051, 0.623045, 0.271939,-0.656385;;, + 61;4; -0.242085, 0.584463, 0.293449,-0.708403;;, + 62;4; -0.236711, 0.571471, 0.300689,-0.725930;;, + 63;4; -0.236711, 0.571471, 0.300689,-0.725930;;; + } + AnimationKey { //Scale + 1; + 64; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { //Position + 2; + 64; + 0;3; -0.299335,-0.008069, 0.509506;;, + 1;3; -0.299335,-0.008069, 0.509506;;, + 2;3; -0.299335,-0.008069, 0.509506;;, + 3;3; -0.299335,-0.008069, 0.509506;;, + 4;3; -0.299335,-0.008069, 0.509506;;, + 5;3; -0.299335,-0.008069, 0.509506;;, + 6;3; -0.299335,-0.008069, 0.509506;;, + 7;3; -0.299335,-0.008069, 0.509506;;, + 8;3; -0.299335,-0.008069, 0.509506;;, + 9;3; -0.299335,-0.008069, 0.509506;;, + 10;3; -0.299335,-0.008069, 0.509506;;, + 11;3; -0.299335,-0.008069, 0.509506;;, + 12;3; -0.299335,-0.008069, 0.509506;;, + 13;3; -0.299335,-0.008069, 0.509506;;, + 14;3; -0.299335,-0.008069, 0.509506;;, + 15;3; -0.299335,-0.008069, 0.509506;;, + 16;3; -0.299335,-0.008069, 0.509506;;, + 17;3; -0.299335,-0.008069, 0.509506;;, + 18;3; -0.299335,-0.008069, 0.509506;;, + 19;3; -0.299335,-0.008069, 0.509506;;, + 20;3; -0.299335,-0.008069, 0.509506;;, + 21;3; -0.299335,-0.008069, 0.509506;;, + 22;3; -0.299335,-0.008069, 0.509506;;, + 23;3; -0.299335,-0.008069, 0.509506;;, + 24;3; -0.299335,-0.008069, 0.509506;;, + 25;3; -0.299335,-0.008069, 0.509506;;, + 26;3; -0.299335,-0.008069, 0.509506;;, + 27;3; -0.299335,-0.008069, 0.509506;;, + 28;3; -0.299335,-0.008069, 0.509506;;, + 29;3; -0.299335,-0.008069, 0.509506;;, + 30;3; -0.299335,-0.008069, 0.509506;;, + 31;3; -0.299335,-0.008069, 0.509506;;, + 32;3; -0.299335,-0.008069, 0.509506;;, + 33;3; -0.299335,-0.008069, 0.509506;;, + 34;3; -0.299335,-0.008069, 0.509506;;, + 35;3; -0.299335,-0.008069, 0.509506;;, + 36;3; -0.299335,-0.008069, 0.509506;;, + 37;3; -0.299335,-0.008069, 0.509506;;, + 38;3; -0.299335,-0.008069, 0.509506;;, + 39;3; -0.299335,-0.008069, 0.509506;;, + 40;3; -0.299335,-0.008069, 0.509506;;, + 41;3; -0.299335,-0.008069, 0.509506;;, + 42;3; -0.299335,-0.008069, 0.509506;;, + 43;3; -0.299335,-0.008069, 0.509506;;, + 44;3; -0.299335,-0.008069, 0.509506;;, + 45;3; -0.299335,-0.008069, 0.509506;;, + 46;3; -0.299335,-0.008069, 0.509506;;, + 47;3; -0.299335,-0.008069, 0.509506;;, + 48;3; -0.299335,-0.008069, 0.509506;;, + 49;3; -0.299335,-0.008069, 0.509506;;, + 50;3; -0.299335,-0.008069, 0.509506;;, + 51;3; -0.299335,-0.008069, 0.509506;;, + 52;3; -0.299335,-0.008069, 0.509506;;, + 53;3; -0.299335,-0.008069, 0.509506;;, + 54;3; -0.299335,-0.008069, 0.509506;;, + 55;3; -0.299335,-0.008069, 0.509506;;, + 56;3; -0.299335,-0.008069, 0.509506;;, + 57;3; -0.299335,-0.008069, 0.509506;;, + 58;3; -0.299335,-0.008069, 0.509506;;, + 59;3; -0.299335,-0.008069, 0.509506;;, + 60;3; -0.299335,-0.008069, 0.509506;;, + 61;3; -0.299335,-0.008069, 0.509506;;, + 62;3; -0.299335,-0.008069, 0.509506;;, + 63;3; -0.299335,-0.008069, 0.509506;;; + } + AnimationKey { //Rotation + 0; + 64; + 0;4; -0.354656, 0.853092,-0.149110, 0.352448;;, + 1;4; -0.354656, 0.853092,-0.149110, 0.352448;;, + 2;4; -0.353695, 0.853458,-0.146813, 0.353386;;, + 3;4; -0.350989, 0.854488,-0.140344, 0.356028;;, + 4;4; -0.347515, 0.855811,-0.132039, 0.359420;;, + 5;4; -0.344809, 0.856841,-0.125570, 0.362062;;, + 6;4; -0.343848, 0.857207,-0.123274, 0.363000;;, + 7;4; -0.344100, 0.857104,-0.123882, 0.362749;;, + 8;4; -0.344861, 0.856793,-0.125716, 0.361991;;, + 9;4; -0.346117, 0.856281,-0.128741, 0.360741;;, + 10;4; -0.347811, 0.855589,-0.132824, 0.359054;;, + 11;4; -0.349839, 0.854761,-0.137712, 0.357034;;, + 12;4; -0.352050, 0.853858,-0.143041, 0.354833;;, + 13;4; -0.354261, 0.852956,-0.148370, 0.352631;;, + 14;4; -0.356290, 0.852128,-0.153259, 0.350611;;, + 15;4; -0.357984, 0.851436,-0.157341, 0.348924;;, + 16;4; -0.359239, 0.850924,-0.160366, 0.347674;;, + 17;4; -0.360000, 0.850613,-0.162201, 0.346916;;, + 18;4; -0.360253, 0.850510,-0.162808, 0.346665;;, + 19;4; -0.359922, 0.850663,-0.161999, 0.347007;;, + 20;4; -0.358997, 0.851089,-0.159736, 0.347962;;, + 21;4; -0.357666, 0.851703,-0.156478, 0.349338;;, + 22;4; -0.356237, 0.852363,-0.152979, 0.350815;;, + 23;4; -0.355104, 0.852885,-0.150207, 0.351985;;, + 24;4; -0.354656, 0.853092,-0.149110, 0.352448;;, + 25;4; -0.354656, 0.853092,-0.149110, 0.352448;;, + 26;4; -0.351227, 0.844927,-0.153464, 0.362954;;, + 27;4; -0.341855, 0.822614,-0.165365, 0.391661;;, + 28;4; -0.328063, 0.789780,-0.182879, 0.433897;;, + 29;4; -0.311476, 0.750298,-0.203942, 0.484681;;, + 30;4; -0.293695, 0.707977,-0.226521, 0.539113;;, + 31;4; -0.276185, 0.666304,-0.248756, 0.592710;;, + 32;4; -0.260201, 0.628264,-0.269053, 0.641634;;, + 33;4; -0.246751, 0.596253,-0.286132, 0.682803;;, + 34;4; -0.236594, 0.572079,-0.299030, 0.713893;;, + 35;4; -0.230264, 0.557014,-0.307068, 0.733269;;, + 36;4; -0.228105, 0.551875,-0.309810, 0.739879;;, + 37;4; -0.230318, 0.557141,-0.307000, 0.733106;;, + 38;4; -0.237000, 0.573040,-0.298515, 0.712662;;, + 39;4; -0.248001, 0.599211,-0.284546, 0.679014;;, + 40;4; -0.262773, 0.634351,-0.265789, 0.633839;;, + 41;4; -0.280270, 0.675973,-0.243573, 0.580328;;, + 42;4; -0.298964, 0.720452,-0.219836, 0.523135;;, + 43;4; -0.317048, 0.763495,-0.196872, 0.467774;;, + 44;4; -0.332772, 0.800940,-0.176902, 0.419593;;, + 45;4; -0.344764, 0.829511,-0.161673, 0.382818;;, + 46;4; -0.352175, 0.847175,-0.152261, 0.360070;;, + 47;4; -0.354656, 0.853092,-0.149110, 0.352448;;, + 48;4; -0.354656, 0.853092,-0.149110, 0.352448;;, + 49;4; -0.347687, 0.836498,-0.157959, 0.373797;;, + 50;4; -0.328927, 0.791839,-0.181782, 0.431248;;, + 51;4; -0.302829, 0.729719,-0.214922, 0.511149;;, + 52;4; -0.274880, 0.663199,-0.250413, 0.596704;;, + 53;4; -0.250488, 0.605147,-0.281387, 0.671365;;, + 54;4; -0.233972, 0.565840,-0.302359, 0.721917;;, + 55;4; -0.228105, 0.551875,-0.309810, 0.739879;;, + 56;4; -0.233837, 0.565514,-0.302531, 0.722339;;, + 57;4; -0.250841, 0.605967,-0.280940, 0.670328;;, + 58;4; -0.276796, 0.667711,-0.247983, 0.590948;;, + 59;4; -0.306220, 0.737725,-0.210621, 0.500917;;, + 60;4; -0.332078, 0.799290,-0.177784, 0.421713;;, + 61;4; -0.348970, 0.839538,-0.156330, 0.369904;;, + 62;4; -0.354656, 0.853092,-0.149110, 0.352448;;, + 63;4; -0.354656, 0.853092,-0.149110, 0.352448;;; + } + AnimationKey { //Scale + 1; + 64; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { //Position + 2; + 64; + 0;3; 0.305704,-0.008069,-0.057320;;, + 1;3; 0.305704,-0.008069,-0.057320;;, + 2;3; 0.305704,-0.008069,-0.057320;;, + 3;3; 0.305704,-0.008069,-0.057320;;, + 4;3; 0.305704,-0.008069,-0.057320;;, + 5;3; 0.305704,-0.008069,-0.057320;;, + 6;3; 0.305704,-0.008069,-0.057320;;, + 7;3; 0.305704,-0.008069,-0.057320;;, + 8;3; 0.305704,-0.008069,-0.057320;;, + 9;3; 0.305704,-0.008069,-0.057320;;, + 10;3; 0.305704,-0.008069,-0.057320;;, + 11;3; 0.305704,-0.008069,-0.057320;;, + 12;3; 0.305704,-0.008069,-0.057320;;, + 13;3; 0.305704,-0.008069,-0.057320;;, + 14;3; 0.305704,-0.008069,-0.057320;;, + 15;3; 0.305704,-0.008069,-0.057320;;, + 16;3; 0.305704,-0.008069,-0.057320;;, + 17;3; 0.305704,-0.008069,-0.057320;;, + 18;3; 0.305704,-0.008069,-0.057320;;, + 19;3; 0.305704,-0.008069,-0.057320;;, + 20;3; 0.305704,-0.008069,-0.057320;;, + 21;3; 0.305704,-0.008069,-0.057320;;, + 22;3; 0.305704,-0.008069,-0.057320;;, + 23;3; 0.305704,-0.008069,-0.057320;;, + 24;3; 0.305704,-0.008069,-0.057320;;, + 25;3; 0.305704,-0.008069,-0.057320;;, + 26;3; 0.305704,-0.008069,-0.057320;;, + 27;3; 0.305704,-0.008069,-0.057320;;, + 28;3; 0.305704,-0.008069,-0.057320;;, + 29;3; 0.305704,-0.008069,-0.057320;;, + 30;3; 0.305704,-0.008069,-0.057320;;, + 31;3; 0.305704,-0.008069,-0.057320;;, + 32;3; 0.305704,-0.008069,-0.057320;;, + 33;3; 0.305704,-0.008069,-0.057320;;, + 34;3; 0.305704,-0.008069,-0.057320;;, + 35;3; 0.305704,-0.008069,-0.057320;;, + 36;3; 0.305704,-0.008069,-0.057320;;, + 37;3; 0.305704,-0.008069,-0.057320;;, + 38;3; 0.305704,-0.008069,-0.057320;;, + 39;3; 0.305704,-0.008069,-0.057320;;, + 40;3; 0.305704,-0.008069,-0.057320;;, + 41;3; 0.305704,-0.008069,-0.057320;;, + 42;3; 0.305704,-0.008069,-0.057320;;, + 43;3; 0.305704,-0.008069,-0.057320;;, + 44;3; 0.305704,-0.008069,-0.057320;;, + 45;3; 0.305704,-0.008069,-0.057320;;, + 46;3; 0.305704,-0.008069,-0.057320;;, + 47;3; 0.305704,-0.008069,-0.057320;;, + 48;3; 0.305704,-0.008069,-0.057320;;, + 49;3; 0.305704,-0.008069,-0.057320;;, + 50;3; 0.305704,-0.008069,-0.057320;;, + 51;3; 0.305704,-0.008069,-0.057320;;, + 52;3; 0.305704,-0.008069,-0.057320;;, + 53;3; 0.305704,-0.008069,-0.057320;;, + 54;3; 0.305704,-0.008069,-0.057320;;, + 55;3; 0.305704,-0.008069,-0.057320;;, + 56;3; 0.305704,-0.008069,-0.057320;;, + 57;3; 0.305704,-0.008069,-0.057320;;, + 58;3; 0.305704,-0.008069,-0.057320;;, + 59;3; 0.305704,-0.008069,-0.057320;;, + 60;3; 0.305704,-0.008069,-0.057320;;, + 61;3; 0.305704,-0.008069,-0.057320;;, + 62;3; 0.305704,-0.008069,-0.057320;;, + 63;3; 0.305704,-0.008069,-0.057320;;; + } + AnimationKey { //Rotation + 0; + 64; + 0;4; 0.353553, 0.853553, 0.146447, 0.353553;;, + 1;4; 0.353553, 0.853553, 0.146447, 0.353553;;, + 2;4; 0.354245, 0.853245, 0.148133, 0.352846;;, + 3;4; 0.356195, 0.852375, 0.152883, 0.350853;;, + 4;4; 0.358697, 0.851259, 0.158982, 0.348293;;, + 5;4; 0.360647, 0.850389, 0.163732, 0.346300;;, + 6;4; 0.361339, 0.850081, 0.165419, 0.345592;;, + 7;4; 0.361033, 0.850201, 0.164685, 0.345894;;, + 8;4; 0.360112, 0.850567, 0.162472, 0.346804;;, + 9;4; 0.358592, 0.851168, 0.158823, 0.348304;;, + 10;4; 0.356541, 0.851981, 0.153897, 0.350329;;, + 11;4; 0.354085, 0.852954, 0.147998, 0.352754;;, + 12;4; 0.351407, 0.854014, 0.141569, 0.355396;;, + 13;4; 0.348730, 0.855074, 0.135140, 0.358039;;, + 14;4; 0.346274, 0.856047, 0.129242, 0.360464;;, + 15;4; 0.344223, 0.856860, 0.124316, 0.362489;;, + 16;4; 0.342703, 0.857462, 0.120667, 0.363989;;, + 17;4; 0.341781, 0.857827, 0.118453, 0.364899;;, + 18;4; 0.341476, 0.857948, 0.117720, 0.365200;;, + 19;4; 0.342189, 0.857933, 0.117813, 0.364514;;, + 20;4; 0.344183, 0.857822, 0.118546, 0.362603;;, + 21;4; 0.347054, 0.857481, 0.120786, 0.359852;;, + 22;4; 0.350137, 0.856752, 0.125572, 0.356884;;, + 23;4; 0.352584, 0.855480, 0.133900, 0.354507;;, + 24;4; 0.353553, 0.853553, 0.146447, 0.353553;;, + 25;4; 0.238392, 0.575529, 0.299360, 0.722717;;, + 26;4; 0.241500, 0.583104, 0.295246, 0.712619;;, + 27;4; 0.249991, 0.603731, 0.284012, 0.685200;;, + 28;4; 0.262479, 0.633980, 0.267498, 0.645099;;, + 29;4; 0.277490, 0.670255, 0.247654, 0.597116;;, + 30;4; 0.293577, 0.709059, 0.226395, 0.545868;;, + 31;4; 0.309414, 0.747220, 0.205469, 0.495519;;, + 32;4; 0.323870, 0.782034, 0.186370, 0.449608;;, + 33;4; 0.336035, 0.811330, 0.170299, 0.410975;;, + 34;4; 0.345221, 0.833462, 0.158160, 0.381779;;, + 35;4; 0.350947, 0.847265, 0.150594, 0.363559;;, + 36;4; 0.352901, 0.851978, 0.148013, 0.357333;;, + 37;4; 0.350898, 0.847144, 0.150659, 0.363721;;, + 38;4; 0.344852, 0.832552, 0.158650, 0.383003;;, + 39;4; 0.334898, 0.808530, 0.171806, 0.414740;;, + 40;4; 0.321531, 0.776276, 0.189472, 0.457350;;, + 41;4; 0.305698, 0.738072, 0.210396, 0.507823;;, + 42;4; 0.288783, 0.697248, 0.232752, 0.561765;;, + 43;4; 0.272420, 0.657744, 0.254379, 0.613976;;, + 44;4; 0.258192, 0.623381, 0.273186, 0.659411;;, + 45;4; 0.247341, 0.597165, 0.287528, 0.694086;;, + 46;4; 0.240636, 0.580957, 0.296392, 0.715532;;, + 47;4; 0.238392, 0.575529, 0.299360, 0.722717;;, + 48;4; 0.238392, 0.575529, 0.299360, 0.722717;;, + 49;4; 0.244707, 0.590890, 0.291003, 0.702274;;, + 50;4; 0.261695, 0.632064, 0.268536, 0.647662;;, + 51;4; 0.285312, 0.689117, 0.237318, 0.572212;;, + 52;4; 0.310594, 0.750059, 0.203910, 0.491779;;, + 53;4; 0.332655, 0.803189, 0.174764, 0.421710;;, + 54;4; 0.347592, 0.839177, 0.155027, 0.374237;;, + 55;4; 0.352901, 0.851978, 0.148013, 0.357333;;, + 56;4; 0.347714, 0.839459, 0.154867, 0.373876;;, + 57;4; 0.332328, 0.802329, 0.175202, 0.422933;;, + 58;4; 0.308842, 0.745656, 0.206242, 0.497805;;, + 59;4; 0.282217, 0.681395, 0.241431, 0.582718;;, + 60;4; 0.258820, 0.624895, 0.272356, 0.657411;;, + 61;4; 0.243535, 0.587964, 0.292560, 0.706261;;, + 62;4; 0.238392, 0.575529, 0.299360, 0.722717;;, + 63;4; 0.238392, 0.575529, 0.299360, 0.722717;;; + } + AnimationKey { //Scale + 1; + 64; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_005} + AnimationKey { //Position + 2; + 64; + 0;3; -0.299335,-0.008069,-0.057320;;, + 1;3; -0.299335,-0.008069,-0.057320;;, + 2;3; -0.299335,-0.008069,-0.057320;;, + 3;3; -0.299335,-0.008069,-0.057320;;, + 4;3; -0.299335,-0.008069,-0.057320;;, + 5;3; -0.299335,-0.008069,-0.057320;;, + 6;3; -0.299335,-0.008069,-0.057320;;, + 7;3; -0.299335,-0.008069,-0.057320;;, + 8;3; -0.299335,-0.008069,-0.057320;;, + 9;3; -0.299335,-0.008069,-0.057320;;, + 10;3; -0.299335,-0.008069,-0.057320;;, + 11;3; -0.299335,-0.008069,-0.057320;;, + 12;3; -0.299335,-0.008069,-0.057320;;, + 13;3; -0.299335,-0.008069,-0.057320;;, + 14;3; -0.299335,-0.008069,-0.057320;;, + 15;3; -0.299335,-0.008069,-0.057320;;, + 16;3; -0.299335,-0.008069,-0.057320;;, + 17;3; -0.299335,-0.008069,-0.057320;;, + 18;3; -0.299335,-0.008069,-0.057320;;, + 19;3; -0.299335,-0.008069,-0.057320;;, + 20;3; -0.299335,-0.008069,-0.057320;;, + 21;3; -0.299335,-0.008069,-0.057320;;, + 22;3; -0.299335,-0.008069,-0.057320;;, + 23;3; -0.299335,-0.008069,-0.057320;;, + 24;3; -0.299335,-0.008069,-0.057320;;, + 25;3; -0.299335,-0.008069,-0.057320;;, + 26;3; -0.299335,-0.008069,-0.057320;;, + 27;3; -0.299335,-0.008069,-0.057320;;, + 28;3; -0.299335,-0.008069,-0.057320;;, + 29;3; -0.299335,-0.008069,-0.057320;;, + 30;3; -0.299335,-0.008069,-0.057320;;, + 31;3; -0.299335,-0.008069,-0.057320;;, + 32;3; -0.299335,-0.008069,-0.057320;;, + 33;3; -0.299335,-0.008069,-0.057320;;, + 34;3; -0.299335,-0.008069,-0.057320;;, + 35;3; -0.299335,-0.008069,-0.057320;;, + 36;3; -0.299335,-0.008069,-0.057320;;, + 37;3; -0.299335,-0.008069,-0.057320;;, + 38;3; -0.299335,-0.008069,-0.057320;;, + 39;3; -0.299335,-0.008069,-0.057320;;, + 40;3; -0.299335,-0.008069,-0.057320;;, + 41;3; -0.299335,-0.008069,-0.057320;;, + 42;3; -0.299335,-0.008069,-0.057320;;, + 43;3; -0.299335,-0.008069,-0.057320;;, + 44;3; -0.299335,-0.008069,-0.057320;;, + 45;3; -0.299335,-0.008069,-0.057320;;, + 46;3; -0.299335,-0.008069,-0.057320;;, + 47;3; -0.299335,-0.008069,-0.057320;;, + 48;3; -0.299335,-0.008069,-0.057320;;, + 49;3; -0.299335,-0.008069,-0.057320;;, + 50;3; -0.299335,-0.008069,-0.057320;;, + 51;3; -0.299335,-0.008069,-0.057320;;, + 52;3; -0.299335,-0.008069,-0.057320;;, + 53;3; -0.299335,-0.008069,-0.057320;;, + 54;3; -0.299335,-0.008069,-0.057320;;, + 55;3; -0.299335,-0.008069,-0.057320;;, + 56;3; -0.299335,-0.008069,-0.057320;;, + 57;3; -0.299335,-0.008069,-0.057320;;, + 58;3; -0.299335,-0.008069,-0.057320;;, + 59;3; -0.299335,-0.008069,-0.057320;;, + 60;3; -0.299335,-0.008069,-0.057320;;, + 61;3; -0.299335,-0.008069,-0.057320;;, + 62;3; -0.299335,-0.008069,-0.057320;;, + 63;3; -0.299335,-0.008069,-0.057320;;; + } + AnimationKey { //Rotation + 0; + 64; + 0;4; 0.354655, 0.853092,-0.149110,-0.352448;;, + 1;4; 0.354655, 0.853092,-0.149110,-0.352448;;, + 2;4; 0.353694, 0.853458,-0.146814,-0.353386;;, + 3;4; 0.350988, 0.854488,-0.140345,-0.356028;;, + 4;4; 0.347514, 0.855811,-0.132040,-0.359420;;, + 5;4; 0.344808, 0.856841,-0.125571,-0.362062;;, + 6;4; 0.343847, 0.857207,-0.123275,-0.363000;;, + 7;4; 0.344100, 0.857104,-0.123882,-0.362748;;, + 8;4; 0.344861, 0.856793,-0.125717,-0.361991;;, + 9;4; 0.346116, 0.856281,-0.128742,-0.360741;;, + 10;4; 0.347810, 0.855589,-0.132824,-0.359054;;, + 11;4; 0.349839, 0.854761,-0.137713,-0.357034;;, + 12;4; 0.352050, 0.853859,-0.143042,-0.354832;;, + 13;4; 0.354261, 0.852956,-0.148370,-0.352631;;, + 14;4; 0.356289, 0.852128,-0.153259,-0.350610;;, + 15;4; 0.357983, 0.851437,-0.157342,-0.348924;;, + 16;4; 0.359239, 0.850924,-0.160367,-0.347674;;, + 17;4; 0.360000, 0.850614,-0.162201,-0.346916;;, + 18;4; 0.360252, 0.850511,-0.162809,-0.346665;;, + 19;4; 0.359921, 0.850663,-0.161999,-0.347007;;, + 20;4; 0.358997, 0.851090,-0.159737,-0.347962;;, + 21;4; 0.357665, 0.851704,-0.156478,-0.349337;;, + 22;4; 0.356236, 0.852363,-0.152980,-0.350814;;, + 23;4; 0.355103, 0.852885,-0.150208,-0.351985;;, + 24;4; 0.354655, 0.853092,-0.149110,-0.352448;;, + 25;4; 0.354655, 0.853092,-0.149110,-0.352448;;, + 26;4; 0.351252, 0.844989,-0.153446,-0.362907;;, + 27;4; 0.341950, 0.822843,-0.165295,-0.391489;;, + 28;4; 0.328261, 0.790255,-0.182733,-0.433541;;, + 29;4; 0.311798, 0.751069,-0.203705,-0.484104;;, + 30;4; 0.294150, 0.709066,-0.226186,-0.538298;;, + 31;4; 0.276771, 0.667705,-0.248324,-0.591661;;, + 32;4; 0.260907, 0.629950,-0.268532,-0.640371;;, + 33;4; 0.247557, 0.598179,-0.285538,-0.681361;;, + 34;4; 0.237476, 0.574186,-0.298380,-0.712316;;, + 35;4; 0.231193, 0.559234,-0.306382,-0.731607;;, + 36;4; 0.229050, 0.554134,-0.309112,-0.738188;;, + 37;4; 0.231246, 0.559361,-0.306315,-0.731445;;, + 38;4; 0.237879, 0.575141,-0.297867,-0.711090;;, + 39;4; 0.248797, 0.601116,-0.283959,-0.677588;;, + 40;4; 0.263459, 0.635992,-0.265283,-0.632610;;, + 41;4; 0.280825, 0.677303,-0.243163,-0.579332;;, + 42;4; 0.299379, 0.721448,-0.219529,-0.522388;;, + 43;4; 0.317328, 0.764168,-0.196665,-0.467268;;, + 44;4; 0.332935, 0.801333,-0.176782,-0.419298;;, + 45;4; 0.344837, 0.829688,-0.161619,-0.382684;;, + 46;4; 0.352192, 0.847220,-0.152248,-0.360036;;, + 47;4; 0.354655, 0.853092,-0.149110,-0.352448;;, + 48;4; 0.354655, 0.853092,-0.149110,-0.352448;;, + 49;4; 0.347738, 0.836623,-0.157922,-0.373704;;, + 50;4; 0.329119, 0.792298,-0.181641,-0.430903;;, + 51;4; 0.303216, 0.730645,-0.214637,-0.510456;;, + 52;4; 0.275476, 0.664623,-0.249974,-0.595638;;, + 53;4; 0.251266, 0.607006,-0.280813,-0.669973;;, + 54;4; 0.234874, 0.567995,-0.301694,-0.720304;;, + 55;4; 0.229050, 0.554134,-0.309112,-0.738188;;, + 56;4; 0.234739, 0.567671,-0.301866,-0.720724;;, + 57;4; 0.251616, 0.607821,-0.280368,-0.668940;;, + 58;4; 0.277378, 0.669102,-0.247554,-0.589906;;, + 59;4; 0.306582, 0.738592,-0.210354,-0.500267;;, + 60;4; 0.332246, 0.799695,-0.177660,-0.421409;;, + 61;4; 0.349012, 0.839640,-0.156300,-0.369827;;, + 62;4; 0.354655, 0.853092,-0.149110,-0.352448;;, + 63;4; 0.354655, 0.853092,-0.149110,-0.352448;;; + } + AnimationKey { //Scale + 1; + 64; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Cube_005} + AnimationKey { //Position + 2; + 64; + 0;3; -0.003210, 0.035207,-1.015033;;, + 1;3; -0.003210, 0.035207,-1.015033;;, + 2;3; -0.003210, 0.035207,-1.015033;;, + 3;3; -0.003210, 0.035207,-1.015033;;, + 4;3; -0.003210, 0.035207,-1.015033;;, + 5;3; -0.003210, 0.035207,-1.015033;;, + 6;3; -0.003210, 0.035207,-1.015033;;, + 7;3; -0.003210, 0.035207,-1.015033;;, + 8;3; -0.003210, 0.035207,-1.015033;;, + 9;3; -0.003210, 0.035207,-1.015033;;, + 10;3; -0.003210, 0.035207,-1.015033;;, + 11;3; -0.003210, 0.035207,-1.015033;;, + 12;3; -0.003210, 0.035207,-1.015033;;, + 13;3; -0.003210, 0.035207,-1.015033;;, + 14;3; -0.003210, 0.035207,-1.015033;;, + 15;3; -0.003210, 0.035207,-1.015033;;, + 16;3; -0.003210, 0.035207,-1.015033;;, + 17;3; -0.003210, 0.035207,-1.015033;;, + 18;3; -0.003210, 0.035207,-1.015033;;, + 19;3; -0.003210, 0.035207,-1.015033;;, + 20;3; -0.003210, 0.035207,-1.015033;;, + 21;3; -0.003210, 0.035207,-1.015033;;, + 22;3; -0.003210, 0.035207,-1.015033;;, + 23;3; -0.003210, 0.035207,-1.015033;;, + 24;3; -0.003210, 0.035207,-1.015033;;, + 25;3; -0.003210, 0.035207,-1.015033;;, + 26;3; -0.003210, 0.035207,-1.015033;;, + 27;3; -0.003210, 0.035207,-1.015033;;, + 28;3; -0.003210, 0.035207,-1.015033;;, + 29;3; -0.003210, 0.035207,-1.015033;;, + 30;3; -0.003210, 0.035207,-1.015033;;, + 31;3; -0.003210, 0.035207,-1.015033;;, + 32;3; -0.003210, 0.035207,-1.015033;;, + 33;3; -0.003210, 0.035207,-1.015033;;, + 34;3; -0.003210, 0.035207,-1.015033;;, + 35;3; -0.003210, 0.035207,-1.015033;;, + 36;3; -0.003210, 0.035207,-1.015033;;, + 37;3; -0.003210, 0.035207,-1.015033;;, + 38;3; -0.003210, 0.035207,-1.015033;;, + 39;3; -0.003210, 0.035207,-1.015033;;, + 40;3; -0.003210, 0.035207,-1.015033;;, + 41;3; -0.003210, 0.035207,-1.015033;;, + 42;3; -0.003210, 0.035207,-1.015033;;, + 43;3; -0.003210, 0.035207,-1.015033;;, + 44;3; -0.003210, 0.035207,-1.015033;;, + 45;3; -0.003210, 0.035207,-1.015033;;, + 46;3; -0.003210, 0.035207,-1.015033;;, + 47;3; -0.003210, 0.035207,-1.015033;;, + 48;3; -0.003210, 0.035207,-1.015033;;, + 49;3; -0.003210, 0.035207,-1.015033;;, + 50;3; -0.003210, 0.035207,-1.015033;;, + 51;3; -0.003210, 0.035207,-1.015033;;, + 52;3; -0.003210, 0.035207,-1.015033;;, + 53;3; -0.003210, 0.035207,-1.015033;;, + 54;3; -0.003210, 0.035207,-1.015033;;, + 55;3; -0.003210, 0.035207,-1.015033;;, + 56;3; -0.003210, 0.035207,-1.015033;;, + 57;3; -0.003210, 0.035207,-1.015033;;, + 58;3; -0.003210, 0.035207,-1.015033;;, + 59;3; -0.003210, 0.035207,-1.015033;;, + 60;3; -0.003210, 0.035207,-1.015033;;, + 61;3; -0.003210, 0.035207,-1.015033;;, + 62;3; -0.003210, 0.035207,-1.015033;;, + 63;3; -0.003210, 0.035207,-1.015033;;; + } + AnimationKey { //Rotation + 0; + 64; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 64; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs/models/mobs_wardog.png b/mods/mobs/models/mobs_wardog.png new file mode 100644 index 0000000..d227952 Binary files /dev/null and b/mods/mobs/models/mobs_wardog.png differ diff --git a/mods/mobs/models/mobs_wardog.x b/mods/mobs/models/mobs_wardog.x new file mode 100644 index 0000000..5572096 --- /dev/null +++ b/mods/mobs/models/mobs_wardog.x @@ -0,0 +1,7420 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 2.153459, 0.000000, 0.000000, 0.000000, + 0.000000, 2.153459, 0.000000, 0.000000, + 0.000000, 0.000000, 2.153459, 0.000000, + -11.632589, 0.094256, 0.169731, 1.000000;; + } + Frame Armature_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.996529, 0.083252, 0.000000, + 0.000000,-0.083252, 0.996529, 0.000000, + 5.378092,-1.647068, 2.876912, 1.000000;; + } + Frame Armature_noga3 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.618225, 0.037596,-0.622362, 1.000000;; + } + } //End of Armature_noga3 + Frame Armature_noga1 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.618225, 3.072911,-0.875938, 1.000000;; + } + } //End of Armature_noga1 + Frame Armature_noga4 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + -0.648382, 0.037596,-0.622362, 1.000000;; + } + } //End of Armature_noga4 + Frame Armature_noga2 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + -0.648382, 3.072911,-0.875938, 1.000000;; + } + } //End of Armature_noga2 + Frame Armature_hvost { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-0.522249,-0.852793, 0.000000, + -0.000000, 0.852793,-0.522249, 0.000000, + 0.000000,-0.295864,-0.017687, 1.000000;; + } + } //End of Armature_hvost + Frame Armature_sheya { + FrameTransformMatrix { + 0.997121, 0.074946,-0.011510, 0.000000, + -0.075824, 0.985074,-0.154533, 0.000000, + -0.000243, 0.154961, 0.987921, 0.000000, + 0.000000, 3.260104, 0.242284, 1.000000;; + } + Frame Armature_head { + FrameTransformMatrix { + 0.997121,-0.075824,-0.000243, 0.000000, + 0.075813, 0.996898, 0.021119, 0.000000, + -0.001359,-0.021076, 0.999777, 0.000000, + 0.068728, 0.903770, 0.009841, 1.000000;; + } + } //End of Armature_head + Frame Armature_zubi { + FrameTransformMatrix { + 0.997121,-0.075824,-0.000243, 0.000000, + 0.075658, 0.994708, 0.069515, 0.000000, + -0.005029,-0.069333, 0.997581, 0.000000, + 0.205805, 1.974131,-0.481359, 1.000000;; + } + } //End of Armature_zubi + } //End of Armature_sheya + } //End of Armature_Body + } //End of Armature + Frame Cube { + FrameTransformMatrix { + 2.153459, 0.000000, 0.000000, 0.000000, + 0.000000, 2.153459, 0.000000, 0.000000, + 0.000000, 0.000000, 2.153459, 0.000000, + -0.137034,-0.235439, 6.856374, 1.000000;; + } + Mesh { //Mesh Mesh + 344; + -1.000000; 0.155088;-0.615504;, + -1.000000; 2.052689;-0.915563;, + -1.000000; 2.052689; 0.915563;, + -1.000000; 0.155088; 0.615504;, + -1.000000; 2.052689;-0.915563;, + 1.000000; 2.052689;-0.915563;, + 1.000000; 2.052689; 0.915563;, + -1.000000; 2.052689; 0.915563;, + 1.000000; 0.155088;-0.615504;, + 1.000000;-1.728900;-0.764941;, + 1.000000;-1.728900; 0.565265;, + 1.000000; 0.155088; 0.615504;, + 1.000000;-1.728900;-0.764941;, + -1.000000;-1.728900;-0.764941;, + -1.000000;-1.728900; 0.565265;, + 1.000000;-1.728900; 0.565265;, + 1.000000; 0.155088;-0.615504;, + 1.000000; 2.052689;-0.915563;, + -1.000000; 2.052689;-0.915563;, + -1.000000; 0.155088;-0.615504;, + -1.000000; 0.155088; 0.615504;, + -1.000000; 2.052689; 0.915563;, + 1.000000; 2.052689; 0.915563;, + 1.000000; 0.155088; 0.615504;, + -1.000000;-1.728900;-0.764941;, + -1.000000; 0.155088;-0.615504;, + -1.000000; 0.155088; 0.615504;, + -1.000000;-1.728900; 0.565265;, + 1.000000; 2.052689;-0.915563;, + 1.000000; 0.155088;-0.615504;, + 1.000000; 0.155088; 0.615504;, + 1.000000; 2.052689; 0.915563;, + 1.000000;-1.728900;-0.764941;, + 1.000000; 0.155088;-0.615504;, + -1.000000; 0.155088;-0.615504;, + -1.000000;-1.728900;-0.764941;, + -1.000000;-1.728900; 0.565265;, + -1.000000; 0.155088; 0.615504;, + 1.000000; 0.155088; 0.615504;, + 1.000000;-1.728900; 0.565265;, + -0.478282; 1.627421;-0.497030;, + -0.478282; 2.777568;-0.242289;, + -0.478282; 2.571347; 0.688789;, + -0.478282; 1.421201; 0.434048;, + -0.478282; 2.777568;-0.242289;, + 0.646717; 2.777568;-0.242289;, + 0.646717; 2.571347; 0.688789;, + -0.478282; 2.571347; 0.688789;, + 0.646717; 2.777568;-0.242289;, + 0.646717; 1.627421;-0.497030;, + 0.646717; 1.421201; 0.434048;, + 0.646717; 2.571347; 0.688789;, + 0.646717; 1.627421;-0.497030;, + -0.478282; 1.627421;-0.497030;, + -0.478282; 1.421201; 0.434048;, + 0.646717; 1.421201; 0.434048;, + 0.646717; 1.627421;-0.497030;, + 0.646717; 2.777568;-0.242289;, + -0.478282; 2.777568;-0.242289;, + -0.478282; 1.627421;-0.497030;, + -0.478282; 1.421201; 0.434048;, + -0.478282; 2.571347; 0.688789;, + 0.646717; 2.571347; 0.688789;, + 0.646717; 1.421201; 0.434048;, + -0.671784; 2.547537;-0.382663;, + -0.671784; 3.191954;-0.382663;, + -0.671784; 3.191954; 0.728308;, + -0.671784; 2.547537; 0.728308;, + 0.512005; 3.820444;-0.294064;, + -0.394370; 3.820444;-0.294064;, + -0.671784; 3.191954;-0.382663;, + 0.789419; 3.191954;-0.382663;, + 0.789419; 3.191954;-0.382663;, + 0.789419; 2.547537;-0.382663;, + 0.789419; 2.547537; 0.728308;, + 0.789419; 3.191954; 0.728308;, + 0.789419; 2.547537;-0.382663;, + -0.671784; 2.547537;-0.382663;, + -0.671784; 2.547537; 0.728308;, + 0.789419; 2.547537; 0.728308;, + 0.789419; 2.547537;-0.382663;, + 0.789419; 3.191954;-0.382663;, + -0.671784; 3.191954;-0.382663;, + -0.671784; 2.547537;-0.382663;, + -0.671784; 2.547537; 0.728308;, + -0.671784; 3.191954; 0.728308;, + 0.789419; 3.191954; 0.728308;, + 0.789419; 2.547537; 0.728308;, + 0.512005; 4.671586;-0.294064;, + -0.394370; 4.671586;-0.294064;, + -0.394370; 3.820444;-0.294064;, + 0.512005; 3.820444;-0.294064;, + -0.394370; 3.820444; 0.345902;, + 0.512005; 3.820444; 0.345902;, + 0.789419; 3.191954; 0.728308;, + -0.671784; 3.191954; 0.728308;, + 0.512005; 3.820444; 0.345902;, + 0.512005; 3.820444;-0.294064;, + 0.789419; 3.191954;-0.382663;, + 0.789419; 3.191954; 0.728308;, + -0.671784; 3.191954; 0.728308;, + -0.671784; 3.191954;-0.382663;, + -0.394370; 3.820444;-0.294064;, + -0.394370; 3.820444; 0.345902;, + -0.394370; 4.671586;-0.294064;, + 0.512005; 4.671586;-0.294064;, + 0.512005; 4.671586; 0.345902;, + -0.394370; 4.671586; 0.345902;, + -0.394370; 3.820444; 0.345902;, + -0.394370; 3.820444;-0.294064;, + -0.394370; 4.671586;-0.294064;, + -0.394370; 4.671586; 0.345902;, + -0.394370; 4.671586; 0.345902;, + 0.512005; 4.671586; 0.345902;, + 0.512005; 3.820444; 0.345902;, + -0.394370; 3.820444; 0.345902;, + 0.512005; 4.671586; 0.345902;, + 0.512005; 4.671586;-0.294064;, + 0.512005; 3.820444;-0.294064;, + 0.512005; 3.820444; 0.345902;, + 0.278519; 2.361271; 0.644022;, + 0.278519; 2.654585; 0.644022;, + 0.520551; 2.654585; 1.302632;, + 0.520551; 2.361271; 1.302632;, + 0.278519; 2.654585; 0.644022;, + 0.787799; 2.696650; 0.644022;, + 0.798712; 2.696650; 1.302632;, + 0.520551; 2.654585; 1.302632;, + 0.787799; 2.696650; 0.644022;, + 0.787799; 2.403336; 0.644022;, + 0.798712; 2.403336; 1.302632;, + 0.798712; 2.696650; 1.302632;, + 0.787799; 2.403336; 0.644022;, + 0.278519; 2.361271; 0.644022;, + 0.520551; 2.361271; 1.302632;, + 0.798712; 2.403336; 1.302632;, + 0.787799; 2.403336; 0.644022;, + 0.787799; 2.696650; 0.644022;, + 0.278519; 2.654585; 0.644022;, + 0.278519; 2.361271; 0.644022;, + 0.520551; 2.361271; 1.302632;, + 0.520551; 2.654585; 1.302632;, + 0.798712; 2.696650; 1.302632;, + 0.798712; 2.403336; 1.302632;, + -0.681576; 2.380263; 0.632819;, + -0.681576; 2.673577; 0.632819;, + -0.646066; 2.673577; 1.291429;, + -0.646066; 2.380263; 1.291429;, + -0.681576; 2.673577; 0.632819;, + -0.172296; 2.673577; 0.632819;, + -0.391654; 2.673577; 1.291429;, + -0.646066; 2.673577; 1.291429;, + -0.172296; 2.673577; 0.632819;, + -0.172296; 2.380263; 0.632819;, + -0.391654; 2.380263; 1.291429;, + -0.391654; 2.673577; 1.291429;, + -0.172296; 2.380263; 0.632819;, + -0.681576; 2.380263; 0.632819;, + -0.646066; 2.380263; 1.291429;, + -0.391654; 2.380263; 1.291429;, + -0.172296; 2.380263; 0.632819;, + -0.172296; 2.673577; 0.632819;, + -0.681576; 2.673577; 0.632819;, + -0.681576; 2.380263; 0.632819;, + -0.646066; 2.380263; 1.291429;, + -0.646066; 2.673577; 1.291429;, + -0.391654; 2.673577; 1.291429;, + -0.391654; 2.380263; 1.291429;, + -0.120377;-2.912002;-1.784416;, + -0.120377;-2.476886;-2.017185;, + -0.255799;-2.099858;-1.559360;, + -0.255799;-2.740405;-1.216694;, + -0.120377;-2.476886;-2.017185;, + 0.335223;-2.476886;-2.017185;, + 0.470645;-2.099858;-1.559360;, + -0.255799;-2.099858;-1.559360;, + 0.335223;-2.476886;-2.017185;, + 0.335223;-2.912002;-1.784416;, + 0.470645;-2.740405;-1.216694;, + 0.470645;-2.099858;-1.559360;, + 0.335223;-2.912002;-1.784416;, + -0.120377;-2.912002;-1.784416;, + -0.255799;-2.740405;-1.216694;, + 0.470645;-2.740405;-1.216694;, + 0.335223;-2.912002;-1.784416;, + 0.335223;-2.476886;-2.017185;, + -0.120377;-2.476886;-2.017185;, + -0.120377;-2.912002;-1.784416;, + -0.154317;-1.667699; 0.122275;, + -0.154317;-1.356034;-0.044453;, + 0.369163;-1.356034;-0.044453;, + 0.369163;-1.667699; 0.122275;, + -0.255799;-2.255081;-0.309479;, + -0.255799;-1.614535;-0.652145;, + -0.154317;-1.356034;-0.044453;, + -0.154317;-1.667699; 0.122275;, + -0.255799;-1.614535;-0.652145;, + 0.470645;-1.614535;-0.652145;, + 0.369163;-1.356034;-0.044453;, + -0.154317;-1.356034;-0.044453;, + 0.470645;-1.614535;-0.652145;, + 0.470645;-2.255081;-0.309479;, + 0.369163;-1.667699; 0.122275;, + 0.369163;-1.356034;-0.044453;, + 0.470645;-2.255081;-0.309479;, + -0.255799;-2.255081;-0.309479;, + -0.154317;-1.667699; 0.122275;, + 0.369163;-1.667699; 0.122275;, + 0.470645;-2.099858;-1.559360;, + 0.470645;-2.740405;-1.216694;, + 0.470645;-2.255081;-0.309479;, + 0.470645;-1.614535;-0.652145;, + 0.470645;-2.740405;-1.216694;, + -0.255799;-2.740405;-1.216694;, + -0.255799;-2.255081;-0.309479;, + 0.470645;-2.255081;-0.309479;, + -0.792844; 1.496758;-3.209955;, + -0.792844; 1.849385;-3.209955;, + -0.884154; 1.982406;-0.866022;, + -0.884154; 1.363736;-0.866022;, + 0.819857; 1.496758;-3.209955;, + 0.819857; 1.849385;-3.209955;, + 0.440400; 1.849385;-3.209955;, + 0.440400; 1.496758;-3.209955;, + -0.255799;-2.099858;-1.559360;, + 0.470645;-2.099858;-1.559360;, + 0.470645;-1.614535;-0.652145;, + -0.255799;-1.614535;-0.652145;, + 0.440400; 1.496758;-3.209955;, + 0.440400; 1.849385;-3.209955;, + 0.349091; 1.982406;-0.866022;, + 0.349091; 1.363736;-0.866022;, + -0.255799;-2.740405;-1.216694;, + -0.255799;-2.099858;-1.559360;, + -0.255799;-1.614535;-0.652145;, + -0.255799;-2.255081;-0.309479;, + 0.349091; 1.363736;-0.866022;, + 0.349091; 1.982406;-0.866022;, + 0.911166; 1.982406;-0.866022;, + 0.911166; 1.363736;-0.866022;, + 0.440400; 1.849385;-3.209955;, + 0.819857; 1.849385;-3.209955;, + 0.911166; 1.982406;-0.866022;, + 0.349091; 1.982406;-0.866022;, + -0.413388; 1.496758;-3.209955;, + -0.413388; 1.849385;-3.209955;, + -0.792844; 1.849385;-3.209955;, + -0.792844; 1.496758;-3.209955;, + 0.819857; 1.496758;-3.209955;, + 0.440400; 1.496758;-3.209955;, + 0.349091; 1.363736;-0.866022;, + 0.911166; 1.363736;-0.866022;, + 0.819857; 1.849385;-3.209955;, + 0.819857; 1.496758;-3.209955;, + 0.911166; 1.363736;-0.866022;, + 0.911166; 1.982406;-0.866022;, + -0.884154; 1.363736;-0.866022;, + -0.884154; 1.982406;-0.866022;, + -0.322078; 1.982406;-0.866022;, + -0.322078; 1.363736;-0.866022;, + -0.792844; 1.849385;-3.209955;, + -0.413388; 1.849385;-3.209955;, + -0.322078; 1.982406;-0.866022;, + -0.884154; 1.982406;-0.866022;, + -0.413388; 1.496758;-3.209955;, + -0.792844; 1.496758;-3.209955;, + -0.884154; 1.363736;-0.866022;, + -0.322078; 1.363736;-0.866022;, + -0.413388; 1.849385;-3.209955;, + -0.413388; 1.496758;-3.209955;, + -0.322078; 1.363736;-0.866022;, + -0.322078; 1.982406;-0.866022;, + -0.792844;-1.578270;-3.209955;, + -0.792844;-1.225643;-3.209955;, + -0.884154;-1.092621;-0.866022;, + -0.884154;-1.711292;-0.866022;, + -0.413388;-1.578270;-3.209955;, + -0.413388;-1.225643;-3.209955;, + -0.792844;-1.225643;-3.209955;, + -0.792844;-1.578270;-3.209955;, + -0.884154;-1.711292;-0.866022;, + -0.884154;-1.092621;-0.866022;, + -0.322078;-1.092621;-0.866022;, + -0.322078;-1.711292;-0.866022;, + -0.792844;-1.225643;-3.209955;, + -0.413388;-1.225643;-3.209955;, + -0.322078;-1.092621;-0.866022;, + -0.884154;-1.092621;-0.866022;, + -0.413388;-1.578270;-3.209955;, + -0.792844;-1.578270;-3.209955;, + -0.884154;-1.711292;-0.866022;, + -0.322078;-1.711292;-0.866022;, + -0.413388;-1.225643;-3.209955;, + -0.413388;-1.578270;-3.209955;, + -0.322078;-1.711292;-0.866022;, + -0.322078;-1.092621;-0.866022;, + 0.483946;-1.578270;-3.209955;, + 0.483946;-1.225643;-3.209955;, + 0.392636;-1.092621;-0.866022;, + 0.392636;-1.711292;-0.866022;, + 0.863402;-1.578270;-3.209955;, + 0.863402;-1.225643;-3.209955;, + 0.483946;-1.225643;-3.209955;, + 0.483946;-1.578270;-3.209955;, + 0.392636;-1.711292;-0.866022;, + 0.392636;-1.092621;-0.866022;, + 0.954712;-1.092621;-0.866022;, + 0.954712;-1.711292;-0.866022;, + 0.483946;-1.225643;-3.209955;, + 0.863402;-1.225643;-3.209955;, + 0.954712;-1.092621;-0.866022;, + 0.392636;-1.092621;-0.866022;, + 0.863402;-1.578270;-3.209955;, + 0.483946;-1.578270;-3.209955;, + 0.392636;-1.711292;-0.866022;, + 0.954712;-1.711292;-0.866022;, + 0.863402;-1.225643;-3.209955;, + 0.863402;-1.578270;-3.209955;, + 0.954712;-1.711292;-0.866022;, + 0.954712;-1.092621;-0.866022;, + -0.256903; 3.727607;-0.368337;, + -0.256903; 4.656346;-0.368337;, + -0.256903; 4.656346;-0.315211;, + -0.256903; 3.727607;-0.315211;, + -0.256903; 4.656346;-0.368337;, + 0.410987; 4.656346;-0.368337;, + 0.410987; 4.656346;-0.315211;, + -0.256903; 4.656346;-0.315211;, + 0.410987; 4.656346;-0.368337;, + 0.410987; 3.727607;-0.368337;, + 0.410987; 3.727607;-0.315211;, + 0.410987; 4.656346;-0.315211;, + 0.410987; 3.727607;-0.368337;, + -0.256903; 3.727607;-0.368337;, + -0.256903; 3.727607;-0.315211;, + 0.410987; 3.727607;-0.315211;, + 0.410987; 3.727607;-0.368337;, + 0.410987; 4.656346;-0.368337;, + -0.256903; 4.656346;-0.368337;, + -0.256903; 3.727607;-0.368337;, + -0.256903; 3.727607;-0.315211;, + -0.256903; 4.656346;-0.315211;, + 0.410987; 4.656346;-0.315211;, + 0.410987; 3.727607;-0.315211;; + 86; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;; + MeshNormals { //Mesh Normals + 344; + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-0.156185;-0.987728;, + 0.000000;-0.156185;-0.987728;, + 0.000000;-0.156185;-0.987728;, + 0.000000;-0.156185;-0.987728;, + -0.000000;-0.156185; 0.987728;, + -0.000000;-0.156185; 0.987728;, + -0.000000;-0.156185; 0.987728;, + -0.000000;-0.156185; 0.987728;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 0.079071;-0.996869;, + 0.000000; 0.079071;-0.996869;, + 0.000000; 0.079071;-0.996869;, + 0.000000; 0.079071;-0.996869;, + 0.000000;-0.026657; 0.999645;, + 0.000000;-0.026657; 0.999645;, + 0.000000;-0.026657; 0.999645;, + 0.000000;-0.026657; 0.999645;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.976339; 0.216245;, + 0.000000; 0.976339; 0.216245;, + 0.000000; 0.976339; 0.216245;, + 0.000000; 0.976339; 0.216245;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.976339;-0.216245;, + 0.000000;-0.976339;-0.216245;, + 0.000000;-0.976339;-0.216245;, + 0.000000;-0.976339;-0.216245;, + 0.000000; 0.216245;-0.976339;, + 0.000000; 0.216245;-0.976339;, + 0.000000; 0.216245;-0.976339;, + 0.000000; 0.216245;-0.976339;, + 0.000000;-0.216245; 0.976339;, + 0.000000;-0.216245; 0.976339;, + 0.000000;-0.216245; 0.976339;, + 0.000000;-0.216245; 0.976339;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.139591;-0.990209;, + 0.000000; 0.139591;-0.990209;, + 0.000000; 0.139591;-0.990209;, + 0.000000; 0.139591;-0.990209;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000; 0.519795; 0.854291;, + 0.000000; 0.519795; 0.854291;, + 0.000000; 0.519795; 0.854291;, + 0.000000; 0.519795; 0.854291;, + 0.914843; 0.403810; 0.000000;, + 0.914843; 0.403810; 0.000000;, + 0.914843; 0.403810; 0.000000;, + 0.914843; 0.403810; 0.000000;, + -0.914843; 0.403810; 0.000000;, + -0.914843; 0.403810; 0.000000;, + -0.914843; 0.403810; 0.000000;, + -0.914843; 0.403810; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.938627; 0.000000; 0.344935;, + -0.938627; 0.000000; 0.344935;, + -0.938627; 0.000000; 0.344935;, + -0.938627; 0.000000; 0.344935;, + -0.106213; 0.994134; 0.020396;, + -0.106213; 0.994134; 0.020396;, + -0.106213; 0.994134; 0.020396;, + -0.106213; 0.994134; 0.020396;, + 0.999863; 0.000000;-0.016567;, + 0.999863; 0.000000;-0.016567;, + 0.999863; 0.000000;-0.016567;, + 0.999863; 0.000000;-0.016567;, + 0.106213;-0.994134;-0.020396;, + 0.106213;-0.994134;-0.020396;, + 0.106213;-0.994134;-0.020396;, + 0.106213;-0.994134;-0.020396;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.998550; 0.000000; 0.053839;, + -0.998550; 0.000000; 0.053839;, + -0.998550; 0.000000; 0.053839;, + -0.998550; 0.000000; 0.053839;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.948761; 0.000000; 0.315995;, + 0.948761; 0.000000; 0.315995;, + 0.948761; 0.000000; 0.315995;, + 0.948761; 0.000000; 0.315995;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.973941;-0.106983;-0.199983;, + -0.973941;-0.106983;-0.199983;, + -0.973941;-0.106983;-0.199983;, + -0.973941;-0.106983;-0.199983;, + 0.000000; 0.771934;-0.635703;, + 0.000000; 0.771934;-0.635703;, + 0.000000; 0.771934;-0.635703;, + 0.000000; 0.771934;-0.635703;, + 0.973941;-0.106983;-0.199983;, + 0.973941;-0.106983;-0.199983;, + 0.973941;-0.106983;-0.199983;, + 0.973941;-0.106983;-0.199983;, + 0.000000;-0.957230; 0.289329;, + 0.000000;-0.957230; 0.289329;, + 0.000000;-0.957230; 0.289329;, + 0.000000;-0.957230; 0.289329;, + 0.000000;-0.471704;-0.881757;, + 0.000000;-0.471704;-0.881757;, + 0.000000;-0.471704;-0.881757;, + 0.000000;-0.471704;-0.881757;, + 0.000000; 0.471704; 0.881757;, + 0.000000; 0.471704; 0.881757;, + 0.000000; 0.471704; 0.881757;, + 0.000000; 0.471704; 0.881757;, + -0.988307; 0.071924; 0.134447;, + -0.988307; 0.071924; 0.134447;, + -0.988307; 0.071924; 0.134447;, + -0.988307; 0.071924; 0.134447;, + 0.000000; 0.920205;-0.391438;, + 0.000000; 0.920205;-0.391438;, + 0.000000; 0.920205;-0.391438;, + 0.000000; 0.920205;-0.391438;, + 0.988307; 0.071924; 0.134447;, + 0.988307; 0.071924; 0.134447;, + 0.988307; 0.071924; 0.134447;, + 0.988307; 0.071924; 0.134447;, + 0.000000;-0.592261; 0.805746;, + 0.000000;-0.592261; 0.805746;, + 0.000000;-0.592261; 0.805746;, + 0.000000;-0.592261; 0.805746;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.881757; 0.471704;, + 0.000000;-0.881757; 0.471704;, + 0.000000;-0.881757; 0.471704;, + 0.000000;-0.881757; 0.471704;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.881757;-0.471704;, + 0.000000; 0.881757;-0.471704;, + 0.000000; 0.881757;-0.471704;, + 0.000000; 0.881757;-0.471704;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;; + 86; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;; + } //End of Mesh Normals + MeshMaterialList { //Mesh Material List + 1; + 1; + 0;; + Material Default_Material { + 0.800000; 0.800000; 0.800000; 0.800000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Mesh Material List + MeshTextureCoords { //Mesh UV Coordinates + 344; + 0.444664; 0.882740;, + 0.453010; 0.994603;, + 0.352139; 0.990704;, + 0.370352; 0.882084;, + 0.699615; 0.826957;, + 0.888198; 0.826957;, + 0.888198; 0.999617;, + 0.699615; 0.999617;, + 0.566940; 0.877116;, + 0.559308; 0.768256;, + 0.664340; 0.764336;, + 0.671138; 0.868138;, + 0.999617; 0.397190;, + 0.811034; 0.397190;, + 0.811034; 0.271762;, + 0.999617; 0.271762;, + 0.566940; 0.877116;, + 0.565483; 0.991269;, + 0.453010; 0.994603;, + 0.444664; 0.882740;, + 0.370352; 0.882084;, + 0.352139; 0.990704;, + 0.243744; 0.976452;, + 0.255729; 0.872295;, + 0.447331; 0.770867;, + 0.444664; 0.882740;, + 0.370352; 0.882084;, + 0.373731; 0.773298;, + 0.565483; 0.991269;, + 0.566940; 0.877116;, + 0.671138; 0.868138;, + 0.670488; 0.977139;, + 0.559308; 0.768256;, + 0.566940; 0.877116;, + 0.444664; 0.882740;, + 0.447331; 0.770867;, + 0.373731; 0.773298;, + 0.370352; 0.882084;, + 0.255729; 0.872295;, + 0.261819; 0.766836;, + 0.694945; 0.168323;, + 0.694945; 0.057246;, + 0.784866; 0.057246;, + 0.784866; 0.168323;, + 0.978885; 0.802852;, + 0.978885; 0.908930;, + 0.888965; 0.908930;, + 0.888965; 0.802852;, + 0.980864; 0.057246;, + 0.980864; 0.168323;, + 0.890944; 0.168323;, + 0.890944; 0.057246;, + 0.995043; 0.999617;, + 0.888965; 0.999617;, + 0.888965; 0.909696;, + 0.995043; 0.909696;, + 0.588867; 0.168323;, + 0.588867; 0.057246;, + 0.694945; 0.057246;, + 0.694945; 0.168323;, + 0.784866; 0.168323;, + 0.784866; 0.057246;, + 0.890944; 0.057246;, + 0.890944; 0.168323;, + 0.581893; 0.381313;, + 0.525981; 0.490259;, + 0.379618; 0.402841;, + 0.398054; 0.301018;, + 0.815523; 0.662938;, + 0.815524; 0.728486;, + 0.769623; 0.748548;, + 0.769623; 0.642876;, + 0.048873; 0.480128;, + 0.006488; 0.386718;, + 0.167529; 0.313647;, + 0.194276; 0.403737;, + 0.988636; 0.730470;, + 0.896211; 0.730470;, + 0.896211; 0.660198;, + 0.988636; 0.660198;, + 0.723019; 0.642876;, + 0.769623; 0.642876;, + 0.769623; 0.748548;, + 0.723019; 0.748548;, + 0.398054; 0.301018;, + 0.379618; 0.402841;, + 0.194276; 0.403737;, + 0.167529; 0.313647;, + 0.877077; 0.662938;, + 0.877077; 0.728486;, + 0.815524; 0.728486;, + 0.815523; 0.662938;, + 0.357048; 0.517540;, + 0.216152; 0.507657;, + 0.194276; 0.403737;, + 0.379618; 0.402841;, + 0.216152; 0.507657;, + 0.120216; 0.568830;, + 0.048873; 0.480128;, + 0.194276; 0.403737;, + 0.379618; 0.402841;, + 0.525981; 0.490259;, + 0.444034; 0.577428;, + 0.357048; 0.517540;, + 0.362490; 0.686881;, + 0.215162; 0.682739;, + 0.251936; 0.612341;, + 0.315469; 0.601729;, + 0.357048; 0.517540;, + 0.444034; 0.577428;, + 0.362490; 0.686881;, + 0.315469; 0.601729;, + 0.315469; 0.601729;, + 0.251936; 0.612341;, + 0.216152; 0.507657;, + 0.357048; 0.517540;, + 0.251936; 0.612341;, + 0.215162; 0.682739;, + 0.120216; 0.568830;, + 0.216152; 0.507657;, + 0.882221; 0.248633;, + 0.854668; 0.246226;, + 0.860426; 0.180315;, + 0.887978; 0.182722;, + 0.854668; 0.246226;, + 0.811034; 0.225788;, + 0.836391; 0.169090;, + 0.860426; 0.180315;, + 0.955560; 0.229325;, + 0.928738; 0.236069;, + 0.913594; 0.175833;, + 0.940417; 0.169090;, + 0.928738; 0.236069;, + 0.882221; 0.248633;, + 0.887978; 0.182722;, + 0.913594; 0.175833;, + 0.568666; 0.188259;, + 0.570943; 0.215822;, + 0.522758; 0.215822;, + 0.520482; 0.188259;, + 0.557028; 0.187492;, + 0.557028; 0.159835;, + 0.583256; 0.155869;, + 0.583256; 0.183526;, + 0.831256; 0.582510;, + 0.811034; 0.563643;, + 0.853460; 0.518170;, + 0.873682; 0.537037;, + 0.941763; 0.626056;, + 0.893812; 0.623471;, + 0.917809; 0.562573;, + 0.941763; 0.563864;, + 0.893812; 0.623471;, + 0.868081; 0.613331;, + 0.892078; 0.552433;, + 0.917809; 0.562573;, + 0.868081; 0.613331;, + 0.831256; 0.582510;, + 0.873682; 0.537037;, + 0.892078; 0.552433;, + 0.680049; 0.227106;, + 0.680049; 0.254763;, + 0.632028; 0.254763;, + 0.632028; 0.227106;, + 0.631262; 0.227106;, + 0.631262; 0.254763;, + 0.607273; 0.254763;, + 0.607273; 0.227106;, + 0.151813; 0.952191;, + 0.112345; 0.947279;, + 0.113514; 0.904716;, + 0.158003; 0.906790;, + 0.112345; 0.947279;, + 0.077106; 0.948022;, + 0.069721; 0.907057;, + 0.113514; 0.904716;, + 0.077106; 0.948022;, + 0.041465; 0.957980;, + 0.021003; 0.917204;, + 0.069721; 0.907057;, + 0.189475; 0.963315;, + 0.151813; 0.952191;, + 0.158003; 0.906790;, + 0.212875; 0.914749;, + 0.563441; 0.216588;, + 0.563441; 0.263118;, + 0.520482; 0.263118;, + 0.520482; 0.216588;, + 0.758717; 0.826190;, + 0.758717; 0.792862;, + 0.808077; 0.792862;, + 0.808077; 0.826190;, + 0.160570; 0.844684;, + 0.116458; 0.842962;, + 0.117818; 0.795850;, + 0.145830; 0.795143;, + 0.116458; 0.842962;, + 0.069466; 0.841189;, + 0.076449; 0.791324;, + 0.117818; 0.795850;, + 0.069466; 0.841189;, + 0.014746; 0.837740;, + 0.047872; 0.785711;, + 0.076449; 0.791324;, + 0.209296; 0.833892;, + 0.160570; 0.844684;, + 0.145830; 0.795143;, + 0.184389; 0.782622;, + 0.069721; 0.907057;, + 0.021003; 0.917204;, + 0.014746; 0.837740;, + 0.069466; 0.841189;, + 0.212875; 0.914749;, + 0.158003; 0.906790;, + 0.160570; 0.844684;, + 0.209296; 0.833892;, + 0.696701; 0.623144;, + 0.663486; 0.624673;, + 0.640785; 0.404303;, + 0.699058; 0.401620;, + 0.556261; 0.154243;, + 0.556261; 0.187492;, + 0.520482; 0.187492;, + 0.520482; 0.154243;, + 0.113514; 0.904716;, + 0.069721; 0.907057;, + 0.069466; 0.841189;, + 0.116458; 0.842962;, + 0.696269; 0.621054;, + 0.663054; 0.622583;, + 0.640352; 0.402213;, + 0.698626; 0.399530;, + 0.158003; 0.906790;, + 0.113514; 0.904716;, + 0.116458; 0.842962;, + 0.160570; 0.844684;, + 0.621714; 0.314631;, + 0.680049; 0.314631;, + 0.680049; 0.367630;, + 0.621714; 0.367630;, + 0.663054; 0.622583;, + 0.627632; 0.627630;, + 0.587883; 0.409689;, + 0.640352; 0.402213;, + 0.844623; 0.792862;, + 0.844623; 0.826112;, + 0.808843; 0.826112;, + 0.808843; 0.792862;, + 0.732005; 0.622825;, + 0.696269; 0.621054;, + 0.698626; 0.399530;, + 0.751560; 0.402153;, + 0.764905; 0.627630;, + 0.732005; 0.622825;, + 0.751560; 0.402153;, + 0.809283; 0.410584;, + 0.699615; 0.773191;, + 0.757950; 0.773191;, + 0.757950; 0.826190;, + 0.699615; 0.826190;, + 0.663486; 0.624673;, + 0.628065; 0.629720;, + 0.588315; 0.411779;, + 0.640785; 0.404303;, + 0.732437; 0.624915;, + 0.696701; 0.623144;, + 0.699058; 0.401620;, + 0.751992; 0.404243;, + 0.765338; 0.629720;, + 0.732437; 0.624915;, + 0.751992; 0.404243;, + 0.809715; 0.412674;, + 0.697254; 0.619480;, + 0.664039; 0.621009;, + 0.641336; 0.400639;, + 0.699610; 0.397956;, + 0.680049; 0.193089;, + 0.680049; 0.226339;, + 0.644269; 0.226339;, + 0.644269; 0.193089;, + 0.680049; 0.255529;, + 0.680049; 0.313865;, + 0.627050; 0.313865;, + 0.627050; 0.255529;, + 0.664039; 0.621009;, + 0.628617; 0.626056;, + 0.588867; 0.408115;, + 0.641336; 0.400639;, + 0.732989; 0.621251;, + 0.697254; 0.619480;, + 0.699610; 0.397956;, + 0.752544; 0.400579;, + 0.765890; 0.626056;, + 0.732989; 0.621251;, + 0.752544; 0.400579;, + 0.810267; 0.409010;, + 0.697253; 0.620613;, + 0.664039; 0.622143;, + 0.641336; 0.401773;, + 0.699610; 0.399090;, + 0.643503; 0.193089;, + 0.643503; 0.226339;, + 0.607723; 0.226339;, + 0.607723; 0.193089;, + 0.573481; 0.263885;, + 0.573481; 0.322220;, + 0.520482; 0.322220;, + 0.520482; 0.263885;, + 0.664039; 0.622143;, + 0.628617; 0.627190;, + 0.588867; 0.409249;, + 0.641336; 0.401773;, + 0.732989; 0.622384;, + 0.697253; 0.620613;, + 0.699610; 0.399090;, + 0.752544; 0.401713;, + 0.765890; 0.627190;, + 0.732989; 0.622384;, + 0.752544; 0.401713;, + 0.810267; 0.410144;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;; + } //End of Mesh UV Coordinates + XSkinMeshHeader { + 1; + 3; + 9; + } + SkinWeights { + "Armature_Body"; + 40; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.996529,-0.083252, 0.000000, + 0.000000, 0.083252, 0.996529, 0.000000, + -0.039910, 1.507776, 0.102992, 1.000000;; + } //End of Armature_Body Skin Weights + SkinWeights { + "Armature_zubi"; + 24; + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 0.999497, 0.031712, 0.000000, + -0.000000,-0.031712, 0.999497, 0.000000, + -0.095553,-3.687672, 0.221770, 1.000000;; + } //End of Armature_zubi Skin Weights + SkinWeights { + "Armature_hvost"; + 56; + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 224, + 225, + 226, + 227, + 232, + 233, + 234, + 235; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.449440, 0.893311, 0.000000, + -0.000000,-0.893311,-0.449440, 0.000000, + -0.039909,-1.044864, 1.475107, 1.000000;; + } //End of Armature_hvost Skin Weights + SkinWeights { + "Armature_head"; + 104; + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + -0.000000, 0.998694, 0.051097, 0.000000, + -0.000000,-0.051097, 0.998694, 0.000000, + -0.039910,-2.624220,-0.363653, 1.000000;; + } //End of Armature_head Skin Weights + SkinWeights { + "Armature_noga2"; + 24; + 216, + 217, + 218, + 219, + 244, + 245, + 246, + 247, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 1.641199,-0.845231, 0.608472, 1.000000;; + } //End of Armature_noga2 Skin Weights + SkinWeights { + "Armature_noga1"; + 24; + 220, + 221, + 222, + 223, + 228, + 229, + 230, + 231, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 1.641199,-0.845231,-0.658136, 1.000000;; + } //End of Armature_noga1 Skin Weights + SkinWeights { + "Armature_sheya"; + 24; + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.997121,-0.075824,-0.000243, 0.000000, + 0.075644, 0.994519, 0.072177, 0.000000, + -0.005231,-0.071988, 0.997392, 0.000000, + -0.169522,-1.701621,-0.409142, 1.000000;; + } //End of Armature_sheya Skin Weights + SkinWeights { + "Armature_noga4"; + 24; + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -1.404690,-0.845231, 0.608472, 1.000000;; + } //End of Armature_noga4 Skin Weights + SkinWeights { + "Armature_noga3"; + 24; + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -1.404690,-0.845231,-0.658136, 1.000000;; + } //End of Armature_noga3 Skin Weights + } //End of Mesh Mesh + } //End of Cube +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 156; + 0;3; -11.632589, 0.094256, 0.169731;;, + 1;3; -11.632589, 0.094256, 0.169731;;, + 2;3; -11.632589, 0.094256, 0.169731;;, + 3;3; -11.632589, 0.094256, 0.169731;;, + 4;3; -11.632589, 0.094256, 0.169731;;, + 5;3; -11.632589, 0.094256, 0.169731;;, + 6;3; -11.632589, 0.094256, 0.169731;;, + 7;3; -11.632589, 0.094256, 0.169731;;, + 8;3; -11.632589, 0.094256, 0.169731;;, + 9;3; -11.632589, 0.094256, 0.169731;;, + 10;3; -11.632589, 0.094256, 0.169731;;, + 11;3; -11.632589, 0.094256, 0.169731;;, + 12;3; -11.632589, 0.094256, 0.169731;;, + 13;3; -11.632589, 0.094256, 0.169731;;, + 14;3; -11.632589, 0.094256, 0.169731;;, + 15;3; -11.632589, 0.094256, 0.169731;;, + 16;3; -11.632589, 0.094256, 0.169731;;, + 17;3; -11.632589, 0.094256, 0.169731;;, + 18;3; -11.632589, 0.094256, 0.169731;;, + 19;3; -11.632589, 0.094256, 0.169731;;, + 20;3; -11.632589, 0.094256, 0.169731;;, + 21;3; -11.632589, 0.094256, 0.169731;;, + 22;3; -11.632589, 0.094256, 0.169731;;, + 23;3; -11.632589, 0.094256, 0.169731;;, + 24;3; -11.632589, 0.094256, 0.169731;;, + 25;3; -11.632589, 0.094256, 0.169731;;, + 26;3; -11.632589, 0.094256, 0.169731;;, + 27;3; -11.632589, 0.094256, 0.169731;;, + 28;3; -11.632589, 0.094256, 0.169731;;, + 29;3; -11.632589, 0.094256, 0.169731;;, + 30;3; -11.632589, 0.094256, 0.169731;;, + 31;3; -11.632589, 0.094256, 0.169731;;, + 32;3; -11.632589, 0.094256, 0.169731;;, + 33;3; -11.632589, 0.094256, 0.169731;;, + 34;3; -11.632589, 0.094256, 0.169731;;, + 35;3; -11.632589, 0.094256, 0.169731;;, + 36;3; -11.632589, 0.094256, 0.169731;;, + 37;3; -11.632589, 0.094256, 0.169731;;, + 38;3; -11.632589, 0.094256, 0.169731;;, + 39;3; -11.632589, 0.094256, 0.169731;;, + 40;3; -11.632589, 0.094256, 0.169731;;, + 41;3; -11.632589, 0.094256, 0.169731;;, + 42;3; -11.632589, 0.094256, 0.169731;;, + 43;3; -11.632589, 0.094256, 0.169731;;, + 44;3; -11.632589, 0.094256, 0.169731;;, + 45;3; -11.632589, 0.094256, 0.169731;;, + 46;3; -11.632589, 0.094256, 0.169731;;, + 47;3; -11.632589, 0.094256, 0.169731;;, + 48;3; -11.632589, 0.094256, 0.169731;;, + 49;3; -11.632589, 0.094256, 0.169731;;, + 50;3; -11.632589, 0.094256, 0.169731;;, + 51;3; -11.632589, 0.094256, 0.169731;;, + 52;3; -11.632589, 0.094256, 0.169731;;, + 53;3; -11.632589, 0.094256, 0.169731;;, + 54;3; -11.632589, 0.094256, 0.169731;;, + 55;3; -11.632589, 0.094256, 0.169731;;, + 56;3; -11.632589, 0.094256, 0.169731;;, + 57;3; -11.632589, 0.094256, 0.169731;;, + 58;3; -11.632589, 0.094256, 0.169731;;, + 59;3; -11.632589, 0.094256, 0.169731;;, + 60;3; -11.632589, 0.094256, 0.169731;;, + 61;3; -11.632589, 0.094256, 0.169731;;, + 62;3; -11.632589, 0.094256, 0.169731;;, + 63;3; -11.632589, 0.094256, 0.169731;;, + 64;3; -11.632589, 0.094256, 0.169731;;, + 65;3; -11.632589, 0.094256, 0.169731;;, + 66;3; -11.632589, 0.094256, 0.169731;;, + 67;3; -11.632589, 0.094256, 0.169731;;, + 68;3; -11.632589, 0.094256, 0.169731;;, + 69;3; -11.632589, 0.094256, 0.169731;;, + 70;3; -11.632589, 0.094256, 0.169731;;, + 71;3; -11.632589, 0.094256, 0.169731;;, + 72;3; -11.632589, 0.094256, 0.169731;;, + 73;3; -11.632589, 0.094256, 0.169731;;, + 74;3; -11.632589, 0.094256, 0.169731;;, + 75;3; -11.632589, 0.094256, 0.169731;;, + 76;3; -11.632589, 0.094256, 0.169731;;, + 77;3; -11.632589, 0.094256, 0.169731;;, + 78;3; -11.632589, 0.094256, 0.169731;;, + 79;3; -11.632589, 0.094256, 0.169731;;, + 80;3; -11.632589, 0.094256, 0.169731;;, + 81;3; -11.632589, 0.094256, 0.169731;;, + 82;3; -11.632589, 0.094256, 0.169731;;, + 83;3; -11.632589, 0.094256, 0.169731;;, + 84;3; -11.632589, 0.094256, 0.169731;;, + 85;3; -11.632589, 0.094256, 0.169731;;, + 86;3; -11.632589, 0.094256, 0.169731;;, + 87;3; -11.632589, 0.094256, 0.169731;;, + 88;3; -11.632589, 0.094256, 0.169731;;, + 89;3; -11.632589, 0.094256, 0.169731;;, + 90;3; -11.632589, 0.094256, 0.169731;;, + 91;3; -11.632589, 0.094256, 0.169731;;, + 92;3; -11.632589, 0.094256, 0.169731;;, + 93;3; -11.632589, 0.094256, 0.169731;;, + 94;3; -11.632589, 0.094256, 0.169731;;, + 95;3; -11.632589, 0.094256, 0.169731;;, + 96;3; -11.632589, 0.094256, 0.169731;;, + 97;3; -11.632589, 0.094256, 0.169731;;, + 98;3; -11.632589, 0.094256, 0.169731;;, + 99;3; -11.632589, 0.094256, 0.169731;;, + 100;3; -11.632589, 0.094256, 0.169731;;, + 101;3; -11.632589, 0.094256, 0.169731;;, + 102;3; -11.632589, 0.094256, 0.169731;;, + 103;3; -11.632589, 0.094256, 0.169731;;, + 104;3; -11.632589, 0.094256, 0.169731;;, + 105;3; -11.632589, 0.094256, 0.169731;;, + 106;3; -11.632589, 0.094256, 0.169731;;, + 107;3; -11.632589, 0.094256, 0.169731;;, + 108;3; -11.632589, 0.094256, 0.169731;;, + 109;3; -11.632589, 0.094256, 0.169731;;, + 110;3; -11.632589, 0.094256, 0.169731;;, + 111;3; -11.632589, 0.094256, 0.169731;;, + 112;3; -11.632589, 0.094256, 0.169731;;, + 113;3; -11.632589, 0.094256, 0.169731;;, + 114;3; -11.632589, 0.094256, 0.169731;;, + 115;3; -11.632589, 0.094256, 0.169731;;, + 116;3; -11.632589, 0.094256, 0.169731;;, + 117;3; -11.632589, 0.094256, 0.169731;;, + 118;3; -11.632589, 0.094256, 0.169731;;, + 119;3; -11.632589, 0.094256, 0.169731;;, + 120;3; -11.632589, 0.094256, 0.169731;;, + 121;3; -11.632589, 0.094256, 0.169731;;, + 122;3; -11.632589, 0.094256, 0.169731;;, + 123;3; -11.632589, 0.094256, 0.169731;;, + 124;3; -11.632589, 0.094256, 0.169731;;, + 125;3; -11.632589, 0.094256, 0.169731;;, + 126;3; -11.632589, 0.094256, 0.169731;;, + 127;3; -11.632589, 0.094256, 0.169731;;, + 128;3; -11.632589, 0.094256, 0.169731;;, + 129;3; -11.632589, 0.094256, 0.169731;;, + 130;3; -11.632589, 0.094256, 0.169731;;, + 131;3; -11.632589, 0.094256, 0.169731;;, + 132;3; -11.632589, 0.094256, 0.169731;;, + 133;3; -11.632589, 0.094256, 0.169731;;, + 134;3; -11.632589, 0.094256, 0.169731;;, + 135;3; -11.632589, 0.094256, 0.169731;;, + 136;3; -11.632589, 0.094256, 0.169731;;, + 137;3; -11.632589, 0.094256, 0.169731;;, + 138;3; -11.632589, 0.094256, 0.169731;;, + 139;3; -11.632589, 0.094256, 0.169731;;, + 140;3; -11.632589, 0.094256, 0.169731;;, + 141;3; -11.632589, 0.094256, 0.169731;;, + 142;3; -11.632589, 0.094256, 0.169731;;, + 143;3; -11.632589, 0.094256, 0.169731;;, + 144;3; -11.632589, 0.094256, 0.169731;;, + 145;3; -11.632589, 0.094256, 0.169731;;, + 146;3; -11.632589, 0.094256, 0.169731;;, + 147;3; -11.632589, 0.094256, 0.169731;;, + 148;3; -11.632589, 0.094256, 0.169731;;, + 149;3; -11.632589, 0.094256, 0.169731;;, + 150;3; -11.632589, 0.094256, 0.169731;;, + 151;3; -11.632589, 0.094256, 0.169731;;, + 152;3; -11.632589, 0.094256, 0.169731;;, + 153;3; -11.632589, 0.094256, 0.169731;;, + 154;3; -11.632589, 0.094256, 0.169731;;, + 155;3; -11.632589, 0.094256, 0.169731;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 2.153459, 2.153459, 2.153459;;, + 1;3; 2.153459, 2.153459, 2.153459;;, + 2;3; 2.153459, 2.153459, 2.153459;;, + 3;3; 2.153459, 2.153459, 2.153459;;, + 4;3; 2.153459, 2.153459, 2.153459;;, + 5;3; 2.153459, 2.153459, 2.153459;;, + 6;3; 2.153459, 2.153459, 2.153459;;, + 7;3; 2.153459, 2.153459, 2.153459;;, + 8;3; 2.153459, 2.153459, 2.153459;;, + 9;3; 2.153459, 2.153459, 2.153459;;, + 10;3; 2.153459, 2.153459, 2.153459;;, + 11;3; 2.153459, 2.153459, 2.153459;;, + 12;3; 2.153459, 2.153459, 2.153459;;, + 13;3; 2.153459, 2.153459, 2.153459;;, + 14;3; 2.153459, 2.153459, 2.153459;;, + 15;3; 2.153459, 2.153459, 2.153459;;, + 16;3; 2.153459, 2.153459, 2.153459;;, + 17;3; 2.153459, 2.153459, 2.153459;;, + 18;3; 2.153459, 2.153459, 2.153459;;, + 19;3; 2.153459, 2.153459, 2.153459;;, + 20;3; 2.153459, 2.153459, 2.153459;;, + 21;3; 2.153459, 2.153459, 2.153459;;, + 22;3; 2.153459, 2.153459, 2.153459;;, + 23;3; 2.153459, 2.153459, 2.153459;;, + 24;3; 2.153459, 2.153459, 2.153459;;, + 25;3; 2.153459, 2.153459, 2.153459;;, + 26;3; 2.153459, 2.153459, 2.153459;;, + 27;3; 2.153459, 2.153459, 2.153459;;, + 28;3; 2.153459, 2.153459, 2.153459;;, + 29;3; 2.153459, 2.153459, 2.153459;;, + 30;3; 2.153459, 2.153459, 2.153459;;, + 31;3; 2.153459, 2.153459, 2.153459;;, + 32;3; 2.153459, 2.153459, 2.153459;;, + 33;3; 2.153459, 2.153459, 2.153459;;, + 34;3; 2.153459, 2.153459, 2.153459;;, + 35;3; 2.153459, 2.153459, 2.153459;;, + 36;3; 2.153459, 2.153459, 2.153459;;, + 37;3; 2.153459, 2.153459, 2.153459;;, + 38;3; 2.153459, 2.153459, 2.153459;;, + 39;3; 2.153459, 2.153459, 2.153459;;, + 40;3; 2.153459, 2.153459, 2.153459;;, + 41;3; 2.153459, 2.153459, 2.153459;;, + 42;3; 2.153459, 2.153459, 2.153459;;, + 43;3; 2.153459, 2.153459, 2.153459;;, + 44;3; 2.153459, 2.153459, 2.153459;;, + 45;3; 2.153459, 2.153459, 2.153459;;, + 46;3; 2.153459, 2.153459, 2.153459;;, + 47;3; 2.153459, 2.153459, 2.153459;;, + 48;3; 2.153459, 2.153459, 2.153459;;, + 49;3; 2.153459, 2.153459, 2.153459;;, + 50;3; 2.153459, 2.153459, 2.153459;;, + 51;3; 2.153459, 2.153459, 2.153459;;, + 52;3; 2.153459, 2.153459, 2.153459;;, + 53;3; 2.153459, 2.153459, 2.153459;;, + 54;3; 2.153459, 2.153459, 2.153459;;, + 55;3; 2.153459, 2.153459, 2.153459;;, + 56;3; 2.153459, 2.153459, 2.153459;;, + 57;3; 2.153459, 2.153459, 2.153459;;, + 58;3; 2.153459, 2.153459, 2.153459;;, + 59;3; 2.153459, 2.153459, 2.153459;;, + 60;3; 2.153459, 2.153459, 2.153459;;, + 61;3; 2.153459, 2.153459, 2.153459;;, + 62;3; 2.153459, 2.153459, 2.153459;;, + 63;3; 2.153459, 2.153459, 2.153459;;, + 64;3; 2.153459, 2.153459, 2.153459;;, + 65;3; 2.153459, 2.153459, 2.153459;;, + 66;3; 2.153459, 2.153459, 2.153459;;, + 67;3; 2.153459, 2.153459, 2.153459;;, + 68;3; 2.153459, 2.153459, 2.153459;;, + 69;3; 2.153459, 2.153459, 2.153459;;, + 70;3; 2.153459, 2.153459, 2.153459;;, + 71;3; 2.153459, 2.153459, 2.153459;;, + 72;3; 2.153459, 2.153459, 2.153459;;, + 73;3; 2.153459, 2.153459, 2.153459;;, + 74;3; 2.153459, 2.153459, 2.153459;;, + 75;3; 2.153459, 2.153459, 2.153459;;, + 76;3; 2.153459, 2.153459, 2.153459;;, + 77;3; 2.153459, 2.153459, 2.153459;;, + 78;3; 2.153459, 2.153459, 2.153459;;, + 79;3; 2.153459, 2.153459, 2.153459;;, + 80;3; 2.153459, 2.153459, 2.153459;;, + 81;3; 2.153459, 2.153459, 2.153459;;, + 82;3; 2.153459, 2.153459, 2.153459;;, + 83;3; 2.153459, 2.153459, 2.153459;;, + 84;3; 2.153459, 2.153459, 2.153459;;, + 85;3; 2.153459, 2.153459, 2.153459;;, + 86;3; 2.153459, 2.153459, 2.153459;;, + 87;3; 2.153459, 2.153459, 2.153459;;, + 88;3; 2.153459, 2.153459, 2.153459;;, + 89;3; 2.153459, 2.153459, 2.153459;;, + 90;3; 2.153459, 2.153459, 2.153459;;, + 91;3; 2.153459, 2.153459, 2.153459;;, + 92;3; 2.153459, 2.153459, 2.153459;;, + 93;3; 2.153459, 2.153459, 2.153459;;, + 94;3; 2.153459, 2.153459, 2.153459;;, + 95;3; 2.153459, 2.153459, 2.153459;;, + 96;3; 2.153459, 2.153459, 2.153459;;, + 97;3; 2.153459, 2.153459, 2.153459;;, + 98;3; 2.153459, 2.153459, 2.153459;;, + 99;3; 2.153459, 2.153459, 2.153459;;, + 100;3; 2.153459, 2.153459, 2.153459;;, + 101;3; 2.153459, 2.153459, 2.153459;;, + 102;3; 2.153459, 2.153459, 2.153459;;, + 103;3; 2.153459, 2.153459, 2.153459;;, + 104;3; 2.153459, 2.153459, 2.153459;;, + 105;3; 2.153459, 2.153459, 2.153459;;, + 106;3; 2.153459, 2.153459, 2.153459;;, + 107;3; 2.153459, 2.153459, 2.153459;;, + 108;3; 2.153459, 2.153459, 2.153459;;, + 109;3; 2.153459, 2.153459, 2.153459;;, + 110;3; 2.153459, 2.153459, 2.153459;;, + 111;3; 2.153459, 2.153459, 2.153459;;, + 112;3; 2.153459, 2.153459, 2.153459;;, + 113;3; 2.153459, 2.153459, 2.153459;;, + 114;3; 2.153459, 2.153459, 2.153459;;, + 115;3; 2.153459, 2.153459, 2.153459;;, + 116;3; 2.153459, 2.153459, 2.153459;;, + 117;3; 2.153459, 2.153459, 2.153459;;, + 118;3; 2.153459, 2.153459, 2.153459;;, + 119;3; 2.153459, 2.153459, 2.153459;;, + 120;3; 2.153459, 2.153459, 2.153459;;, + 121;3; 2.153459, 2.153459, 2.153459;;, + 122;3; 2.153459, 2.153459, 2.153459;;, + 123;3; 2.153459, 2.153459, 2.153459;;, + 124;3; 2.153459, 2.153459, 2.153459;;, + 125;3; 2.153459, 2.153459, 2.153459;;, + 126;3; 2.153459, 2.153459, 2.153459;;, + 127;3; 2.153459, 2.153459, 2.153459;;, + 128;3; 2.153459, 2.153459, 2.153459;;, + 129;3; 2.153459, 2.153459, 2.153459;;, + 130;3; 2.153459, 2.153459, 2.153459;;, + 131;3; 2.153459, 2.153459, 2.153459;;, + 132;3; 2.153459, 2.153459, 2.153459;;, + 133;3; 2.153459, 2.153459, 2.153459;;, + 134;3; 2.153459, 2.153459, 2.153459;;, + 135;3; 2.153459, 2.153459, 2.153459;;, + 136;3; 2.153459, 2.153459, 2.153459;;, + 137;3; 2.153459, 2.153459, 2.153459;;, + 138;3; 2.153459, 2.153459, 2.153459;;, + 139;3; 2.153459, 2.153459, 2.153459;;, + 140;3; 2.153459, 2.153459, 2.153459;;, + 141;3; 2.153459, 2.153459, 2.153459;;, + 142;3; 2.153459, 2.153459, 2.153459;;, + 143;3; 2.153459, 2.153459, 2.153459;;, + 144;3; 2.153459, 2.153459, 2.153459;;, + 145;3; 2.153459, 2.153459, 2.153459;;, + 146;3; 2.153459, 2.153459, 2.153459;;, + 147;3; 2.153459, 2.153459, 2.153459;;, + 148;3; 2.153459, 2.153459, 2.153459;;, + 149;3; 2.153459, 2.153459, 2.153459;;, + 150;3; 2.153459, 2.153459, 2.153459;;, + 151;3; 2.153459, 2.153459, 2.153459;;, + 152;3; 2.153459, 2.153459, 2.153459;;, + 153;3; 2.153459, 2.153459, 2.153459;;, + 154;3; 2.153459, 2.153459, 2.153459;;, + 155;3; 2.153459, 2.153459, 2.153459;;; + } + } + Animation { + {Armature_Body} + AnimationKey { //Position + 2; + 156; + 0;3; 5.378092,-1.647068, 2.876912;;, + 1;3; 5.378092,-1.647068, 2.876912;;, + 2;3; 5.378092,-1.647068, 2.876912;;, + 3;3; 5.378092,-1.647068, 2.876912;;, + 4;3; 5.378092,-1.647068, 2.876912;;, + 5;3; 5.378092,-1.647068, 2.876912;;, + 6;3; 5.378092,-1.647068, 2.876912;;, + 7;3; 5.378092,-1.647068, 2.876912;;, + 8;3; 5.378092,-1.647068, 2.876912;;, + 9;3; 5.378092,-1.647068, 2.876912;;, + 10;3; 5.378092,-1.647068, 2.876912;;, + 11;3; 5.378092,-1.647068, 2.876912;;, + 12;3; 5.378092,-1.647068, 2.876912;;, + 13;3; 5.378092,-1.647068, 2.876912;;, + 14;3; 5.378092,-1.647068, 2.876912;;, + 15;3; 5.378092,-1.647068, 2.876912;;, + 16;3; 5.378092,-1.647068, 2.876912;;, + 17;3; 5.378092,-1.647068, 2.876912;;, + 18;3; 5.378092,-1.647068, 2.876912;;, + 19;3; 5.378092,-1.647068, 2.876912;;, + 20;3; 5.378092,-1.647068, 2.876912;;, + 21;3; 5.378092,-1.647068, 2.876912;;, + 22;3; 5.378092,-1.647068, 2.876912;;, + 23;3; 5.378092,-1.647068, 2.876912;;, + 24;3; 5.378092,-1.647068, 2.876912;;, + 25;3; 5.378092,-1.647068, 2.876912;;, + 26;3; 5.378092,-1.647068, 2.876912;;, + 27;3; 5.378092,-1.647068, 2.876912;;, + 28;3; 5.378092,-1.647068, 2.876912;;, + 29;3; 5.378092,-1.647068, 2.876912;;, + 30;3; 5.378092,-1.647068, 2.876912;;, + 31;3; 5.378092,-1.647068, 2.876912;;, + 32;3; 5.378092,-1.647068, 2.876912;;, + 33;3; 5.378092,-1.647068, 2.876912;;, + 34;3; 5.378092,-1.647068, 2.876912;;, + 35;3; 5.378092,-1.647068, 2.876912;;, + 36;3; 5.378092,-1.647068, 2.876912;;, + 37;3; 5.378092,-1.647068, 2.876912;;, + 38;3; 5.378092,-1.647068, 2.876912;;, + 39;3; 5.378092,-1.647068, 2.876912;;, + 40;3; 5.378092,-1.647068, 2.876912;;, + 41;3; 5.378092,-1.647068, 2.876912;;, + 42;3; 5.378092,-1.647068, 2.876912;;, + 43;3; 5.378092,-1.647068, 2.876912;;, + 44;3; 5.378092,-1.647068, 2.876912;;, + 45;3; 5.378092,-1.647068, 2.876912;;, + 46;3; 5.378092,-1.647068, 2.876912;;, + 47;3; 5.378092,-1.647068, 2.876912;;, + 48;3; 5.378092,-1.647068, 2.876912;;, + 49;3; 5.378092,-1.647068, 2.876912;;, + 50;3; 5.378092,-1.647068, 2.876912;;, + 51;3; 5.378092,-1.647068, 2.876912;;, + 52;3; 5.378092,-1.647068, 2.876912;;, + 53;3; 5.378092,-1.647068, 2.876912;;, + 54;3; 5.378092,-1.647068, 2.876912;;, + 55;3; 5.378092,-1.647068, 2.876912;;, + 56;3; 5.378092,-1.647068, 2.876912;;, + 57;3; 5.378092,-1.647068, 2.876912;;, + 58;3; 5.378092,-1.647068, 2.876912;;, + 59;3; 5.378092,-1.647068, 2.876912;;, + 60;3; 5.378092,-1.647068, 2.876912;;, + 61;3; 5.378092,-1.647068, 2.876912;;, + 62;3; 5.378092,-1.647068, 2.876912;;, + 63;3; 5.378092,-1.647068, 2.876912;;, + 64;3; 5.378092,-1.647068, 2.876912;;, + 65;3; 5.378092,-1.647068, 2.876912;;, + 66;3; 5.378092,-1.647068, 2.876912;;, + 67;3; 5.378092,-1.647068, 2.876912;;, + 68;3; 5.378092,-1.647068, 2.876912;;, + 69;3; 5.378092,-1.647068, 2.876912;;, + 70;3; 5.378092,-1.647068, 2.876912;;, + 71;3; 5.378092,-1.647068, 2.876912;;, + 72;3; 5.378092,-1.647068, 2.876912;;, + 73;3; 5.378092,-1.647068, 2.876912;;, + 74;3; 5.378092,-1.647068, 2.876912;;, + 75;3; 5.378092,-1.647068, 2.876912;;, + 76;3; 5.378092,-1.647068, 2.876912;;, + 77;3; 5.378092,-1.647068, 2.876912;;, + 78;3; 5.378092,-1.647068, 2.876912;;, + 79;3; 5.378092,-1.647068, 2.876912;;, + 80;3; 5.378092,-1.647068, 2.876912;;, + 81;3; 5.378092,-1.647068, 2.876912;;, + 82;3; 5.378092,-1.647068, 2.876912;;, + 83;3; 5.378092,-1.647068, 2.876912;;, + 84;3; 5.378092,-1.647068, 2.876912;;, + 85;3; 5.378092,-1.647068, 2.876912;;, + 86;3; 5.378092,-1.647068, 2.876912;;, + 87;3; 5.378092,-1.647068, 2.876912;;, + 88;3; 5.378092,-1.647068, 2.876912;;, + 89;3; 5.378092,-1.647068, 2.876912;;, + 90;3; 5.378092,-1.647068, 2.876912;;, + 91;3; 5.378092,-1.647068, 2.876912;;, + 92;3; 5.378092,-1.647068, 2.876912;;, + 93;3; 5.378092,-1.647068, 2.876912;;, + 94;3; 5.378092,-1.647068, 2.876912;;, + 95;3; 5.378092,-1.647068, 2.876912;;, + 96;3; 5.378092,-1.647068, 2.876912;;, + 97;3; 5.378092,-1.647068, 2.876912;;, + 98;3; 5.378092,-1.647068, 2.876912;;, + 99;3; 5.378092,-1.647068, 2.876912;;, + 100;3; 5.378092,-1.647068, 2.876912;;, + 101;3; 5.378092,-1.647068, 2.876912;;, + 102;3; 5.378092,-1.647068, 2.876912;;, + 103;3; 5.378092,-1.647068, 2.876912;;, + 104;3; 5.378092,-1.647068, 2.876912;;, + 105;3; 5.378092,-1.647068, 2.876912;;, + 106;3; 5.378092,-1.647068, 2.876912;;, + 107;3; 5.378092,-1.647068, 2.876912;;, + 108;3; 5.378092,-1.647068, 2.876912;;, + 109;3; 5.378092,-1.647068, 2.876912;;, + 110;3; 5.378092,-1.647068, 2.876912;;, + 111;3; 5.378092,-1.647068, 2.876912;;, + 112;3; 5.378092,-1.647068, 2.876912;;, + 113;3; 5.378092,-1.647068, 2.876912;;, + 114;3; 5.378092,-1.647068, 2.876912;;, + 115;3; 5.378092,-1.647068, 2.876912;;, + 116;3; 5.378092,-1.647068, 2.876912;;, + 117;3; 5.378092,-1.647068, 2.876912;;, + 118;3; 5.378092,-1.647068, 2.876912;;, + 119;3; 5.378092,-1.647068, 2.876912;;, + 120;3; 5.378092,-1.647068, 2.876912;;, + 121;3; 5.378092,-1.647068, 2.876912;;, + 122;3; 5.378092,-1.647068, 2.876912;;, + 123;3; 5.378092,-1.647068, 2.876912;;, + 124;3; 5.378092,-1.647068, 2.876912;;, + 125;3; 5.378092,-1.647068, 2.876912;;, + 126;3; 5.378092,-1.647068, 2.876912;;, + 127;3; 5.378092,-1.647068, 2.876912;;, + 128;3; 5.378092,-1.647068, 2.876912;;, + 129;3; 5.378092,-1.647068, 2.876912;;, + 130;3; 5.378092,-1.647068, 2.876912;;, + 131;3; 5.378092,-1.647068, 2.876912;;, + 132;3; 5.378092,-1.647068, 2.876912;;, + 133;3; 5.378092,-1.647068, 2.876912;;, + 134;3; 5.378092,-1.647068, 2.876912;;, + 135;3; 5.378092,-1.647068, 2.876912;;, + 136;3; 5.378092,-1.187825, 2.736182;;, + 137;3; 5.378092,-0.728790, 2.595572;;, + 138;3; 5.378092,-0.729070, 2.598489;;, + 139;3; 5.378092,-0.730037, 2.606928;;, + 140;3; 5.378092,-0.731865, 2.620276;;, + 141;3; 5.378092,-0.734711, 2.637750;;, + 142;3; 5.378092,-0.738697, 2.658450;;, + 143;3; 5.378092,-0.743910, 2.681418;;, + 144;3; 5.378092,-0.750400, 2.705708;;, + 145;3; 5.378092,-0.758182, 2.730444;;, + 146;3; 5.378092,-0.767245, 2.754857;;, + 147;3; 5.378092,-0.777552, 2.778308;;, + 148;3; 5.378092,-0.789052, 2.800292;;, + 149;3; 5.378092,-0.801685, 2.820429;;, + 150;3; 5.378092,-0.863997, 2.838559;;, + 151;3; 5.378092,-1.019046, 2.853992;;, + 152;3; 5.378092,-1.234415, 2.865585;;, + 153;3; 5.378092,-1.447600, 2.872756;;, + 154;3; 5.378092,-1.595927, 2.876091;;, + 155;3; 5.378092,-1.647068, 2.876912;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 1;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 2;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 3;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 4;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 5;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 6;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 7;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 8;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 9;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 10;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 11;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 12;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 13;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 14;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 15;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 16;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 17;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 18;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 19;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 20;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 21;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 22;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 23;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 24;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 25;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 26;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 27;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 28;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 29;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 30;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 31;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 32;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 33;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 34;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 35;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 36;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 37;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 38;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 39;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 40;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 41;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 42;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 43;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 44;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 45;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 46;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 47;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 48;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 49;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 50;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 51;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 52;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 53;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 54;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 55;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 56;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 57;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 58;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 59;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 60;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 61;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 62;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 63;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 64;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 65;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 66;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 67;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 68;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 69;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 70;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 71;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 72;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 73;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 74;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 75;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 76;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 77;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 78;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 79;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 80;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 81;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 82;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 83;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 84;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 85;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 86;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 87;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 88;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 89;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 90;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 91;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 92;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 93;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 94;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 95;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 96;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 97;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 98;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 99;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 100;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 101;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 102;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 103;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 104;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 105;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 106;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 107;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 108;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 109;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 110;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 111;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 112;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 113;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 114;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 115;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 116;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 117;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 118;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 119;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 120;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 121;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 122;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 123;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 124;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 125;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 126;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 127;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 128;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 129;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 130;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 131;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 132;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 133;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 134;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 135;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 136;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 137;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 138;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 139;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 140;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 141;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 142;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 143;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 144;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 145;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 146;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 147;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 148;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 149;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 150;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 151;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 152;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 153;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 154;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 155;4; -0.999132, 0.041662, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga3} + AnimationKey { //Position + 2; + 156; + 0;3; 0.618225, 0.037596,-0.622362;;, + 1;3; 0.618225, 0.037596,-0.622362;;, + 2;3; 0.618225, 0.037596,-0.622362;;, + 3;3; 0.618225, 0.037596,-0.622362;;, + 4;3; 0.618225, 0.037596,-0.622362;;, + 5;3; 0.618225, 0.037596,-0.622362;;, + 6;3; 0.618225, 0.037596,-0.622362;;, + 7;3; 0.618225, 0.037596,-0.622362;;, + 8;3; 0.618225, 0.037596,-0.622362;;, + 9;3; 0.618225, 0.037596,-0.622362;;, + 10;3; 0.618225, 0.037596,-0.622362;;, + 11;3; 0.618225, 0.037596,-0.622362;;, + 12;3; 0.618225, 0.037596,-0.622362;;, + 13;3; 0.618225, 0.037596,-0.622362;;, + 14;3; 0.618225, 0.037596,-0.622362;;, + 15;3; 0.618225, 0.037596,-0.622362;;, + 16;3; 0.618225, 0.037596,-0.622362;;, + 17;3; 0.618225, 0.037596,-0.622362;;, + 18;3; 0.618225, 0.037596,-0.622362;;, + 19;3; 0.618225, 0.037596,-0.622362;;, + 20;3; 0.618225, 0.037596,-0.622362;;, + 21;3; 0.618225, 0.037596,-0.622362;;, + 22;3; 0.618225, 0.037596,-0.622362;;, + 23;3; 0.618225, 0.037596,-0.622362;;, + 24;3; 0.618225, 0.037596,-0.622362;;, + 25;3; 0.618225, 0.037596,-0.622362;;, + 26;3; 0.618225, 0.037596,-0.622362;;, + 27;3; 0.618225, 0.037596,-0.622362;;, + 28;3; 0.618225, 0.037596,-0.622362;;, + 29;3; 0.618225, 0.037596,-0.622362;;, + 30;3; 0.618225, 0.037596,-0.622362;;, + 31;3; 0.618225, 0.037596,-0.622362;;, + 32;3; 0.618225, 0.037596,-0.622362;;, + 33;3; 0.618225, 0.037596,-0.622362;;, + 34;3; 0.618225, 0.037596,-0.622362;;, + 35;3; 0.618225, 0.037596,-0.622362;;, + 36;3; 0.618225, 0.037596,-0.622362;;, + 37;3; 0.618225, 0.037596,-0.622362;;, + 38;3; 0.618225, 0.037596,-0.622362;;, + 39;3; 0.618225, 0.037596,-0.622362;;, + 40;3; 0.618225, 0.037596,-0.622362;;, + 41;3; 0.618225, 0.037596,-0.622362;;, + 42;3; 0.618225, 0.037596,-0.622362;;, + 43;3; 0.618225, 0.037596,-0.622362;;, + 44;3; 0.618225, 0.037596,-0.622362;;, + 45;3; 0.618225, 0.037596,-0.622362;;, + 46;3; 0.618225, 0.037596,-0.622362;;, + 47;3; 0.618225, 0.037596,-0.622362;;, + 48;3; 0.618225, 0.037596,-0.622362;;, + 49;3; 0.618225, 0.037596,-0.622362;;, + 50;3; 0.618225, 0.037596,-0.622362;;, + 51;3; 0.618225, 0.037596,-0.622362;;, + 52;3; 0.618225, 0.037596,-0.622362;;, + 53;3; 0.618225, 0.037596,-0.622362;;, + 54;3; 0.618225, 0.037596,-0.622362;;, + 55;3; 0.618225, 0.037596,-0.622362;;, + 56;3; 0.618225, 0.037596,-0.622362;;, + 57;3; 0.618225, 0.037596,-0.622362;;, + 58;3; 0.618225, 0.037596,-0.622362;;, + 59;3; 0.618225, 0.037596,-0.622362;;, + 60;3; 0.618225, 0.037596,-0.622362;;, + 61;3; 0.618225, 0.037596,-0.622362;;, + 62;3; 0.618225, 0.037596,-0.622362;;, + 63;3; 0.618225, 0.037596,-0.622362;;, + 64;3; 0.618225, 0.037596,-0.622362;;, + 65;3; 0.618225, 0.037596,-0.622362;;, + 66;3; 0.618225, 0.037596,-0.622362;;, + 67;3; 0.618225, 0.037596,-0.622362;;, + 68;3; 0.618225, 0.037596,-0.622362;;, + 69;3; 0.618225, 0.037596,-0.622362;;, + 70;3; 0.618225, 0.037596,-0.622362;;, + 71;3; 0.618225, 0.037596,-0.622362;;, + 72;3; 0.618225, 0.037596,-0.622362;;, + 73;3; 0.618225, 0.037596,-0.622362;;, + 74;3; 0.618225, 0.037596,-0.622362;;, + 75;3; 0.618225, 0.037596,-0.622362;;, + 76;3; 0.618225, 0.037596,-0.622362;;, + 77;3; 0.618225, 0.037596,-0.622362;;, + 78;3; 0.618225, 0.037596,-0.622362;;, + 79;3; 0.618225, 0.037596,-0.622362;;, + 80;3; 0.618225, 0.037596,-0.622362;;, + 81;3; 0.618225, 0.037596,-0.622362;;, + 82;3; 0.618225, 0.037596,-0.622362;;, + 83;3; 0.618225, 0.037596,-0.622362;;, + 84;3; 0.618225, 0.037596,-0.622362;;, + 85;3; 0.618225, 0.037596,-0.622362;;, + 86;3; 0.618225, 0.037596,-0.622362;;, + 87;3; 0.618225, 0.037596,-0.622362;;, + 88;3; 0.618225, 0.037596,-0.622362;;, + 89;3; 0.618225, 0.037596,-0.622362;;, + 90;3; 0.618225, 0.037596,-0.622362;;, + 91;3; 0.618225, 0.037596,-0.622362;;, + 92;3; 0.618225, 0.037596,-0.622362;;, + 93;3; 0.618225, 0.037596,-0.622362;;, + 94;3; 0.618225, 0.037596,-0.622362;;, + 95;3; 0.618225, 0.037596,-0.622362;;, + 96;3; 0.618225, 0.037596,-0.622362;;, + 97;3; 0.618225, 0.037596,-0.622362;;, + 98;3; 0.618225, 0.037596,-0.622362;;, + 99;3; 0.618225, 0.037596,-0.622362;;, + 100;3; 0.618225, 0.037596,-0.622362;;, + 101;3; 0.618225, 0.037596,-0.622362;;, + 102;3; 0.618225, 0.037596,-0.622362;;, + 103;3; 0.618225, 0.037596,-0.622362;;, + 104;3; 0.618225, 0.037596,-0.622362;;, + 105;3; 0.618225, 0.037596,-0.622362;;, + 106;3; 0.618225, 0.037596,-0.622362;;, + 107;3; 0.618225, 0.037596,-0.622362;;, + 108;3; 0.618225, 0.037596,-0.622362;;, + 109;3; 0.618225, 0.037596,-0.622362;;, + 110;3; 0.618225, 0.037596,-0.622362;;, + 111;3; 0.618225, 0.037596,-0.622362;;, + 112;3; 0.618225, 0.037596,-0.622362;;, + 113;3; 0.618225, 0.037596,-0.622362;;, + 114;3; 0.618225, 0.037596,-0.622362;;, + 115;3; 0.618225, 0.037596,-0.622362;;, + 116;3; 0.618225, 0.037596,-0.622362;;, + 117;3; 0.618225, 0.037596,-0.622362;;, + 118;3; 0.618225, 0.037596,-0.622362;;, + 119;3; 0.618225, 0.037596,-0.622362;;, + 120;3; 0.618225, 0.037596,-0.622362;;, + 121;3; 0.618225, 0.037596,-0.622362;;, + 122;3; 0.618225, 0.037596,-0.622362;;, + 123;3; 0.618225, 0.037596,-0.622362;;, + 124;3; 0.618225, 0.037596,-0.622362;;, + 125;3; 0.618225, 0.037596,-0.622362;;, + 126;3; 0.618225, 0.037596,-0.622362;;, + 127;3; 0.618225, 0.037596,-0.622362;;, + 128;3; 0.618225, 0.037596,-0.622362;;, + 129;3; 0.618225, 0.037596,-0.622362;;, + 130;3; 0.618225, 0.037596,-0.622362;;, + 131;3; 0.618225, 0.037596,-0.622362;;, + 132;3; 0.618225, 0.037596,-0.622362;;, + 133;3; 0.618225, 0.037596,-0.622362;;, + 134;3; 0.618225, 0.037596,-0.622362;;, + 135;3; 0.618225, 0.037596,-0.622362;;, + 136;3; 0.618225, 0.037596,-0.622363;;, + 137;3; 0.618225, 0.037596,-0.622363;;, + 138;3; 0.618225, 0.037596,-0.622362;;, + 139;3; 0.618225, 0.037596,-0.622363;;, + 140;3; 0.618225, 0.037596,-0.622362;;, + 141;3; 0.618225, 0.037596,-0.622362;;, + 142;3; 0.618225, 0.037596,-0.622363;;, + 143;3; 0.618225, 0.037596,-0.622363;;, + 144;3; 0.618225, 0.037596,-0.622362;;, + 145;3; 0.618225, 0.037596,-0.622362;;, + 146;3; 0.618225, 0.037596,-0.622362;;, + 147;3; 0.618225, 0.037596,-0.622363;;, + 148;3; 0.618225, 0.037596,-0.622363;;, + 149;3; 0.618225, 0.037596,-0.622363;;, + 150;3; 0.618225, 0.037596,-0.622363;;, + 151;3; 0.618225, 0.037596,-0.622362;;, + 152;3; 0.618225, 0.037596,-0.622363;;, + 153;3; 0.618225, 0.037596,-0.622362;;, + 154;3; 0.618225, 0.037596,-0.622363;;, + 155;3; 0.618225, 0.037596,-0.622362;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 37;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 38;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 39;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 40;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 41;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 42;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 43;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 44;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 45;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 46;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 47;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 48;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 49;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 50;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 51;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 52;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 53;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 54;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 55;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 56;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 57;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 58;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 59;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 60;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 61;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 62;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 63;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 64;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.474286,-0.523982, 0.474286,-0.523982;;, + 78;4; -0.461337,-0.534416, 0.461337,-0.534416;;, + 79;4; -0.442723,-0.549415, 0.442723,-0.549415;;, + 80;4; -0.424110,-0.564414, 0.424110,-0.564414;;, + 81;4; -0.411163,-0.574847, 0.411163,-0.574847;;, + 82;4; -0.406714,-0.578432, 0.406714,-0.578432;;, + 83;4; -0.408802,-0.576511, 0.408802,-0.576511;;, + 84;4; -0.415106,-0.570712, 0.415106,-0.570712;;, + 85;4; -0.425500,-0.561150, 0.425500,-0.561150;;, + 86;4; -0.439529,-0.548244, 0.439529,-0.548244;;, + 87;4; -0.456329,-0.532789, 0.456329,-0.532789;;, + 88;4; -0.474639,-0.515945, 0.474639,-0.515945;;, + 89;4; -0.492950,-0.499100, 0.492950,-0.499100;;, + 90;4; -0.509750,-0.483645, 0.509750,-0.483645;;, + 91;4; -0.523779,-0.470739, 0.523779,-0.470739;;, + 92;4; -0.534173,-0.461177, 0.534173,-0.461177;;, + 93;4; -0.540477,-0.455378, 0.540477,-0.455378;;, + 94;4; -0.542565,-0.453457, 0.542565,-0.453457;;, + 95;4; -0.538622,-0.457592, 0.538622,-0.457592;;, + 96;4; -0.527147,-0.469626, 0.527147,-0.469626;;, + 97;4; -0.510651,-0.486926, 0.510651,-0.486926;;, + 98;4; -0.494154,-0.504227, 0.494154,-0.504227;;, + 99;4; -0.482678,-0.516262, 0.482678,-0.516262;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 107;4; -0.490465,-0.502499, 0.490465,-0.502499;;, + 108;4; -0.524578,-0.450433, 0.524578,-0.450433;;, + 109;4; -0.573580,-0.375622, 0.573580,-0.375622;;, + 110;4; -0.622557,-0.300834, 0.622557,-0.300834;;, + 111;4; -0.656625,-0.248811, 0.656625,-0.248810;;, + 112;4; -0.668334,-0.230932, 0.668334,-0.230932;;, + 113;4; -0.661874,-0.237181, 0.661874,-0.237181;;, + 114;4; -0.642405,-0.256080, 0.642405,-0.256080;;, + 115;4; -0.610375,-0.287321, 0.610375,-0.287321;;, + 116;4; -0.567273,-0.329627, 0.567273,-0.329627;;, + 117;4; -0.515861,-0.380508, 0.515861,-0.380508;;, + 118;4; -0.460128,-0.436291, 0.460128,-0.436291;;, + 119;4; -0.404820,-0.492536, 0.404820,-0.492536;;, + 120;4; -0.354654,-0.544771, 0.354654,-0.544771;;, + 121;4; -0.313535,-0.589233, 0.313535,-0.589233;;, + 122;4; -0.284114,-0.623311, 0.284114,-0.623311;;, + 123;4; -0.267759,-0.645594, 0.267759,-0.645594;;, + 124;4; -0.264803,-0.655652, 0.264803,-0.655652;;, + 125;4; -0.280825,-0.650350, 0.280825,-0.650350;;, + 126;4; -0.320283,-0.627132, 0.320283,-0.627132;;, + 127;4; -0.374971,-0.591542, 0.374971,-0.591542;;, + 128;4; -0.428834,-0.555035, 0.428834,-0.555035;;, + 129;4; -0.466013,-0.529303, 0.466013,-0.529303;;, + 130;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 131;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 132;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 133;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 134;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 136;4; -0.421019,-0.563519, 0.421019,-0.563519;;, + 137;4; -0.363310,-0.606635, 0.363310,-0.606635;;, + 138;4; -0.364209,-0.605990, 0.364209,-0.605990;;, + 139;4; -0.366735,-0.604180, 0.366735,-0.604180;;, + 140;4; -0.370579,-0.601425, 0.370579,-0.601425;;, + 141;4; -0.375380,-0.597985, 0.375380,-0.597985;;, + 142;4; -0.380746,-0.594141, 0.380746,-0.594141;;, + 143;4; -0.386282,-0.590175, 0.386282,-0.590175;;, + 144;4; -0.391619,-0.586352, 0.391619,-0.586352;;, + 145;4; -0.396433,-0.582903, 0.396433,-0.582903;;, + 146;4; -0.400456,-0.580021, 0.400456,-0.580021;;, + 147;4; -0.403482,-0.577853, 0.403482,-0.577853;;, + 148;4; -0.405364,-0.576505, 0.405364,-0.576505;;, + 149;4; -0.406005,-0.576046, 0.406005,-0.576046;;, + 150;4; -0.398008,-0.581360, 0.398008,-0.581360;;, + 151;4; -0.380894,-0.592732, 0.380894,-0.592732;;, + 152;4; -0.372894,-0.598048, 0.372894,-0.598048;;, + 153;4; -0.398445,-0.579305, 0.398445,-0.579305;;, + 154;4; -0.453128,-0.539191, 0.453128,-0.539191;;, + 155;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga1} + AnimationKey { //Position + 2; + 156; + 0;3; 0.618225, 3.072911,-0.875938;;, + 1;3; 0.618225, 3.072911,-0.875938;;, + 2;3; 0.618225, 3.072911,-0.875938;;, + 3;3; 0.618225, 3.072911,-0.875938;;, + 4;3; 0.618225, 3.072911,-0.875938;;, + 5;3; 0.618225, 3.072911,-0.875938;;, + 6;3; 0.618225, 3.072911,-0.875938;;, + 7;3; 0.618225, 3.072911,-0.875938;;, + 8;3; 0.618225, 3.072911,-0.875938;;, + 9;3; 0.618225, 3.072911,-0.875938;;, + 10;3; 0.618225, 3.072911,-0.875938;;, + 11;3; 0.618225, 3.072911,-0.875938;;, + 12;3; 0.618225, 3.072911,-0.875938;;, + 13;3; 0.618225, 3.072911,-0.875938;;, + 14;3; 0.618225, 3.072911,-0.875938;;, + 15;3; 0.618225, 3.072911,-0.875938;;, + 16;3; 0.618225, 3.072911,-0.875938;;, + 17;3; 0.618225, 3.072911,-0.875938;;, + 18;3; 0.618225, 3.072911,-0.875938;;, + 19;3; 0.618225, 3.072911,-0.875938;;, + 20;3; 0.618225, 3.072911,-0.875938;;, + 21;3; 0.618225, 3.072911,-0.875938;;, + 22;3; 0.618225, 3.072911,-0.875938;;, + 23;3; 0.618225, 3.072911,-0.875938;;, + 24;3; 0.618225, 3.072911,-0.875938;;, + 25;3; 0.618225, 3.072911,-0.875938;;, + 26;3; 0.618225, 3.072911,-0.875938;;, + 27;3; 0.618225, 3.072911,-0.875938;;, + 28;3; 0.618225, 3.072911,-0.875938;;, + 29;3; 0.618225, 3.072911,-0.875938;;, + 30;3; 0.618225, 3.072911,-0.875938;;, + 31;3; 0.618225, 3.072911,-0.875938;;, + 32;3; 0.618225, 3.072911,-0.875938;;, + 33;3; 0.618225, 3.072911,-0.875938;;, + 34;3; 0.618225, 3.072911,-0.875938;;, + 35;3; 0.618225, 3.072911,-0.875938;;, + 36;3; 0.618225, 3.072911,-0.875938;;, + 37;3; 0.618225, 3.072911,-0.875938;;, + 38;3; 0.618225, 3.072911,-0.875938;;, + 39;3; 0.618225, 3.072911,-0.875938;;, + 40;3; 0.618225, 3.072911,-0.875938;;, + 41;3; 0.618225, 3.072911,-0.875938;;, + 42;3; 0.618225, 3.072911,-0.875938;;, + 43;3; 0.618225, 3.072911,-0.875938;;, + 44;3; 0.618225, 3.072911,-0.875938;;, + 45;3; 0.618225, 3.072911,-0.875938;;, + 46;3; 0.618225, 3.072911,-0.875938;;, + 47;3; 0.618225, 3.072911,-0.875938;;, + 48;3; 0.618225, 3.072911,-0.875938;;, + 49;3; 0.618225, 3.072911,-0.875938;;, + 50;3; 0.618225, 3.072911,-0.875938;;, + 51;3; 0.618225, 3.072911,-0.875938;;, + 52;3; 0.618225, 3.072911,-0.875938;;, + 53;3; 0.618225, 3.072911,-0.875938;;, + 54;3; 0.618225, 3.072911,-0.875938;;, + 55;3; 0.618225, 3.072911,-0.875938;;, + 56;3; 0.618225, 3.072911,-0.875938;;, + 57;3; 0.618225, 3.072911,-0.875938;;, + 58;3; 0.618225, 3.072911,-0.875938;;, + 59;3; 0.618225, 3.072911,-0.875938;;, + 60;3; 0.618225, 3.072911,-0.875938;;, + 61;3; 0.618225, 3.072911,-0.875938;;, + 62;3; 0.618225, 3.072911,-0.875938;;, + 63;3; 0.618225, 3.072911,-0.875938;;, + 64;3; 0.618225, 3.072911,-0.875938;;, + 65;3; 0.618225, 3.072911,-0.875938;;, + 66;3; 0.618225, 3.072911,-0.875938;;, + 67;3; 0.618225, 3.072911,-0.875938;;, + 68;3; 0.618225, 3.072911,-0.875938;;, + 69;3; 0.618225, 3.072911,-0.875938;;, + 70;3; 0.618225, 3.072911,-0.875938;;, + 71;3; 0.618225, 3.072911,-0.875938;;, + 72;3; 0.618225, 3.072911,-0.875938;;, + 73;3; 0.618225, 3.072911,-0.875938;;, + 74;3; 0.618225, 3.072911,-0.875938;;, + 75;3; 0.618225, 3.072911,-0.875938;;, + 76;3; 0.618225, 3.072911,-0.875938;;, + 77;3; 0.618225, 3.072911,-0.875938;;, + 78;3; 0.618225, 3.072911,-0.875938;;, + 79;3; 0.618225, 3.072911,-0.875938;;, + 80;3; 0.618225, 3.072911,-0.875938;;, + 81;3; 0.618225, 3.072911,-0.875938;;, + 82;3; 0.618225, 3.072911,-0.875938;;, + 83;3; 0.618225, 3.072911,-0.875938;;, + 84;3; 0.618225, 3.072911,-0.875938;;, + 85;3; 0.618225, 3.072911,-0.875938;;, + 86;3; 0.618225, 3.072911,-0.875938;;, + 87;3; 0.618225, 3.072911,-0.875938;;, + 88;3; 0.618225, 3.072911,-0.875938;;, + 89;3; 0.618225, 3.072911,-0.875938;;, + 90;3; 0.618225, 3.072911,-0.875938;;, + 91;3; 0.618225, 3.072911,-0.875938;;, + 92;3; 0.618225, 3.072911,-0.875938;;, + 93;3; 0.618225, 3.072911,-0.875938;;, + 94;3; 0.618225, 3.072911,-0.875938;;, + 95;3; 0.618225, 3.072911,-0.875938;;, + 96;3; 0.618225, 3.072911,-0.875938;;, + 97;3; 0.618225, 3.072911,-0.875938;;, + 98;3; 0.618225, 3.072911,-0.875938;;, + 99;3; 0.618225, 3.072911,-0.875938;;, + 100;3; 0.618225, 3.072911,-0.875938;;, + 101;3; 0.618225, 3.072911,-0.875938;;, + 102;3; 0.618225, 3.072911,-0.875938;;, + 103;3; 0.618225, 3.072911,-0.875938;;, + 104;3; 0.618225, 3.072911,-0.875938;;, + 105;3; 0.618225, 3.072911,-0.875938;;, + 106;3; 0.618225, 3.072911,-0.875938;;, + 107;3; 0.618225, 3.072911,-0.875938;;, + 108;3; 0.618225, 3.072911,-0.875938;;, + 109;3; 0.618225, 3.072911,-0.875938;;, + 110;3; 0.618225, 3.072911,-0.875938;;, + 111;3; 0.618225, 3.072911,-0.875938;;, + 112;3; 0.618225, 3.072911,-0.875938;;, + 113;3; 0.618225, 3.072911,-0.875938;;, + 114;3; 0.618225, 3.072911,-0.875938;;, + 115;3; 0.618225, 3.072911,-0.875938;;, + 116;3; 0.618225, 3.072911,-0.875938;;, + 117;3; 0.618225, 3.072911,-0.875938;;, + 118;3; 0.618225, 3.072911,-0.875938;;, + 119;3; 0.618225, 3.072911,-0.875938;;, + 120;3; 0.618225, 3.072911,-0.875938;;, + 121;3; 0.618225, 3.072911,-0.875938;;, + 122;3; 0.618225, 3.072911,-0.875938;;, + 123;3; 0.618225, 3.072911,-0.875938;;, + 124;3; 0.618225, 3.072911,-0.875938;;, + 125;3; 0.618225, 3.072911,-0.875938;;, + 126;3; 0.618225, 3.072911,-0.875938;;, + 127;3; 0.618225, 3.072911,-0.875938;;, + 128;3; 0.618225, 3.072911,-0.875938;;, + 129;3; 0.618225, 3.072911,-0.875938;;, + 130;3; 0.618225, 3.072911,-0.875938;;, + 131;3; 0.618225, 3.072911,-0.875938;;, + 132;3; 0.618225, 3.072911,-0.875938;;, + 133;3; 0.618225, 3.072911,-0.875938;;, + 134;3; 0.618225, 3.072911,-0.875938;;, + 135;3; 0.618225, 3.072911,-0.875938;;, + 136;3; 0.618225, 3.072911,-0.875938;;, + 137;3; 0.618225, 3.072911,-0.875938;;, + 138;3; 0.618225, 3.072911,-0.875938;;, + 139;3; 0.618225, 3.072911,-0.875938;;, + 140;3; 0.618225, 3.072911,-0.875938;;, + 141;3; 0.618225, 3.072911,-0.875938;;, + 142;3; 0.618225, 3.072911,-0.875938;;, + 143;3; 0.618225, 3.072911,-0.875938;;, + 144;3; 0.618225, 3.072911,-0.875938;;, + 145;3; 0.618225, 3.072911,-0.875938;;, + 146;3; 0.618225, 3.072911,-0.875938;;, + 147;3; 0.618225, 3.072911,-0.875938;;, + 148;3; 0.618225, 3.072911,-0.875938;;, + 149;3; 0.618225, 3.072911,-0.875938;;, + 150;3; 0.618225, 3.072911,-0.875938;;, + 151;3; 0.618225, 3.072911,-0.875938;;, + 152;3; 0.618225, 3.072911,-0.875938;;, + 153;3; 0.618225, 3.072911,-0.875938;;, + 154;3; 0.618225, 3.072911,-0.875938;;, + 155;3; 0.618225, 3.072911,-0.875938;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 37;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 38;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 39;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 40;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 41;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 42;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 43;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 44;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 45;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 46;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 47;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 48;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 49;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 50;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 51;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 52;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 53;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 54;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 55;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 56;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 57;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 58;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 59;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 60;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 61;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 62;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 63;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 64;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.482678,-0.516262, 0.482678,-0.516262;;, + 78;4; -0.494154,-0.504227, 0.494154,-0.504227;;, + 79;4; -0.510651,-0.486926, 0.510651,-0.486926;;, + 80;4; -0.527147,-0.469626, 0.527147,-0.469626;;, + 81;4; -0.538622,-0.457592, 0.538622,-0.457592;;, + 82;4; -0.542565,-0.453457, 0.542565,-0.453457;;, + 83;4; -0.540477,-0.455378, 0.540477,-0.455378;;, + 84;4; -0.534173,-0.461177, 0.534173,-0.461177;;, + 85;4; -0.523779,-0.470740, 0.523779,-0.470740;;, + 86;4; -0.509749,-0.483646, 0.509749,-0.483645;;, + 87;4; -0.492950,-0.499100, 0.492950,-0.499100;;, + 88;4; -0.474639,-0.515945, 0.474639,-0.515945;;, + 89;4; -0.456329,-0.532789, 0.456329,-0.532789;;, + 90;4; -0.439529,-0.548244, 0.439529,-0.548244;;, + 91;4; -0.425500,-0.561150, 0.425500,-0.561150;;, + 92;4; -0.415106,-0.570712, 0.415106,-0.570712;;, + 93;4; -0.408802,-0.576511, 0.408802,-0.576511;;, + 94;4; -0.406714,-0.578432, 0.406714,-0.578432;;, + 95;4; -0.411163,-0.574847, 0.411163,-0.574847;;, + 96;4; -0.424110,-0.564414, 0.424110,-0.564414;;, + 97;4; -0.442723,-0.549416, 0.442723,-0.549415;;, + 98;4; -0.461337,-0.534416, 0.461337,-0.534416;;, + 99;4; -0.474286,-0.523982, 0.474286,-0.523982;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 107;4; -0.491310,-0.499783, 0.491310,-0.499783;;, + 108;4; -0.527875,-0.439824, 0.527875,-0.439824;;, + 109;4; -0.580385,-0.353680, 0.580385,-0.353680;;, + 110;4; -0.632861,-0.267568, 0.632861,-0.267568;;, + 111;4; -0.669363,-0.207667, 0.669363,-0.207667;;, + 112;4; -0.681910,-0.187081, 0.681910,-0.187081;;, + 113;4; -0.675079,-0.193992, 0.675079,-0.193992;;, + 114;4; -0.654499,-0.214898, 0.654499,-0.214898;;, + 115;4; -0.620650,-0.249464, 0.620650,-0.249464;;, + 116;4; -0.575119,-0.296284, 0.575119,-0.296284;;, + 117;4; -0.520839,-0.352614, 0.520839,-0.352614;;, + 118;4; -0.462040,-0.414402, 0.462040,-0.414402;;, + 119;4; -0.403751,-0.476744, 0.403751,-0.476744;;, + 120;4; -0.350964,-0.534697, 0.350964,-0.534697;;, + 121;4; -0.307811,-0.584103, 0.307811,-0.584103;;, + 122;4; -0.277091,-0.622069, 0.277091,-0.622069;;, + 123;4; -0.260242,-0.647032, 0.260242,-0.647032;;, + 124;4; -0.257613,-0.658510, 0.257613,-0.658510;;, + 125;4; -0.274638,-0.653639, 0.274638,-0.653639;;, + 126;4; -0.315588,-0.630125, 0.315588,-0.630124;;, + 127;4; -0.372016,-0.593669, 0.372016,-0.593669;;, + 128;4; -0.427452,-0.556114, 0.427452,-0.556114;;, + 129;4; -0.465668,-0.529588, 0.465668,-0.529588;;, + 130;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 131;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 132;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 133;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 134;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 136;4; -0.532148,-0.458394, 0.532148,-0.458394;;, + 137;4; -0.585542,-0.396409, 0.585542,-0.396409;;, + 138;4; -0.585686,-0.396666, 0.585686,-0.396666;;, + 139;4; -0.585870,-0.397588, 0.585870,-0.397588;;, + 140;4; -0.585704,-0.399404, 0.585704,-0.399404;;, + 141;4; -0.584786,-0.402326, 0.584786,-0.402326;;, + 142;4; -0.582734,-0.406537, 0.582734,-0.406537;;, + 143;4; -0.579209,-0.412177, 0.579209,-0.412177;;, + 144;4; -0.573938,-0.419337, 0.573938,-0.419337;;, + 145;4; -0.566723,-0.428060, 0.566723,-0.428060;;, + 146;4; -0.557438,-0.438344, 0.557438,-0.438344;;, + 147;4; -0.546028,-0.450151, 0.546028,-0.450151;;, + 148;4; -0.532491,-0.463419, 0.532491,-0.463419;;, + 149;4; -0.516871,-0.478066, 0.516871,-0.478066;;, + 150;4; -0.479547,-0.511265, 0.479547,-0.511265;;, + 151;4; -0.422801,-0.561035, 0.422801,-0.561035;;, + 152;4; -0.398209,-0.582521, 0.398209,-0.582521;;, + 153;4; -0.417653,-0.567522, 0.417653,-0.567522;;, + 154;4; -0.459264,-0.535421, 0.459264,-0.535421;;, + 155;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga4} + AnimationKey { //Position + 2; + 156; + 0;3; -0.648382, 0.037596,-0.622362;;, + 1;3; -0.648382, 0.037596,-0.622362;;, + 2;3; -0.648382, 0.037596,-0.622362;;, + 3;3; -0.648382, 0.037596,-0.622362;;, + 4;3; -0.648382, 0.037596,-0.622362;;, + 5;3; -0.648382, 0.037596,-0.622362;;, + 6;3; -0.648382, 0.037596,-0.622362;;, + 7;3; -0.648382, 0.037596,-0.622362;;, + 8;3; -0.648382, 0.037596,-0.622362;;, + 9;3; -0.648382, 0.037596,-0.622362;;, + 10;3; -0.648382, 0.037596,-0.622362;;, + 11;3; -0.648382, 0.037596,-0.622362;;, + 12;3; -0.648382, 0.037596,-0.622362;;, + 13;3; -0.648382, 0.037596,-0.622362;;, + 14;3; -0.648382, 0.037596,-0.622362;;, + 15;3; -0.648382, 0.037596,-0.622362;;, + 16;3; -0.648382, 0.037596,-0.622362;;, + 17;3; -0.648382, 0.037596,-0.622362;;, + 18;3; -0.648382, 0.037596,-0.622362;;, + 19;3; -0.648382, 0.037596,-0.622362;;, + 20;3; -0.648382, 0.037596,-0.622362;;, + 21;3; -0.648382, 0.037596,-0.622362;;, + 22;3; -0.648382, 0.037596,-0.622362;;, + 23;3; -0.648382, 0.037596,-0.622362;;, + 24;3; -0.648382, 0.037596,-0.622362;;, + 25;3; -0.648382, 0.037596,-0.622362;;, + 26;3; -0.648382, 0.037596,-0.622362;;, + 27;3; -0.648382, 0.037596,-0.622362;;, + 28;3; -0.648382, 0.037596,-0.622362;;, + 29;3; -0.648382, 0.037596,-0.622362;;, + 30;3; -0.648382, 0.037596,-0.622362;;, + 31;3; -0.648382, 0.037596,-0.622362;;, + 32;3; -0.648382, 0.037596,-0.622362;;, + 33;3; -0.648382, 0.037596,-0.622362;;, + 34;3; -0.648382, 0.037596,-0.622362;;, + 35;3; -0.648382, 0.037596,-0.622362;;, + 36;3; -0.648382, 0.037596,-0.622362;;, + 37;3; -0.648382, 0.037596,-0.622362;;, + 38;3; -0.648382, 0.037596,-0.622362;;, + 39;3; -0.648382, 0.037596,-0.622362;;, + 40;3; -0.648382, 0.037596,-0.622362;;, + 41;3; -0.648382, 0.037596,-0.622362;;, + 42;3; -0.648382, 0.037596,-0.622362;;, + 43;3; -0.648382, 0.037596,-0.622362;;, + 44;3; -0.648382, 0.037596,-0.622362;;, + 45;3; -0.648382, 0.037596,-0.622362;;, + 46;3; -0.648382, 0.037596,-0.622362;;, + 47;3; -0.648382, 0.037596,-0.622362;;, + 48;3; -0.648382, 0.037596,-0.622362;;, + 49;3; -0.648382, 0.037596,-0.622362;;, + 50;3; -0.648382, 0.037596,-0.622362;;, + 51;3; -0.648382, 0.037596,-0.622362;;, + 52;3; -0.648382, 0.037596,-0.622362;;, + 53;3; -0.648382, 0.037596,-0.622362;;, + 54;3; -0.648382, 0.037596,-0.622362;;, + 55;3; -0.648382, 0.037596,-0.622362;;, + 56;3; -0.648382, 0.037596,-0.622362;;, + 57;3; -0.648382, 0.037596,-0.622362;;, + 58;3; -0.648382, 0.037596,-0.622362;;, + 59;3; -0.648382, 0.037596,-0.622362;;, + 60;3; -0.648382, 0.037596,-0.622362;;, + 61;3; -0.648382, 0.037596,-0.622362;;, + 62;3; -0.648382, 0.037596,-0.622362;;, + 63;3; -0.648382, 0.037596,-0.622362;;, + 64;3; -0.648382, 0.037596,-0.622362;;, + 65;3; -0.648382, 0.037596,-0.622362;;, + 66;3; -0.648382, 0.037596,-0.622362;;, + 67;3; -0.648382, 0.037596,-0.622362;;, + 68;3; -0.648382, 0.037596,-0.622362;;, + 69;3; -0.648382, 0.037596,-0.622362;;, + 70;3; -0.648382, 0.037596,-0.622362;;, + 71;3; -0.648382, 0.037596,-0.622362;;, + 72;3; -0.648382, 0.037596,-0.622362;;, + 73;3; -0.648382, 0.037596,-0.622362;;, + 74;3; -0.648382, 0.037596,-0.622362;;, + 75;3; -0.648382, 0.037596,-0.622362;;, + 76;3; -0.648382, 0.037596,-0.622362;;, + 77;3; -0.648382, 0.037596,-0.622362;;, + 78;3; -0.648382, 0.037596,-0.622362;;, + 79;3; -0.648382, 0.037596,-0.622362;;, + 80;3; -0.648382, 0.037596,-0.622362;;, + 81;3; -0.648382, 0.037596,-0.622362;;, + 82;3; -0.648382, 0.037596,-0.622362;;, + 83;3; -0.648382, 0.037596,-0.622362;;, + 84;3; -0.648382, 0.037596,-0.622362;;, + 85;3; -0.648382, 0.037596,-0.622362;;, + 86;3; -0.648382, 0.037596,-0.622362;;, + 87;3; -0.648382, 0.037596,-0.622362;;, + 88;3; -0.648382, 0.037596,-0.622362;;, + 89;3; -0.648382, 0.037596,-0.622362;;, + 90;3; -0.648382, 0.037596,-0.622362;;, + 91;3; -0.648382, 0.037596,-0.622362;;, + 92;3; -0.648382, 0.037596,-0.622362;;, + 93;3; -0.648382, 0.037596,-0.622362;;, + 94;3; -0.648382, 0.037596,-0.622362;;, + 95;3; -0.648382, 0.037596,-0.622362;;, + 96;3; -0.648382, 0.037596,-0.622362;;, + 97;3; -0.648382, 0.037596,-0.622362;;, + 98;3; -0.648382, 0.037596,-0.622362;;, + 99;3; -0.648382, 0.037596,-0.622362;;, + 100;3; -0.648382, 0.037596,-0.622362;;, + 101;3; -0.648382, 0.037596,-0.622362;;, + 102;3; -0.648382, 0.037596,-0.622362;;, + 103;3; -0.648382, 0.037596,-0.622362;;, + 104;3; -0.648382, 0.037596,-0.622362;;, + 105;3; -0.648382, 0.037596,-0.622362;;, + 106;3; -0.648382, 0.037596,-0.622362;;, + 107;3; -0.648382, 0.037596,-0.622362;;, + 108;3; -0.648382, 0.037596,-0.622362;;, + 109;3; -0.648382, 0.037596,-0.622362;;, + 110;3; -0.648382, 0.037596,-0.622362;;, + 111;3; -0.648382, 0.037596,-0.622362;;, + 112;3; -0.648382, 0.037596,-0.622362;;, + 113;3; -0.648382, 0.037596,-0.622362;;, + 114;3; -0.648382, 0.037596,-0.622362;;, + 115;3; -0.648382, 0.037596,-0.622362;;, + 116;3; -0.648382, 0.037596,-0.622362;;, + 117;3; -0.648382, 0.037596,-0.622362;;, + 118;3; -0.648382, 0.037596,-0.622362;;, + 119;3; -0.648382, 0.037596,-0.622362;;, + 120;3; -0.648382, 0.037596,-0.622362;;, + 121;3; -0.648382, 0.037596,-0.622362;;, + 122;3; -0.648382, 0.037596,-0.622362;;, + 123;3; -0.648382, 0.037596,-0.622362;;, + 124;3; -0.648382, 0.037596,-0.622362;;, + 125;3; -0.648382, 0.037596,-0.622362;;, + 126;3; -0.648382, 0.037596,-0.622362;;, + 127;3; -0.648382, 0.037596,-0.622362;;, + 128;3; -0.648382, 0.037596,-0.622362;;, + 129;3; -0.648382, 0.037596,-0.622362;;, + 130;3; -0.648382, 0.037596,-0.622362;;, + 131;3; -0.648382, 0.037596,-0.622362;;, + 132;3; -0.648382, 0.037596,-0.622362;;, + 133;3; -0.648382, 0.037596,-0.622362;;, + 134;3; -0.648382, 0.037596,-0.622362;;, + 135;3; -0.648382, 0.037596,-0.622362;;, + 136;3; -0.648382, 0.037596,-0.622363;;, + 137;3; -0.648382, 0.037596,-0.622363;;, + 138;3; -0.648382, 0.037596,-0.622362;;, + 139;3; -0.648382, 0.037596,-0.622363;;, + 140;3; -0.648382, 0.037596,-0.622362;;, + 141;3; -0.648382, 0.037596,-0.622362;;, + 142;3; -0.648382, 0.037596,-0.622363;;, + 143;3; -0.648382, 0.037596,-0.622363;;, + 144;3; -0.648382, 0.037596,-0.622362;;, + 145;3; -0.648382, 0.037596,-0.622362;;, + 146;3; -0.648382, 0.037596,-0.622362;;, + 147;3; -0.648382, 0.037596,-0.622363;;, + 148;3; -0.648382, 0.037596,-0.622363;;, + 149;3; -0.648382, 0.037596,-0.622363;;, + 150;3; -0.648382, 0.037596,-0.622363;;, + 151;3; -0.648382, 0.037596,-0.622362;;, + 152;3; -0.648382, 0.037596,-0.622363;;, + 153;3; -0.648382, 0.037596,-0.622362;;, + 154;3; -0.648382, 0.037596,-0.622363;;, + 155;3; -0.648382, 0.037596,-0.622362;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 37;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 38;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 39;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 40;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 41;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 42;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 43;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 44;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 45;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 46;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 47;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 48;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 49;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 50;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 51;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 52;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 53;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 54;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 55;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 56;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 57;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 58;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 59;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 60;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 61;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 62;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 63;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 64;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.482678,-0.516262, 0.482678,-0.516262;;, + 78;4; -0.494154,-0.504227, 0.494154,-0.504227;;, + 79;4; -0.510651,-0.486926, 0.510651,-0.486926;;, + 80;4; -0.527147,-0.469626, 0.527147,-0.469626;;, + 81;4; -0.538622,-0.457592, 0.538622,-0.457592;;, + 82;4; -0.542565,-0.453457, 0.542565,-0.453457;;, + 83;4; -0.540477,-0.455378, 0.540477,-0.455378;;, + 84;4; -0.534173,-0.461177, 0.534173,-0.461177;;, + 85;4; -0.523779,-0.470740, 0.523779,-0.470740;;, + 86;4; -0.509749,-0.483646, 0.509749,-0.483645;;, + 87;4; -0.492950,-0.499100, 0.492950,-0.499100;;, + 88;4; -0.474639,-0.515945, 0.474639,-0.515945;;, + 89;4; -0.456329,-0.532789, 0.456329,-0.532789;;, + 90;4; -0.439529,-0.548244, 0.439529,-0.548244;;, + 91;4; -0.425500,-0.561150, 0.425500,-0.561150;;, + 92;4; -0.415106,-0.570712, 0.415106,-0.570712;;, + 93;4; -0.408802,-0.576511, 0.408802,-0.576511;;, + 94;4; -0.406714,-0.578432, 0.406714,-0.578432;;, + 95;4; -0.411163,-0.574847, 0.411163,-0.574847;;, + 96;4; -0.424110,-0.564414, 0.424110,-0.564414;;, + 97;4; -0.442723,-0.549416, 0.442723,-0.549415;;, + 98;4; -0.461337,-0.534416, 0.461337,-0.534416;;, + 99;4; -0.474286,-0.523982, 0.474286,-0.523982;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 107;4; -0.463086,-0.529658, 0.463086,-0.529658;;, + 108;4; -0.417557,-0.556598, 0.417557,-0.556598;;, + 109;4; -0.352132,-0.595304, 0.352132,-0.595304;;, + 110;4; -0.286723,-0.633995, 0.286723,-0.633995;;, + 111;4; -0.241223,-0.660908, 0.241223,-0.660908;;, + 112;4; -0.225588,-0.670157, 0.225588,-0.670157;;, + 113;4; -0.231994,-0.664266, 0.231994,-0.664266;;, + 114;4; -0.251338,-0.646487, 0.251338,-0.646487;;, + 115;4; -0.283247,-0.617183, 0.283247,-0.617183;;, + 116;4; -0.326335,-0.577654, 0.326335,-0.577654;;, + 117;4; -0.377964,-0.530352, 0.377964,-0.530352;;, + 118;4; -0.434283,-0.478850, 0.434283,-0.478850;;, + 119;4; -0.490670,-0.427420, 0.490670,-0.427420;;, + 120;4; -0.542496,-0.380332, 0.542496,-0.380332;;, + 121;4; -0.585897,-0.341144, 0.585897,-0.341144;;, + 122;4; -0.618218,-0.312288, 0.618218,-0.312288;;, + 123;4; -0.638054,-0.295043, 0.638054,-0.295043;;, + 124;4; -0.645014,-0.289754, 0.645014,-0.289754;;, + 125;4; -0.635188,-0.304482, 0.635188,-0.304482;;, + 126;4; -0.605463,-0.346110, 0.605463,-0.346110;;, + 127;4; -0.562409,-0.405604, 0.562409,-0.405604;;, + 128;4; -0.519210,-0.464968, 0.519210,-0.464968;;, + 129;4; -0.489096,-0.506226, 0.489096,-0.506226;;, + 130;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 131;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 132;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 133;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 134;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 136;4; -0.423044,-0.562297, 0.423044,-0.562297;;, + 137;4; -0.367362,-0.604190, 0.367362,-0.604190;;, + 138;4; -0.367425,-0.604203, 0.367425,-0.604203;;, + 139;4; -0.367732,-0.604136, 0.367732,-0.604136;;, + 140;4; -0.368467,-0.603827, 0.368467,-0.603826;;, + 141;4; -0.369808,-0.603107, 0.369808,-0.603107;;, + 142;4; -0.371920,-0.601824, 0.371920,-0.601824;;, + 143;4; -0.374937,-0.599842, 0.374937,-0.599842;;, + 144;4; -0.378962,-0.597057, 0.378962,-0.597057;;, + 145;4; -0.384059,-0.593396, 0.384059,-0.593396;;, + 146;4; -0.390257,-0.588817, 0.390257,-0.588817;;, + 147;4; -0.397555,-0.583306, 0.397556,-0.583306;;, + 148;4; -0.405929,-0.576873, 0.405929,-0.576872;;, + 149;4; -0.415336,-0.569543, 0.415336,-0.569543;;, + 150;4; -0.440564,-0.548042, 0.440564,-0.548042;;, + 151;4; -0.480982,-0.513021, 0.480982,-0.513021;;, + 152;4; -0.499219,-0.498090, 0.499219,-0.498090;;, + 153;4; -0.494667,-0.503910, 0.494667,-0.503910;;, + 154;4; -0.483869,-0.515211, 0.483869,-0.515211;;, + 155;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga2} + AnimationKey { //Position + 2; + 156; + 0;3; -0.648382, 3.072911,-0.875938;;, + 1;3; -0.648382, 3.072911,-0.875938;;, + 2;3; -0.648382, 3.072911,-0.875938;;, + 3;3; -0.648382, 3.072911,-0.875938;;, + 4;3; -0.648382, 3.072911,-0.875938;;, + 5;3; -0.648382, 3.072911,-0.875938;;, + 6;3; -0.648382, 3.072911,-0.875938;;, + 7;3; -0.648382, 3.072911,-0.875938;;, + 8;3; -0.648382, 3.072911,-0.875938;;, + 9;3; -0.648382, 3.072911,-0.875938;;, + 10;3; -0.648382, 3.072911,-0.875938;;, + 11;3; -0.648382, 3.072911,-0.875938;;, + 12;3; -0.648382, 3.072911,-0.875938;;, + 13;3; -0.648382, 3.072911,-0.875938;;, + 14;3; -0.648382, 3.072911,-0.875938;;, + 15;3; -0.648382, 3.072911,-0.875938;;, + 16;3; -0.648382, 3.072911,-0.875938;;, + 17;3; -0.648382, 3.072911,-0.875938;;, + 18;3; -0.648382, 3.072911,-0.875938;;, + 19;3; -0.648382, 3.072911,-0.875938;;, + 20;3; -0.648382, 3.072911,-0.875938;;, + 21;3; -0.648382, 3.072911,-0.875938;;, + 22;3; -0.648382, 3.072911,-0.875938;;, + 23;3; -0.648382, 3.072911,-0.875938;;, + 24;3; -0.648382, 3.072911,-0.875938;;, + 25;3; -0.648382, 3.072911,-0.875938;;, + 26;3; -0.648382, 3.072911,-0.875938;;, + 27;3; -0.648382, 3.072911,-0.875938;;, + 28;3; -0.648382, 3.072911,-0.875938;;, + 29;3; -0.648382, 3.072911,-0.875938;;, + 30;3; -0.648382, 3.072911,-0.875938;;, + 31;3; -0.648382, 3.072911,-0.875938;;, + 32;3; -0.648382, 3.072911,-0.875938;;, + 33;3; -0.648382, 3.072911,-0.875938;;, + 34;3; -0.648382, 3.072911,-0.875938;;, + 35;3; -0.648382, 3.072911,-0.875938;;, + 36;3; -0.648382, 3.072911,-0.875938;;, + 37;3; -0.648382, 3.072911,-0.875938;;, + 38;3; -0.648382, 3.072911,-0.875938;;, + 39;3; -0.648382, 3.072911,-0.875938;;, + 40;3; -0.648382, 3.072911,-0.875938;;, + 41;3; -0.648382, 3.072911,-0.875938;;, + 42;3; -0.648382, 3.072911,-0.875938;;, + 43;3; -0.648382, 3.072911,-0.875938;;, + 44;3; -0.648382, 3.072911,-0.875938;;, + 45;3; -0.648382, 3.072911,-0.875938;;, + 46;3; -0.648382, 3.072911,-0.875938;;, + 47;3; -0.648382, 3.072911,-0.875938;;, + 48;3; -0.648382, 3.072911,-0.875938;;, + 49;3; -0.648382, 3.072911,-0.875938;;, + 50;3; -0.648382, 3.072911,-0.875938;;, + 51;3; -0.648382, 3.072911,-0.875938;;, + 52;3; -0.648382, 3.072911,-0.875938;;, + 53;3; -0.648382, 3.072911,-0.875938;;, + 54;3; -0.648382, 3.072911,-0.875938;;, + 55;3; -0.648382, 3.072911,-0.875938;;, + 56;3; -0.648382, 3.072911,-0.875938;;, + 57;3; -0.648382, 3.072911,-0.875938;;, + 58;3; -0.648382, 3.072911,-0.875938;;, + 59;3; -0.648382, 3.072911,-0.875938;;, + 60;3; -0.648382, 3.072911,-0.875938;;, + 61;3; -0.648382, 3.072911,-0.875938;;, + 62;3; -0.648382, 3.072911,-0.875938;;, + 63;3; -0.648382, 3.072911,-0.875938;;, + 64;3; -0.648382, 3.072911,-0.875938;;, + 65;3; -0.648382, 3.072911,-0.875938;;, + 66;3; -0.648382, 3.072911,-0.875938;;, + 67;3; -0.648382, 3.072911,-0.875938;;, + 68;3; -0.648382, 3.072911,-0.875938;;, + 69;3; -0.648382, 3.072911,-0.875938;;, + 70;3; -0.648382, 3.072911,-0.875938;;, + 71;3; -0.648382, 3.072911,-0.875938;;, + 72;3; -0.648382, 3.072911,-0.875938;;, + 73;3; -0.648382, 3.072911,-0.875938;;, + 74;3; -0.648382, 3.072911,-0.875938;;, + 75;3; -0.648382, 3.072911,-0.875938;;, + 76;3; -0.648382, 3.072911,-0.875938;;, + 77;3; -0.648382, 3.072911,-0.875938;;, + 78;3; -0.648382, 3.072911,-0.875938;;, + 79;3; -0.648382, 3.072911,-0.875938;;, + 80;3; -0.648382, 3.072911,-0.875938;;, + 81;3; -0.648382, 3.072911,-0.875938;;, + 82;3; -0.648382, 3.072911,-0.875938;;, + 83;3; -0.648382, 3.072911,-0.875938;;, + 84;3; -0.648382, 3.072911,-0.875938;;, + 85;3; -0.648382, 3.072911,-0.875938;;, + 86;3; -0.648382, 3.072911,-0.875938;;, + 87;3; -0.648382, 3.072911,-0.875938;;, + 88;3; -0.648382, 3.072911,-0.875938;;, + 89;3; -0.648382, 3.072911,-0.875938;;, + 90;3; -0.648382, 3.072911,-0.875938;;, + 91;3; -0.648382, 3.072911,-0.875938;;, + 92;3; -0.648382, 3.072911,-0.875938;;, + 93;3; -0.648382, 3.072911,-0.875938;;, + 94;3; -0.648382, 3.072911,-0.875938;;, + 95;3; -0.648382, 3.072911,-0.875938;;, + 96;3; -0.648382, 3.072911,-0.875938;;, + 97;3; -0.648382, 3.072911,-0.875938;;, + 98;3; -0.648382, 3.072911,-0.875938;;, + 99;3; -0.648382, 3.072911,-0.875938;;, + 100;3; -0.648382, 3.072911,-0.875938;;, + 101;3; -0.648382, 3.072911,-0.875938;;, + 102;3; -0.648382, 3.072911,-0.875938;;, + 103;3; -0.648382, 3.072911,-0.875938;;, + 104;3; -0.648382, 3.072911,-0.875938;;, + 105;3; -0.648382, 3.072911,-0.875938;;, + 106;3; -0.648382, 3.072911,-0.875938;;, + 107;3; -0.648382, 3.072911,-0.875938;;, + 108;3; -0.648382, 3.072911,-0.875938;;, + 109;3; -0.648382, 3.072911,-0.875938;;, + 110;3; -0.648382, 3.072911,-0.875938;;, + 111;3; -0.648382, 3.072911,-0.875938;;, + 112;3; -0.648382, 3.072911,-0.875938;;, + 113;3; -0.648382, 3.072911,-0.875938;;, + 114;3; -0.648382, 3.072911,-0.875938;;, + 115;3; -0.648382, 3.072911,-0.875938;;, + 116;3; -0.648382, 3.072911,-0.875938;;, + 117;3; -0.648382, 3.072911,-0.875938;;, + 118;3; -0.648382, 3.072911,-0.875938;;, + 119;3; -0.648382, 3.072911,-0.875938;;, + 120;3; -0.648382, 3.072911,-0.875938;;, + 121;3; -0.648382, 3.072911,-0.875938;;, + 122;3; -0.648382, 3.072911,-0.875938;;, + 123;3; -0.648382, 3.072911,-0.875938;;, + 124;3; -0.648382, 3.072911,-0.875938;;, + 125;3; -0.648382, 3.072911,-0.875938;;, + 126;3; -0.648382, 3.072911,-0.875938;;, + 127;3; -0.648382, 3.072911,-0.875938;;, + 128;3; -0.648382, 3.072911,-0.875938;;, + 129;3; -0.648382, 3.072911,-0.875938;;, + 130;3; -0.648382, 3.072911,-0.875938;;, + 131;3; -0.648382, 3.072911,-0.875938;;, + 132;3; -0.648382, 3.072911,-0.875938;;, + 133;3; -0.648382, 3.072911,-0.875938;;, + 134;3; -0.648382, 3.072911,-0.875938;;, + 135;3; -0.648382, 3.072911,-0.875938;;, + 136;3; -0.648382, 3.072911,-0.875938;;, + 137;3; -0.648382, 3.072911,-0.875938;;, + 138;3; -0.648382, 3.072911,-0.875938;;, + 139;3; -0.648382, 3.072911,-0.875938;;, + 140;3; -0.648382, 3.072911,-0.875938;;, + 141;3; -0.648382, 3.072911,-0.875938;;, + 142;3; -0.648382, 3.072911,-0.875938;;, + 143;3; -0.648382, 3.072911,-0.875938;;, + 144;3; -0.648382, 3.072911,-0.875938;;, + 145;3; -0.648382, 3.072911,-0.875938;;, + 146;3; -0.648382, 3.072911,-0.875938;;, + 147;3; -0.648382, 3.072911,-0.875938;;, + 148;3; -0.648382, 3.072911,-0.875938;;, + 149;3; -0.648382, 3.072911,-0.875938;;, + 150;3; -0.648382, 3.072911,-0.875938;;, + 151;3; -0.648382, 3.072911,-0.875938;;, + 152;3; -0.648382, 3.072911,-0.875938;;, + 153;3; -0.648382, 3.072911,-0.875938;;, + 154;3; -0.648382, 3.072911,-0.875938;;, + 155;3; -0.648382, 3.072911,-0.875938;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 37;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 38;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 39;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 40;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 41;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 42;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 43;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 44;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 45;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 46;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 47;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 48;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 49;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 50;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 51;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 52;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 53;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 54;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 55;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 56;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 57;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 58;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 59;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 60;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 61;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 62;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 63;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 64;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.474286,-0.523982, 0.474286,-0.523982;;, + 78;4; -0.461337,-0.534416, 0.461337,-0.534416;;, + 79;4; -0.442723,-0.549415, 0.442723,-0.549415;;, + 80;4; -0.424110,-0.564414, 0.424110,-0.564414;;, + 81;4; -0.411163,-0.574847, 0.411163,-0.574847;;, + 82;4; -0.406714,-0.578432, 0.406714,-0.578432;;, + 83;4; -0.408802,-0.576511, 0.408802,-0.576511;;, + 84;4; -0.415106,-0.570712, 0.415106,-0.570712;;, + 85;4; -0.425500,-0.561150, 0.425500,-0.561150;;, + 86;4; -0.439529,-0.548244, 0.439529,-0.548244;;, + 87;4; -0.456329,-0.532789, 0.456329,-0.532789;;, + 88;4; -0.474639,-0.515945, 0.474639,-0.515945;;, + 89;4; -0.492950,-0.499100, 0.492950,-0.499100;;, + 90;4; -0.509750,-0.483645, 0.509750,-0.483645;;, + 91;4; -0.523779,-0.470739, 0.523779,-0.470739;;, + 92;4; -0.534173,-0.461177, 0.534173,-0.461177;;, + 93;4; -0.540477,-0.455378, 0.540477,-0.455378;;, + 94;4; -0.542565,-0.453457, 0.542565,-0.453457;;, + 95;4; -0.538622,-0.457592, 0.538622,-0.457592;;, + 96;4; -0.527147,-0.469626, 0.527147,-0.469626;;, + 97;4; -0.510651,-0.486926, 0.510651,-0.486926;;, + 98;4; -0.494154,-0.504227, 0.494154,-0.504227;;, + 99;4; -0.482678,-0.516262, 0.482678,-0.516262;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 107;4; -0.459849,-0.531450, 0.459849,-0.531450;;, + 108;4; -0.404704,-0.563369, 0.404704,-0.563369;;, + 109;4; -0.324936,-0.608630, 0.324936,-0.608630;;, + 110;4; -0.244150,-0.652732, 0.244150,-0.652732;;, + 111;4; -0.186185,-0.681484, 0.186185,-0.681484;;, + 112;4; -0.163186,-0.688019, 0.163186,-0.688019;;, + 113;4; -0.167199,-0.675519, 0.167199,-0.675519;;, + 114;4; -0.188605,-0.647883, 0.188605,-0.647883;;, + 115;4; -0.226968,-0.605645, 0.226968,-0.605645;;, + 116;4; -0.280509,-0.550553, 0.280509,-0.550553;;, + 117;4; -0.345782,-0.485840, 0.345782,-0.485840;;, + 118;4; -0.417713,-0.416166, 0.417713,-0.416166;;, + 119;4; -0.490176,-0.347070, 0.490176,-0.347070;;, + 120;4; -0.557006,-0.284050, 0.557006,-0.284050;;, + 121;4; -0.613026,-0.231653, 0.613026,-0.231653;;, + 122;4; -0.654651,-0.192961, 0.654651,-0.192961;;, + 123;4; -0.679949,-0.169555, 0.679949,-0.169555;;, + 124;4; -0.688343,-0.161817, 0.688343,-0.161817;;, + 125;4; -0.675400,-0.183963, 0.675400,-0.183963;;, + 126;4; -0.637747,-0.248401, 0.637747,-0.248401;;, + 127;4; -0.583614,-0.341036, 0.583614,-0.341036;;, + 128;4; -0.529441,-0.433709, 0.529441,-0.433709;;, + 129;4; -0.491712,-0.498218, 0.491712,-0.498218;;, + 130;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 131;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 132;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 133;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 134;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 136;4; -0.536290,-0.452136, 0.536290,-0.452136;;, + 137;4; -0.593818,-0.383901, 0.593818,-0.383901;;, + 138;4; -0.592025,-0.386049, 0.592025,-0.386049;;, + 139;4; -0.586989,-0.392082, 0.586989,-0.392082;;, + 140;4; -0.579326,-0.401264, 0.579326,-0.401264;;, + 141;4; -0.569759,-0.412729, 0.569759,-0.412729;;, + 142;4; -0.559069,-0.425541, 0.559069,-0.425541;;, + 143;4; -0.548041,-0.438760, 0.548041,-0.438760;;, + 144;4; -0.537411,-0.451504, 0.537411,-0.451504;;, + 145;4; -0.527823,-0.462997, 0.527823,-0.462997;;, + 146;4; -0.519810,-0.472602, 0.519810,-0.472602;;, + 147;4; -0.513782,-0.479828, 0.513782,-0.479828;;, + 148;4; -0.510034,-0.484321, 0.510034,-0.484321;;, + 149;4; -0.508756,-0.485852, 0.508756,-0.485852;;, + 150;4; -0.520938,-0.472488, 0.520938,-0.472488;;, + 151;4; -0.547004,-0.443890, 0.547004,-0.443890;;, + 152;4; -0.559186,-0.430525, 0.559186,-0.430525;;, + 153;4; -0.539768,-0.452220, 0.539768,-0.452220;;, + 154;4; -0.498201,-0.498658, 0.498201,-0.498657;;, + 155;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_hvost} + AnimationKey { //Position + 2; + 156; + 0;3; 0.000000,-0.295864,-0.017687;;, + 1;3; 0.000000,-0.295864,-0.017687;;, + 2;3; 0.000000,-0.295864,-0.017687;;, + 3;3; 0.000000,-0.295864,-0.017687;;, + 4;3; 0.000000,-0.295864,-0.017687;;, + 5;3; 0.000000,-0.295864,-0.017687;;, + 6;3; 0.000000,-0.295864,-0.017687;;, + 7;3; 0.000000,-0.295864,-0.017687;;, + 8;3; 0.000000,-0.295864,-0.017687;;, + 9;3; 0.000000,-0.295864,-0.017687;;, + 10;3; 0.000000,-0.295864,-0.017687;;, + 11;3; 0.000000,-0.295864,-0.017687;;, + 12;3; 0.000000,-0.295864,-0.017687;;, + 13;3; 0.000000,-0.295864,-0.017687;;, + 14;3; 0.000000,-0.295864,-0.017687;;, + 15;3; 0.000000,-0.295864,-0.017687;;, + 16;3; 0.000000,-0.295864,-0.017687;;, + 17;3; 0.000000,-0.295864,-0.017687;;, + 18;3; 0.000000,-0.295864,-0.017687;;, + 19;3; 0.000000,-0.295864,-0.017687;;, + 20;3; 0.000000,-0.295864,-0.017687;;, + 21;3; 0.000000,-0.295864,-0.017687;;, + 22;3; 0.000000,-0.295864,-0.017687;;, + 23;3; 0.000000,-0.295864,-0.017687;;, + 24;3; 0.000000,-0.295864,-0.017687;;, + 25;3; 0.000000,-0.295864,-0.017687;;, + 26;3; 0.000000,-0.295864,-0.017687;;, + 27;3; 0.000000,-0.295864,-0.017687;;, + 28;3; 0.000000,-0.295864,-0.017687;;, + 29;3; 0.000000,-0.295864,-0.017687;;, + 30;3; 0.000000,-0.295864,-0.017687;;, + 31;3; 0.000000,-0.295864,-0.017687;;, + 32;3; 0.000000,-0.295864,-0.017687;;, + 33;3; 0.000000,-0.295864,-0.017687;;, + 34;3; 0.000000,-0.295864,-0.017687;;, + 35;3; 0.000000,-0.295864,-0.017687;;, + 36;3; 0.000000,-0.295864,-0.017687;;, + 37;3; 0.000000,-0.295864,-0.017687;;, + 38;3; 0.000000,-0.295864,-0.017687;;, + 39;3; 0.000000,-0.295864,-0.017687;;, + 40;3; 0.000000,-0.295864,-0.017687;;, + 41;3; 0.000000,-0.295864,-0.017687;;, + 42;3; 0.000000,-0.295864,-0.017687;;, + 43;3; 0.000000,-0.295864,-0.017687;;, + 44;3; 0.000000,-0.295864,-0.017687;;, + 45;3; 0.000000,-0.295864,-0.017687;;, + 46;3; 0.000000,-0.295864,-0.017687;;, + 47;3; 0.000000,-0.295864,-0.017687;;, + 48;3; 0.000000,-0.295864,-0.017687;;, + 49;3; 0.000000,-0.295864,-0.017687;;, + 50;3; 0.000000,-0.295864,-0.017687;;, + 51;3; 0.000000,-0.295864,-0.017687;;, + 52;3; 0.000000,-0.295864,-0.017687;;, + 53;3; 0.000000,-0.295864,-0.017687;;, + 54;3; 0.000000,-0.295864,-0.017687;;, + 55;3; 0.000000,-0.295864,-0.017687;;, + 56;3; 0.000000,-0.295864,-0.017687;;, + 57;3; 0.000000,-0.295864,-0.017687;;, + 58;3; 0.000000,-0.295864,-0.017687;;, + 59;3; 0.000000,-0.295864,-0.017687;;, + 60;3; 0.000000,-0.295864,-0.017687;;, + 61;3; 0.000000,-0.295864,-0.017687;;, + 62;3; 0.000000,-0.295864,-0.017687;;, + 63;3; 0.000000,-0.295864,-0.017687;;, + 64;3; 0.000000,-0.295864,-0.017687;;, + 65;3; 0.000000,-0.295864,-0.017687;;, + 66;3; 0.000000,-0.295864,-0.017687;;, + 67;3; 0.000000,-0.295864,-0.017687;;, + 68;3; 0.000000,-0.295864,-0.017687;;, + 69;3; 0.000000,-0.295864,-0.017687;;, + 70;3; 0.000000,-0.295864,-0.017687;;, + 71;3; 0.000000,-0.295864,-0.017687;;, + 72;3; 0.000000,-0.295864,-0.017687;;, + 73;3; 0.000000,-0.295864,-0.017687;;, + 74;3; 0.000000,-0.295864,-0.017687;;, + 75;3; 0.000000,-0.295864,-0.017687;;, + 76;3; 0.000000,-0.295864,-0.017687;;, + 77;3; 0.000000,-0.295864,-0.017687;;, + 78;3; 0.000000,-0.295864,-0.017687;;, + 79;3; 0.000000,-0.295864,-0.017687;;, + 80;3; 0.000000,-0.295864,-0.017687;;, + 81;3; 0.000000,-0.295864,-0.017687;;, + 82;3; 0.000000,-0.295864,-0.017687;;, + 83;3; 0.000000,-0.295864,-0.017687;;, + 84;3; 0.000000,-0.295864,-0.017687;;, + 85;3; 0.000000,-0.295864,-0.017687;;, + 86;3; 0.000000,-0.295864,-0.017687;;, + 87;3; 0.000000,-0.295864,-0.017687;;, + 88;3; 0.000000,-0.295864,-0.017687;;, + 89;3; 0.000000,-0.295864,-0.017687;;, + 90;3; 0.000000,-0.295864,-0.017687;;, + 91;3; 0.000000,-0.295864,-0.017687;;, + 92;3; 0.000000,-0.295864,-0.017687;;, + 93;3; 0.000000,-0.295864,-0.017687;;, + 94;3; 0.000000,-0.295864,-0.017687;;, + 95;3; 0.000000,-0.295864,-0.017687;;, + 96;3; 0.000000,-0.295864,-0.017687;;, + 97;3; 0.000000,-0.295864,-0.017687;;, + 98;3; 0.000000,-0.295864,-0.017687;;, + 99;3; 0.000000,-0.295864,-0.017687;;, + 100;3; 0.000000,-0.295864,-0.017687;;, + 101;3; 0.000000,-0.295864,-0.017687;;, + 102;3; 0.000000,-0.295864,-0.017687;;, + 103;3; 0.000000,-0.295864,-0.017687;;, + 104;3; 0.000000,-0.295864,-0.017687;;, + 105;3; 0.000000,-0.295864,-0.017687;;, + 106;3; 0.000000,-0.295864,-0.017687;;, + 107;3; 0.000000,-0.295864,-0.017687;;, + 108;3; 0.000000,-0.295864,-0.017687;;, + 109;3; 0.000000,-0.295864,-0.017687;;, + 110;3; 0.000000,-0.295864,-0.017687;;, + 111;3; 0.000000,-0.295864,-0.017687;;, + 112;3; 0.000000,-0.295864,-0.017687;;, + 113;3; 0.000000,-0.295864,-0.017687;;, + 114;3; 0.000000,-0.295864,-0.017687;;, + 115;3; 0.000000,-0.295864,-0.017687;;, + 116;3; 0.000000,-0.295864,-0.017687;;, + 117;3; 0.000000,-0.295864,-0.017687;;, + 118;3; 0.000000,-0.295864,-0.017687;;, + 119;3; 0.000000,-0.295864,-0.017687;;, + 120;3; 0.000000,-0.295864,-0.017687;;, + 121;3; 0.000000,-0.295864,-0.017687;;, + 122;3; 0.000000,-0.295864,-0.017687;;, + 123;3; 0.000000,-0.295864,-0.017687;;, + 124;3; 0.000000,-0.295864,-0.017687;;, + 125;3; 0.000000,-0.295864,-0.017687;;, + 126;3; 0.000000,-0.295864,-0.017687;;, + 127;3; 0.000000,-0.295864,-0.017687;;, + 128;3; 0.000000,-0.295864,-0.017687;;, + 129;3; 0.000000,-0.295864,-0.017687;;, + 130;3; 0.000000,-0.295864,-0.017687;;, + 131;3; 0.000000,-0.295864,-0.017687;;, + 132;3; 0.000000,-0.295864,-0.017687;;, + 133;3; 0.000000,-0.295864,-0.017687;;, + 134;3; 0.000000,-0.295864,-0.017687;;, + 135;3; 0.000000,-0.295864,-0.017687;;, + 136;3; 0.000000,-0.295864,-0.017687;;, + 137;3; 0.000000,-0.295864,-0.017687;;, + 138;3; 0.000000,-0.295864,-0.017687;;, + 139;3; 0.000000,-0.295864,-0.017687;;, + 140;3; 0.000000,-0.295864,-0.017687;;, + 141;3; 0.000000,-0.295864,-0.017687;;, + 142;3; 0.000000,-0.295864,-0.017687;;, + 143;3; 0.000000,-0.295864,-0.017687;;, + 144;3; 0.000000,-0.295864,-0.017687;;, + 145;3; 0.000000,-0.295864,-0.017687;;, + 146;3; 0.000000,-0.295864,-0.017687;;, + 147;3; 0.000000,-0.295864,-0.017687;;, + 148;3; 0.000000,-0.295864,-0.017687;;, + 149;3; 0.000000,-0.295864,-0.017687;;, + 150;3; 0.000000,-0.295864,-0.017687;;, + 151;3; 0.000000,-0.295864,-0.017687;;, + 152;3; 0.000000,-0.295864,-0.017687;;, + 153;3; 0.000000,-0.295864,-0.017687;;, + 154;3; 0.000000,-0.295864,-0.017687;;, + 155;3; 0.000000,-0.295864,-0.017687;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 1;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 2;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 3;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 4;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 5;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 6;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 7;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 8;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 9;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 10;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 11;4; -0.487739,-0.870622, 0.021531, 0.023041;;, + 12;4; -0.485578,-0.866764, 0.067591, 0.072336;;, + 13;4; -0.484568,-0.864961, 0.089115, 0.095371;;, + 14;4; -0.484568,-0.864961, 0.078105, 0.083589;;, + 15;4; -0.484568,-0.864961, 0.046063, 0.049297;;, + 16;4; -0.484568,-0.864961, 0.000000, 0.000000;;, + 17;4; -0.484568,-0.864961,-0.046062,-0.049296;;, + 18;4; -0.484568,-0.864961,-0.078105,-0.083588;;, + 19;4; -0.484568,-0.864961,-0.089115,-0.095371;;, + 20;4; -0.485505,-0.866634,-0.063411,-0.066145;;, + 21;4; -0.487527,-0.870243,-0.008405,-0.003602;;, + 22;4; -0.488515,-0.872007, 0.017311, 0.025632;;, + 23;4; -0.488578,-0.872119, 0.016836, 0.024930;;, + 24;4; -0.488632,-0.872216, 0.015413, 0.022823;;, + 25;4; -0.488675,-0.872293, 0.013128, 0.019440;;, + 26;4; -0.488708,-0.872351, 0.010222, 0.015137;;, + 27;4; -0.488729,-0.872389, 0.007087, 0.010495;;, + 28;4; -0.488741,-0.872411, 0.004182, 0.006192;;, + 29;4; -0.488747,-0.872421, 0.001897, 0.002809;;, + 30;4; -0.488749,-0.872424, 0.000474, 0.000702;;, + 31;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 32;4; -0.487739,-0.870622, 0.021530, 0.023040;;, + 33;4; -0.485578,-0.866764, 0.067591, 0.072335;;, + 34;4; -0.484568,-0.864961, 0.089115, 0.095371;;, + 35;4; -0.484568,-0.864961, 0.078105, 0.083589;;, + 36;4; -0.484568,-0.864961, 0.046063, 0.049297;;, + 37;4; -0.484568,-0.864961,-0.000000, 0.000000;;, + 38;4; -0.484568,-0.864961,-0.046063,-0.049297;;, + 39;4; -0.484568,-0.864961,-0.078105,-0.083589;;, + 40;4; -0.484568,-0.864961,-0.089115,-0.095371;;, + 41;4; -0.485578,-0.866764,-0.067592,-0.072335;;, + 42;4; -0.487739,-0.870622,-0.021532,-0.023040;;, + 43;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 44;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 45;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 46;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 47;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 48;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 49;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 50;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 51;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 52;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 53;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 54;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 55;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 56;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 57;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 58;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 59;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 60;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 61;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 62;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 63;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 64;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 65;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 66;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 67;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 68;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 69;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 70;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 71;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 72;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 73;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 74;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 75;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 76;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 77;4; -0.475808,-0.877594,-0.000049,-0.000523;;, + 78;4; -0.436940,-0.893029,-0.000173,-0.002149;;, + 79;4; -0.377893,-0.916244,-0.000300,-0.004762;;, + 80;4; -0.312673,-0.941466,-0.000330,-0.007910;;, + 81;4; -0.256835,-0.962415,-0.000187,-0.011003;;, + 82;4; -0.219444,-0.975530, 0.000150,-0.013640;;, + 83;4; -0.193318,-0.983639, 0.000681,-0.016160;;, + 84;4; -0.169382,-0.990265, 0.001418,-0.019016;;, + 85;4; -0.148030,-0.995304, 0.002349,-0.022159;;, + 86;4; -0.129628,-0.998721, 0.003440,-0.025501;;, + 87;4; -0.114440,-1.000587, 0.004639,-0.028910;;, + 88;4; -0.102546,-1.001108, 0.005873,-0.032223;;, + 89;4; -0.093793,-1.000608, 0.007057,-0.035264;;, + 90;4; -0.087804,-0.999487, 0.008111,-0.037878;;, + 91;4; -0.084054,-0.998144, 0.008972,-0.039952;;, + 92;4; -0.081975,-0.996922, 0.009598,-0.041429;;, + 93;4; -0.081039,-0.996075, 0.009973,-0.042296;;, + 94;4; -0.080808,-0.995769, 0.010096,-0.042576;;, + 95;4; -0.106019,-0.988144, 0.009473,-0.039946;;, + 96;4; -0.179360,-0.965968, 0.007657,-0.032292;;, + 97;4; -0.284763,-0.934105, 0.005048,-0.021288;;, + 98;4; -0.390175,-0.902238, 0.002439,-0.010284;;, + 99;4; -0.463531,-0.880054, 0.000624,-0.002630;;, + 100;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 101;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 102;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 103;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 104;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 105;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 106;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 107;4; -0.475808,-0.877594,-0.000049,-0.000523;;, + 108;4; -0.436940,-0.893029,-0.000173,-0.002149;;, + 109;4; -0.377893,-0.916244,-0.000300,-0.004762;;, + 110;4; -0.312673,-0.941466,-0.000330,-0.007910;;, + 111;4; -0.256835,-0.962415,-0.000187,-0.011003;;, + 112;4; -0.219444,-0.975530, 0.000150,-0.013640;;, + 113;4; -0.193318,-0.983639, 0.000681,-0.016160;;, + 114;4; -0.169382,-0.990265, 0.001418,-0.019016;;, + 115;4; -0.148030,-0.995304, 0.002349,-0.022159;;, + 116;4; -0.129628,-0.998721, 0.003440,-0.025501;;, + 117;4; -0.114440,-1.000587, 0.004639,-0.028910;;, + 118;4; -0.102546,-1.001108, 0.005873,-0.032223;;, + 119;4; -0.093793,-1.000608, 0.007057,-0.035264;;, + 120;4; -0.087804,-0.999487, 0.008111,-0.037878;;, + 121;4; -0.084054,-0.998144, 0.008972,-0.039952;;, + 122;4; -0.081975,-0.996922, 0.009598,-0.041429;;, + 123;4; -0.081039,-0.996075, 0.009973,-0.042296;;, + 124;4; -0.080808,-0.995769, 0.010096,-0.042576;;, + 125;4; -0.106019,-0.988144, 0.009473,-0.039946;;, + 126;4; -0.179360,-0.965968, 0.007657,-0.032292;;, + 127;4; -0.284763,-0.934105, 0.005048,-0.021288;;, + 128;4; -0.390175,-0.902238, 0.002439,-0.010284;;, + 129;4; -0.463531,-0.880054, 0.000624,-0.002630;;, + 130;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 131;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 132;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 133;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 134;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 135;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 136;4; -0.069762,-0.905220,-0.000000, 0.000000;;, + 137;4; 0.348011,-0.937491, 0.000000, 0.000000;;, + 138;4; 0.332428,-0.936184, 0.000000, 0.000000;;, + 139;4; 0.294691,-0.933103, 0.000000, 0.000000;;, + 140;4; 0.243447,-0.929002, 0.000000, 0.000000;;, + 141;4; 0.183838,-0.924297, 0.000000, 0.000000;;, + 142;4; 0.119262,-0.919250, 0.000000, 0.000000;;, + 143;4; 0.052141,-0.914041, 0.000000, 0.000000;;, + 144;4; -0.015689,-0.908803,-0.000000, 0.000000;;, + 145;4; -0.082761,-0.903642,-0.000000, 0.000000;;, + 146;4; -0.147851,-0.898644,-0.000000, 0.000000;;, + 147;4; -0.209896,-0.893885,-0.000000, 0.000000;;, + 148;4; -0.267935,-0.889435,-0.000000, 0.000000;;, + 149;4; -0.321076,-0.885358,-0.000000, 0.000000;;, + 150;4; -0.368460,-0.881718,-0.000000, 0.000000;;, + 151;4; -0.409240,-0.878580,-0.000000, 0.000000;;, + 152;4; -0.442564,-0.876008,-0.000000, 0.000000;;, + 153;4; -0.467550,-0.874074,-0.000000, 0.000000;;, + 154;4; -0.483275,-0.872852,-0.000000, 0.000000;;, + 155;4; -0.488749,-0.872425,-0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_sheya} + AnimationKey { //Position + 2; + 156; + 0;3; 0.000000, 3.260104, 0.242284;;, + 1;3; 0.000000, 3.260104, 0.242284;;, + 2;3; 0.000000, 3.260104, 0.242284;;, + 3;3; 0.000000, 3.260104, 0.242284;;, + 4;3; 0.000000, 3.260104, 0.242284;;, + 5;3; 0.000000, 3.260104, 0.242284;;, + 6;3; 0.000000, 3.260104, 0.242284;;, + 7;3; 0.000000, 3.260104, 0.242284;;, + 8;3; 0.000000, 3.260104, 0.242284;;, + 9;3; 0.000000, 3.260104, 0.242284;;, + 10;3; 0.000000, 3.260104, 0.242284;;, + 11;3; 0.000000, 3.260104, 0.242284;;, + 12;3; 0.000000, 3.260104, 0.242284;;, + 13;3; 0.000000, 3.260104, 0.242284;;, + 14;3; 0.000000, 3.260104, 0.242284;;, + 15;3; 0.000000, 3.260104, 0.242284;;, + 16;3; 0.000000, 3.260104, 0.242284;;, + 17;3; 0.000000, 3.260104, 0.242284;;, + 18;3; 0.000000, 3.260104, 0.242284;;, + 19;3; 0.000000, 3.260104, 0.242284;;, + 20;3; 0.000000, 3.260104, 0.242284;;, + 21;3; 0.000000, 3.260104, 0.242284;;, + 22;3; 0.000000, 3.260104, 0.242284;;, + 23;3; 0.000000, 3.260104, 0.242284;;, + 24;3; 0.000000, 3.260104, 0.242284;;, + 25;3; 0.000000, 3.260104, 0.242284;;, + 26;3; 0.000000, 3.260104, 0.242284;;, + 27;3; 0.000000, 3.260104, 0.242284;;, + 28;3; 0.000000, 3.260104, 0.242284;;, + 29;3; 0.000000, 3.260104, 0.242284;;, + 30;3; 0.000000, 3.260104, 0.242284;;, + 31;3; 0.000000, 3.260104, 0.242284;;, + 32;3; 0.000000, 3.260104, 0.242284;;, + 33;3; 0.000000, 3.260104, 0.242284;;, + 34;3; 0.000000, 3.260104, 0.242284;;, + 35;3; 0.000000, 3.260104, 0.242284;;, + 36;3; 0.000000, 3.260104, 0.242284;;, + 37;3; 0.000000, 3.260104, 0.242284;;, + 38;3; 0.000000, 3.260104, 0.242284;;, + 39;3; 0.000000, 3.260104, 0.242284;;, + 40;3; 0.000000, 3.260104, 0.242284;;, + 41;3; 0.000000, 3.260104, 0.242284;;, + 42;3; 0.000000, 3.260104, 0.242284;;, + 43;3; 0.000000, 3.260104, 0.242284;;, + 44;3; 0.000000, 3.260104, 0.242284;;, + 45;3; 0.000000, 3.260104, 0.242284;;, + 46;3; 0.000000, 3.260104, 0.242284;;, + 47;3; 0.000000, 3.260104, 0.242284;;, + 48;3; 0.000000, 3.260104, 0.242284;;, + 49;3; 0.000000, 3.260104, 0.242284;;, + 50;3; 0.000000, 3.260104, 0.242284;;, + 51;3; 0.000000, 3.260104, 0.242284;;, + 52;3; 0.000000, 3.260104, 0.242284;;, + 53;3; 0.000000, 3.260104, 0.242284;;, + 54;3; 0.000000, 3.260104, 0.242284;;, + 55;3; 0.000000, 3.260104, 0.242284;;, + 56;3; 0.000000, 3.260104, 0.242284;;, + 57;3; 0.000000, 3.260104, 0.242284;;, + 58;3; 0.000000, 3.260104, 0.242284;;, + 59;3; 0.000000, 3.260104, 0.242284;;, + 60;3; 0.000000, 3.260104, 0.242284;;, + 61;3; 0.000000, 3.260104, 0.242284;;, + 62;3; 0.000000, 3.260104, 0.242284;;, + 63;3; 0.000000, 3.260104, 0.242284;;, + 64;3; 0.000000, 3.260104, 0.242284;;, + 65;3; 0.000000, 3.260104, 0.242284;;, + 66;3; 0.000000, 3.260104, 0.242284;;, + 67;3; 0.000000, 3.260104, 0.242284;;, + 68;3; 0.000000, 3.260104, 0.242284;;, + 69;3; 0.000000, 3.260104, 0.242284;;, + 70;3; 0.000000, 3.260104, 0.242284;;, + 71;3; 0.000000, 3.260104, 0.242284;;, + 72;3; 0.000000, 3.260104, 0.242284;;, + 73;3; 0.000000, 3.260104, 0.242284;;, + 74;3; 0.000000, 3.260104, 0.242284;;, + 75;3; 0.000000, 3.260104, 0.242284;;, + 76;3; 0.000000, 3.260104, 0.242284;;, + 77;3; 0.000000, 3.260104, 0.242284;;, + 78;3; 0.000000, 3.260104, 0.242284;;, + 79;3; 0.000000, 3.260104, 0.242284;;, + 80;3; 0.000000, 3.260104, 0.242284;;, + 81;3; 0.000000, 3.260104, 0.242284;;, + 82;3; 0.000000, 3.260104, 0.242284;;, + 83;3; 0.000000, 3.260104, 0.242284;;, + 84;3; 0.000000, 3.260104, 0.242284;;, + 85;3; 0.000000, 3.260104, 0.242284;;, + 86;3; 0.000000, 3.260104, 0.242284;;, + 87;3; 0.000000, 3.260104, 0.242284;;, + 88;3; 0.000000, 3.260104, 0.242284;;, + 89;3; 0.000000, 3.260104, 0.242284;;, + 90;3; 0.000000, 3.260104, 0.242284;;, + 91;3; 0.000000, 3.260104, 0.242284;;, + 92;3; 0.000000, 3.260104, 0.242284;;, + 93;3; 0.000000, 3.260104, 0.242284;;, + 94;3; 0.000000, 3.260104, 0.242284;;, + 95;3; 0.000000, 3.260104, 0.242284;;, + 96;3; 0.000000, 3.260104, 0.242284;;, + 97;3; 0.000000, 3.260104, 0.242284;;, + 98;3; 0.000000, 3.260104, 0.242284;;, + 99;3; 0.000000, 3.260104, 0.242284;;, + 100;3; 0.000000, 3.260104, 0.242284;;, + 101;3; 0.000000, 3.260104, 0.242284;;, + 102;3; 0.000000, 3.260104, 0.242284;;, + 103;3; 0.000000, 3.260104, 0.242284;;, + 104;3; 0.000000, 3.260104, 0.242284;;, + 105;3; 0.000000, 3.260104, 0.242284;;, + 106;3; 0.000000, 3.260104, 0.242284;;, + 107;3; 0.000000, 3.260104, 0.242284;;, + 108;3; 0.000000, 3.260104, 0.242284;;, + 109;3; 0.000000, 3.260104, 0.242284;;, + 110;3; 0.000000, 3.260104, 0.242284;;, + 111;3; 0.000000, 3.260104, 0.242284;;, + 112;3; 0.000000, 3.260104, 0.242284;;, + 113;3; 0.000000, 3.260104, 0.242284;;, + 114;3; 0.000000, 3.260104, 0.242284;;, + 115;3; 0.000000, 3.260104, 0.242284;;, + 116;3; 0.000000, 3.260104, 0.242284;;, + 117;3; 0.000000, 3.260104, 0.242284;;, + 118;3; 0.000000, 3.260104, 0.242284;;, + 119;3; 0.000000, 3.260104, 0.242284;;, + 120;3; 0.000000, 3.260104, 0.242284;;, + 121;3; 0.000000, 3.260104, 0.242284;;, + 122;3; 0.000000, 3.260104, 0.242284;;, + 123;3; 0.000000, 3.260104, 0.242284;;, + 124;3; 0.000000, 3.260104, 0.242284;;, + 125;3; 0.000000, 3.260104, 0.242284;;, + 126;3; 0.000000, 3.260104, 0.242284;;, + 127;3; 0.000000, 3.260104, 0.242284;;, + 128;3; 0.000000, 3.260104, 0.242284;;, + 129;3; 0.000000, 3.260104, 0.242284;;, + 130;3; 0.000000, 3.260104, 0.242284;;, + 131;3; 0.000000, 3.260104, 0.242284;;, + 132;3; 0.000000, 3.260104, 0.242284;;, + 133;3; 0.000000, 3.260104, 0.242284;;, + 134;3; 0.000000, 3.260104, 0.242284;;, + 135;3; 0.000000, 3.260104, 0.242284;;, + 136;3; 0.000000, 3.260104, 0.242284;;, + 137;3; 0.000000, 3.260104, 0.242284;;, + 138;3; 0.000000, 3.260104, 0.242284;;, + 139;3; 0.000000, 3.260104, 0.242284;;, + 140;3; 0.000000, 3.260104, 0.242284;;, + 141;3; 0.000000, 3.260104, 0.242284;;, + 142;3; 0.000000, 3.260104, 0.242284;;, + 143;3; 0.000000, 3.260104, 0.242284;;, + 144;3; 0.000000, 3.260104, 0.242284;;, + 145;3; 0.000000, 3.260104, 0.242284;;, + 146;3; 0.000000, 3.260104, 0.242284;;, + 147;3; 0.000000, 3.260104, 0.242284;;, + 148;3; 0.000000, 3.260104, 0.242284;;, + 149;3; 0.000000, 3.260104, 0.242284;;, + 150;3; 0.000000, 3.260104, 0.242284;;, + 151;3; 0.000000, 3.260104, 0.242284;;, + 152;3; 0.000000, 3.260104, 0.242284;;, + 153;3; 0.000000, 3.260104, 0.242284;;, + 154;3; 0.000000, 3.260104, 0.242284;;, + 155;3; 0.000000, 3.260104, 0.242284;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 1;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 2;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 3;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 4;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 5;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 6;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 7;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 8;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 9;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 10;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 11;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 12;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 13;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 14;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 15;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 16;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 17;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 18;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 19;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 20;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 21;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 22;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 23;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 24;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 25;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 26;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 27;4; -0.994416,-0.057162, 0.003586, 0.037647;;, + 28;4; -0.989056, 0.002484, 0.005794, 0.037102;;, + 29;4; -0.981349, 0.088206, 0.008966, 0.036319;;, + 30;4; -0.973641, 0.173928, 0.012139, 0.035535;;, + 31;4; -0.968281, 0.233575, 0.014346, 0.034991;;, + 32;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 33;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 34;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 35;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 36;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 37;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 38;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 39;4; -0.964339, 0.215537, 0.049348, 0.013417;;, + 40;4; -0.959308, 0.112805, 0.138792,-0.042483;;, + 41;4; -0.955516, 0.004698, 0.228007,-0.098299;;, + 42;4; -0.956542,-0.047448, 0.261727,-0.119483;;, + 43;4; -0.961848,-0.061756, 0.245284,-0.109587;;, + 44;4; -0.970009,-0.071634, 0.198581,-0.081241;;, + 45;4; -0.979672,-0.076820, 0.131773,-0.040622;;, + 46;4; -0.988486,-0.078307, 0.065092,-0.000055;;, + 47;4; -0.994313,-0.078015, 0.018746, 0.028147;;, + 48;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 49;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 50;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 51;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 52;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 53;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 54;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 55;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 56;4; -0.996486,-0.073439, 0.002987, 0.037818;;, + 57;4; -0.997129,-0.061537, 0.003438, 0.037774;;, + 58;4; -0.997954,-0.046256, 0.004016, 0.037717;;, + 59;4; -0.998597,-0.034355, 0.004466, 0.037672;;, + 60;4; -0.998826,-0.030129, 0.004626, 0.037657;;, + 61;4; -0.998798,-0.030648, 0.004606, 0.037659;;, + 62;4; -0.998717,-0.032151, 0.004550, 0.037664;;, + 63;4; -0.998587,-0.034552, 0.004459, 0.037673;;, + 64;4; -0.998414,-0.037754, 0.004338, 0.037685;;, + 65;4; -0.998204,-0.041642, 0.004190, 0.037700;;, + 66;4; -0.997964,-0.046086, 0.004022, 0.037716;;, + 67;4; -0.997702,-0.050936, 0.003839, 0.037734;;, + 68;4; -0.997427,-0.056020, 0.003646, 0.037753;;, + 69;4; -0.997150,-0.061137, 0.003453, 0.037772;;, + 70;4; -0.996885,-0.066057, 0.003267, 0.037791;;, + 71;4; -0.996644,-0.070510, 0.003098, 0.037807;;, + 72;4; -0.996445,-0.074185, 0.002959, 0.037821;;, + 73;4; -0.996309,-0.076713, 0.002863, 0.037831;;, + 74;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 75;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 76;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 77;4; -0.996410,-0.074932, 0.002931, 0.037824;;, + 78;4; -0.996852,-0.066980, 0.003232, 0.037795;;, + 79;4; -0.997489,-0.055549, 0.003664, 0.037753;;, + 80;4; -0.998126,-0.044117, 0.004097, 0.037711;;, + 81;4; -0.998568,-0.036165, 0.004398, 0.037682;;, + 82;4; -0.998721,-0.033433, 0.004502, 0.037672;;, + 83;4; -0.998568,-0.036165, 0.004398, 0.037682;;, + 84;4; -0.998126,-0.044117, 0.004097, 0.037711;;, + 85;4; -0.997489,-0.055549, 0.003664, 0.037753;;, + 86;4; -0.996852,-0.066980, 0.003232, 0.037795;;, + 87;4; -0.996410,-0.074932, 0.002931, 0.037824;;, + 88;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 89;4; -0.996430,-0.074206, 0.002958, 0.037821;;, + 90;4; -0.996931,-0.064141, 0.003339, 0.037781;;, + 91;4; -0.997651,-0.049673, 0.003886, 0.037725;;, + 92;4; -0.998372,-0.035204, 0.004433, 0.037669;;, + 93;4; -0.998873,-0.025139, 0.004814, 0.037630;;, + 94;4; -0.999045,-0.021681, 0.004944, 0.037616;;, + 95;4; -0.998873,-0.025139, 0.004814, 0.037630;;, + 96;4; -0.998372,-0.035204, 0.004433, 0.037669;;, + 97;4; -0.997651,-0.049673, 0.003886, 0.037725;;, + 98;4; -0.996931,-0.064141, 0.003339, 0.037781;;, + 99;4; -0.996430,-0.074206, 0.002958, 0.037821;;, + 100;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 101;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 102;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 103;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 104;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 105;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 106;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 107;4; -0.996410,-0.074932, 0.002931, 0.037824;;, + 108;4; -0.996852,-0.066980, 0.003232, 0.037795;;, + 109;4; -0.997489,-0.055549, 0.003664, 0.037753;;, + 110;4; -0.998126,-0.044117, 0.004097, 0.037711;;, + 111;4; -0.998568,-0.036165, 0.004398, 0.037682;;, + 112;4; -0.998721,-0.033433, 0.004502, 0.037672;;, + 113;4; -0.998568,-0.036165, 0.004398, 0.037682;;, + 114;4; -0.998126,-0.044117, 0.004097, 0.037711;;, + 115;4; -0.997489,-0.055549, 0.003664, 0.037753;;, + 116;4; -0.996852,-0.066980, 0.003232, 0.037795;;, + 117;4; -0.996410,-0.074932, 0.002931, 0.037824;;, + 118;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 119;4; -0.996430,-0.074206, 0.002958, 0.037821;;, + 120;4; -0.996931,-0.064141, 0.003339, 0.037781;;, + 121;4; -0.997651,-0.049673, 0.003886, 0.037725;;, + 122;4; -0.998372,-0.035204, 0.004433, 0.037669;;, + 123;4; -0.998873,-0.025139, 0.004814, 0.037630;;, + 124;4; -0.999045,-0.021681, 0.004944, 0.037616;;, + 125;4; -0.998873,-0.025139, 0.004814, 0.037630;;, + 126;4; -0.998372,-0.035204, 0.004433, 0.037669;;, + 127;4; -0.997651,-0.049673, 0.003886, 0.037725;;, + 128;4; -0.996931,-0.064141, 0.003339, 0.037781;;, + 129;4; -0.996430,-0.074206, 0.002958, 0.037821;;, + 130;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 131;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 132;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 133;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 134;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 135;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 136;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 137;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 138;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 139;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 140;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 141;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 142;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 143;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 144;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 145;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 146;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 147;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 148;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 149;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 150;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 151;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 152;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 153;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 154;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 155;4; -0.996257,-0.077664, 0.002827, 0.037834;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_head} + AnimationKey { //Position + 2; + 156; + 0;3; 0.068728, 0.903770, 0.009841;;, + 1;3; 0.068728, 0.903770, 0.009841;;, + 2;3; 0.068728, 0.903770, 0.009841;;, + 3;3; 0.068728, 0.903770, 0.009841;;, + 4;3; 0.068728, 0.903770, 0.009841;;, + 5;3; 0.068728, 0.903770, 0.009841;;, + 6;3; 0.068728, 0.903770, 0.009841;;, + 7;3; 0.068728, 0.903770, 0.009841;;, + 8;3; 0.068728, 0.903770, 0.009841;;, + 9;3; 0.068728, 0.903770, 0.009841;;, + 10;3; 0.068728, 0.903770, 0.009841;;, + 11;3; 0.068728, 0.903770, 0.009841;;, + 12;3; 0.068728, 0.903770, 0.009841;;, + 13;3; 0.068728, 0.903770, 0.009841;;, + 14;3; 0.068728, 0.903770, 0.009841;;, + 15;3; 0.068728, 0.903770, 0.009841;;, + 16;3; 0.068728, 0.903770, 0.009841;;, + 17;3; 0.068728, 0.903770, 0.009841;;, + 18;3; 0.068728, 0.903770, 0.009841;;, + 19;3; 0.068728, 0.903770, 0.009841;;, + 20;3; 0.068728, 0.903770, 0.009841;;, + 21;3; 0.068728, 0.903770, 0.009841;;, + 22;3; 0.068728, 0.903770, 0.009841;;, + 23;3; 0.068728, 0.903770, 0.009841;;, + 24;3; 0.068728, 0.903770, 0.009841;;, + 25;3; 0.068728, 0.903770, 0.009841;;, + 26;3; 0.068728, 0.903770, 0.009841;;, + 27;3; 0.068728, 0.903770, 0.009841;;, + 28;3; 0.068728, 0.903770, 0.009841;;, + 29;3; 0.068728, 0.903770, 0.009841;;, + 30;3; 0.068728, 0.903770, 0.009841;;, + 31;3; 0.068728, 0.903770, 0.009841;;, + 32;3; 0.068728, 0.903770, 0.009841;;, + 33;3; 0.068728, 0.903770, 0.009841;;, + 34;3; 0.068728, 0.903770, 0.009841;;, + 35;3; 0.068728, 0.903770, 0.009841;;, + 36;3; 0.068728, 0.903770, 0.009841;;, + 37;3; 0.068728, 0.903770, 0.009841;;, + 38;3; 0.068728, 0.903770, 0.009841;;, + 39;3; 0.068728, 0.903770, 0.009841;;, + 40;3; 0.068728, 0.903770, 0.009841;;, + 41;3; 0.068728, 0.903770, 0.009840;;, + 42;3; 0.068728, 0.903770, 0.009841;;, + 43;3; 0.068728, 0.903770, 0.009841;;, + 44;3; 0.068728, 0.903770, 0.009841;;, + 45;3; 0.068728, 0.903770, 0.009841;;, + 46;3; 0.068728, 0.903770, 0.009841;;, + 47;3; 0.068727, 0.903770, 0.009841;;, + 48;3; 0.068728, 0.903770, 0.009841;;, + 49;3; 0.068728, 0.903770, 0.009841;;, + 50;3; 0.068728, 0.903770, 0.009841;;, + 51;3; 0.068728, 0.903770, 0.009841;;, + 52;3; 0.068728, 0.903770, 0.009841;;, + 53;3; 0.068728, 0.903770, 0.009841;;, + 54;3; 0.068728, 0.903770, 0.009841;;, + 55;3; 0.068728, 0.903770, 0.009841;;, + 56;3; 0.068728, 0.903770, 0.009841;;, + 57;3; 0.068728, 0.903770, 0.009841;;, + 58;3; 0.068728, 0.903770, 0.009841;;, + 59;3; 0.068728, 0.903770, 0.009841;;, + 60;3; 0.068728, 0.903770, 0.009841;;, + 61;3; 0.068728, 0.903770, 0.009841;;, + 62;3; 0.068727, 0.903770, 0.009841;;, + 63;3; 0.068728, 0.903770, 0.009841;;, + 64;3; 0.068728, 0.903770, 0.009841;;, + 65;3; 0.068727, 0.903770, 0.009841;;, + 66;3; 0.068728, 0.903769, 0.009841;;, + 67;3; 0.068728, 0.903770, 0.009841;;, + 68;3; 0.068728, 0.903770, 0.009841;;, + 69;3; 0.068727, 0.903770, 0.009841;;, + 70;3; 0.068728, 0.903770, 0.009841;;, + 71;3; 0.068728, 0.903770, 0.009841;;, + 72;3; 0.068728, 0.903770, 0.009841;;, + 73;3; 0.068728, 0.903770, 0.009841;;, + 74;3; 0.068728, 0.903770, 0.009841;;, + 75;3; 0.068728, 0.903770, 0.009841;;, + 76;3; 0.068728, 0.903770, 0.009841;;, + 77;3; 0.068728, 0.903770, 0.009841;;, + 78;3; 0.068728, 0.903770, 0.009841;;, + 79;3; 0.068728, 0.903770, 0.009841;;, + 80;3; 0.068728, 0.903770, 0.009841;;, + 81;3; 0.068728, 0.903770, 0.009841;;, + 82;3; 0.068728, 0.903770, 0.009841;;, + 83;3; 0.068728, 0.903770, 0.009841;;, + 84;3; 0.068728, 0.903770, 0.009841;;, + 85;3; 0.068728, 0.903770, 0.009841;;, + 86;3; 0.068728, 0.903770, 0.009841;;, + 87;3; 0.068728, 0.903770, 0.009841;;, + 88;3; 0.068728, 0.903770, 0.009841;;, + 89;3; 0.068728, 0.903770, 0.009841;;, + 90;3; 0.068728, 0.903770, 0.009841;;, + 91;3; 0.068728, 0.903770, 0.009841;;, + 92;3; 0.068728, 0.903769, 0.009841;;, + 93;3; 0.068728, 0.903770, 0.009841;;, + 94;3; 0.068728, 0.903770, 0.009841;;, + 95;3; 0.068728, 0.903770, 0.009841;;, + 96;3; 0.068728, 0.903770, 0.009841;;, + 97;3; 0.068728, 0.903770, 0.009841;;, + 98;3; 0.068728, 0.903770, 0.009841;;, + 99;3; 0.068728, 0.903770, 0.009841;;, + 100;3; 0.068728, 0.903770, 0.009841;;, + 101;3; 0.068728, 0.903770, 0.009841;;, + 102;3; 0.068728, 0.903770, 0.009841;;, + 103;3; 0.068728, 0.903770, 0.009841;;, + 104;3; 0.068728, 0.903770, 0.009841;;, + 105;3; 0.068728, 0.903770, 0.009841;;, + 106;3; 0.068728, 0.903770, 0.009841;;, + 107;3; 0.068728, 0.903770, 0.009841;;, + 108;3; 0.068728, 0.903770, 0.009841;;, + 109;3; 0.068728, 0.903770, 0.009841;;, + 110;3; 0.068728, 0.903770, 0.009841;;, + 111;3; 0.068728, 0.903770, 0.009841;;, + 112;3; 0.068728, 0.903770, 0.009841;;, + 113;3; 0.068728, 0.903770, 0.009841;;, + 114;3; 0.068728, 0.903770, 0.009841;;, + 115;3; 0.068728, 0.903770, 0.009841;;, + 116;3; 0.068728, 0.903770, 0.009841;;, + 117;3; 0.068728, 0.903770, 0.009841;;, + 118;3; 0.068728, 0.903770, 0.009841;;, + 119;3; 0.068728, 0.903770, 0.009841;;, + 120;3; 0.068728, 0.903770, 0.009841;;, + 121;3; 0.068728, 0.903770, 0.009841;;, + 122;3; 0.068728, 0.903769, 0.009841;;, + 123;3; 0.068728, 0.903770, 0.009841;;, + 124;3; 0.068728, 0.903770, 0.009841;;, + 125;3; 0.068728, 0.903770, 0.009841;;, + 126;3; 0.068728, 0.903770, 0.009841;;, + 127;3; 0.068728, 0.903770, 0.009841;;, + 128;3; 0.068728, 0.903770, 0.009841;;, + 129;3; 0.068728, 0.903770, 0.009841;;, + 130;3; 0.068728, 0.903770, 0.009841;;, + 131;3; 0.068728, 0.903770, 0.009841;;, + 132;3; 0.068728, 0.903770, 0.009841;;, + 133;3; 0.068728, 0.903770, 0.009841;;, + 134;3; 0.068728, 0.903770, 0.009841;;, + 135;3; 0.068728, 0.903770, 0.009841;;, + 136;3; 0.068728, 0.903770, 0.009841;;, + 137;3; 0.068728, 0.903770, 0.009841;;, + 138;3; 0.068728, 0.903770, 0.009841;;, + 139;3; 0.068728, 0.903770, 0.009841;;, + 140;3; 0.068727, 0.903770, 0.009841;;, + 141;3; 0.068727, 0.903770, 0.009841;;, + 142;3; 0.068728, 0.903770, 0.009841;;, + 143;3; 0.068728, 0.903770, 0.009841;;, + 144;3; 0.068728, 0.903770, 0.009841;;, + 145;3; 0.068728, 0.903770, 0.009841;;, + 146;3; 0.068728, 0.903770, 0.009841;;, + 147;3; 0.068728, 0.903770, 0.009841;;, + 148;3; 0.068728, 0.903770, 0.009841;;, + 149;3; 0.068728, 0.903770, 0.009841;;, + 150;3; 0.068728, 0.903770, 0.009841;;, + 151;3; 0.068728, 0.903770, 0.009841;;, + 152;3; 0.068727, 0.903770, 0.009841;;, + 153;3; 0.068728, 0.903770, 0.009841;;, + 154;3; 0.068728, 0.903770, 0.009841;;, + 155;3; 0.068728, 0.903770, 0.009841;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 1;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 2;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 3;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 4;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 5;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 6;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 7;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 8;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 9;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 10;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 11;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 12;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 13;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 14;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 15;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 16;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 17;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 18;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 19;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 20;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 21;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 22;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 23;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 24;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 25;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 26;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 27;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 28;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 29;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 30;4; -0.998171, 0.013972,-0.008803,-0.037500;;, + 31;4; -0.994966, 0.024053,-0.034555,-0.036053;;, + 32;4; -0.989862, 0.039359,-0.075148,-0.033468;;, + 33;4; -0.983646, 0.056616,-0.123797,-0.029809;;, + 34;4; -0.977455, 0.071656,-0.171048,-0.025368;;, + 35;4; -0.972271, 0.081255,-0.208929,-0.020539;;, + 36;4; -0.968611, 0.084035,-0.233422,-0.015649;;, + 37;4; -0.965922, 0.082324,-0.249225,-0.009544;;, + 38;4; -0.963643, 0.078387,-0.261222,-0.001252;;, + 39;4; -0.961951, 0.072304,-0.268792, 0.007979;;, + 40;4; -0.960922, 0.064810,-0.272343, 0.016105;;, + 41;4; -0.960466, 0.056998,-0.273293, 0.021361;;, + 42;4; -0.960402, 0.049704,-0.273175, 0.023091;;, + 43;4; -0.962856, 0.042018,-0.256114, 0.019319;;, + 44;4; -0.969855, 0.033096,-0.206980, 0.008347;;, + 45;4; -0.979877, 0.024089,-0.136502,-0.007426;;, + 46;4; -0.989882, 0.016649,-0.066081,-0.023198;;, + 47;4; -0.996836, 0.012036,-0.017106,-0.034169;;, + 48;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 49;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 50;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 51;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 52;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 53;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 54;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 55;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 56;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 57;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 58;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 59;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 60;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 61;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 62;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 63;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 64;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 65;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 66;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 67;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 68;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 69;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 70;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 71;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 72;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 73;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 74;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 75;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 76;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 77;4; -0.998942, 0.010323,-0.006375,-0.037836;;, + 78;4; -0.998114, 0.009640,-0.024116,-0.037539;;, + 79;4; -0.996912, 0.008659,-0.049619,-0.037111;;, + 80;4; -0.995684, 0.007678,-0.075122,-0.036681;;, + 81;4; -0.994788, 0.006994,-0.092863,-0.036381;;, + 82;4; -0.994407, 0.006759,-0.098958,-0.036275;;, + 83;4; -0.994301, 0.006876,-0.095847,-0.036318;;, + 84;4; -0.994200, 0.007231,-0.086457,-0.036455;;, + 85;4; -0.994107, 0.007818,-0.070972,-0.036684;;, + 86;4; -0.994024, 0.008611,-0.050073,-0.036994;;, + 87;4; -0.993951, 0.009561,-0.025046,-0.037367;;, + 88;4; -0.993891, 0.010596, 0.002231,-0.037774;;, + 89;4; -0.993843, 0.011631, 0.029508,-0.038181;;, + 90;4; -0.993807, 0.012581, 0.054535,-0.038555;;, + 91;4; -0.993783, 0.013374, 0.075434,-0.038868;;, + 92;4; -0.993767, 0.013962, 0.090919,-0.039100;;, + 93;4; -0.993759, 0.014319, 0.100309,-0.039240;;, + 94;4; -0.993757, 0.014437, 0.103420,-0.039287;;, + 95;4; -0.994095, 0.014197, 0.097014,-0.039204;;, + 96;4; -0.995077, 0.013500, 0.078371,-0.038961;;, + 97;4; -0.996491, 0.012497, 0.051571,-0.038613;;, + 98;4; -0.997904, 0.011494, 0.024771,-0.038264;;, + 99;4; -0.998887, 0.010797, 0.006127,-0.038022;;, + 100;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 101;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 102;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 103;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 104;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 105;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 106;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 107;4; -0.998942, 0.010323,-0.006375,-0.037836;;, + 108;4; -0.998114, 0.009640,-0.024116,-0.037539;;, + 109;4; -0.996912, 0.008659,-0.049619,-0.037111;;, + 110;4; -0.995684, 0.007678,-0.075122,-0.036681;;, + 111;4; -0.994788, 0.006994,-0.092863,-0.036381;;, + 112;4; -0.994407, 0.006759,-0.098958,-0.036275;;, + 113;4; -0.994301, 0.006876,-0.095847,-0.036318;;, + 114;4; -0.994200, 0.007231,-0.086457,-0.036455;;, + 115;4; -0.994107, 0.007818,-0.070972,-0.036684;;, + 116;4; -0.994024, 0.008611,-0.050073,-0.036994;;, + 117;4; -0.993951, 0.009561,-0.025046,-0.037367;;, + 118;4; -0.993891, 0.010596, 0.002231,-0.037774;;, + 119;4; -0.993843, 0.011631, 0.029508,-0.038181;;, + 120;4; -0.993807, 0.012581, 0.054535,-0.038555;;, + 121;4; -0.993783, 0.013374, 0.075434,-0.038868;;, + 122;4; -0.993767, 0.013962, 0.090919,-0.039100;;, + 123;4; -0.993759, 0.014319, 0.100309,-0.039240;;, + 124;4; -0.993757, 0.014437, 0.103420,-0.039287;;, + 125;4; -0.994095, 0.014197, 0.097014,-0.039204;;, + 126;4; -0.995077, 0.013500, 0.078371,-0.038961;;, + 127;4; -0.996491, 0.012497, 0.051571,-0.038613;;, + 128;4; -0.997904, 0.011494, 0.024771,-0.038264;;, + 129;4; -0.998887, 0.010797, 0.006127,-0.038022;;, + 130;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 131;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 132;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 133;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 134;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 135;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 136;4; -0.995675, 0.034507,-0.001189,-0.037807;;, + 137;4; -0.985676, 0.101940,-0.003750,-0.037435;;, + 138;4; -0.972838, 0.188502,-0.007038,-0.036958;;, + 139;4; -0.962840, 0.255921,-0.009599,-0.036587;;, + 140;4; -0.959291, 0.279862,-0.010509,-0.036455;;, + 141;4; -0.959683, 0.277217,-0.010408,-0.036470;;, + 142;4; -0.960868, 0.269222,-0.010104,-0.036514;;, + 143;4; -0.962840, 0.255919,-0.009599,-0.036587;;, + 144;4; -0.965558, 0.237587,-0.008903,-0.036688;;, + 145;4; -0.968937, 0.214805,-0.008037,-0.036814;;, + 146;4; -0.972839, 0.188493,-0.007038,-0.036958;;, + 147;4; -0.977079, 0.159901,-0.005952,-0.037116;;, + 148;4; -0.981436, 0.130518,-0.004836,-0.037278;;, + 149;4; -0.985676, 0.101926,-0.003750,-0.037435;;, + 150;4; -0.989578, 0.075614,-0.002750,-0.037580;;, + 151;4; -0.992956, 0.052832,-0.001885,-0.037706;;, + 152;4; -0.995675, 0.034500,-0.001189,-0.037807;;, + 153;4; -0.997647, 0.021197,-0.000683,-0.037880;;, + 154;4; -0.998832, 0.013202,-0.000380,-0.037924;;, + 155;4; -0.999224, 0.010557,-0.000279,-0.037939;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_zubi} + AnimationKey { //Position + 2; + 156; + 0;3; 0.205805, 1.974131,-0.481359;;, + 1;3; 0.205805, 1.974131,-0.481359;;, + 2;3; 0.205805, 1.974131,-0.481359;;, + 3;3; 0.205805, 1.974131,-0.481359;;, + 4;3; 0.205805, 1.974131,-0.481359;;, + 5;3; 0.205805, 1.974131,-0.481359;;, + 6;3; 0.205805, 1.974131,-0.481359;;, + 7;3; 0.205805, 1.974131,-0.481359;;, + 8;3; 0.205805, 1.974131,-0.481359;;, + 9;3; 0.205805, 1.974131,-0.481359;;, + 10;3; 0.205805, 1.974131,-0.481359;;, + 11;3; 0.205805, 1.974131,-0.481359;;, + 12;3; 0.205805, 1.974131,-0.481359;;, + 13;3; 0.205805, 1.974131,-0.481359;;, + 14;3; 0.205805, 1.974131,-0.481359;;, + 15;3; 0.205805, 1.974131,-0.481359;;, + 16;3; 0.205805, 1.974131,-0.481359;;, + 17;3; 0.205805, 1.974131,-0.481359;;, + 18;3; 0.205805, 1.974131,-0.481359;;, + 19;3; 0.205805, 1.974131,-0.481359;;, + 20;3; 0.205805, 1.974131,-0.481359;;, + 21;3; 0.205805, 1.974131,-0.481359;;, + 22;3; 0.205805, 1.974131,-0.481359;;, + 23;3; 0.205805, 1.974131,-0.481359;;, + 24;3; 0.205805, 1.974131,-0.481359;;, + 25;3; 0.205805, 1.974131,-0.481359;;, + 26;3; 0.205805, 1.974131,-0.481359;;, + 27;3; 0.205806, 1.974131,-0.481358;;, + 28;3; 0.205805, 1.974131,-0.481358;;, + 29;3; 0.205805, 1.974131,-0.481359;;, + 30;3; 0.205805, 1.974131,-0.481358;;, + 31;3; 0.205806, 1.974131,-0.481358;;, + 32;3; 0.205805, 1.974131,-0.481358;;, + 33;3; 0.205805, 1.974131,-0.481358;;, + 34;3; 0.205805, 1.974131,-0.481358;;, + 35;3; 0.205805, 1.974131,-0.481358;;, + 36;3; 0.205805, 1.974131,-0.481358;;, + 37;3; 0.205805, 1.974131,-0.481358;;, + 38;3; 0.205805, 1.974131,-0.481358;;, + 39;3; 0.205805, 1.974131,-0.481359;;, + 40;3; 0.205805, 1.974131,-0.481358;;, + 41;3; 0.205805, 1.974131,-0.481359;;, + 42;3; 0.205805, 1.974131,-0.481358;;, + 43;3; 0.205805, 1.974131,-0.481358;;, + 44;3; 0.205805, 1.974131,-0.481359;;, + 45;3; 0.205806, 1.974131,-0.481359;;, + 46;3; 0.205805, 1.974131,-0.481358;;, + 47;3; 0.205805, 1.974131,-0.481359;;, + 48;3; 0.205805, 1.974131,-0.481359;;, + 49;3; 0.205805, 1.974131,-0.481359;;, + 50;3; 0.205805, 1.974131,-0.481359;;, + 51;3; 0.205805, 1.974131,-0.481359;;, + 52;3; 0.205805, 1.974131,-0.481359;;, + 53;3; 0.205805, 1.974131,-0.481359;;, + 54;3; 0.205805, 1.974131,-0.481359;;, + 55;3; 0.205805, 1.974131,-0.481359;;, + 56;3; 0.205805, 1.974131,-0.481359;;, + 57;3; 0.205805, 1.974131,-0.481359;;, + 58;3; 0.205805, 1.974131,-0.481359;;, + 59;3; 0.205805, 1.974131,-0.481359;;, + 60;3; 0.205805, 1.974131,-0.481358;;, + 61;3; 0.205805, 1.974131,-0.481359;;, + 62;3; 0.205805, 1.974131,-0.481359;;, + 63;3; 0.205805, 1.974131,-0.481359;;, + 64;3; 0.205805, 1.974131,-0.481359;;, + 65;3; 0.205805, 1.974131,-0.481359;;, + 66;3; 0.205805, 1.974131,-0.481359;;, + 67;3; 0.205805, 1.974131,-0.481359;;, + 68;3; 0.205805, 1.974131,-0.481359;;, + 69;3; 0.205805, 1.974131,-0.481359;;, + 70;3; 0.205805, 1.974131,-0.481359;;, + 71;3; 0.205805, 1.974131,-0.481359;;, + 72;3; 0.205805, 1.974131,-0.481358;;, + 73;3; 0.205805, 1.974131,-0.481358;;, + 74;3; 0.205805, 1.974131,-0.481359;;, + 75;3; 0.205805, 1.974131,-0.481359;;, + 76;3; 0.205805, 1.974131,-0.481359;;, + 77;3; 0.205805, 1.974131,-0.481359;;, + 78;3; 0.205805, 1.974131,-0.481359;;, + 79;3; 0.205805, 1.974131,-0.481359;;, + 80;3; 0.205805, 1.974131,-0.481358;;, + 81;3; 0.205805, 1.974131,-0.481359;;, + 82;3; 0.205805, 1.974131,-0.481359;;, + 83;3; 0.205805, 1.974131,-0.481359;;, + 84;3; 0.205805, 1.974131,-0.481358;;, + 85;3; 0.205805, 1.974131,-0.481359;;, + 86;3; 0.205805, 1.974131,-0.481358;;, + 87;3; 0.205805, 1.974131,-0.481359;;, + 88;3; 0.205805, 1.974131,-0.481359;;, + 89;3; 0.205805, 1.974131,-0.481358;;, + 90;3; 0.205805, 1.974131,-0.481359;;, + 91;3; 0.205805, 1.974131,-0.481359;;, + 92;3; 0.205805, 1.974131,-0.481359;;, + 93;3; 0.205806, 1.974131,-0.481359;;, + 94;3; 0.205805, 1.974131,-0.481359;;, + 95;3; 0.205806, 1.974131,-0.481359;;, + 96;3; 0.205805, 1.974131,-0.481359;;, + 97;3; 0.205805, 1.974131,-0.481358;;, + 98;3; 0.205805, 1.974131,-0.481359;;, + 99;3; 0.205805, 1.974131,-0.481359;;, + 100;3; 0.205805, 1.974131,-0.481359;;, + 101;3; 0.205805, 1.974131,-0.481359;;, + 102;3; 0.205805, 1.974131,-0.481359;;, + 103;3; 0.205805, 1.974131,-0.481359;;, + 104;3; 0.205805, 1.974131,-0.481359;;, + 105;3; 0.205805, 1.974131,-0.481359;;, + 106;3; 0.205805, 1.974131,-0.481359;;, + 107;3; 0.205805, 1.974131,-0.481359;;, + 108;3; 0.205805, 1.974131,-0.481359;;, + 109;3; 0.205805, 1.974131,-0.481359;;, + 110;3; 0.205805, 1.974131,-0.481358;;, + 111;3; 0.205805, 1.974131,-0.481359;;, + 112;3; 0.205805, 1.974131,-0.481359;;, + 113;3; 0.205805, 1.974131,-0.481359;;, + 114;3; 0.205805, 1.974131,-0.481358;;, + 115;3; 0.205805, 1.974131,-0.481359;;, + 116;3; 0.205805, 1.974131,-0.481358;;, + 117;3; 0.205805, 1.974131,-0.481359;;, + 118;3; 0.205805, 1.974131,-0.481359;;, + 119;3; 0.205805, 1.974131,-0.481358;;, + 120;3; 0.205805, 1.974131,-0.481359;;, + 121;3; 0.205805, 1.974131,-0.481359;;, + 122;3; 0.205805, 1.974131,-0.481359;;, + 123;3; 0.205806, 1.974131,-0.481359;;, + 124;3; 0.205805, 1.974131,-0.481359;;, + 125;3; 0.205806, 1.974131,-0.481359;;, + 126;3; 0.205805, 1.974131,-0.481359;;, + 127;3; 0.205805, 1.974131,-0.481358;;, + 128;3; 0.205805, 1.974131,-0.481359;;, + 129;3; 0.205805, 1.974131,-0.481359;;, + 130;3; 0.205805, 1.974131,-0.481359;;, + 131;3; 0.205805, 1.974131,-0.481359;;, + 132;3; 0.205805, 1.974131,-0.481359;;, + 133;3; 0.205805, 1.974131,-0.481359;;, + 134;3; 0.205805, 1.974131,-0.481359;;, + 135;3; 0.205805, 1.974131,-0.481359;;, + 136;3; 0.205805, 1.974131,-0.481359;;, + 137;3; 0.205805, 1.974131,-0.481358;;, + 138;3; 0.205741, 1.973247,-0.469110;;, + 139;3; 0.205551, 1.970632,-0.432877;;, + 140;3; 0.205261, 1.966648,-0.377679;;, + 141;3; 0.204933, 1.962130,-0.315077;;, + 142;3; 0.204643, 1.958146,-0.259887;;, + 143;3; 0.204453, 1.955532,-0.223662;;, + 144;3; 0.204389, 1.954648,-0.211417;;, + 145;3; 0.204415, 1.955004,-0.216358;;, + 146;3; 0.204494, 1.956080,-0.231258;;, + 147;3; 0.204621, 1.957843,-0.255685;;, + 148;3; 0.204792, 1.960192,-0.288231;;, + 149;3; 0.204992, 1.962942,-0.326329;;, + 150;3; 0.205202, 1.965835,-0.366412;;, + 151;3; 0.205402, 1.968585,-0.404515;;, + 152;3; 0.205572, 1.970935,-0.437071;;, + 153;3; 0.205701, 1.972699,-0.461508;;, + 154;3; 0.205779, 1.973774,-0.476414;;, + 155;3; 0.205805, 1.974131,-0.481359;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 1;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 2;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 3;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 4;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 5;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 6;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 7;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 8;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 9;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 10;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 11;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 12;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 13;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 14;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 15;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 16;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 17;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 18;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 19;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 20;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 21;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 22;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 23;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 24;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 25;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 26;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 27;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 28;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 29;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 30;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 31;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 32;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 33;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 34;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 35;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 36;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 37;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 38;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 39;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 40;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 41;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 42;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 43;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 44;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 45;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 46;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 47;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 48;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 49;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 50;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 51;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 52;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 53;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 54;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 55;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 56;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 57;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 58;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 59;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 60;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 61;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 62;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 63;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 64;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 65;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 66;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 67;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 68;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 69;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 70;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 71;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 72;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 73;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 74;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 75;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 76;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 77;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 78;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 79;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 80;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 81;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 82;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 83;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 84;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 85;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 86;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 87;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 88;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 89;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 90;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 91;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 92;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 93;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 94;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 95;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 96;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 97;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 98;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 99;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 100;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 101;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 102;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 103;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 104;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 105;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 106;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 107;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 108;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 109;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 110;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 111;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 112;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 113;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 114;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 115;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 116;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 117;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 118;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 119;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 120;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 121;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 122;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 123;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 124;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 125;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 126;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 127;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 128;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 129;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 130;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 131;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 132;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 133;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 134;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 135;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 136;4; -0.983274,-0.110884, 0.004330,-0.037318;;, + 137;4; -0.965858,-0.256281, 0.009848,-0.036639;;, + 138;4; -0.962184,-0.231571, 0.008909,-0.036503;;, + 139;4; -0.958140,-0.158361, 0.006129,-0.036358;;, + 140;4; -0.954044,-0.046823, 0.001894,-0.036216;;, + 141;4; -0.950374, 0.079679,-0.002909,-0.036092;;, + 142;4; -0.947594, 0.191226,-0.007145,-0.036000;;, + 143;4; -0.945944, 0.264464,-0.009926,-0.035947;;, + 144;4; -0.945422, 0.289230,-0.010866,-0.035930;;, + 145;4; -0.946397, 0.284568,-0.010689,-0.035966;;, + 146;4; -0.949337, 0.270516,-0.010155,-0.036076;;, + 147;4; -0.954156, 0.247481,-0.009280,-0.036256;;, + 148;4; -0.960578, 0.216794,-0.008114,-0.036496;;, + 149;4; -0.968095, 0.180879,-0.006750,-0.036777;;, + 150;4; -0.976003, 0.143096,-0.005314,-0.037073;;, + 151;4; -0.983520, 0.107183,-0.003950,-0.037354;;, + 152;4; -0.989941, 0.076500,-0.002784,-0.037594;;, + 153;4; -0.994761, 0.053469,-0.001909,-0.037774;;, + 154;4; -0.997701, 0.039419,-0.001375,-0.037884;;, + 155;4; -0.998675, 0.034758,-0.001198,-0.037921;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Cube} + AnimationKey { //Position + 2; + 156; + 0;3; -0.137034,-0.235439, 6.856374;;, + 1;3; -0.137034,-0.235439, 6.856374;;, + 2;3; -0.137034,-0.235439, 6.856374;;, + 3;3; -0.137034,-0.235439, 6.856374;;, + 4;3; -0.137034,-0.235439, 6.856374;;, + 5;3; -0.137034,-0.235439, 6.856374;;, + 6;3; -0.137034,-0.235439, 6.856374;;, + 7;3; -0.137034,-0.235439, 6.856374;;, + 8;3; -0.137034,-0.235439, 6.856374;;, + 9;3; -0.137034,-0.235439, 6.856374;;, + 10;3; -0.137034,-0.235439, 6.856374;;, + 11;3; -0.137034,-0.235439, 6.856374;;, + 12;3; -0.137034,-0.235439, 6.856374;;, + 13;3; -0.137034,-0.235439, 6.856374;;, + 14;3; -0.137034,-0.235439, 6.856374;;, + 15;3; -0.137034,-0.235439, 6.856374;;, + 16;3; -0.137034,-0.235439, 6.856374;;, + 17;3; -0.137034,-0.235439, 6.856374;;, + 18;3; -0.137034,-0.235439, 6.856374;;, + 19;3; -0.137034,-0.235439, 6.856374;;, + 20;3; -0.137034,-0.235439, 6.856374;;, + 21;3; -0.137034,-0.235439, 6.856374;;, + 22;3; -0.137034,-0.235439, 6.856374;;, + 23;3; -0.137034,-0.235439, 6.856374;;, + 24;3; -0.137034,-0.235439, 6.856374;;, + 25;3; -0.137034,-0.235439, 6.856374;;, + 26;3; -0.137034,-0.235439, 6.856374;;, + 27;3; -0.137034,-0.235439, 6.856374;;, + 28;3; -0.137034,-0.235439, 6.856374;;, + 29;3; -0.137034,-0.235439, 6.856374;;, + 30;3; -0.137034,-0.235439, 6.856374;;, + 31;3; -0.137034,-0.235439, 6.856374;;, + 32;3; -0.137034,-0.235439, 6.856374;;, + 33;3; -0.137034,-0.235439, 6.856374;;, + 34;3; -0.137034,-0.235439, 6.856374;;, + 35;3; -0.137034,-0.235439, 6.856374;;, + 36;3; -0.137034,-0.235439, 6.856374;;, + 37;3; -0.137034,-0.235439, 6.856374;;, + 38;3; -0.137034,-0.235439, 6.856374;;, + 39;3; -0.137034,-0.235439, 6.856374;;, + 40;3; -0.137034,-0.235439, 6.856374;;, + 41;3; -0.137034,-0.235439, 6.856374;;, + 42;3; -0.137034,-0.235439, 6.856374;;, + 43;3; -0.137034,-0.235439, 6.856374;;, + 44;3; -0.137034,-0.235439, 6.856374;;, + 45;3; -0.137034,-0.235439, 6.856374;;, + 46;3; -0.137034,-0.235439, 6.856374;;, + 47;3; -0.137034,-0.235439, 6.856374;;, + 48;3; -0.137034,-0.235439, 6.856374;;, + 49;3; -0.137034,-0.235439, 6.856374;;, + 50;3; -0.137034,-0.235439, 6.856374;;, + 51;3; -0.137034,-0.235439, 6.856374;;, + 52;3; -0.137034,-0.235439, 6.856374;;, + 53;3; -0.137034,-0.235439, 6.856374;;, + 54;3; -0.137034,-0.235439, 6.856374;;, + 55;3; -0.137034,-0.235439, 6.856374;;, + 56;3; -0.137034,-0.235439, 6.856374;;, + 57;3; -0.137034,-0.235439, 6.856374;;, + 58;3; -0.137034,-0.235439, 6.856374;;, + 59;3; -0.137034,-0.235439, 6.856374;;, + 60;3; -0.137034,-0.235439, 6.856374;;, + 61;3; -0.137034,-0.235439, 6.856374;;, + 62;3; -0.137034,-0.235439, 6.856374;;, + 63;3; -0.137034,-0.235439, 6.856374;;, + 64;3; -0.137034,-0.235439, 6.856374;;, + 65;3; -0.137034,-0.235439, 6.856374;;, + 66;3; -0.137034,-0.235439, 6.856374;;, + 67;3; -0.137034,-0.235439, 6.856374;;, + 68;3; -0.137034,-0.235439, 6.856374;;, + 69;3; -0.137034,-0.235439, 6.856374;;, + 70;3; -0.137034,-0.235439, 6.856374;;, + 71;3; -0.137034,-0.235439, 6.856374;;, + 72;3; -0.137034,-0.235439, 6.856374;;, + 73;3; -0.137034,-0.235439, 6.856374;;, + 74;3; -0.137034,-0.235439, 6.856374;;, + 75;3; -0.137034,-0.235439, 6.856374;;, + 76;3; -0.137034,-0.235439, 6.856374;;, + 77;3; -0.137034,-0.235439, 6.856374;;, + 78;3; -0.137034,-0.235439, 6.856374;;, + 79;3; -0.137034,-0.235439, 6.856374;;, + 80;3; -0.137034,-0.235439, 6.856374;;, + 81;3; -0.137034,-0.235439, 6.856374;;, + 82;3; -0.137034,-0.235439, 6.856374;;, + 83;3; -0.137034,-0.235439, 6.856374;;, + 84;3; -0.137034,-0.235439, 6.856374;;, + 85;3; -0.137034,-0.235439, 6.856374;;, + 86;3; -0.137034,-0.235439, 6.856374;;, + 87;3; -0.137034,-0.235439, 6.856374;;, + 88;3; -0.137034,-0.235439, 6.856374;;, + 89;3; -0.137034,-0.235439, 6.856374;;, + 90;3; -0.137034,-0.235439, 6.856374;;, + 91;3; -0.137034,-0.235439, 6.856374;;, + 92;3; -0.137034,-0.235439, 6.856374;;, + 93;3; -0.137034,-0.235439, 6.856374;;, + 94;3; -0.137034,-0.235439, 6.856374;;, + 95;3; -0.137034,-0.235439, 6.856374;;, + 96;3; -0.137034,-0.235439, 6.856374;;, + 97;3; -0.137034,-0.235439, 6.856374;;, + 98;3; -0.137034,-0.235439, 6.856374;;, + 99;3; -0.137034,-0.235439, 6.856374;;, + 100;3; -0.137034,-0.235439, 6.856374;;, + 101;3; -0.137034,-0.235439, 6.856374;;, + 102;3; -0.137034,-0.235439, 6.856374;;, + 103;3; -0.137034,-0.235439, 6.856374;;, + 104;3; -0.137034,-0.235439, 6.856374;;, + 105;3; -0.137034,-0.235439, 6.856374;;, + 106;3; -0.137034,-0.235439, 6.856374;;, + 107;3; -0.137034,-0.235439, 6.856374;;, + 108;3; -0.137034,-0.235439, 6.856374;;, + 109;3; -0.137034,-0.235439, 6.856374;;, + 110;3; -0.137034,-0.235439, 6.856374;;, + 111;3; -0.137034,-0.235439, 6.856374;;, + 112;3; -0.137034,-0.235439, 6.856374;;, + 113;3; -0.137034,-0.235439, 6.856374;;, + 114;3; -0.137034,-0.235439, 6.856374;;, + 115;3; -0.137034,-0.235439, 6.856374;;, + 116;3; -0.137034,-0.235439, 6.856374;;, + 117;3; -0.137034,-0.235439, 6.856374;;, + 118;3; -0.137034,-0.235439, 6.856374;;, + 119;3; -0.137034,-0.235439, 6.856374;;, + 120;3; -0.137034,-0.235439, 6.856374;;, + 121;3; -0.137034,-0.235439, 6.856374;;, + 122;3; -0.137034,-0.235439, 6.856374;;, + 123;3; -0.137034,-0.235439, 6.856374;;, + 124;3; -0.137034,-0.235439, 6.856374;;, + 125;3; -0.137034,-0.235439, 6.856374;;, + 126;3; -0.137034,-0.235439, 6.856374;;, + 127;3; -0.137034,-0.235439, 6.856374;;, + 128;3; -0.137034,-0.235439, 6.856374;;, + 129;3; -0.137034,-0.235439, 6.856374;;, + 130;3; -0.137034,-0.235439, 6.856374;;, + 131;3; -0.137034,-0.235439, 6.856374;;, + 132;3; -0.137034,-0.235439, 6.856374;;, + 133;3; -0.137034,-0.235439, 6.856374;;, + 134;3; -0.137034,-0.235439, 6.856374;;, + 135;3; -0.137034,-0.235439, 6.856374;;, + 136;3; -0.137034,-0.235439, 6.856374;;, + 137;3; -0.137034,-0.235439, 6.856374;;, + 138;3; -0.137034,-0.235439, 6.856374;;, + 139;3; -0.137034,-0.235439, 6.856374;;, + 140;3; -0.137034,-0.235439, 6.856374;;, + 141;3; -0.137034,-0.235439, 6.856374;;, + 142;3; -0.137034,-0.235439, 6.856374;;, + 143;3; -0.137034,-0.235439, 6.856374;;, + 144;3; -0.137034,-0.235439, 6.856374;;, + 145;3; -0.137034,-0.235439, 6.856374;;, + 146;3; -0.137034,-0.235439, 6.856374;;, + 147;3; -0.137034,-0.235439, 6.856374;;, + 148;3; -0.137034,-0.235439, 6.856374;;, + 149;3; -0.137034,-0.235439, 6.856374;;, + 150;3; -0.137034,-0.235439, 6.856374;;, + 151;3; -0.137034,-0.235439, 6.856374;;, + 152;3; -0.137034,-0.235439, 6.856374;;, + 153;3; -0.137034,-0.235439, 6.856374;;, + 154;3; -0.137034,-0.235439, 6.856374;;, + 155;3; -0.137034,-0.235439, 6.856374;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 2.153459, 2.153459, 2.153459;;, + 1;3; 2.153459, 2.153459, 2.153459;;, + 2;3; 2.153459, 2.153459, 2.153459;;, + 3;3; 2.153459, 2.153459, 2.153459;;, + 4;3; 2.153459, 2.153459, 2.153459;;, + 5;3; 2.153459, 2.153459, 2.153459;;, + 6;3; 2.153459, 2.153459, 2.153459;;, + 7;3; 2.153459, 2.153459, 2.153459;;, + 8;3; 2.153459, 2.153459, 2.153459;;, + 9;3; 2.153459, 2.153459, 2.153459;;, + 10;3; 2.153459, 2.153459, 2.153459;;, + 11;3; 2.153459, 2.153459, 2.153459;;, + 12;3; 2.153459, 2.153459, 2.153459;;, + 13;3; 2.153459, 2.153459, 2.153459;;, + 14;3; 2.153459, 2.153459, 2.153459;;, + 15;3; 2.153459, 2.153459, 2.153459;;, + 16;3; 2.153459, 2.153459, 2.153459;;, + 17;3; 2.153459, 2.153459, 2.153459;;, + 18;3; 2.153459, 2.153459, 2.153459;;, + 19;3; 2.153459, 2.153459, 2.153459;;, + 20;3; 2.153459, 2.153459, 2.153459;;, + 21;3; 2.153459, 2.153459, 2.153459;;, + 22;3; 2.153459, 2.153459, 2.153459;;, + 23;3; 2.153459, 2.153459, 2.153459;;, + 24;3; 2.153459, 2.153459, 2.153459;;, + 25;3; 2.153459, 2.153459, 2.153459;;, + 26;3; 2.153459, 2.153459, 2.153459;;, + 27;3; 2.153459, 2.153459, 2.153459;;, + 28;3; 2.153459, 2.153459, 2.153459;;, + 29;3; 2.153459, 2.153459, 2.153459;;, + 30;3; 2.153459, 2.153459, 2.153459;;, + 31;3; 2.153459, 2.153459, 2.153459;;, + 32;3; 2.153459, 2.153459, 2.153459;;, + 33;3; 2.153459, 2.153459, 2.153459;;, + 34;3; 2.153459, 2.153459, 2.153459;;, + 35;3; 2.153459, 2.153459, 2.153459;;, + 36;3; 2.153459, 2.153459, 2.153459;;, + 37;3; 2.153459, 2.153459, 2.153459;;, + 38;3; 2.153459, 2.153459, 2.153459;;, + 39;3; 2.153459, 2.153459, 2.153459;;, + 40;3; 2.153459, 2.153459, 2.153459;;, + 41;3; 2.153459, 2.153459, 2.153459;;, + 42;3; 2.153459, 2.153459, 2.153459;;, + 43;3; 2.153459, 2.153459, 2.153459;;, + 44;3; 2.153459, 2.153459, 2.153459;;, + 45;3; 2.153459, 2.153459, 2.153459;;, + 46;3; 2.153459, 2.153459, 2.153459;;, + 47;3; 2.153459, 2.153459, 2.153459;;, + 48;3; 2.153459, 2.153459, 2.153459;;, + 49;3; 2.153459, 2.153459, 2.153459;;, + 50;3; 2.153459, 2.153459, 2.153459;;, + 51;3; 2.153459, 2.153459, 2.153459;;, + 52;3; 2.153459, 2.153459, 2.153459;;, + 53;3; 2.153459, 2.153459, 2.153459;;, + 54;3; 2.153459, 2.153459, 2.153459;;, + 55;3; 2.153459, 2.153459, 2.153459;;, + 56;3; 2.153459, 2.153459, 2.153459;;, + 57;3; 2.153459, 2.153459, 2.153459;;, + 58;3; 2.153459, 2.153459, 2.153459;;, + 59;3; 2.153459, 2.153459, 2.153459;;, + 60;3; 2.153459, 2.153459, 2.153459;;, + 61;3; 2.153459, 2.153459, 2.153459;;, + 62;3; 2.153459, 2.153459, 2.153459;;, + 63;3; 2.153459, 2.153459, 2.153459;;, + 64;3; 2.153459, 2.153459, 2.153459;;, + 65;3; 2.153459, 2.153459, 2.153459;;, + 66;3; 2.153459, 2.153459, 2.153459;;, + 67;3; 2.153459, 2.153459, 2.153459;;, + 68;3; 2.153459, 2.153459, 2.153459;;, + 69;3; 2.153459, 2.153459, 2.153459;;, + 70;3; 2.153459, 2.153459, 2.153459;;, + 71;3; 2.153459, 2.153459, 2.153459;;, + 72;3; 2.153459, 2.153459, 2.153459;;, + 73;3; 2.153459, 2.153459, 2.153459;;, + 74;3; 2.153459, 2.153459, 2.153459;;, + 75;3; 2.153459, 2.153459, 2.153459;;, + 76;3; 2.153459, 2.153459, 2.153459;;, + 77;3; 2.153459, 2.153459, 2.153459;;, + 78;3; 2.153459, 2.153459, 2.153459;;, + 79;3; 2.153459, 2.153459, 2.153459;;, + 80;3; 2.153459, 2.153459, 2.153459;;, + 81;3; 2.153459, 2.153459, 2.153459;;, + 82;3; 2.153459, 2.153459, 2.153459;;, + 83;3; 2.153459, 2.153459, 2.153459;;, + 84;3; 2.153459, 2.153459, 2.153459;;, + 85;3; 2.153459, 2.153459, 2.153459;;, + 86;3; 2.153459, 2.153459, 2.153459;;, + 87;3; 2.153459, 2.153459, 2.153459;;, + 88;3; 2.153459, 2.153459, 2.153459;;, + 89;3; 2.153459, 2.153459, 2.153459;;, + 90;3; 2.153459, 2.153459, 2.153459;;, + 91;3; 2.153459, 2.153459, 2.153459;;, + 92;3; 2.153459, 2.153459, 2.153459;;, + 93;3; 2.153459, 2.153459, 2.153459;;, + 94;3; 2.153459, 2.153459, 2.153459;;, + 95;3; 2.153459, 2.153459, 2.153459;;, + 96;3; 2.153459, 2.153459, 2.153459;;, + 97;3; 2.153459, 2.153459, 2.153459;;, + 98;3; 2.153459, 2.153459, 2.153459;;, + 99;3; 2.153459, 2.153459, 2.153459;;, + 100;3; 2.153459, 2.153459, 2.153459;;, + 101;3; 2.153459, 2.153459, 2.153459;;, + 102;3; 2.153459, 2.153459, 2.153459;;, + 103;3; 2.153459, 2.153459, 2.153459;;, + 104;3; 2.153459, 2.153459, 2.153459;;, + 105;3; 2.153459, 2.153459, 2.153459;;, + 106;3; 2.153459, 2.153459, 2.153459;;, + 107;3; 2.153459, 2.153459, 2.153459;;, + 108;3; 2.153459, 2.153459, 2.153459;;, + 109;3; 2.153459, 2.153459, 2.153459;;, + 110;3; 2.153459, 2.153459, 2.153459;;, + 111;3; 2.153459, 2.153459, 2.153459;;, + 112;3; 2.153459, 2.153459, 2.153459;;, + 113;3; 2.153459, 2.153459, 2.153459;;, + 114;3; 2.153459, 2.153459, 2.153459;;, + 115;3; 2.153459, 2.153459, 2.153459;;, + 116;3; 2.153459, 2.153459, 2.153459;;, + 117;3; 2.153459, 2.153459, 2.153459;;, + 118;3; 2.153459, 2.153459, 2.153459;;, + 119;3; 2.153459, 2.153459, 2.153459;;, + 120;3; 2.153459, 2.153459, 2.153459;;, + 121;3; 2.153459, 2.153459, 2.153459;;, + 122;3; 2.153459, 2.153459, 2.153459;;, + 123;3; 2.153459, 2.153459, 2.153459;;, + 124;3; 2.153459, 2.153459, 2.153459;;, + 125;3; 2.153459, 2.153459, 2.153459;;, + 126;3; 2.153459, 2.153459, 2.153459;;, + 127;3; 2.153459, 2.153459, 2.153459;;, + 128;3; 2.153459, 2.153459, 2.153459;;, + 129;3; 2.153459, 2.153459, 2.153459;;, + 130;3; 2.153459, 2.153459, 2.153459;;, + 131;3; 2.153459, 2.153459, 2.153459;;, + 132;3; 2.153459, 2.153459, 2.153459;;, + 133;3; 2.153459, 2.153459, 2.153459;;, + 134;3; 2.153459, 2.153459, 2.153459;;, + 135;3; 2.153459, 2.153459, 2.153459;;, + 136;3; 2.153459, 2.153459, 2.153459;;, + 137;3; 2.153459, 2.153459, 2.153459;;, + 138;3; 2.153459, 2.153459, 2.153459;;, + 139;3; 2.153459, 2.153459, 2.153459;;, + 140;3; 2.153459, 2.153459, 2.153459;;, + 141;3; 2.153459, 2.153459, 2.153459;;, + 142;3; 2.153459, 2.153459, 2.153459;;, + 143;3; 2.153459, 2.153459, 2.153459;;, + 144;3; 2.153459, 2.153459, 2.153459;;, + 145;3; 2.153459, 2.153459, 2.153459;;, + 146;3; 2.153459, 2.153459, 2.153459;;, + 147;3; 2.153459, 2.153459, 2.153459;;, + 148;3; 2.153459, 2.153459, 2.153459;;, + 149;3; 2.153459, 2.153459, 2.153459;;, + 150;3; 2.153459, 2.153459, 2.153459;;, + 151;3; 2.153459, 2.153459, 2.153459;;, + 152;3; 2.153459, 2.153459, 2.153459;;, + 153;3; 2.153459, 2.153459, 2.153459;;, + 154;3; 2.153459, 2.153459, 2.153459;;, + 155;3; 2.153459, 2.153459, 2.153459;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs/models/mobs_warspider.png b/mods/mobs/models/mobs_warspider.png new file mode 100644 index 0000000..ab4ddc4 Binary files /dev/null and b/mods/mobs/models/mobs_warspider.png differ diff --git a/mods/mobs/models/mobs_warspider.x b/mods/mobs/models/mobs_warspider.x new file mode 100644 index 0000000..b0a95ca --- /dev/null +++ b/mods/mobs/models/mobs_warspider.x @@ -0,0 +1,6110 @@ +xof 0303txt 0032 + +template AnimTicksPerSecond { + <9E415A43-7BA6-4a73-8743-B73D47E88476> + DWORD AnimTicksPerSecond; +} + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + -0.000000, 1.000000, 0.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature_Bone { + FrameTransformMatrix { + 0.000000,-0.000000,-1.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -0.250000, 0.000000, 0.450000, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.550000,-0.000000, 1.000000;; + } + } // End of Armature_Bone_001 + Frame Armature_Bone_002 { + FrameTransformMatrix { + -0.000000,-0.000000,-1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.995258, 0.000000, 1.000000;; + } + } // End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.230000,-0.350000, 1.000000;; + } + } // End of Armature_Bone_003 + Frame Armature_Bone_004 { + FrameTransformMatrix { + -0.000000,-1.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.230000, 0.350000, 1.000000;; + } + } // End of Armature_Bone_004 + Frame Armature_Bone_005 { + FrameTransformMatrix { + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.900000,-0.350000, 1.000000;; + } + } // End of Armature_Bone_005 + Frame Armature_Bone_006 { + FrameTransformMatrix { + -0.000000,-1.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.900000, 0.350000, 1.000000;; + } + } // End of Armature_Bone_006 + Frame Armature_Bone_007 { + FrameTransformMatrix { + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.230000,-0.350000, 1.000000;; + } + } // End of Armature_Bone_007 + Frame Armature_Bone_008 { + FrameTransformMatrix { + -0.000000,-1.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.230000, 0.350000, 1.000000;; + } + } // End of Armature_Bone_008 + Frame Armature_Bone_009 { + FrameTransformMatrix { + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.670000,-0.350000, 1.000000;; + } + } // End of Armature_Bone_009 + Frame Armature_Bone_010 { + FrameTransformMatrix { + -0.000000,-1.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.670000, 0.350000, 1.000000;; + } + } // End of Armature_Bone_010 + } // End of Armature_Bone + Frame Group8 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { // Group8 mesh + 396; + -1.021228; 2.035352; 0.360000;, + -0.841228; 0.300332; 0.360000;, + -1.021228; 0.300332; 0.360000;, + -0.841228; 0.300332; 0.360000;, + -1.021228; 2.035352; 0.360000;, + -0.841228; 2.035352; 0.360000;, + -1.021228; 2.035352; 0.360000;, + -0.841228; 2.035352; 0.540000;, + -0.841228; 2.035352; 0.360000;, + -0.841228; 2.035352; 0.540000;, + -1.021228; 2.035352; 0.360000;, + -1.021228; 2.035352; 0.540000;, + -1.021228; 2.035352; 0.360000;, + -1.021228; 0.300332; 0.540000;, + -1.021228; 2.035352; 0.540000;, + -1.021228; 0.300332; 0.540000;, + -1.021228; 2.035352; 0.360000;, + -1.021228; 0.300332; 0.360000;, + -0.841228; 0.300332; 0.360000;, + -1.021228; 0.300332; 0.540000;, + -1.021228; 0.300332; 0.360000;, + -1.021228; 0.300332; 0.540000;, + -0.841228; 0.300332; 0.360000;, + -0.841228; 0.300332; 0.540000;, + -0.841228; 0.300332; 0.360000;, + -0.841228; 2.035352; 0.540000;, + -0.841228; 0.300332; 0.540000;, + -0.841228; 2.035352; 0.540000;, + -0.841228; 0.300332; 0.360000;, + -0.841228; 2.035352; 0.360000;, + -0.841228; 2.035352; 0.540000;, + -1.021228; 0.300332; 0.540000;, + -0.841228; 0.300332; 0.540000;, + -1.021228; 0.300332; 0.540000;, + -0.841228; 2.035352; 0.540000;, + -1.021228; 2.035352; 0.540000;, + -1.246228;-0.499668; 0.900000;, + -2.546228;-0.499668; 0.000000;, + -1.246228;-0.499668; 0.000000;, + -2.546228;-0.499668; 0.000000;, + -1.246228;-0.499668; 0.900000;, + -2.546228;-0.499668; 0.900000;, + -1.246228;-0.499668; 0.900000;, + -2.546228; 0.550332; 0.900000;, + -2.546228;-0.499668; 0.900000;, + -2.546228; 0.550332; 0.900000;, + -1.246228;-0.499668; 0.900000;, + -1.246228; 0.550332; 0.900000;, + -1.246228;-0.499668; 0.900000;, + -1.246228; 0.550332; 0.000000;, + -1.246228; 0.550332; 0.900000;, + -1.246228; 0.550332; 0.000000;, + -1.246228;-0.499668; 0.900000;, + -1.246228;-0.499668; 0.000000;, + -2.546228;-0.499668; 0.000000;, + -1.246228; 0.550332; 0.000000;, + -1.246228;-0.499668; 0.000000;, + -1.246228; 0.550332; 0.000000;, + -2.546228;-0.499668; 0.000000;, + -2.546228; 0.550332; 0.000000;, + -2.546228;-0.499668; 0.000000;, + -2.546228; 0.550332; 0.900000;, + -2.546228; 0.550332; 0.000000;, + -2.546228; 0.550332; 0.900000;, + -2.546228;-0.499668; 0.000000;, + -2.546228;-0.499668; 0.900000;, + -2.546228; 0.550332; 0.900000;, + -1.246228; 0.550332; 0.000000;, + -2.546228; 0.550332; 0.000000;, + -1.246228; 0.550332; 0.000000;, + -2.546228; 0.550332; 0.900000;, + -1.246228; 0.550332; 0.900000;, + -0.581228; 2.035352; 0.360000;, + -0.401228; 0.300332; 0.360000;, + -0.581228; 0.300332; 0.360000;, + -0.401228; 0.300332; 0.360000;, + -0.581228; 2.035352; 0.360000;, + -0.401228; 2.035352; 0.360000;, + -0.581228; 2.035352; 0.360000;, + -0.401228; 2.035352; 0.540000;, + -0.401228; 2.035352; 0.360000;, + -0.401228; 2.035352; 0.540000;, + -0.581228; 2.035352; 0.360000;, + -0.581228; 2.035352; 0.540000;, + -0.581228; 2.035352; 0.360000;, + -0.581228; 0.300332; 0.540000;, + -0.581228; 2.035352; 0.540000;, + -0.581228; 0.300332; 0.540000;, + -0.581228; 2.035352; 0.360000;, + -0.581228; 0.300332; 0.360000;, + -0.401228; 0.300332; 0.360000;, + -0.581228; 0.300332; 0.540000;, + -0.581228; 0.300332; 0.360000;, + -0.581228; 0.300332; 0.540000;, + -0.401228; 0.300332; 0.360000;, + -0.401228; 0.300332; 0.540000;, + -0.401228; 0.300332; 0.360000;, + -0.401228; 2.035352; 0.540000;, + -0.401228; 0.300332; 0.540000;, + -0.401228; 2.035352; 0.540000;, + -0.401228; 0.300332; 0.360000;, + -0.401228; 2.035352; 0.360000;, + -0.401228; 2.035352; 0.540000;, + -0.581228; 0.300332; 0.540000;, + -0.401228; 0.300332; 0.540000;, + -0.581228; 0.300332; 0.540000;, + -0.401228; 2.035352; 0.540000;, + -0.581228; 2.035352; 0.540000;, + 0.481772;-0.349668; 0.800000;, + -0.246228;-0.349668; 0.100000;, + 0.481772;-0.349668; 0.100000;, + -0.246228;-0.349668; 0.100000;, + 0.481772;-0.349668; 0.800000;, + -0.246228;-0.349668; 0.800000;, + 0.481772;-0.349668; 0.800000;, + -0.246228; 0.350332; 0.800000;, + -0.246228;-0.349668; 0.800000;, + -0.246228; 0.350332; 0.800000;, + 0.481772;-0.349668; 0.800000;, + 0.481772; 0.350332; 0.800000;, + 0.481772;-0.349668; 0.800000;, + 0.481772; 0.350332; 0.100000;, + 0.481772; 0.350332; 0.800000;, + 0.481772; 0.350332; 0.100000;, + 0.481772;-0.349668; 0.800000;, + 0.481772;-0.349668; 0.100000;, + -0.246228;-0.349668; 0.100000;, + 0.481772; 0.350332; 0.100000;, + 0.481772;-0.349668; 0.100000;, + 0.481772; 0.350332; 0.100000;, + -0.246228;-0.349668; 0.100000;, + -0.246228; 0.350332; 0.100000;, + -0.246228;-0.349668; 0.100000;, + -0.246228; 0.350332; 0.800000;, + -0.246228; 0.350332; 0.100000;, + -0.246228; 0.350332; 0.800000;, + -0.246228;-0.349668; 0.100000;, + -0.246228;-0.349668; 0.800000;, + -0.246228; 0.350332; 0.800000;, + 0.481772; 0.350332; 0.100000;, + -0.246228; 0.350332; 0.100000;, + 0.481772; 0.350332; 0.100000;, + -0.246228; 0.350332; 0.800000;, + 0.481772; 0.350332; 0.800000;, + 0.558772; 2.035352; 0.360000;, + 0.738772; 0.300332; 0.360000;, + 0.558772; 0.300332; 0.360000;, + 0.738772; 0.300332; 0.360000;, + 0.558772; 2.035352; 0.360000;, + 0.738772; 2.035352; 0.360000;, + 0.558772; 2.035352; 0.360000;, + 0.738772; 2.035352; 0.540000;, + 0.738772; 2.035352; 0.360000;, + 0.738772; 2.035352; 0.540000;, + 0.558772; 2.035352; 0.360000;, + 0.558772; 2.035352; 0.540000;, + 0.558772; 2.035352; 0.360000;, + 0.558772; 0.300332; 0.540000;, + 0.558772; 2.035352; 0.540000;, + 0.558772; 0.300332; 0.540000;, + 0.558772; 2.035352; 0.360000;, + 0.558772; 0.300332; 0.360000;, + 0.738772; 0.300332; 0.360000;, + 0.558772; 0.300332; 0.540000;, + 0.558772; 0.300332; 0.360000;, + 0.558772; 0.300332; 0.540000;, + 0.738772; 0.300332; 0.360000;, + 0.738772; 0.300332; 0.540000;, + 0.738772; 0.300332; 0.360000;, + 0.738772; 2.035352; 0.540000;, + 0.738772; 0.300332; 0.540000;, + 0.738772; 2.035352; 0.540000;, + 0.738772; 0.300332; 0.360000;, + 0.738772; 2.035352; 0.360000;, + 0.738772; 2.035352; 0.540000;, + 0.558772; 0.300332; 0.540000;, + 0.738772; 0.300332; 0.540000;, + 0.558772; 0.300332; 0.540000;, + 0.738772; 2.035352; 0.540000;, + 0.558772; 2.035352; 0.540000;, + -0.581228;-0.299668; 0.360000;, + -0.401228;-2.034688; 0.360000;, + -0.581228;-2.034688; 0.360000;, + -0.401228;-2.034688; 0.360000;, + -0.581228;-0.299668; 0.360000;, + -0.401228;-0.299668; 0.360000;, + -0.581228;-0.299668; 0.360000;, + -0.401228;-0.299668; 0.540000;, + -0.401228;-0.299668; 0.360000;, + -0.401228;-0.299668; 0.540000;, + -0.581228;-0.299668; 0.360000;, + -0.581228;-0.299668; 0.540000;, + -0.581228;-0.299668; 0.360000;, + -0.581228;-2.034688; 0.540000;, + -0.581228;-0.299668; 0.540000;, + -0.581228;-2.034688; 0.540000;, + -0.581228;-0.299668; 0.360000;, + -0.581228;-2.034688; 0.360000;, + -0.401228;-2.034688; 0.360000;, + -0.581228;-2.034688; 0.540000;, + -0.581228;-2.034688; 0.360000;, + -0.581228;-2.034688; 0.540000;, + -0.401228;-2.034688; 0.360000;, + -0.401228;-2.034688; 0.540000;, + -0.401228;-2.034688; 0.360000;, + -0.401228;-0.299668; 0.540000;, + -0.401228;-2.034688; 0.540000;, + -0.401228;-0.299668; 0.540000;, + -0.401228;-2.034688; 0.360000;, + -0.401228;-0.299668; 0.360000;, + -0.401228;-0.299668; 0.540000;, + -0.581228;-2.034688; 0.540000;, + -0.401228;-2.034688; 0.540000;, + -0.581228;-2.034688; 0.540000;, + -0.401228;-0.299668; 0.540000;, + -0.581228;-0.299668; 0.540000;, + 0.558772;-0.299668; 0.360000;, + 0.738772;-2.034688; 0.360000;, + 0.558772;-2.034688; 0.360000;, + 0.738772;-2.034688; 0.360000;, + 0.558772;-0.299668; 0.360000;, + 0.738772;-0.299668; 0.360000;, + 0.558772;-0.299668; 0.360000;, + 0.738772;-0.299668; 0.540000;, + 0.738772;-0.299668; 0.360000;, + 0.738772;-0.299668; 0.540000;, + 0.558772;-0.299668; 0.360000;, + 0.558772;-0.299668; 0.540000;, + 0.558772;-0.299668; 0.360000;, + 0.558772;-2.034688; 0.540000;, + 0.558772;-0.299668; 0.540000;, + 0.558772;-2.034688; 0.540000;, + 0.558772;-0.299668; 0.360000;, + 0.558772;-2.034688; 0.360000;, + 0.738772;-2.034688; 0.360000;, + 0.558772;-2.034688; 0.540000;, + 0.558772;-2.034688; 0.360000;, + 0.558772;-2.034688; 0.540000;, + 0.738772;-2.034688; 0.360000;, + 0.738772;-2.034688; 0.540000;, + 0.738772;-2.034688; 0.360000;, + 0.738772;-0.299668; 0.540000;, + 0.738772;-2.034688; 0.540000;, + 0.738772;-0.299668; 0.540000;, + 0.738772;-2.034688; 0.360000;, + 0.738772;-0.299668; 0.360000;, + 0.738772;-0.299668; 0.540000;, + 0.558772;-2.034688; 0.540000;, + 0.738772;-2.034688; 0.540000;, + 0.558772;-2.034688; 0.540000;, + 0.738772;-0.299668; 0.540000;, + 0.558772;-0.299668; 0.540000;, + -1.021228;-0.299668; 0.360000;, + -0.841228;-2.034688; 0.360000;, + -1.021228;-2.034688; 0.360000;, + -0.841228;-2.034688; 0.360000;, + -1.021228;-0.299668; 0.360000;, + -0.841228;-0.299668; 0.360000;, + -1.021228;-0.299668; 0.360000;, + -0.841228;-0.299668; 0.540000;, + -0.841228;-0.299668; 0.360000;, + -0.841228;-0.299668; 0.540000;, + -1.021228;-0.299668; 0.360000;, + -1.021228;-0.299668; 0.540000;, + -1.021228;-0.299668; 0.360000;, + -1.021228;-2.034688; 0.540000;, + -1.021228;-0.299668; 0.540000;, + -1.021228;-2.034688; 0.540000;, + -1.021228;-0.299668; 0.360000;, + -1.021228;-2.034688; 0.360000;, + -0.841228;-2.034688; 0.360000;, + -1.021228;-2.034688; 0.540000;, + -1.021228;-2.034688; 0.360000;, + -1.021228;-2.034688; 0.540000;, + -0.841228;-2.034688; 0.360000;, + -0.841228;-2.034688; 0.540000;, + -0.841228;-2.034688; 0.360000;, + -0.841228;-0.299668; 0.540000;, + -0.841228;-2.034688; 0.540000;, + -0.841228;-0.299668; 0.540000;, + -0.841228;-2.034688; 0.360000;, + -0.841228;-0.299668; 0.360000;, + -0.841228;-0.299668; 0.540000;, + -1.021228;-2.034688; 0.540000;, + -0.841228;-2.034688; 0.540000;, + -1.021228;-2.034688; 0.540000;, + -0.841228;-0.299668; 0.540000;, + -1.021228;-0.299668; 0.540000;, + 0.898772;-0.299668; 0.360000;, + 1.078772;-2.034688; 0.360000;, + 0.898772;-2.034688; 0.360000;, + 1.078772;-2.034688; 0.360000;, + 0.898772;-0.299668; 0.360000;, + 1.078772;-0.299668; 0.360000;, + 0.898772;-0.299668; 0.360000;, + 1.078772;-0.299668; 0.540000;, + 1.078772;-0.299668; 0.360000;, + 1.078772;-0.299668; 0.540000;, + 0.898772;-0.299668; 0.360000;, + 0.898772;-0.299668; 0.540000;, + 0.898772;-0.299668; 0.360000;, + 0.898772;-2.034688; 0.540000;, + 0.898772;-0.299668; 0.540000;, + 0.898772;-2.034688; 0.540000;, + 0.898772;-0.299668; 0.360000;, + 0.898772;-2.034688; 0.360000;, + 1.078772;-2.034688; 0.360000;, + 0.898772;-2.034688; 0.540000;, + 0.898772;-2.034688; 0.360000;, + 0.898772;-2.034688; 0.540000;, + 1.078772;-2.034688; 0.360000;, + 1.078772;-2.034688; 0.540000;, + 1.078772;-2.034688; 0.360000;, + 1.078772;-0.299668; 0.540000;, + 1.078772;-2.034688; 0.540000;, + 1.078772;-0.299668; 0.540000;, + 1.078772;-2.034688; 0.360000;, + 1.078772;-0.299668; 0.360000;, + 1.078772;-0.299668; 0.540000;, + 0.898772;-2.034688; 0.540000;, + 1.078772;-2.034688; 0.540000;, + 0.898772;-2.034688; 0.540000;, + 1.078772;-0.299668; 0.540000;, + 0.898772;-0.299668; 0.540000;, + 0.898772; 2.035352; 0.360000;, + 1.078772; 0.300332; 0.360000;, + 0.898772; 0.300332; 0.360000;, + 1.078772; 0.300332; 0.360000;, + 0.898772; 2.035352; 0.360000;, + 1.078772; 2.035352; 0.360000;, + 0.898772; 2.035352; 0.360000;, + 1.078772; 2.035352; 0.540000;, + 1.078772; 2.035352; 0.360000;, + 1.078772; 2.035352; 0.540000;, + 0.898772; 2.035352; 0.360000;, + 0.898772; 2.035352; 0.540000;, + 0.898772; 2.035352; 0.360000;, + 0.898772; 0.300332; 0.540000;, + 0.898772; 2.035352; 0.540000;, + 0.898772; 0.300332; 0.540000;, + 0.898772; 2.035352; 0.360000;, + 0.898772; 0.300332; 0.360000;, + 1.078772; 0.300332; 0.360000;, + 0.898772; 0.300332; 0.540000;, + 0.898772; 0.300332; 0.360000;, + 0.898772; 0.300332; 0.540000;, + 1.078772; 0.300332; 0.360000;, + 1.078772; 0.300332; 0.540000;, + 1.078772; 0.300332; 0.360000;, + 1.078772; 2.035352; 0.540000;, + 1.078772; 0.300332; 0.540000;, + 1.078772; 2.035352; 0.540000;, + 1.078772; 0.300332; 0.360000;, + 1.078772; 2.035352; 0.360000;, + 1.078772; 2.035352; 0.540000;, + 0.898772; 0.300332; 0.540000;, + 1.078772; 0.300332; 0.540000;, + 0.898772; 0.300332; 0.540000;, + 1.078772; 2.035352; 0.540000;, + 0.898772; 2.035352; 0.540000;, + 2.153772;-0.424668; 0.875000;, + 1.303772;-0.424668; 0.025000;, + 2.153772;-0.424668; 0.025000;, + 1.303772;-0.424668; 0.025000;, + 2.153772;-0.424668; 0.875000;, + 1.303772;-0.424668; 0.875000;, + 2.153772;-0.424668; 0.875000;, + 1.303772; 0.425332; 0.875000;, + 1.303772;-0.424668; 0.875000;, + 1.303772; 0.425332; 0.875000;, + 2.153772;-0.424668; 0.875000;, + 2.153772; 0.425332; 0.875000;, + 2.153772;-0.424668; 0.875000;, + 2.153772; 0.425332; 0.025000;, + 2.153772; 0.425332; 0.875000;, + 2.153772; 0.425332; 0.025000;, + 2.153772;-0.424668; 0.875000;, + 2.153772;-0.424668; 0.025000;, + 1.303772;-0.424668; 0.025000;, + 2.153772; 0.425332; 0.025000;, + 2.153772;-0.424668; 0.025000;, + 2.153772; 0.425332; 0.025000;, + 1.303772;-0.424668; 0.025000;, + 1.303772; 0.425332; 0.025000;, + 1.303772;-0.424668; 0.025000;, + 1.303772; 0.425332; 0.875000;, + 1.303772; 0.425332; 0.025000;, + 1.303772; 0.425332; 0.875000;, + 1.303772;-0.424668; 0.025000;, + 1.303772;-0.424668; 0.875000;, + 1.303772; 0.425332; 0.875000;, + 2.153772; 0.425332; 0.025000;, + 1.303772; 0.425332; 0.025000;, + 2.153772; 0.425332; 0.025000;, + 1.303772; 0.425332; 0.875000;, + 2.153772; 0.425332; 0.875000;; + 132; + 3;2,1,0;, + 3;5,4,3;, + 3;8,7,6;, + 3;11,10,9;, + 3;14,13,12;, + 3;17,16,15;, + 3;20,19,18;, + 3;23,22,21;, + 3;26,25,24;, + 3;29,28,27;, + 3;32,31,30;, + 3;35,34,33;, + 3;38,37,36;, + 3;41,40,39;, + 3;44,43,42;, + 3;47,46,45;, + 3;50,49,48;, + 3;53,52,51;, + 3;56,55,54;, + 3;59,58,57;, + 3;62,61,60;, + 3;65,64,63;, + 3;68,67,66;, + 3;71,70,69;, + 3;74,73,72;, + 3;77,76,75;, + 3;80,79,78;, + 3;83,82,81;, + 3;86,85,84;, + 3;89,88,87;, + 3;92,91,90;, + 3;95,94,93;, + 3;98,97,96;, + 3;101,100,99;, + 3;104,103,102;, + 3;107,106,105;, + 3;110,109,108;, + 3;113,112,111;, + 3;116,115,114;, + 3;119,118,117;, + 3;122,121,120;, + 3;125,124,123;, + 3;128,127,126;, + 3;131,130,129;, + 3;134,133,132;, + 3;137,136,135;, + 3;140,139,138;, + 3;143,142,141;, + 3;146,145,144;, + 3;149,148,147;, + 3;152,151,150;, + 3;155,154,153;, + 3;158,157,156;, + 3;161,160,159;, + 3;164,163,162;, + 3;167,166,165;, + 3;170,169,168;, + 3;173,172,171;, + 3;176,175,174;, + 3;179,178,177;, + 3;182,181,180;, + 3;185,184,183;, + 3;188,187,186;, + 3;191,190,189;, + 3;194,193,192;, + 3;197,196,195;, + 3;200,199,198;, + 3;203,202,201;, + 3;206,205,204;, + 3;209,208,207;, + 3;212,211,210;, + 3;215,214,213;, + 3;218,217,216;, + 3;221,220,219;, + 3;224,223,222;, + 3;227,226,225;, + 3;230,229,228;, + 3;233,232,231;, + 3;236,235,234;, + 3;239,238,237;, + 3;242,241,240;, + 3;245,244,243;, + 3;248,247,246;, + 3;251,250,249;, + 3;254,253,252;, + 3;257,256,255;, + 3;260,259,258;, + 3;263,262,261;, + 3;266,265,264;, + 3;269,268,267;, + 3;272,271,270;, + 3;275,274,273;, + 3;278,277,276;, + 3;281,280,279;, + 3;284,283,282;, + 3;287,286,285;, + 3;290,289,288;, + 3;293,292,291;, + 3;296,295,294;, + 3;299,298,297;, + 3;302,301,300;, + 3;305,304,303;, + 3;308,307,306;, + 3;311,310,309;, + 3;314,313,312;, + 3;317,316,315;, + 3;320,319,318;, + 3;323,322,321;, + 3;326,325,324;, + 3;329,328,327;, + 3;332,331,330;, + 3;335,334,333;, + 3;338,337,336;, + 3;341,340,339;, + 3;344,343,342;, + 3;347,346,345;, + 3;350,349,348;, + 3;353,352,351;, + 3;356,355,354;, + 3;359,358,357;, + 3;362,361,360;, + 3;365,364,363;, + 3;368,367,366;, + 3;371,370,369;, + 3;374,373,372;, + 3;377,376,375;, + 3;380,379,378;, + 3;383,382,381;, + 3;386,385,384;, + 3;389,388,387;, + 3;392,391,390;, + 3;395,394,393;; + MeshNormals { // Group8 normals + 132; + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;; + 132; + 3;0,0,0;, + 3;1,1,1;, + 3;2,2,2;, + 3;3,3,3;, + 3;4,4,4;, + 3;5,5,5;, + 3;6,6,6;, + 3;7,7,7;, + 3;8,8,8;, + 3;9,9,9;, + 3;10,10,10;, + 3;11,11,11;, + 3;12,12,12;, + 3;13,13,13;, + 3;14,14,14;, + 3;15,15,15;, + 3;16,16,16;, + 3;17,17,17;, + 3;18,18,18;, + 3;19,19,19;, + 3;20,20,20;, + 3;21,21,21;, + 3;22,22,22;, + 3;23,23,23;, + 3;24,24,24;, + 3;25,25,25;, + 3;26,26,26;, + 3;27,27,27;, + 3;28,28,28;, + 3;29,29,29;, + 3;30,30,30;, + 3;31,31,31;, + 3;32,32,32;, + 3;33,33,33;, + 3;34,34,34;, + 3;35,35,35;, + 3;36,36,36;, + 3;37,37,37;, + 3;38,38,38;, + 3;39,39,39;, + 3;40,40,40;, + 3;41,41,41;, + 3;42,42,42;, + 3;43,43,43;, + 3;44,44,44;, + 3;45,45,45;, + 3;46,46,46;, + 3;47,47,47;, + 3;48,48,48;, + 3;49,49,49;, + 3;50,50,50;, + 3;51,51,51;, + 3;52,52,52;, + 3;53,53,53;, + 3;54,54,54;, + 3;55,55,55;, + 3;56,56,56;, + 3;57,57,57;, + 3;58,58,58;, + 3;59,59,59;, + 3;60,60,60;, + 3;61,61,61;, + 3;62,62,62;, + 3;63,63,63;, + 3;64,64,64;, + 3;65,65,65;, + 3;66,66,66;, + 3;67,67,67;, + 3;68,68,68;, + 3;69,69,69;, + 3;70,70,70;, + 3;71,71,71;, + 3;72,72,72;, + 3;73,73,73;, + 3;74,74,74;, + 3;75,75,75;, + 3;76,76,76;, + 3;77,77,77;, + 3;78,78,78;, + 3;79,79,79;, + 3;80,80,80;, + 3;81,81,81;, + 3;82,82,82;, + 3;83,83,83;, + 3;84,84,84;, + 3;85,85,85;, + 3;86,86,86;, + 3;87,87,87;, + 3;88,88,88;, + 3;89,89,89;, + 3;90,90,90;, + 3;91,91,91;, + 3;92,92,92;, + 3;93,93,93;, + 3;94,94,94;, + 3;95,95,95;, + 3;96,96,96;, + 3;97,97,97;, + 3;98,98,98;, + 3;99,99,99;, + 3;100,100,100;, + 3;101,101,101;, + 3;102,102,102;, + 3;103,103,103;, + 3;104,104,104;, + 3;105,105,105;, + 3;106,106,106;, + 3;107,107,107;, + 3;108,108,108;, + 3;109,109,109;, + 3;110,110,110;, + 3;111,111,111;, + 3;112,112,112;, + 3;113,113,113;, + 3;114,114,114;, + 3;115,115,115;, + 3;116,116,116;, + 3;117,117,117;, + 3;118,118,118;, + 3;119,119,119;, + 3;120,120,120;, + 3;121,121,121;, + 3;122,122,122;, + 3;123,123,123;, + 3;124,124,124;, + 3;125,125,125;, + 3;126,126,126;, + 3;127,127,127;, + 3;128,128,128;, + 3;129,129,129;, + 3;130,130,130;, + 3;131,131,131;; + } // End of Group8 normals + MeshTextureCoords { // Group8 UV coordinates + 396; + 0.791890; 0.042023;, + 0.769813; 0.261376;, + 0.792562; 0.261306;, + 0.769813; 0.261376;, + 0.791890; 0.042023;, + 0.769140; 0.042093;, + 0.654039; 0.687069;, + 0.631220; 0.664389;, + 0.631290; 0.687139;, + 0.631220; 0.664389;, + 0.654039; 0.687069;, + 0.653970; 0.664319;, + 0.840589; 0.506007;, + 0.818513; 0.286654;, + 0.817840; 0.505937;, + 0.818513; 0.286654;, + 0.840589; 0.506007;, + 0.841262; 0.286723;, + 0.761662; 0.579451;, + 0.738843; 0.602130;, + 0.761592; 0.602200;, + 0.738843; 0.602130;, + 0.761662; 0.579451;, + 0.738912; 0.579381;, + 0.889289; 0.261376;, + 0.867212; 0.042023;, + 0.866540; 0.261306;, + 0.867212; 0.042023;, + 0.889289; 0.261376;, + 0.889962; 0.042093;, + 0.915912; 0.261376;, + 0.937989; 0.042023;, + 0.915239; 0.042093;, + 0.937989; 0.042023;, + 0.915912; 0.261376;, + 0.938662; 0.261306;, + 0.175538; 0.625391;, + 0.291573; 0.794100;, + 0.292089; 0.625748;, + 0.291573; 0.794100;, + 0.175538; 0.625391;, + 0.175022; 0.793742;, + 0.016501; 0.983071;, + 0.154432; 0.813366;, + 0.017022; 0.812944;, + 0.154432; 0.813366;, + 0.016501; 0.983071;, + 0.153910; 0.983492;, + 0.330007; 0.992934;, + 0.452425; 0.850997;, + 0.330444; 0.850622;, + 0.452425; 0.850997;, + 0.330007; 0.992934;, + 0.451989; 0.993308;, + 0.312934; 0.813407;, + 0.174973; 0.985292;, + 0.313460; 0.984867;, + 0.174973; 0.985292;, + 0.312934; 0.813407;, + 0.174447; 0.813831;, + 0.436312; 0.657161;, + 0.316831; 0.795693;, + 0.435886; 0.796059;, + 0.316831; 0.795693;, + 0.436312; 0.657161;, + 0.317258; 0.656796;, + 0.033508; 0.622901;, + 0.154544; 0.796589;, + 0.154010; 0.622532;, + 0.154544; 0.796589;, + 0.033508; 0.622901;, + 0.034042; 0.796959;, + 0.623041; 0.391917;, + 0.646463; 0.172704;, + 0.623714; 0.172634;, + 0.646463; 0.172704;, + 0.623041; 0.391917;, + 0.645790; 0.391987;, + 0.569101; 0.820105;, + 0.546281; 0.797425;, + 0.546351; 0.820174;, + 0.546281; 0.797425;, + 0.569101; 0.820105;, + 0.569031; 0.797355;, + 0.333405; 0.388448;, + 0.311328; 0.169095;, + 0.310655; 0.388379;, + 0.311328; 0.169095;, + 0.333405; 0.388448;, + 0.334078; 0.169165;, + 0.750233; 0.664389;, + 0.727414; 0.687069;, + 0.750163; 0.687139;, + 0.727414; 0.687069;, + 0.750233; 0.664389;, + 0.727483; 0.664320;, + 0.079845; 0.356852;, + 0.057769; 0.137499;, + 0.057096; 0.356782;, + 0.057769; 0.137499;, + 0.079845; 0.356852;, + 0.080518; 0.137569;, + 0.743863; 0.286723;, + 0.720440; 0.505937;, + 0.743190; 0.506007;, + 0.720440; 0.505937;, + 0.743863; 0.286723;, + 0.721113; 0.286654;, + 0.049423; 0.374174;, + 0.137611; 0.466455;, + 0.137893; 0.374445;, + 0.137611; 0.466455;, + 0.049423; 0.374174;, + 0.049141; 0.466183;, + 0.174944; 0.469990;, + 0.263132; 0.377710;, + 0.174662; 0.377981;, + 0.263132; 0.377710;, + 0.174944; 0.469990;, + 0.263415; 0.469719;, + 0.580273; 0.622991;, + 0.670973; 0.532845;, + 0.580550; 0.532567;, + 0.670973; 0.532845;, + 0.580273; 0.622991;, + 0.670696; 0.623268;, + 0.529615; 0.406926;, + 0.440862; 0.498664;, + 0.529333; 0.498935;, + 0.440862; 0.498664;, + 0.529615; 0.406926;, + 0.441145; 0.406654;, + 0.638413; 0.497521;, + 0.550214; 0.408779;, + 0.549943; 0.497250;, + 0.550214; 0.408779;, + 0.638413; 0.497521;, + 0.638685; 0.409050;, + 0.313837; 0.406042;, + 0.402590; 0.497780;, + 0.402308; 0.405770;, + 0.402590; 0.497780;, + 0.313837; 0.406042;, + 0.314120; 0.498051;, + 0.122426; 0.356782;, + 0.145849; 0.137569;, + 0.123099; 0.137499;, + 0.145849; 0.137569;, + 0.122426; 0.356782;, + 0.145176; 0.356852;, + 0.605943; 0.687069;, + 0.583123; 0.664389;, + 0.583193; 0.687139;, + 0.583123; 0.664389;, + 0.605943; 0.687069;, + 0.605873; 0.664319;, + 0.398735; 0.388448;, + 0.376659; 0.169095;, + 0.375986; 0.388379;, + 0.376659; 0.169095;, + 0.398735; 0.388448;, + 0.399408; 0.169165;, + 0.702136; 0.735166;, + 0.679317; 0.712486;, + 0.679387; 0.735236;, + 0.679317; 0.712486;, + 0.702136; 0.735166;, + 0.702066; 0.712416;, + 0.259206; 0.356852;, + 0.237129; 0.137499;, + 0.236457; 0.356782;, + 0.237129; 0.137499;, + 0.259206; 0.356852;, + 0.259879; 0.137569;, + 0.771603; 0.768078;, + 0.748180; 0.987291;, + 0.770930; 0.987361;, + 0.748180; 0.987291;, + 0.771603; 0.768078;, + 0.748853; 0.768008;, + 0.796880; 0.987291;, + 0.820302; 0.768078;, + 0.797553; 0.768008;, + 0.820302; 0.768078;, + 0.796880; 0.987291;, + 0.819630; 0.987361;, + 0.654039; 0.712486;, + 0.631220; 0.735166;, + 0.653970; 0.735236;, + 0.631220; 0.735166;, + 0.654039; 0.712486;, + 0.631290; 0.712416;, + 0.531771; 0.388448;, + 0.509694; 0.169095;, + 0.509021; 0.388379;, + 0.509694; 0.169095;, + 0.531771; 0.388448;, + 0.532444; 0.169165;, + 0.521004; 0.820105;, + 0.498185; 0.797425;, + 0.498254; 0.820174;, + 0.498185; 0.797425;, + 0.521004; 0.820105;, + 0.520934; 0.797355;, + 0.965729; 0.987361;, + 0.943652; 0.768008;, + 0.942979; 0.987291;, + 0.943652; 0.768008;, + 0.965729; 0.987361;, + 0.966402; 0.768078;, + 0.171799; 0.356852;, + 0.193876; 0.137499;, + 0.171126; 0.137569;, + 0.193876; 0.137499;, + 0.171799; 0.356852;, + 0.194548; 0.356782;, + 0.557721; 0.391917;, + 0.581143; 0.172704;, + 0.558394; 0.172634;, + 0.581143; 0.172704;, + 0.557721; 0.391917;, + 0.580471; 0.391987;, + 0.798330; 0.687069;, + 0.775510; 0.664389;, + 0.775580; 0.687139;, + 0.775510; 0.664389;, + 0.798330; 0.687069;, + 0.798260; 0.664320;, + 0.937989; 0.506007;, + 0.915912; 0.286654;, + 0.915239; 0.505937;, + 0.915912; 0.286654;, + 0.937989; 0.506007;, + 0.938662; 0.286723;, + 0.713565; 0.554034;, + 0.690746; 0.531354;, + 0.690816; 0.554103;, + 0.690746; 0.531354;, + 0.713565; 0.554034;, + 0.713495; 0.531284;, + 0.840589; 0.261376;, + 0.818513; 0.042023;, + 0.817840; 0.261306;, + 0.818513; 0.042023;, + 0.840589; 0.261376;, + 0.841262; 0.042093;, + 0.722903; 0.768078;, + 0.699481; 0.987291;, + 0.722230; 0.987361;, + 0.699481; 0.987291;, + 0.722903; 0.768078;, + 0.700153; 0.768008;, + 0.791890; 0.286654;, + 0.769813; 0.506007;, + 0.792562; 0.505937;, + 0.769813; 0.506007;, + 0.791890; 0.286654;, + 0.769140; 0.286723;, + 0.750233; 0.735166;, + 0.727414; 0.712486;, + 0.727483; 0.735236;, + 0.727414; 0.712486;, + 0.750233; 0.735166;, + 0.750163; 0.712416;, + 0.868329; 0.987361;, + 0.846253; 0.768008;, + 0.845580; 0.987292;, + 0.846253; 0.768008;, + 0.868329; 0.987361;, + 0.869002; 0.768078;, + 0.761662; 0.531354;, + 0.738843; 0.554034;, + 0.761592; 0.554103;, + 0.738843; 0.554034;, + 0.761662; 0.531354;, + 0.738912; 0.531284;, + 0.694490; 0.261376;, + 0.672413; 0.042023;, + 0.671741; 0.261306;, + 0.672413; 0.042023;, + 0.694490; 0.261376;, + 0.695163; 0.042093;, + 0.964612; 0.261376;, + 0.986689; 0.042023;, + 0.963939; 0.042093;, + 0.986689; 0.042023;, + 0.964612; 0.261376;, + 0.987361; 0.261306;, + 0.671741; 0.505937;, + 0.695163; 0.286723;, + 0.672413; 0.286654;, + 0.695163; 0.286723;, + 0.671741; 0.505937;, + 0.694490; 0.506007;, + 0.679387; 0.664320;, + 0.702066; 0.687139;, + 0.702136; 0.664389;, + 0.702066; 0.687139;, + 0.679387; 0.664320;, + 0.679317; 0.687069;, + 0.889289; 0.506007;, + 0.867212; 0.286654;, + 0.866540; 0.505937;, + 0.867212; 0.286654;, + 0.889289; 0.506007;, + 0.889962; 0.286723;, + 0.583193; 0.712416;, + 0.605873; 0.735236;, + 0.605943; 0.712486;, + 0.605873; 0.735236;, + 0.583193; 0.712416;, + 0.583123; 0.735166;, + 0.743190; 0.261376;, + 0.721113; 0.042023;, + 0.720440; 0.261306;, + 0.721113; 0.042023;, + 0.743190; 0.261376;, + 0.743863; 0.042093;, + 0.625504; 0.768078;, + 0.602081; 0.987292;, + 0.624831; 0.987361;, + 0.602081; 0.987292;, + 0.625504; 0.768078;, + 0.602754; 0.768008;, + 0.986689; 0.286654;, + 0.964612; 0.506006;, + 0.987361; 0.505937;, + 0.964612; 0.506006;, + 0.986689; 0.286654;, + 0.963939; 0.286723;, + 0.472907; 0.820105;, + 0.450088; 0.797425;, + 0.450158; 0.820174;, + 0.450088; 0.797425;, + 0.472907; 0.820105;, + 0.472837; 0.797355;, + 0.447435; 0.388448;, + 0.425358; 0.169095;, + 0.424686; 0.388379;, + 0.425358; 0.169095;, + 0.447435; 0.388448;, + 0.448108; 0.169165;, + 0.713565; 0.597276;, + 0.690746; 0.619956;, + 0.713495; 0.620026;, + 0.690746; 0.619956;, + 0.713565; 0.597276;, + 0.690816; 0.597207;, + 0.917029; 0.987361;, + 0.894952; 0.768008;, + 0.894280; 0.987292;, + 0.894952; 0.768008;, + 0.917029; 0.987361;, + 0.917702; 0.768078;, + 0.651454; 0.987361;, + 0.673531; 0.768008;, + 0.650781; 0.768078;, + 0.673531; 0.768008;, + 0.651454; 0.987361;, + 0.674203; 0.987291;, + 0.171126; 0.607116;, + 0.278884; 0.500017;, + 0.171456; 0.499687;, + 0.278884; 0.500017;, + 0.171126; 0.607116;, + 0.278555; 0.607445;, + 0.561052; 0.780245;, + 0.453953; 0.657919;, + 0.453623; 0.779871;, + 0.453953; 0.657919;, + 0.561052; 0.780245;, + 0.561381; 0.658294;, + 0.440634; 0.530577;, + 0.560163; 0.638335;, + 0.560531; 0.530906;, + 0.560163; 0.638335;, + 0.440634; 0.530577;, + 0.440266; 0.638005;, + 0.469375; 0.879603;, + 0.576474; 0.987361;, + 0.576804; 0.879933;, + 0.576474; 0.987361;, + 0.469375; 0.879603;, + 0.469046; 0.987032;, + 0.145519; 0.607445;, + 0.038420; 0.499687;, + 0.038090; 0.607116;, + 0.038420; 0.499687;, + 0.145519; 0.607445;, + 0.145849; 0.500017;, + 0.418084; 0.531284;, + 0.310985; 0.639042;, + 0.418413; 0.638712;, + 0.310985; 0.639042;, + 0.418084; 0.531284;, + 0.310655; 0.531613;; + } // End of Group8 UV coordinates + MeshMaterialList { // Group8 material list + 1; + 132; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material FrontCol { + 0.800000; 0.800000; 0.800000; 1.000000;; + 96.078431; + 0.164706; 0.164706; 0.164706;; + 0.000000; 0.000000; 0.000000;; + } + } // End of Group8 material list + XSkinMeshHeader { + 1; + 3; + 11; + } + SkinWeights { + "Armature_Bone_010"; + 36; + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + -0.920000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_010 skin weights + SkinWeights { + "Armature_Bone_008"; + 36; + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + -0.480000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_008 skin weights + SkinWeights { + "Armature_Bone_009"; + 36; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + 0.920000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_009 skin weights + SkinWeights { + "Armature_Bone"; + 36; + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.450000, 0.250000,-0.000000, 1.000000;; + } // End of Armature_Bone skin weights + SkinWeights { + "Armature_Bone_001"; + 36; + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000, 1.000000, 0.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -0.000000,-1.300000,-0.450000, 1.000000;; + } // End of Armature_Bone_001 skin weights + SkinWeights { + "Armature_Bone_002"; + 36; + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.000000,-1.000000,-0.000000, 0.000000, + 1.000000,-0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.245258,-0.450000, 1.000000;; + } // End of Armature_Bone_002 skin weights + SkinWeights { + "Armature_Bone_003"; + 36; + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.980000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_003 skin weights + SkinWeights { + "Armature_Bone_004"; + 36; + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.980000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_004 skin weights + SkinWeights { + "Armature_Bone_005"; + 36; + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.650000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_005 skin weights + SkinWeights { + "Armature_Bone_006"; + 36; + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.650000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_006 skin weights + SkinWeights { + "Armature_Bone_007"; + 36; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + 0.480000,-0.350000,-0.450000, 1.000000;; + } // End of Armature_Bone_007 skin weights + } // End of Group8 mesh + } // End of Group8 + } // End of Armature +} // End of Root +AnimTicksPerSecond { + 24; +} +AnimationSet Global { + Animation { + {Armature} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 1;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 2;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 3;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 4;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 5;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 6;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 7;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 8;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 9;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 10;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 11;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 12;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 13;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 14;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 15;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 16;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 17;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 18;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 19;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 20;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 21;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 22;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 23;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 24;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 25;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 26;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 27;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 28;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 29;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 30;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 31;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 32;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 33;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 34;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 35;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 36;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 37;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 38;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 39;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 40;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 41;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 42;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 43;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 44;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 45;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 46;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 47;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 48;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 49;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 50;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 51;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 52;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 53;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 54;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 55;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 56;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 57;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 58;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 59;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 60;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 61;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 62;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 63;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 64;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 65;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 66;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 67;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 68;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 69;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 70;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 71;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 72;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 73;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 74;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 75;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 76;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 77;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 78;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 79;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 80;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 81;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 82;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 83;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 84;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 85;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 86;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 87;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 88;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 89;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 90;4;-0.707107, 0.000000, 0.000000, 0.707107;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Armature_Bone} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 1;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 2;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 3;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 4;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 5;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 6;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 7;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 8;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 9;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 10;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 11;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 12;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 13;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 14;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 15;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 16;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 17;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 18;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 19;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 20;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 21;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 22;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 23;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 24;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 25;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 26;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 27;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 28;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 29;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 30;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 31;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 32;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 33;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 34;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 35;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 36;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 37;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 38;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 39;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 40;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 41;4;-0.499506, 0.499506, 0.500473,-0.500473;;, + 42;4;-0.498019, 0.498019, 0.501896,-0.501896;;, + 43;4;-0.495602, 0.495601, 0.504211,-0.504211;;, + 44;4;-0.492439, 0.492439, 0.507238,-0.507238;;, + 45;4;-0.488857, 0.488857, 0.510667,-0.510667;;, + 46;4;-0.485275, 0.485275, 0.514096,-0.514096;;, + 47;4;-0.482113, 0.482113, 0.517123,-0.517123;;, + 48;4;-0.479695, 0.479695, 0.519437,-0.519437;;, + 49;4;-0.478209, 0.478208, 0.520861,-0.520861;;, + 50;4;-0.477714, 0.477714, 0.521334,-0.521334;;, + 51;4;-0.478682, 0.478681, 0.520367,-0.520367;;, + 52;4;-0.481592, 0.481592, 0.517456,-0.517457;;, + 53;4;-0.486324, 0.486324, 0.512725,-0.512725;;, + 54;4;-0.492513, 0.492513, 0.506535,-0.506535;;, + 55;4;-0.499524, 0.499524, 0.499524,-0.499524;;, + 56;4;-0.506535, 0.506535, 0.492513,-0.492513;;, + 57;4;-0.512725, 0.512725, 0.486324,-0.486324;;, + 58;4;-0.517457, 0.517456, 0.481592,-0.481592;;, + 59;4;-0.520367, 0.520367, 0.478681,-0.478681;;, + 60;4;-0.521334, 0.521334, 0.477714,-0.477714;;, + 61;4;-0.521286, 0.521286, 0.477768,-0.477768;;, + 62;4;-0.521135, 0.521135, 0.477934,-0.477934;;, + 63;4;-0.520874, 0.520874, 0.478222,-0.478222;;, + 64;4;-0.520494, 0.520494, 0.478639,-0.478639;;, + 65;4;-0.519987, 0.519987, 0.479193,-0.479193;;, + 66;4;-0.519348, 0.519348, 0.479888,-0.479888;;, + 67;4;-0.518574, 0.518574, 0.480726,-0.480726;;, + 68;4;-0.517665, 0.517665, 0.481706,-0.481706;;, + 69;4;-0.516623, 0.516623, 0.482823,-0.482823;;, + 70;4;-0.515456, 0.515456, 0.484068,-0.484068;;, + 71;4;-0.514175, 0.514175, 0.485426,-0.485426;;, + 72;4;-0.512794, 0.512794, 0.486883,-0.486883;;, + 73;4;-0.511327, 0.511327, 0.488420,-0.488420;;, + 74;4;-0.509793, 0.509793, 0.490019,-0.490019;;, + 75;4;-0.508208, 0.508208, 0.491660,-0.491660;;, + 76;4;-0.506587, 0.506587, 0.493328,-0.493328;;, + 77;4;-0.504945, 0.504945, 0.495007,-0.495007;;, + 78;4;-0.503293, 0.503293, 0.496685,-0.496686;;, + 79;4;-0.501642, 0.501642, 0.498352,-0.498352;;, + 80;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 81;4;-0.498096, 0.498096, 0.501883,-0.501883;;, + 82;4;-0.495674, 0.495674, 0.504242,-0.504242;;, + 83;4;-0.492810, 0.492810, 0.507002,-0.507002;;, + 84;4;-0.489661, 0.489661, 0.510016,-0.510016;;, + 85;4;-0.486463, 0.486462, 0.513062,-0.513062;;, + 86;4;-0.483491, 0.483491, 0.515880,-0.515880;;, + 87;4;-0.481000, 0.481000, 0.518236,-0.518236;;, + 88;4;-0.479167, 0.479167, 0.519965,-0.519965;;, + 89;4;-0.478071, 0.478071, 0.520998,-0.520998;;, + 90;4;-0.477714, 0.477714, 0.521334,-0.521334;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.250000, 0.000000, 0.450000;;, + 1;3;-0.250000, 0.000000, 0.450000;;, + 2;3;-0.250000, 0.000000, 0.450000;;, + 3;3;-0.250000, 0.000000, 0.450000;;, + 4;3;-0.250000, 0.000000, 0.450000;;, + 5;3;-0.250000, 0.000000, 0.450000;;, + 6;3;-0.250000, 0.000000, 0.450000;;, + 7;3;-0.250000, 0.000000, 0.450000;;, + 8;3;-0.250000, 0.000000, 0.450000;;, + 9;3;-0.250000, 0.000000, 0.450000;;, + 10;3;-0.250000, 0.000000, 0.450000;;, + 11;3;-0.250000, 0.000000, 0.450000;;, + 12;3;-0.250000, 0.000000, 0.450000;;, + 13;3;-0.250000, 0.000000, 0.450000;;, + 14;3;-0.250000, 0.000000, 0.450000;;, + 15;3;-0.250000, 0.000000, 0.450000;;, + 16;3;-0.250000, 0.000000, 0.450000;;, + 17;3;-0.250000, 0.000000, 0.450000;;, + 18;3;-0.250000, 0.000000, 0.450000;;, + 19;3;-0.250000, 0.000000, 0.450000;;, + 20;3;-0.250000, 0.000000, 0.450000;;, + 21;3;-0.250000, 0.000000, 0.450000;;, + 22;3;-0.250000, 0.000000, 0.450000;;, + 23;3;-0.250000, 0.000000, 0.450000;;, + 24;3;-0.250000, 0.000000, 0.450000;;, + 25;3;-0.250000, 0.000000, 0.450000;;, + 26;3;-0.250000, 0.000000, 0.450000;;, + 27;3;-0.250000, 0.000000, 0.450000;;, + 28;3;-0.250000, 0.000000, 0.450000;;, + 29;3;-0.250000, 0.000000, 0.450000;;, + 30;3;-0.250000, 0.000000, 0.450000;;, + 31;3;-0.250000, 0.000000, 0.450000;;, + 32;3;-0.250000, 0.000000, 0.450000;;, + 33;3;-0.250000, 0.000000, 0.450000;;, + 34;3;-0.250000, 0.000000, 0.450000;;, + 35;3;-0.250000, 0.000000, 0.450000;;, + 36;3;-0.250000, 0.000000, 0.450000;;, + 37;3;-0.250000, 0.000000, 0.450000;;, + 38;3;-0.250000, 0.000000, 0.450000;;, + 39;3;-0.250000, 0.000000, 0.450000;;, + 40;3;-0.250000, 0.000000, 0.450000;;, + 41;3;-0.256652,-0.000000, 0.450000;;, + 42;3;-0.276671,-0.000000, 0.450000;;, + 43;3;-0.309217,-0.000000, 0.450000;;, + 44;3;-0.351785,-0.000000, 0.450000;;, + 45;3;-0.400005,-0.000000, 0.450000;;, + 46;3;-0.448223,-0.000000, 0.450000;;, + 47;3;-0.490788,-0.000000, 0.450000;;, + 48;3;-0.523332,-0.000000, 0.450000;;, + 49;3;-0.543349,-0.000000, 0.450000;;, + 50;3;-0.550000, 0.000000, 0.450000;;, + 51;3;-0.538915, 0.000000, 0.450665;;, + 52;3;-0.505555, 0.000000, 0.452667;;, + 53;3;-0.451317, 0.000000, 0.455921;;, + 54;3;-0.380379, 0.000000, 0.460178;;, + 55;3;-0.300018, 0.000000, 0.465000;;, + 56;3;-0.219653, 0.000000, 0.469822;;, + 57;3;-0.148705, 0.000000, 0.474079;;, + 58;3;-0.094456, 0.000000, 0.477333;;, + 59;3;-0.061088, 0.000000, 0.479335;;, + 60;3;-0.050000, 0.000000, 0.480000;;, + 61;3;-0.050255, 0.000000, 0.479835;;, + 62;3;-0.051081, 0.000000, 0.479335;;, + 63;3;-0.052583, 0.000000, 0.478499;;, + 64;3;-0.054869, 0.000000, 0.477333;;, + 65;3;-0.058060, 0.000000, 0.475851;;, + 66;3;-0.062274, 0.000000, 0.474079;;, + 67;3;-0.067628, 0.000000, 0.472053;;, + 68;3;-0.074226, 0.000000, 0.469822;;, + 69;3;-0.082149, 0.000000, 0.467448;;, + 70;3;-0.091450, 0.000000, 0.465000;;, + 71;3;-0.102149, 0.000000, 0.462552;;, + 72;3;-0.114226, 0.000000, 0.460178;;, + 73;3;-0.127628, 0.000000, 0.457947;;, + 74;3;-0.142274, 0.000000, 0.455921;;, + 75;3;-0.158060, 0.000000, 0.454149;;, + 76;3;-0.174869, 0.000000, 0.452667;;, + 77;3;-0.192583, 0.000000, 0.451501;;, + 78;3;-0.211082, 0.000000, 0.450665;;, + 79;3;-0.230255,-0.000000, 0.450165;;, + 80;3;-0.250000,-0.000000, 0.450000;;, + 81;3;-0.273894,-0.000000, 0.450000;;, + 82;3;-0.305344,-0.000000, 0.450000;;, + 83;3;-0.343336,-0.000000, 0.450000;;, + 84;3;-0.385731,-0.000000, 0.450000;;, + 85;3;-0.429259,-0.000000, 0.450000;;, + 86;3;-0.470015,-0.000000, 0.450000;;, + 87;3;-0.504371,-0.000000, 0.450000;;, + 88;3;-0.529776,-0.000000, 0.450000;;, + 89;3;-0.545022,-0.000000, 0.450000;;, + 90;3;-0.550000, 0.000000, 0.450000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 1;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 2;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 3;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 4;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 5;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 6;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 7;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 8;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 9;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 10;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 11;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 12;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 13;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 14;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 15;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 16;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 17;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 18;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 19;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 20;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 21;4;-0.707085,-0.001645,-0.707085, 0.001645;;, + 22;4;-0.707025,-0.006280,-0.707025, 0.006280;;, + 23;4;-0.706947,-0.012230,-0.706947, 0.012230;;, + 24;4;-0.706886,-0.016865,-0.706886, 0.016865;;, + 25;4;-0.706865,-0.018510,-0.706865, 0.018510;;, + 26;4;-0.706886,-0.017462,-0.706886, 0.017462;;, + 27;4;-0.706947,-0.014250,-0.706947, 0.014249;;, + 28;4;-0.707025,-0.009423,-0.707025, 0.009423;;, + 29;4;-0.707085,-0.004300,-0.707085, 0.004300;;, + 30;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 31;4;-0.707085, 0.004299,-0.707085,-0.004300;;, + 32;4;-0.707025, 0.009423,-0.707025,-0.009423;;, + 33;4;-0.706947, 0.014249,-0.706947,-0.014249;;, + 34;4;-0.706886, 0.017462,-0.706886,-0.017462;;, + 35;4;-0.706865, 0.018510,-0.706865,-0.018510;;, + 36;4;-0.706886, 0.016864,-0.706886,-0.016865;;, + 37;4;-0.706947, 0.012230,-0.706947,-0.012230;;, + 38;4;-0.707025, 0.006280,-0.707025,-0.006280;;, + 39;4;-0.707085, 0.001645,-0.707085,-0.001645;;, + 40;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 41;4;-0.707092, 0.000684,-0.707092, 0.000684;;, + 42;4;-0.707047, 0.002742,-0.707047, 0.002742;;, + 43;4;-0.706974, 0.006088,-0.706974, 0.006088;;, + 44;4;-0.706879, 0.010464,-0.706879, 0.010464;;, + 45;4;-0.706770, 0.015422,-0.706770, 0.015422;;, + 46;4;-0.706662, 0.020379,-0.706662, 0.020380;;, + 47;4;-0.706567, 0.024756,-0.706567, 0.024756;;, + 48;4;-0.706494, 0.028102,-0.706494, 0.028102;;, + 49;4;-0.706449, 0.030160,-0.706449, 0.030160;;, + 50;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 51;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 52;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 53;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 54;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 55;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 56;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 57;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 58;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 59;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 60;4;-0.706434, 0.030843,-0.706434, 0.030844;;, + 61;4;-0.706438, 0.030673,-0.706438, 0.030674;;, + 62;4;-0.706449, 0.030160,-0.706449, 0.030160;;, + 63;4;-0.706468, 0.029301,-0.706468, 0.029301;;, + 64;4;-0.706494, 0.028102,-0.706494, 0.028102;;, + 65;4;-0.706527, 0.026578,-0.706527, 0.026578;;, + 66;4;-0.706567, 0.024756,-0.706567, 0.024756;;, + 67;4;-0.706612, 0.022673,-0.706612, 0.022673;;, + 68;4;-0.706662, 0.020379,-0.706662, 0.020380;;, + 69;4;-0.706716, 0.017939,-0.706716, 0.017939;;, + 70;4;-0.706770, 0.015422,-0.706770, 0.015422;;, + 71;4;-0.706825, 0.012905,-0.706825, 0.012905;;, + 72;4;-0.706879, 0.010464,-0.706879, 0.010464;;, + 73;4;-0.706929, 0.008171,-0.706929, 0.008171;;, + 74;4;-0.706974, 0.006088,-0.706974, 0.006088;;, + 75;4;-0.707014, 0.004265,-0.707014, 0.004265;;, + 76;4;-0.707047, 0.002742,-0.707047, 0.002742;;, + 77;4;-0.707073, 0.001543,-0.707073, 0.001543;;, + 78;4;-0.707092, 0.000684,-0.707092, 0.000684;;, + 79;4;-0.707103, 0.000170,-0.707103, 0.000170;;, + 80;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 81;4;-0.707092, 0.000684,-0.707092, 0.000684;;, + 82;4;-0.707047, 0.002742,-0.707047, 0.002742;;, + 83;4;-0.706974, 0.006088,-0.706974, 0.006088;;, + 84;4;-0.706879, 0.010464,-0.706879, 0.010464;;, + 85;4;-0.706770, 0.015422,-0.706770, 0.015422;;, + 86;4;-0.706662, 0.020379,-0.706662, 0.020379;;, + 87;4;-0.706567, 0.024756,-0.706567, 0.024756;;, + 88;4;-0.706494, 0.028102,-0.706494, 0.028102;;, + 89;4;-0.706449, 0.030160,-0.706449, 0.030160;;, + 90;4;-0.706434, 0.030843,-0.706434, 0.030844;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.650000, 0.000000;;, + 1;3;-0.000000, 0.650000, 0.000000;;, + 2;3;-0.000000, 0.650000, 0.000000;;, + 3;3;-0.000000, 0.650000, 0.000000;;, + 4;3;-0.000000, 0.650000, 0.000000;;, + 5;3;-0.000000, 0.650000, 0.000000;;, + 6;3;-0.000000, 0.650000, 0.000000;;, + 7;3;-0.000000, 0.650000, 0.000000;;, + 8;3;-0.000000, 0.650000, 0.000000;;, + 9;3;-0.000000, 0.650000, 0.000000;;, + 10;3;-0.000000, 0.650000, 0.000000;;, + 11;3;-0.000000, 0.650000, 0.000000;;, + 12;3;-0.000000, 0.650000, 0.000000;;, + 13;3;-0.000000, 0.650000, 0.000000;;, + 14;3;-0.000000, 0.650000, 0.000000;;, + 15;3;-0.000000, 0.650000, 0.000000;;, + 16;3;-0.000000, 0.650000, 0.000000;;, + 17;3;-0.000000, 0.650000, 0.000000;;, + 18;3;-0.000000, 0.650000, 0.000000;;, + 19;3;-0.000000, 0.650000, 0.000000;;, + 20;3;-0.000000, 0.650000, 0.000000;;, + 21;3;-0.000000, 0.650000, 0.000000;;, + 22;3;-0.000000, 0.650000, 0.000000;;, + 23;3;-0.000000, 0.650000, 0.000000;;, + 24;3;-0.000000, 0.650000, 0.000000;;, + 25;3;-0.000000, 0.650000, 0.000000;;, + 26;3;-0.000000, 0.650000, 0.000000;;, + 27;3;-0.000000, 0.650000, 0.000000;;, + 28;3;-0.000000, 0.650000, 0.000000;;, + 29;3;-0.000000, 0.650000, 0.000000;;, + 30;3;-0.000000, 0.650000, 0.000000;;, + 31;3;-0.000000, 0.650000, 0.000000;;, + 32;3;-0.000000, 0.650000, 0.000000;;, + 33;3;-0.000000, 0.650000, 0.000000;;, + 34;3;-0.000000, 0.650000, 0.000000;;, + 35;3;-0.000000, 0.650000, 0.000000;;, + 36;3;-0.000000, 0.650000, 0.000000;;, + 37;3;-0.000000, 0.650000, 0.000000;;, + 38;3;-0.000000, 0.650000, 0.000000;;, + 39;3;-0.000000, 0.650000, 0.000000;;, + 40;3;-0.000000, 0.650000, 0.000000;;, + 41;3; 0.000000, 0.650000, 0.000000;;, + 42;3; 0.000000, 0.650000, 0.000000;;, + 43;3; 0.000000, 0.650000, 0.000000;;, + 44;3;-0.000000, 0.650000, 0.000000;;, + 45;3;-0.000000, 0.650000, 0.000000;;, + 46;3;-0.000000, 0.650000,-0.000000;;, + 47;3; 0.000000, 0.650000, 0.000000;;, + 48;3; 0.000000, 0.650000,-0.000000;;, + 49;3; 0.000000, 0.650000,-0.000000;;, + 50;3; 0.000000, 0.650000,-0.000000;;, + 51;3; 0.000000, 0.650000,-0.000000;;, + 52;3;-0.000000, 0.650000, 0.000000;;, + 53;3; 0.000000, 0.650000,-0.000000;;, + 54;3;-0.000000, 0.650000,-0.000000;;, + 55;3;-0.000000, 0.650000,-0.000000;;, + 56;3; 0.000000, 0.650000,-0.000000;;, + 57;3; 0.000000, 0.650000,-0.000000;;, + 58;3;-0.000000, 0.650000,-0.000000;;, + 59;3; 0.000000, 0.650000,-0.000000;;, + 60;3;-0.000000, 0.650000,-0.000000;;, + 61;3; 0.000000, 0.650000,-0.000000;;, + 62;3;-0.000000, 0.650000, 0.000000;;, + 63;3; 0.000000, 0.650000,-0.000000;;, + 64;3; 0.000000, 0.650000, 0.000000;;, + 65;3;-0.000000, 0.650000, 0.000000;;, + 66;3;-0.000000, 0.650000,-0.000000;;, + 67;3;-0.000000, 0.650000,-0.000000;;, + 68;3;-0.000000, 0.650000, 0.000000;;, + 69;3;-0.000000, 0.650000,-0.000000;;, + 70;3;-0.000000, 0.650000, 0.000000;;, + 71;3; 0.000000, 0.650000,-0.000000;;, + 72;3;-0.000000, 0.650000,-0.000000;;, + 73;3;-0.000000, 0.650000,-0.000000;;, + 74;3;-0.000000, 0.650000, 0.000000;;, + 75;3; 0.000000, 0.650000, 0.000000;;, + 76;3;-0.000000, 0.650000,-0.000000;;, + 77;3;-0.000000, 0.650000, 0.000000;;, + 78;3; 0.000000, 0.650000,-0.000000;;, + 79;3;-0.000000, 0.650000, 0.000000;;, + 80;3;-0.000000, 0.650000, 0.000000;;, + 81;3;-0.000000, 0.650000, 0.000000;;, + 82;3;-0.000000, 0.650000, 0.000000;;, + 83;3; 0.000000, 0.650000,-0.000000;;, + 84;3;-0.000000, 0.650000, 0.000000;;, + 85;3; 0.000000, 0.650000,-0.000000;;, + 86;3;-0.000000, 0.650000, 0.000000;;, + 87;3;-0.000000, 0.650000,-0.000000;;, + 88;3; 0.000000, 0.650000,-0.000000;;, + 89;3; 0.000000, 0.650000,-0.000000;;, + 90;3; 0.000000, 0.650000,-0.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { // Rotation + 0; + 91; + 0;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 1;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 2;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 3;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 4;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 5;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 6;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 7;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 8;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 9;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 10;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 11;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 12;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 13;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 14;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 15;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 16;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 17;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 18;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 19;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 20;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 21;4; 0.001645,-0.707085, 0.001645, 0.707085;;, + 22;4; 0.006280,-0.707025, 0.006280, 0.707025;;, + 23;4; 0.012230,-0.706947, 0.012230, 0.706947;;, + 24;4; 0.016865,-0.706886, 0.016865, 0.706886;;, + 25;4; 0.018510,-0.706864, 0.018510, 0.706865;;, + 26;4; 0.017462,-0.706886, 0.017462, 0.706886;;, + 27;4; 0.014249,-0.706947, 0.014250, 0.706947;;, + 28;4; 0.009423,-0.707025, 0.009423, 0.707025;;, + 29;4; 0.004300,-0.707085, 0.004300, 0.707085;;, + 30;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 31;4;-0.004299,-0.707085,-0.004299, 0.707085;;, + 32;4;-0.009423,-0.707025,-0.009423, 0.707025;;, + 33;4;-0.014249,-0.706947,-0.014249, 0.706947;;, + 34;4;-0.017462,-0.706886,-0.017462, 0.706886;;, + 35;4;-0.018510,-0.706864,-0.018510, 0.706865;;, + 36;4;-0.016865,-0.706886,-0.016864, 0.706886;;, + 37;4;-0.012230,-0.706947,-0.012230, 0.706947;;, + 38;4;-0.006280,-0.707025,-0.006280, 0.707025;;, + 39;4;-0.001645,-0.707085,-0.001645, 0.707085;;, + 40;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 41;4; 0.001366,-0.707047,-0.001366, 0.707047;;, + 42;4; 0.005478,-0.706868,-0.005478, 0.706868;;, + 43;4; 0.012164,-0.706576,-0.012164, 0.706576;;, + 44;4; 0.020908,-0.706194,-0.020908, 0.706194;;, + 45;4; 0.030814,-0.705761,-0.030814, 0.705762;;, + 46;4; 0.040720,-0.705329,-0.040720, 0.705329;;, + 47;4; 0.049465,-0.704947,-0.049465, 0.704947;;, + 48;4; 0.056150,-0.704655,-0.056150, 0.704655;;, + 49;4; 0.060262,-0.704476,-0.060262, 0.704476;;, + 50;4; 0.061628,-0.704416,-0.061628, 0.704416;;, + 51;4; 0.060262,-0.704476,-0.060262, 0.704476;;, + 52;4; 0.056150,-0.704655,-0.056150, 0.704655;;, + 53;4; 0.049465,-0.704947,-0.049465, 0.704947;;, + 54;4; 0.040720,-0.705329,-0.040720, 0.705329;;, + 55;4; 0.030814,-0.705761,-0.030814, 0.705762;;, + 56;4; 0.020908,-0.706194,-0.020908, 0.706194;;, + 57;4; 0.012164,-0.706576,-0.012164, 0.706576;;, + 58;4; 0.005478,-0.706868,-0.005478, 0.706868;;, + 59;4; 0.001366,-0.707047,-0.001366, 0.707047;;, + 60;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 61;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 62;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 63;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 64;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 65;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 66;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 67;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 68;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 69;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 70;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 71;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 72;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 73;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 74;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 75;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 76;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 77;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 78;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 79;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 80;4; 0.000000,-0.707107, 0.000000, 0.707107;;, + 81;4; 0.001366,-0.707047,-0.001366, 0.707047;;, + 82;4; 0.005478,-0.706868,-0.005478, 0.706868;;, + 83;4; 0.012164,-0.706576,-0.012164, 0.706576;;, + 84;4; 0.020908,-0.706194,-0.020908, 0.706194;;, + 85;4; 0.030814,-0.705761,-0.030814, 0.705762;;, + 86;4; 0.040720,-0.705329,-0.040720, 0.705329;;, + 87;4; 0.049464,-0.704947,-0.049464, 0.704947;;, + 88;4; 0.056150,-0.704655,-0.056150, 0.704655;;, + 89;4; 0.060262,-0.704476,-0.060262, 0.704476;;, + 90;4; 0.061628,-0.704416,-0.061628, 0.704416;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.104742,-0.000000;;, + 1;3;-0.000000, 0.104742,-0.000000;;, + 2;3;-0.000000, 0.104742,-0.000000;;, + 3;3;-0.000000, 0.104742,-0.000000;;, + 4;3;-0.000000, 0.104742,-0.000000;;, + 5;3;-0.000000, 0.104742,-0.000000;;, + 6;3;-0.000000, 0.104742,-0.000000;;, + 7;3;-0.000000, 0.104742,-0.000000;;, + 8;3;-0.000000, 0.104742,-0.000000;;, + 9;3;-0.000000, 0.104742,-0.000000;;, + 10;3;-0.000000, 0.104742,-0.000000;;, + 11;3;-0.000000, 0.104742,-0.000000;;, + 12;3;-0.000000, 0.104742,-0.000000;;, + 13;3;-0.000000, 0.104742,-0.000000;;, + 14;3;-0.000000, 0.104742,-0.000000;;, + 15;3;-0.000000, 0.104742,-0.000000;;, + 16;3;-0.000000, 0.104742,-0.000000;;, + 17;3;-0.000000, 0.104742,-0.000000;;, + 18;3;-0.000000, 0.104742,-0.000000;;, + 19;3;-0.000000, 0.104742,-0.000000;;, + 20;3;-0.000000, 0.104742,-0.000000;;, + 21;3;-0.000000, 0.104742,-0.000000;;, + 22;3;-0.000000, 0.104742,-0.000000;;, + 23;3;-0.000000, 0.104742,-0.000000;;, + 24;3;-0.000000, 0.104742,-0.000000;;, + 25;3;-0.000000, 0.104742,-0.000000;;, + 26;3;-0.000000, 0.104742,-0.000000;;, + 27;3;-0.000000, 0.104742,-0.000000;;, + 28;3;-0.000000, 0.104742,-0.000000;;, + 29;3;-0.000000, 0.104742,-0.000000;;, + 30;3;-0.000000, 0.104742,-0.000000;;, + 31;3;-0.000000, 0.104742,-0.000000;;, + 32;3;-0.000000, 0.104742,-0.000000;;, + 33;3;-0.000000, 0.104742,-0.000000;;, + 34;3;-0.000000, 0.104742,-0.000000;;, + 35;3;-0.000000, 0.104742,-0.000000;;, + 36;3;-0.000000, 0.104742,-0.000000;;, + 37;3;-0.000000, 0.104742,-0.000000;;, + 38;3;-0.000000, 0.104742,-0.000000;;, + 39;3;-0.000000, 0.104742,-0.000000;;, + 40;3;-0.000000, 0.104742,-0.000000;;, + 41;3;-0.000000, 0.104742,-0.000000;;, + 42;3;-0.000000, 0.104742,-0.000000;;, + 43;3;-0.000000, 0.104742,-0.000000;;, + 44;3;-0.000000, 0.104742, 0.000000;;, + 45;3;-0.000000, 0.104742, 0.000000;;, + 46;3;-0.000000, 0.104742, 0.000000;;, + 47;3;-0.000000, 0.104742,-0.000000;;, + 48;3;-0.000000, 0.104742,-0.000000;;, + 49;3;-0.000000, 0.104742,-0.000000;;, + 50;3;-0.000000, 0.104742,-0.000000;;, + 51;3;-0.000000, 0.104742,-0.000000;;, + 52;3;-0.000000, 0.104742,-0.000000;;, + 53;3;-0.000000, 0.104742,-0.000000;;, + 54;3;-0.000000, 0.104742,-0.000000;;, + 55;3;-0.000000, 0.104742,-0.000000;;, + 56;3;-0.000000, 0.104742,-0.000000;;, + 57;3;-0.000000, 0.104742, 0.000000;;, + 58;3;-0.000000, 0.104742,-0.000000;;, + 59;3;-0.000000, 0.104742,-0.000000;;, + 60;3;-0.000000, 0.104742,-0.000000;;, + 61;3;-0.000000, 0.104742,-0.000000;;, + 62;3;-0.000000, 0.104742, 0.000000;;, + 63;3;-0.000000, 0.104742,-0.000000;;, + 64;3;-0.000000, 0.104742,-0.000000;;, + 65;3;-0.000000, 0.104742,-0.000000;;, + 66;3;-0.000000, 0.104742,-0.000000;;, + 67;3;-0.000000, 0.104742, 0.000000;;, + 68;3;-0.000000, 0.104742,-0.000000;;, + 69;3;-0.000000, 0.104742,-0.000000;;, + 70;3;-0.000000, 0.104742,-0.000000;;, + 71;3;-0.000000, 0.104742,-0.000000;;, + 72;3;-0.000000, 0.104742,-0.000000;;, + 73;3;-0.000000, 0.104742,-0.000000;;, + 74;3;-0.000000, 0.104742,-0.000000;;, + 75;3;-0.000000, 0.104742, 0.000000;;, + 76;3;-0.000000, 0.104742,-0.000000;;, + 77;3;-0.000000, 0.104742, 0.000000;;, + 78;3;-0.000000, 0.104742,-0.000000;;, + 79;3;-0.000000, 0.104742,-0.000000;;, + 80;3;-0.000000, 0.104742,-0.000000;;, + 81;3;-0.000000, 0.104742,-0.000000;;, + 82;3;-0.000000, 0.104742,-0.000000;;, + 83;3;-0.000000, 0.104742,-0.000000;;, + 84;3;-0.000000, 0.104742,-0.000000;;, + 85;3;-0.000000, 0.104742,-0.000000;;, + 86;3;-0.000000, 0.104742,-0.000000;;, + 87;3;-0.000000, 0.104742,-0.000000;;, + 88;3;-0.000000, 0.104742,-0.000000;;, + 89;3;-0.000000, 0.104742,-0.000000;;, + 90;3;-0.000000, 0.104742,-0.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.521372,-0.373562,-0.717607, 0.271409;;, + 1;4;-0.521372,-0.373562,-0.717607, 0.271409;;, + 2;4;-0.521720,-0.372975,-0.717828, 0.270623;;, + 3;4;-0.522772,-0.371198,-0.718497, 0.268245;;, + 4;4;-0.524529,-0.368229,-0.719615, 0.264272;;, + 5;4;-0.526978,-0.364092,-0.721173, 0.258737;;, + 6;4;-0.530082,-0.358848,-0.723148, 0.251720;;, + 7;4;-0.533779,-0.352602,-0.725500, 0.243363;;, + 8;4;-0.537979,-0.345506,-0.728172, 0.233868;;, + 9;4;-0.542564,-0.337759,-0.731089, 0.223503;;, + 10;4;-0.547392,-0.329604,-0.734159, 0.212591;;, + 11;4;-0.552301,-0.321309,-0.737283, 0.201492;;, + 12;4;-0.557128,-0.313154,-0.740354, 0.190580;;, + 13;4;-0.561713,-0.305408,-0.743270, 0.180215;;, + 14;4;-0.565913,-0.298312,-0.745942, 0.170720;;, + 15;4;-0.569610,-0.292066,-0.748294, 0.162363;;, + 16;4;-0.572714,-0.286823,-0.750268, 0.155347;;, + 17;4;-0.575163,-0.282686,-0.751826, 0.149811;;, + 18;4;-0.576920,-0.279716,-0.752944, 0.145838;;, + 19;4;-0.577972,-0.277940,-0.753613, 0.143461;;, + 20;4;-0.578320,-0.277352,-0.753834, 0.142675;;, + 21;4;-0.576627,-0.280156,-0.752890, 0.146237;;, + 22;4;-0.571448,-0.288742,-0.749983, 0.157172;;, + 23;4;-0.563701,-0.301608,-0.745583, 0.173632;;, + 24;4;-0.555528,-0.315215,-0.740860, 0.191158;;, + 25;4;-0.548739,-0.326564,-0.736827, 0.205935;;, + 26;4;-0.541934,-0.337929,-0.732811, 0.220696;;, + 27;4;-0.533807,-0.351491,-0.728041, 0.238268;;, + 28;4;-0.526369,-0.364047,-0.723332, 0.255037;;, + 29;4;-0.521920,-0.371903,-0.719696, 0.266701;;, + 30;4;-0.521372,-0.373562,-0.717607, 0.271409;;, + 31;4;-0.532218,-0.367504,-0.710577, 0.272070;;, + 32;4;-0.560598,-0.352141,-0.693602, 0.270643;;, + 33;4;-0.597293,-0.330912,-0.673316, 0.266052;;, + 34;4;-0.627395,-0.310427,-0.659430, 0.258134;;, + 35;4;-0.641170,-0.295651,-0.657655, 0.247754;;, + 36;4;-0.639448,-0.286484,-0.669021, 0.229826;;, + 37;4;-0.625575,-0.281662,-0.692470, 0.200783;;, + 38;4;-0.604942,-0.280181,-0.720988, 0.169433;;, + 39;4;-0.586986,-0.279490,-0.743709, 0.147873;;, + 40;4;-0.578320,-0.277352,-0.753834, 0.142675;;, + 41;4;-0.574801,-0.274652,-0.756772, 0.147268;;, + 42;4;-0.570734,-0.273188,-0.759001, 0.154621;;, + 43;4;-0.566146,-0.273163,-0.760382, 0.164665;;, + 44;4;-0.561133,-0.274717,-0.760810, 0.177022;;, + 45;4;-0.555865,-0.277866,-0.760245, 0.190947;;, + 46;4;-0.550567,-0.282455,-0.758748, 0.205409;;, + 47;4;-0.545468,-0.288185,-0.756475, 0.219327;;, + 48;4;-0.540745,-0.294692,-0.753632, 0.231814;;, + 49;4;-0.536503,-0.301636,-0.750423, 0.242310;;, + 50;4;-0.532782,-0.308746,-0.747016, 0.250572;;, + 51;4;-0.528397,-0.317047,-0.743526, 0.257785;;, + 52;4;-0.522205,-0.327623,-0.740018, 0.265075;;, + 53;4;-0.514426,-0.340152,-0.736573, 0.272232;;, + 54;4;-0.505542,-0.353969,-0.733301, 0.278967;;, + 55;4;-0.496301,-0.368064,-0.730328, 0.284949;;, + 56;4;-0.487609,-0.381238,-0.727769, 0.289874;;, + 57;4;-0.480314,-0.392384,-0.725694, 0.293546;;, + 58;4;-0.475022,-0.400732,-0.724122, 0.295908;;, + 59;4;-0.472031,-0.405927,-0.723024, 0.297027;;, + 60;4;-0.471380,-0.407950,-0.722347, 0.297040;;, + 61;4;-0.472005,-0.408360,-0.721822, 0.296528;;, + 62;4;-0.472912,-0.408603,-0.721227, 0.295965;;, + 63;4;-0.474113,-0.408659,-0.720567, 0.295341;;, + 64;4;-0.475616,-0.408507,-0.719854, 0.294648;;, + 65;4;-0.477422,-0.408126,-0.719101, 0.293879;;, + 66;4;-0.479526,-0.407496,-0.718327, 0.293025;;, + 67;4;-0.481916,-0.406601,-0.717553, 0.292077;;, + 68;4;-0.484568,-0.405429,-0.716805, 0.291031;;, + 69;4;-0.487450,-0.403974,-0.716108, 0.289880;;, + 70;4;-0.490519,-0.402236,-0.715492, 0.288624;;, + 71;4;-0.493728,-0.400223,-0.714982, 0.287263;;, + 72;4;-0.497026,-0.397953,-0.714604, 0.285801;;, + 73;4;-0.500359,-0.395447,-0.714376, 0.284242;;, + 74;4;-0.503678,-0.392730,-0.714315, 0.282597;;, + 75;4;-0.506940,-0.389831,-0.714427, 0.280873;;, + 76;4;-0.510109,-0.386780,-0.714718, 0.279080;;, + 77;4;-0.513155,-0.383603,-0.715187, 0.277228;;, + 78;4;-0.516056,-0.380326,-0.715829, 0.275327;;, + 79;4;-0.518798,-0.376973,-0.716639, 0.273385;;, + 80;4;-0.521372,-0.373562,-0.717607, 0.271409;;, + 81;4;-0.523770,-0.369166,-0.719159, 0.269231;;, + 82;4;-0.525953,-0.362878,-0.721719, 0.266703;;, + 83;4;-0.527869,-0.354911,-0.725194, 0.263900;;, + 84;4;-0.529468,-0.345742,-0.729358, 0.260960;;, + 85;4;-0.530719,-0.336128,-0.733840, 0.258077;;, + 86;4;-0.531625,-0.326991,-0.738178, 0.255470;;, + 87;4;-0.532222,-0.319204,-0.741922, 0.253331;;, + 88;4;-0.532571,-0.313399,-0.744739, 0.251782;;, + 89;4;-0.532738,-0.309895,-0.746451, 0.250867;;, + 90;4;-0.532782,-0.308746,-0.747016, 0.250572;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.530000,-0.350000;;, + 1;3;-0.000000, 0.530000,-0.350000;;, + 2;3;-0.000000, 0.530000,-0.350000;;, + 3;3;-0.000000, 0.530000,-0.350000;;, + 4;3;-0.000000, 0.530000,-0.350000;;, + 5;3;-0.000000, 0.530000,-0.350000;;, + 6;3;-0.000000, 0.530000,-0.350000;;, + 7;3;-0.000000, 0.530000,-0.350000;;, + 8;3;-0.000000, 0.530000,-0.350000;;, + 9;3;-0.000000, 0.530000,-0.350000;;, + 10;3;-0.000000, 0.530000,-0.350000;;, + 11;3;-0.000000, 0.530000,-0.350000;;, + 12;3;-0.000000, 0.530000,-0.350000;;, + 13;3;-0.000000, 0.530000,-0.350000;;, + 14;3;-0.000000, 0.530000,-0.350000;;, + 15;3;-0.000000, 0.530000,-0.350000;;, + 16;3;-0.000000, 0.530000,-0.350000;;, + 17;3;-0.000000, 0.530000,-0.350000;;, + 18;3;-0.000000, 0.530000,-0.350000;;, + 19;3;-0.000000, 0.530000,-0.350000;;, + 20;3;-0.000000, 0.530000,-0.350000;;, + 21;3;-0.000000, 0.530000,-0.350000;;, + 22;3;-0.000000, 0.530000,-0.350000;;, + 23;3;-0.000000, 0.530000,-0.350000;;, + 24;3;-0.000000, 0.530000,-0.350000;;, + 25;3;-0.000000, 0.530000,-0.350000;;, + 26;3;-0.000000, 0.530000,-0.350000;;, + 27;3;-0.000000, 0.530000,-0.350000;;, + 28;3;-0.000000, 0.530000,-0.350000;;, + 29;3;-0.000000, 0.530000,-0.350000;;, + 30;3;-0.000000, 0.530000,-0.350000;;, + 31;3;-0.000000, 0.530000,-0.350000;;, + 32;3;-0.000000, 0.530000,-0.350000;;, + 33;3;-0.000000, 0.530000,-0.350000;;, + 34;3;-0.000000, 0.530000,-0.350000;;, + 35;3;-0.000000, 0.530000,-0.350000;;, + 36;3;-0.000000, 0.530000,-0.350000;;, + 37;3;-0.000000, 0.530000,-0.350000;;, + 38;3;-0.000000, 0.530000,-0.350000;;, + 39;3;-0.000000, 0.530000,-0.350000;;, + 40;3;-0.000000, 0.530000,-0.350000;;, + 41;3;-0.000237, 0.529993,-0.350000;;, + 42;3;-0.000949, 0.529973,-0.350000;;, + 43;3;-0.002107, 0.529938,-0.350000;;, + 44;3;-0.003622, 0.529889,-0.350000;;, + 45;3;-0.005338, 0.529831,-0.350000;;, + 46;3;-0.007054, 0.529766,-0.350000;;, + 47;3;-0.008569, 0.529700,-0.350000;;, + 48;3;-0.009728, 0.529638,-0.350000;;, + 49;3;-0.010440, 0.529582,-0.350000;;, + 50;3;-0.010677, 0.529534,-0.350000;;, + 51;3;-0.010475, 0.529488,-0.350300;;, + 52;3;-0.009864, 0.529436,-0.351204;;, + 53;3;-0.008868, 0.529381,-0.352674;;, + 54;3;-0.007558, 0.529324,-0.354597;;, + 55;3;-0.006060, 0.529270,-0.356775;;, + 56;3;-0.004545, 0.529222,-0.358953;;, + 57;3;-0.003180, 0.529183,-0.360876;;, + 58;3;-0.002099, 0.529155,-0.362346;;, + 59;3;-0.001380, 0.529138,-0.363250;;, + 60;3;-0.001050, 0.529133,-0.363550;;, + 61;3;-0.000919, 0.529138,-0.363476;;, + 62;3;-0.000795, 0.529152,-0.363250;;, + 63;3;-0.000679, 0.529176,-0.362872;;, + 64;3;-0.000571, 0.529210,-0.362346;;, + 65;3;-0.000473, 0.529253,-0.361676;;, + 66;3;-0.000384, 0.529304,-0.360876;;, + 67;3;-0.000305, 0.529363,-0.359961;;, + 68;3;-0.000237, 0.529427,-0.358953;;, + 69;3;-0.000179, 0.529496,-0.357881;;, + 70;3;-0.000131, 0.529566,-0.356775;;, + 71;3;-0.000093, 0.529637,-0.355669;;, + 72;3;-0.000063, 0.529706,-0.354597;;, + 73;3;-0.000040, 0.529770,-0.353590;;, + 74;3;-0.000024, 0.529829,-0.352674;;, + 75;3;-0.000013, 0.529880,-0.351874;;, + 76;3;-0.000007, 0.529923,-0.351204;;, + 77;3;-0.000003, 0.529957,-0.350678;;, + 78;3;-0.000001, 0.529981,-0.350300;;, + 79;3;-0.000000, 0.529995,-0.350075;;, + 80;3;-0.000000, 0.530000,-0.350000;;, + 81;3;-0.000237, 0.529990,-0.350000;;, + 82;3;-0.000949, 0.529959,-0.350000;;, + 83;3;-0.002107, 0.529908,-0.350000;;, + 84;3;-0.003622, 0.529842,-0.350000;;, + 85;3;-0.005338, 0.529767,-0.350000;;, + 86;3;-0.007054, 0.529692,-0.350000;;, + 87;3;-0.008569, 0.529626,-0.350000;;, + 88;3;-0.009728, 0.529575,-0.350000;;, + 89;3;-0.010440, 0.529544,-0.350000;;, + 90;3;-0.010677, 0.529534,-0.350000;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 1;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 2;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 3;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 4;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 5;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 6;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 7;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 8;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 9;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 10;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 11;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 12;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 13;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 14;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 15;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 16;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 17;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 18;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 19;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 20;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 21;4;-0.711526, 0.271122,-0.531270,-0.368452;;, + 22;4;-0.694726, 0.269518,-0.559476,-0.353263;;, + 23;4;-0.674039, 0.265328,-0.596574,-0.331632;;, + 24;4;-0.659646, 0.257918,-0.627184,-0.310638;;, + 25;4;-0.657658, 0.247750,-0.641173,-0.295648;;, + 26;4;-0.669148, 0.229947,-0.639326,-0.286357;;, + 27;4;-0.692894, 0.201204,-0.625155,-0.281238;;, + 28;4;-0.721647, 0.170090,-0.604285,-0.279522;;, + 29;4;-0.744265, 0.148428,-0.586431,-0.278935;;, + 30;4;-0.753835, 0.142675,-0.578320,-0.277352;;, + 31;4;-0.754582, 0.148090,-0.574936,-0.278303;;, + 32;4;-0.751765, 0.159588,-0.569668,-0.286325;;, + 33;4;-0.746292, 0.175619,-0.562995,-0.299617;;, + 34;4;-0.740329, 0.192487,-0.556063,-0.313882;;, + 35;4;-0.735723, 0.207039,-0.549848,-0.325455;;, + 36;4;-0.731359, 0.221682,-0.543390,-0.336938;;, + 37;4;-0.725972, 0.238766,-0.535879,-0.350989;;, + 38;4;-0.720955, 0.254969,-0.528748,-0.364113;;, + 39;4;-0.717939, 0.266394,-0.523678,-0.372210;;, + 40;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 41;4;-0.719093, 0.272596,-0.520790,-0.370477;;, + 42;4;-0.721609, 0.272299,-0.520998,-0.365059;;, + 43;4;-0.725063, 0.270560,-0.521972,-0.357506;;, + 44;4;-0.729228, 0.267588,-0.523599,-0.348325;;, + 45;4;-0.733729, 0.263791,-0.525660,-0.338354;;, + 46;4;-0.738095, 0.259728,-0.527855,-0.328649;;, + 47;4;-0.741870, 0.255986,-0.529872,-0.320238;;, + 48;4;-0.744714, 0.253042,-0.531456,-0.313890;;, + 49;4;-0.746445, 0.251194,-0.532448,-0.310023;;, + 50;4;-0.747016, 0.250572,-0.532782,-0.308746;;, + 51;4;-0.746510, 0.251643,-0.531380,-0.310905;;, + 52;4;-0.744981, 0.254860,-0.527167,-0.317407;;, + 53;4;-0.742479, 0.260075,-0.520332,-0.327995;;, + 54;4;-0.739178, 0.266868,-0.511419,-0.341870;;, + 55;4;-0.735395, 0.274519,-0.501368,-0.357634;;, + 56;4;-0.731544, 0.282102,-0.491384,-0.373466;;, + 57;4;-0.728048, 0.288700,-0.482667,-0.387538;;, + 58;4;-0.725239, 0.293608,-0.476139,-0.398433;;, + 59;4;-0.723314, 0.296429,-0.472321,-0.405330;;, + 60;4;-0.722347, 0.297039,-0.471380,-0.407950;;, + 61;4;-0.721823, 0.296528,-0.472004,-0.408360;;, + 62;4;-0.721227, 0.295965,-0.472912,-0.408603;;, + 63;4;-0.720567, 0.295341,-0.474113,-0.408659;;, + 64;4;-0.719854, 0.294648,-0.475615,-0.408507;;, + 65;4;-0.719101, 0.293879,-0.477422,-0.408126;;, + 66;4;-0.718327, 0.293024,-0.479526,-0.407496;;, + 67;4;-0.717553, 0.292077,-0.481916,-0.406602;;, + 68;4;-0.716805, 0.291030,-0.484568,-0.405429;;, + 69;4;-0.716108, 0.289880,-0.487450,-0.403974;;, + 70;4;-0.715492, 0.288624,-0.490519,-0.402236;;, + 71;4;-0.714982, 0.287263,-0.493728,-0.400224;;, + 72;4;-0.714604, 0.285800,-0.497025,-0.397953;;, + 73;4;-0.714377, 0.284242,-0.500358,-0.395447;;, + 74;4;-0.714315, 0.282597,-0.503678,-0.392730;;, + 75;4;-0.714427, 0.280872,-0.506940,-0.389831;;, + 76;4;-0.714718, 0.279080,-0.510109,-0.386780;;, + 77;4;-0.715187, 0.277228,-0.513155,-0.383603;;, + 78;4;-0.715829, 0.275327,-0.516056,-0.380326;;, + 79;4;-0.716639, 0.273385,-0.518798,-0.376973;;, + 80;4;-0.717607, 0.271409,-0.521372,-0.373563;;, + 81;4;-0.719159, 0.269231,-0.523770,-0.369166;;, + 82;4;-0.721719, 0.266703,-0.525953,-0.362878;;, + 83;4;-0.725194, 0.263900,-0.527869,-0.354911;;, + 84;4;-0.729358, 0.260960,-0.529468,-0.345742;;, + 85;4;-0.733841, 0.258077,-0.530719,-0.336128;;, + 86;4;-0.738178, 0.255470,-0.531625,-0.326991;;, + 87;4;-0.741922, 0.253331,-0.532222,-0.319204;;, + 88;4;-0.744739, 0.251782,-0.532571,-0.313400;;, + 89;4;-0.746452, 0.250867,-0.532738,-0.309896;;, + 90;4;-0.747016, 0.250572,-0.532782,-0.308746;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.530000, 0.350000;;, + 1;3;-0.000000, 0.530000, 0.350000;;, + 2;3;-0.000000, 0.530000, 0.350000;;, + 3;3;-0.000000, 0.530000, 0.350000;;, + 4;3;-0.000000, 0.530000, 0.350000;;, + 5;3;-0.000000, 0.530000, 0.350000;;, + 6;3;-0.000000, 0.530000, 0.350000;;, + 7;3;-0.000000, 0.530000, 0.350000;;, + 8;3;-0.000000, 0.530000, 0.350000;;, + 9;3;-0.000000, 0.530000, 0.350000;;, + 10;3;-0.000000, 0.530000, 0.350000;;, + 11;3;-0.000000, 0.530000, 0.350000;;, + 12;3;-0.000000, 0.530000, 0.350000;;, + 13;3;-0.000000, 0.530000, 0.350000;;, + 14;3;-0.000000, 0.530000, 0.350000;;, + 15;3;-0.000000, 0.530000, 0.350000;;, + 16;3;-0.000000, 0.530000, 0.350000;;, + 17;3;-0.000000, 0.530000, 0.350000;;, + 18;3;-0.000000, 0.530000, 0.350000;;, + 19;3;-0.000000, 0.530000, 0.350000;;, + 20;3;-0.000000, 0.530000, 0.350000;;, + 21;3;-0.000000, 0.530000, 0.350000;;, + 22;3;-0.000000, 0.530000, 0.350000;;, + 23;3;-0.000000, 0.530000, 0.350000;;, + 24;3;-0.000000, 0.530000, 0.350000;;, + 25;3;-0.000000, 0.530000, 0.350000;;, + 26;3;-0.000000, 0.530000, 0.350000;;, + 27;3;-0.000000, 0.530000, 0.350000;;, + 28;3;-0.000000, 0.530000, 0.350000;;, + 29;3;-0.000000, 0.530000, 0.350000;;, + 30;3;-0.000000, 0.530000, 0.350000;;, + 31;3;-0.000000, 0.530000, 0.350000;;, + 32;3;-0.000000, 0.530000, 0.350000;;, + 33;3;-0.000000, 0.530000, 0.350000;;, + 34;3;-0.000000, 0.530000, 0.350000;;, + 35;3;-0.000000, 0.530000, 0.350000;;, + 36;3;-0.000000, 0.530000, 0.350000;;, + 37;3;-0.000000, 0.530000, 0.350000;;, + 38;3;-0.000000, 0.530000, 0.350000;;, + 39;3;-0.000000, 0.530000, 0.350000;;, + 40;3;-0.000000, 0.530000, 0.350000;;, + 41;3;-0.000237, 0.529993, 0.350000;;, + 42;3;-0.000949, 0.529972, 0.350000;;, + 43;3;-0.002107, 0.529937, 0.350000;;, + 44;3;-0.003622, 0.529889, 0.350000;;, + 45;3;-0.005338, 0.529830, 0.350000;;, + 46;3;-0.007054, 0.529766, 0.350000;;, + 47;3;-0.008569, 0.529700, 0.350000;;, + 48;3;-0.009727, 0.529637, 0.350000;;, + 49;3;-0.010440, 0.529581, 0.350000;;, + 50;3;-0.010677, 0.529534, 0.350000;;, + 51;3;-0.010474, 0.529487, 0.350300;;, + 52;3;-0.009864, 0.529436, 0.351204;;, + 53;3;-0.008868, 0.529381, 0.352674;;, + 54;3;-0.007557, 0.529324, 0.354597;;, + 55;3;-0.006060, 0.529270, 0.356775;;, + 56;3;-0.004545, 0.529221, 0.358953;;, + 57;3;-0.003180, 0.529183, 0.360876;;, + 58;3;-0.002099, 0.529154, 0.362346;;, + 59;3;-0.001380, 0.529138, 0.363250;;, + 60;3;-0.001050, 0.529133, 0.363550;;, + 61;3;-0.000919, 0.529138, 0.363476;;, + 62;3;-0.000795, 0.529152, 0.363250;;, + 63;3;-0.000679, 0.529176, 0.362872;;, + 64;3;-0.000571, 0.529210, 0.362346;;, + 65;3;-0.000473, 0.529253, 0.361676;;, + 66;3;-0.000384, 0.529304, 0.360876;;, + 67;3;-0.000305, 0.529363, 0.359961;;, + 68;3;-0.000237, 0.529427, 0.358953;;, + 69;3;-0.000179, 0.529496, 0.357881;;, + 70;3;-0.000131, 0.529566, 0.356775;;, + 71;3;-0.000093, 0.529637, 0.355669;;, + 72;3;-0.000063, 0.529706, 0.354597;;, + 73;3;-0.000040, 0.529770, 0.353590;;, + 74;3;-0.000024, 0.529829, 0.352674;;, + 75;3;-0.000013, 0.529880, 0.351874;;, + 76;3;-0.000007, 0.529923, 0.351204;;, + 77;3;-0.000003, 0.529957, 0.350678;;, + 78;3;-0.000001, 0.529981, 0.350300;;, + 79;3;-0.000000, 0.529995, 0.350075;;, + 80;3;-0.000000, 0.530000, 0.350000;;, + 81;3;-0.000237, 0.529990, 0.350000;;, + 82;3;-0.000949, 0.529959, 0.350000;;, + 83;3;-0.002107, 0.529908, 0.350000;;, + 84;3;-0.003622, 0.529842, 0.350000;;, + 85;3;-0.005338, 0.529767, 0.350000;;, + 86;3;-0.007054, 0.529692, 0.350000;;, + 87;3;-0.008569, 0.529626, 0.350000;;, + 88;3;-0.009728, 0.529575, 0.350000;;, + 89;3;-0.010440, 0.529544, 0.350000;;, + 90;3;-0.010677, 0.529534, 0.350000;;; + } + } + Animation { + {Armature_Bone_005} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 1;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 2;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 3;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 4;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 5;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 6;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 7;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 8;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 9;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 10;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 11;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 12;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 13;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 14;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 15;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 16;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 17;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 18;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 19;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 20;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 21;4;-0.458165,-0.529128,-0.580253, 0.413424;;, + 22;4;-0.485022,-0.509173,-0.567658, 0.418827;;, + 23;4;-0.520997,-0.481797,-0.552980, 0.424009;;, + 24;4;-0.551918,-0.457063,-0.544453, 0.424631;;, + 25;4;-0.568174,-0.442078,-0.546703, 0.418648;;, + 26;4;-0.571035,-0.436250,-0.561149, 0.401655;;, + 27;4;-0.564162,-0.437257,-0.587043, 0.371317;;, + 28;4;-0.551425,-0.442800,-0.616746, 0.336882;;, + 29;4;-0.539986,-0.448221,-0.639074, 0.311690;;, + 30;4;-0.535080,-0.449901,-0.647452, 0.303455;;, + 31;4;-0.531946,-0.451827,-0.646375, 0.307016;;, + 32;4;-0.524334,-0.459202,-0.641077, 0.316466;;, + 33;4;-0.513384,-0.470639,-0.632633, 0.330305;;, + 34;4;-0.501818,-0.482826,-0.623608, 0.344954;;, + 35;4;-0.491956,-0.492938,-0.616190, 0.357361;;, + 36;4;-0.482171,-0.503169,-0.608694, 0.369650;;, + 37;4;-0.470787,-0.515639,-0.599484, 0.384019;;, + 38;4;-0.459980,-0.527301,-0.590892, 0.397638;;, + 39;4;-0.452303,-0.534580,-0.585656, 0.407186;;, + 40;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 41;4;-0.447915,-0.533507,-0.587177, 0.412167;;, + 42;4;-0.448096,-0.528982,-0.591044, 0.411934;;, + 43;4;-0.449338,-0.522574,-0.596382, 0.410607;;, + 44;4;-0.451489,-0.514719,-0.602837, 0.408344;;, + 45;4;-0.454251,-0.506145,-0.609825, 0.405456;;, + 46;4;-0.457213,-0.497772,-0.616612, 0.402367;;, + 47;4;-0.459946,-0.490498,-0.622486, 0.399523;;, + 48;4;-0.462097,-0.484999,-0.626914, 0.397286;;, + 49;4;-0.463449,-0.481645,-0.629610, 0.395882;;, + 50;4;-0.463904,-0.480537,-0.630499, 0.395409;;, + 51;4;-0.462538,-0.482319,-0.629304, 0.396271;;, + 52;4;-0.458438,-0.487692,-0.625698, 0.398855;;, + 53;4;-0.451796,-0.496454,-0.619816, 0.403038;;, + 54;4;-0.443156,-0.507961,-0.612087, 0.408474;;, + 55;4;-0.433443,-0.521071,-0.603275, 0.414574;;, + 56;4;-0.423843,-0.534294,-0.594377, 0.420589;;, + 57;4;-0.415531,-0.546129,-0.586399, 0.425776;;, + 58;4;-0.409404,-0.555405,-0.580127, 0.429570;;, + 59;4;-0.405965,-0.561440,-0.576020, 0.431653;;, + 60;4;-0.405371,-0.563994,-0.574240, 0.431930;;, + 61;4;-0.406259,-0.564713,-0.573641, 0.431321;;, + 62;4;-0.407297,-0.565226,-0.573088, 0.430729;;, + 63;4;-0.408494,-0.565514,-0.572593, 0.430147;;, + 64;4;-0.409860,-0.565560,-0.572172, 0.429565;;, + 65;4;-0.411400,-0.565347,-0.571841, 0.428976;;, + 66;4;-0.413120,-0.564864,-0.571616, 0.428366;;, + 67;4;-0.415018,-0.564102,-0.571516, 0.427721;;, + 68;4;-0.417090,-0.563058,-0.571558, 0.427028;;, + 69;4;-0.419326,-0.561739,-0.571757, 0.426271;;, + 70;4;-0.421710,-0.560156,-0.572126, 0.425436;;, + 71;4;-0.424223,-0.558330,-0.572673, 0.424509;;, + 72;4;-0.426842,-0.556289,-0.573401, 0.423480;;, + 73;4;-0.429540,-0.554063,-0.574310, 0.422342;;, + 74;4;-0.432294,-0.551687,-0.575393, 0.421089;;, + 75;4;-0.435078,-0.549194,-0.576642, 0.419721;;, + 76;4;-0.437872,-0.546617,-0.578044, 0.418239;;, + 77;4;-0.440658,-0.543984,-0.579587, 0.416647;;, + 78;4;-0.443419,-0.541320,-0.581257, 0.414952;;, + 79;4;-0.446145,-0.538647,-0.583039, 0.413158;;, + 80;4;-0.448826,-0.535982,-0.584921, 0.411273;;, + 81;4;-0.451451,-0.532462,-0.587594, 0.409260;;, + 82;4;-0.453975,-0.527244,-0.591737, 0.407099;;, + 83;4;-0.456335,-0.520506,-0.597207, 0.404853;;, + 84;4;-0.458453,-0.512660,-0.603658, 0.402617;;, + 85;4;-0.460254,-0.504371,-0.610532, 0.400519;;, + 86;4;-0.461687,-0.496450,-0.617139, 0.398688;;, + 87;4;-0.462735,-0.489674,-0.622814, 0.397229;;, + 88;4;-0.463421,-0.484608,-0.627070, 0.396197;;, + 89;4;-0.463792,-0.481544,-0.629650, 0.395599;;, + 90;4;-0.463904,-0.480537,-0.630499, 0.395409;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.450000,-0.350000;;, + 1;3;-0.000000, 0.450000,-0.350000;;, + 2;3;-0.000000, 0.450000,-0.350000;;, + 3;3;-0.000000, 0.450000,-0.350000;;, + 4;3;-0.000000, 0.450000,-0.350000;;, + 5;3;-0.000000, 0.450000,-0.350000;;, + 6;3;-0.000000, 0.450000,-0.350000;;, + 7;3;-0.000000, 0.450000,-0.350000;;, + 8;3;-0.000000, 0.450000,-0.350000;;, + 9;3;-0.000000, 0.450000,-0.350000;;, + 10;3;-0.000000, 0.450000,-0.350000;;, + 11;3;-0.000000, 0.450000,-0.350000;;, + 12;3;-0.000000, 0.450000,-0.350000;;, + 13;3;-0.000000, 0.450000,-0.350000;;, + 14;3;-0.000000, 0.450000,-0.350000;;, + 15;3;-0.000000, 0.450000,-0.350000;;, + 16;3;-0.000000, 0.450000,-0.350000;;, + 17;3;-0.000000, 0.450000,-0.350000;;, + 18;3;-0.000000, 0.450000,-0.350000;;, + 19;3;-0.000000, 0.450000,-0.350000;;, + 20;3;-0.000000, 0.450000,-0.350000;;, + 21;3;-0.000000, 0.450000,-0.350000;;, + 22;3;-0.000000, 0.450000,-0.350000;;, + 23;3;-0.000000, 0.450000,-0.350000;;, + 24;3;-0.000000, 0.450000,-0.350000;;, + 25;3;-0.000000, 0.450000,-0.350000;;, + 26;3;-0.000000, 0.450000,-0.350000;;, + 27;3;-0.000000, 0.450000,-0.350000;;, + 28;3;-0.000000, 0.450000,-0.350000;;, + 29;3;-0.000000, 0.450000,-0.350000;;, + 30;3;-0.000000, 0.450000,-0.350000;;, + 31;3;-0.000000, 0.450000,-0.350000;;, + 32;3;-0.000000, 0.450000,-0.350000;;, + 33;3;-0.000000, 0.450000,-0.350000;;, + 34;3;-0.000000, 0.450000,-0.350000;;, + 35;3;-0.000000, 0.450000,-0.350000;;, + 36;3;-0.000000, 0.450000,-0.350000;;, + 37;3;-0.000000, 0.450000,-0.350000;;, + 38;3;-0.000000, 0.450000,-0.350000;;, + 39;3;-0.000000, 0.450000,-0.350000;;, + 40;3;-0.000000, 0.450000,-0.350000;;, + 41;3;-0.000082, 0.449998,-0.350000;;, + 42;3;-0.000329, 0.449991,-0.350000;;, + 43;3;-0.000731, 0.449978,-0.350000;;, + 44;3;-0.001257, 0.449962,-0.350000;;, + 45;3;-0.001852, 0.449941,-0.350000;;, + 46;3;-0.002448, 0.449919,-0.350000;;, + 47;3;-0.002973, 0.449896,-0.350000;;, + 48;3;-0.003375, 0.449874,-0.350000;;, + 49;3;-0.003622, 0.449855,-0.350000;;, + 50;3;-0.003704, 0.449838,-0.350000;;, + 51;3;-0.003634, 0.449822,-0.350104;;, + 52;3;-0.003422, 0.449804,-0.350418;;, + 53;3;-0.003077, 0.449785,-0.350928;;, + 54;3;-0.002622, 0.449766,-0.351595;;, + 55;3;-0.002103, 0.449747,-0.352351;;, + 56;3;-0.001577, 0.449730,-0.353106;;, + 57;3;-0.001103, 0.449716,-0.353773;;, + 58;3;-0.000728, 0.449707,-0.354283;;, + 59;3;-0.000479, 0.449701,-0.354597;;, + 60;3;-0.000364, 0.449699,-0.354701;;, + 61;3;-0.000319, 0.449701,-0.354675;;, + 62;3;-0.000276, 0.449706,-0.354597;;, + 63;3;-0.000236, 0.449714,-0.354466;;, + 64;3;-0.000198, 0.449726,-0.354283;;, + 65;3;-0.000164, 0.449741,-0.354051;;, + 66;3;-0.000133, 0.449759,-0.353773;;, + 67;3;-0.000106, 0.449779,-0.353456;;, + 68;3;-0.000082, 0.449801,-0.353106;;, + 69;3;-0.000062, 0.449825,-0.352734;;, + 70;3;-0.000046, 0.449850,-0.352351;;, + 71;3;-0.000032, 0.449874,-0.351967;;, + 72;3;-0.000022, 0.449898,-0.351595;;, + 73;3;-0.000014, 0.449920,-0.351245;;, + 74;3;-0.000009, 0.449941,-0.350928;;, + 75;3;-0.000005, 0.449959,-0.350650;;, + 76;3;-0.000002, 0.449973,-0.350418;;, + 77;3;-0.000001, 0.449985,-0.350235;;, + 78;3;-0.000000, 0.449993,-0.350104;;, + 79;3;-0.000000, 0.449998,-0.350026;;, + 80;3;-0.000000, 0.450000,-0.350000;;, + 81;3;-0.000082, 0.449997,-0.350000;;, + 82;3;-0.000329, 0.449986,-0.350000;;, + 83;3;-0.000731, 0.449968,-0.350000;;, + 84;3;-0.001257, 0.449945,-0.350000;;, + 85;3;-0.001852, 0.449919,-0.350000;;, + 86;3;-0.002448, 0.449893,-0.350000;;, + 87;3;-0.002973, 0.449870,-0.350000;;, + 88;3;-0.003375, 0.449853,-0.350000;;, + 89;3;-0.003622, 0.449842,-0.350000;;, + 90;3;-0.003704, 0.449838,-0.350000;;; + } + } + Animation { + {Armature_Bone_006} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.584921, 0.411273,-0.448826,-0.535982;;, + 1;4;-0.584921, 0.411273,-0.448826,-0.535982;;, + 2;4;-0.585303, 0.410615,-0.449353,-0.535456;;, + 3;4;-0.586458, 0.408623,-0.450946,-0.533866;;, + 4;4;-0.588388, 0.405296,-0.453608,-0.531210;;, + 5;4;-0.591077, 0.400660,-0.457317,-0.527508;;, + 6;4;-0.594485, 0.394783,-0.462018,-0.522816;;, + 7;4;-0.598545, 0.387783,-0.467618,-0.517228;;, + 8;4;-0.603157, 0.379831,-0.473979,-0.510879;;, + 9;4;-0.608191, 0.371150,-0.480924,-0.503948;;, + 10;4;-0.613492, 0.362011,-0.488235,-0.496652;;, + 11;4;-0.618883, 0.352715,-0.495672,-0.489230;;, + 12;4;-0.624183, 0.343576,-0.502983,-0.481934;;, + 13;4;-0.629218, 0.334895,-0.509927,-0.475003;;, + 14;4;-0.633830, 0.326943,-0.516289,-0.468654;;, + 15;4;-0.637889, 0.319944,-0.521888,-0.463066;;, + 16;4;-0.641297, 0.314068,-0.526589,-0.458375;;, + 17;4;-0.643986, 0.309432,-0.530298,-0.454673;;, + 18;4;-0.645915, 0.306104,-0.532960,-0.452017;;, + 19;4;-0.647070, 0.304113,-0.534553,-0.450427;;, + 20;4;-0.647452, 0.303455,-0.535080,-0.449901;;, + 21;4;-0.645682, 0.306506,-0.532638,-0.452338;;, + 22;4;-0.640256, 0.315863,-0.525153,-0.459808;;, + 23;4;-0.632104, 0.329919,-0.513909,-0.471030;;, + 24;4;-0.623449, 0.344842,-0.501970,-0.482944;;, + 25;4;-0.616187, 0.357364,-0.491953,-0.492942;;, + 26;4;-0.608924, 0.369886,-0.481935,-0.502939;;, + 27;4;-0.600269, 0.384809,-0.469997,-0.514854;;, + 28;4;-0.592118, 0.398865,-0.458752,-0.526076;;, + 29;4;-0.586691, 0.408221,-0.451267,-0.533545;;, + 30;4;-0.584921, 0.411273,-0.448826,-0.535982;;, + 31;4;-0.580252, 0.413424,-0.458164,-0.529129;;, + 32;4;-0.567657, 0.418828,-0.485020,-0.509174;;, + 33;4;-0.552978, 0.424012,-0.520994,-0.481800;;, + 34;4;-0.544451, 0.424634,-0.551914,-0.457067;;, + 35;4;-0.546700, 0.418652,-0.568169,-0.442082;;, + 36;4;-0.561078, 0.401550,-0.571099,-0.436362;;, + 37;4;-0.586812, 0.370952,-0.564388,-0.437627;;, + 38;4;-0.616388, 0.336310,-0.551780,-0.443374;;, + 39;4;-0.638773, 0.311207,-0.540287,-0.448705;;, + 40;4;-0.647452, 0.303455,-0.535080,-0.449901;;, + 41;4;-0.648710, 0.306194,-0.532745,-0.448891;;, + 42;4;-0.649623, 0.311711,-0.528455,-0.448732;;, + 43;4;-0.650033, 0.319956,-0.522227,-0.449569;;, + 44;4;-0.649768, 0.330568,-0.514291,-0.451503;;, + 45;4;-0.648672, 0.342823,-0.505129,-0.454551;;, + 46;4;-0.646656, 0.355703,-0.495432,-0.458610;;, + 47;4;-0.643724, 0.368133,-0.485945,-0.463478;;, + 48;4;-0.639962, 0.379222,-0.477292,-0.468905;;, + 49;4;-0.635506, 0.388399,-0.469880,-0.474655;;, + 50;4;-0.630499, 0.395409,-0.463904,-0.480537;;, + 51;4;-0.624789, 0.401358,-0.458023,-0.487406;;, + 52;4;-0.618189, 0.407316,-0.450929,-0.496154;;, + 53;4;-0.610879, 0.413107,-0.442860,-0.506524;;, + 54;4;-0.603194, 0.418495,-0.434262,-0.517982;;, + 55;4;-0.595608, 0.423213,-0.425776,-0.529710;;, + 56;4;-0.588664, 0.427027,-0.418130,-0.540732;;, + 57;4;-0.582837, 0.429790,-0.411969,-0.550143;;, + 58;4;-0.578437, 0.431475,-0.407714,-0.557310;;, + 59;4;-0.575581, 0.432148,-0.405526,-0.561935;;, + 60;4;-0.574240, 0.431930,-0.405371,-0.563994;;, + 61;4;-0.573641, 0.431321,-0.406259,-0.564713;;, + 62;4;-0.573088, 0.430729,-0.407296,-0.565226;;, + 63;4;-0.572594, 0.430147,-0.408494,-0.565514;;, + 64;4;-0.572172, 0.429565,-0.409859,-0.565560;;, + 65;4;-0.571841, 0.428976,-0.411400,-0.565348;;, + 66;4;-0.571616, 0.428365,-0.413120,-0.564864;;, + 67;4;-0.571516, 0.427721,-0.415018,-0.564102;;, + 68;4;-0.571558, 0.427028,-0.417090,-0.563059;;, + 69;4;-0.571757, 0.426271,-0.419326,-0.561739;;, + 70;4;-0.572126, 0.425436,-0.421710,-0.560156;;, + 71;4;-0.572673, 0.424509,-0.424223,-0.558330;;, + 72;4;-0.573401, 0.423480,-0.426841,-0.556289;;, + 73;4;-0.574310, 0.422342,-0.429540,-0.554063;;, + 74;4;-0.575393, 0.421089,-0.432293,-0.551687;;, + 75;4;-0.576642, 0.419721,-0.435078,-0.549194;;, + 76;4;-0.578044, 0.418239,-0.437872,-0.546617;;, + 77;4;-0.579587, 0.416647,-0.440658,-0.543984;;, + 78;4;-0.581257, 0.414952,-0.443419,-0.541320;;, + 79;4;-0.583039, 0.413158,-0.446145,-0.538647;;, + 80;4;-0.584921, 0.411273,-0.448826,-0.535982;;, + 81;4;-0.587594, 0.409259,-0.451450,-0.532463;;, + 82;4;-0.591737, 0.407099,-0.453975,-0.527244;;, + 83;4;-0.597207, 0.404852,-0.456335,-0.520506;;, + 84;4;-0.603658, 0.402617,-0.458453,-0.512660;;, + 85;4;-0.610532, 0.400519,-0.460254,-0.504371;;, + 86;4;-0.617139, 0.398688,-0.461686,-0.496450;;, + 87;4;-0.622814, 0.397229,-0.462735,-0.489674;;, + 88;4;-0.627070, 0.396197,-0.463421,-0.484608;;, + 89;4;-0.629650, 0.395599,-0.463792,-0.481544;;, + 90;4;-0.630499, 0.395409,-0.463904,-0.480537;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.450000, 0.350000;;, + 1;3;-0.000000, 0.450000, 0.350000;;, + 2;3;-0.000000, 0.450000, 0.350000;;, + 3;3;-0.000000, 0.450000, 0.350000;;, + 4;3;-0.000000, 0.450000, 0.350000;;, + 5;3;-0.000000, 0.450000, 0.350000;;, + 6;3;-0.000000, 0.450000, 0.350000;;, + 7;3;-0.000000, 0.450000, 0.350000;;, + 8;3;-0.000000, 0.450000, 0.350000;;, + 9;3;-0.000000, 0.450000, 0.350000;;, + 10;3;-0.000000, 0.450000, 0.350000;;, + 11;3;-0.000000, 0.450000, 0.350000;;, + 12;3;-0.000000, 0.450000, 0.350000;;, + 13;3;-0.000000, 0.450000, 0.350000;;, + 14;3;-0.000000, 0.450000, 0.350000;;, + 15;3;-0.000000, 0.450000, 0.350000;;, + 16;3;-0.000000, 0.450000, 0.350000;;, + 17;3;-0.000000, 0.450000, 0.350000;;, + 18;3;-0.000000, 0.450000, 0.350000;;, + 19;3;-0.000000, 0.450000, 0.350000;;, + 20;3;-0.000000, 0.450000, 0.350000;;, + 21;3;-0.000000, 0.450000, 0.350000;;, + 22;3;-0.000000, 0.450000, 0.350000;;, + 23;3;-0.000000, 0.450000, 0.350000;;, + 24;3;-0.000000, 0.450000, 0.350000;;, + 25;3;-0.000000, 0.450000, 0.350000;;, + 26;3;-0.000000, 0.450000, 0.350000;;, + 27;3;-0.000000, 0.450000, 0.350000;;, + 28;3;-0.000000, 0.450000, 0.350000;;, + 29;3;-0.000000, 0.450000, 0.350000;;, + 30;3;-0.000000, 0.450000, 0.350000;;, + 31;3;-0.000000, 0.450000, 0.350000;;, + 32;3;-0.000000, 0.450000, 0.350000;;, + 33;3;-0.000000, 0.450000, 0.350000;;, + 34;3;-0.000000, 0.450000, 0.350000;;, + 35;3;-0.000000, 0.450000, 0.350000;;, + 36;3;-0.000000, 0.450000, 0.350000;;, + 37;3;-0.000000, 0.450000, 0.350000;;, + 38;3;-0.000000, 0.450000, 0.350000;;, + 39;3;-0.000000, 0.450000, 0.350000;;, + 40;3;-0.000000, 0.450000, 0.350000;;, + 41;3;-0.000082, 0.449998, 0.350000;;, + 42;3;-0.000329, 0.449991, 0.350000;;, + 43;3;-0.000731, 0.449978, 0.350000;;, + 44;3;-0.001257, 0.449962, 0.350000;;, + 45;3;-0.001852, 0.449941, 0.350000;;, + 46;3;-0.002447, 0.449919, 0.350000;;, + 47;3;-0.002973, 0.449896, 0.350000;;, + 48;3;-0.003375, 0.449874, 0.350000;;, + 49;3;-0.003622, 0.449855, 0.350000;;, + 50;3;-0.003704, 0.449838, 0.350000;;, + 51;3;-0.003634, 0.449822, 0.350104;;, + 52;3;-0.003422, 0.449804, 0.350418;;, + 53;3;-0.003077, 0.449785, 0.350928;;, + 54;3;-0.002622, 0.449766, 0.351595;;, + 55;3;-0.002103, 0.449747, 0.352351;;, + 56;3;-0.001577, 0.449730, 0.353106;;, + 57;3;-0.001103, 0.449716, 0.353773;;, + 58;3;-0.000728, 0.449707, 0.354283;;, + 59;3;-0.000479, 0.449701, 0.354597;;, + 60;3;-0.000364, 0.449699, 0.354701;;, + 61;3;-0.000319, 0.449701, 0.354675;;, + 62;3;-0.000276, 0.449706, 0.354597;;, + 63;3;-0.000236, 0.449714, 0.354466;;, + 64;3;-0.000198, 0.449726, 0.354283;;, + 65;3;-0.000164, 0.449741, 0.354051;;, + 66;3;-0.000133, 0.449759, 0.353773;;, + 67;3;-0.000106, 0.449779, 0.353456;;, + 68;3;-0.000082, 0.449801, 0.353106;;, + 69;3;-0.000062, 0.449825, 0.352734;;, + 70;3;-0.000046, 0.449850, 0.352351;;, + 71;3;-0.000032, 0.449874, 0.351967;;, + 72;3;-0.000022, 0.449898, 0.351595;;, + 73;3;-0.000014, 0.449920, 0.351245;;, + 74;3;-0.000008, 0.449941, 0.350928;;, + 75;3;-0.000005, 0.449958, 0.350650;;, + 76;3;-0.000002, 0.449973, 0.350418;;, + 77;3;-0.000001, 0.449985, 0.350235;;, + 78;3;-0.000000, 0.449993, 0.350104;;, + 79;3;-0.000000, 0.449998, 0.350026;;, + 80;3;-0.000000, 0.450000, 0.350000;;, + 81;3;-0.000082, 0.449997, 0.350000;;, + 82;3;-0.000329, 0.449986, 0.350000;;, + 83;3;-0.000731, 0.449968, 0.350000;;, + 84;3;-0.001257, 0.449945, 0.350000;;, + 85;3;-0.001852, 0.449919, 0.350000;;, + 86;3;-0.002447, 0.449893, 0.350000;;, + 87;3;-0.002973, 0.449870, 0.350000;;, + 88;3;-0.003375, 0.449853, 0.350000;;, + 89;3;-0.003622, 0.449842, 0.350000;;, + 90;3;-0.003704, 0.449838, 0.350000;;; + } + } + Animation { + {Armature_Bone_007} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.319598,-0.677966,-0.431912, 0.501669;;, + 1;4;-0.319598,-0.677966,-0.431912, 0.501669;;, + 2;4;-0.320288,-0.677564,-0.432404, 0.501164;;, + 3;4;-0.322372,-0.676349,-0.433891, 0.499638;;, + 4;4;-0.325856,-0.674318,-0.436378, 0.497088;;, + 5;4;-0.330709,-0.671489,-0.439841, 0.493535;;, + 6;4;-0.336861,-0.667903,-0.444232, 0.489032;;, + 7;4;-0.344189,-0.663631,-0.449461, 0.483668;;, + 8;4;-0.352514,-0.658778,-0.455403, 0.477574;;, + 9;4;-0.361602,-0.653480,-0.461888, 0.470922;;, + 10;4;-0.371169,-0.647903,-0.468716, 0.463918;;, + 11;4;-0.380901,-0.642230,-0.475661, 0.456795;;, + 12;4;-0.390468,-0.636653,-0.482489, 0.449792;;, + 13;4;-0.399556,-0.631356,-0.488974, 0.443140;;, + 14;4;-0.407880,-0.626503,-0.494915, 0.437046;;, + 15;4;-0.415208,-0.622231,-0.500145, 0.431682;;, + 16;4;-0.421360,-0.618645,-0.504535, 0.427179;;, + 17;4;-0.426213,-0.615816,-0.507998, 0.423627;;, + 18;4;-0.429696,-0.613786,-0.510484, 0.421077;;, + 19;4;-0.431781,-0.612571,-0.511972, 0.419551;;, + 20;4;-0.432470,-0.612169,-0.512464, 0.419046;;, + 21;4;-0.429387,-0.614143,-0.510072, 0.421273;;, + 22;4;-0.419907,-0.620167,-0.502767, 0.428129;;, + 23;4;-0.405596,-0.629149,-0.491862, 0.438496;;, + 24;4;-0.390288,-0.638570,-0.480398, 0.449617;;, + 25;4;-0.377291,-0.646324,-0.470931, 0.459101;;, + 26;4;-0.364229,-0.654013,-0.461528, 0.468650;;, + 27;4;-0.348669,-0.663183,-0.450316, 0.480022;;, + 28;4;-0.333850,-0.671656,-0.439920, 0.490898;;, + 29;4;-0.323610,-0.676921,-0.433375, 0.498513;;, + 30;4;-0.319598,-0.677966,-0.431912, 0.501669;;, + 31;4;-0.327670,-0.669831,-0.430042, 0.507163;;, + 32;4;-0.352888,-0.648194,-0.423547, 0.520203;;, + 33;4;-0.387412,-0.619323,-0.416423, 0.534923;;, + 34;4;-0.417717,-0.593952,-0.414002, 0.543210;;, + 35;4;-0.434447,-0.579463,-0.419063, 0.540621;;, + 36;4;-0.440884,-0.576226,-0.433477, 0.524172;;, + 37;4;-0.442160,-0.582730,-0.457437, 0.493244;;, + 38;4;-0.439302,-0.595269,-0.484296, 0.457130;;, + 39;4;-0.435193,-0.606820,-0.504479, 0.429642;;, + 40;4;-0.432470,-0.612169,-0.512464, 0.419046;;, + 41;4;-0.429595,-0.613661,-0.513835, 0.418885;;, + 42;4;-0.424003,-0.615068,-0.514731, 0.421605;;, + 43;4;-0.415735,-0.616478,-0.514971, 0.427194;;, + 44;4;-0.405129,-0.618016,-0.514359, 0.435331;;, + 45;4;-0.392883,-0.619833,-0.512733, 0.445324;;, + 46;4;-0.379976,-0.622073,-0.510015, 0.456171;;, + 47;4;-0.367454,-0.624838,-0.506235, 0.466788;;, + 48;4;-0.356187,-0.628169,-0.501517, 0.476256;;, + 49;4;-0.346735,-0.632048,-0.496033, 0.483969;;, + 50;4;-0.339356,-0.636425,-0.489959, 0.489634;;, + 51;4;-0.332631,-0.641463,-0.482758, 0.494513;;, + 52;4;-0.325176,-0.647323,-0.473852, 0.499877;;, + 53;4;-0.317225,-0.653846,-0.463499, 0.505551;;, + 54;4;-0.309166,-0.660738,-0.452224, 0.511256;;, + 55;4;-0.301519,-0.667569,-0.440811, 0.516622;;, + 56;4;-0.294842,-0.673854,-0.430183, 0.521256;;, + 57;4;-0.289593,-0.679160,-0.421182, 0.524840;;, + 58;4;-0.286040,-0.683203,-0.414389, 0.527195;;, + 59;4;-0.284245,-0.685870,-0.410063, 0.528286;;, + 60;4;-0.284124,-0.687183,-0.408206, 0.528181;;, + 61;4;-0.284832,-0.687823,-0.407596, 0.527496;;, + 62;4;-0.285632,-0.688402,-0.407109, 0.526768;;, + 63;4;-0.286533,-0.688910,-0.406763, 0.525992;;, + 64;4;-0.287546,-0.689333,-0.406577, 0.525161;;, + 65;4;-0.288679,-0.689658,-0.406571, 0.524266;;, + 66;4;-0.289941,-0.689870,-0.406764, 0.523301;;, + 67;4;-0.291339,-0.689955,-0.407173, 0.522260;;, + 68;4;-0.292877,-0.689900,-0.407814, 0.521136;;, + 69;4;-0.294555,-0.689694,-0.408696, 0.519926;;, + 70;4;-0.296371,-0.689331,-0.409825, 0.518627;;, + 71;4;-0.298318,-0.688807,-0.411198, 0.517240;;, + 72;4;-0.300386,-0.688122,-0.412807, 0.515767;;, + 73;4;-0.302562,-0.687282,-0.414637, 0.514213;;, + 74;4;-0.304831,-0.686294,-0.416671, 0.512584;;, + 75;4;-0.307179,-0.685170,-0.418887, 0.510887;;, + 76;4;-0.309589,-0.683923,-0.421261, 0.509131;;, + 77;4;-0.312048,-0.682566,-0.423771, 0.507324;;, + 78;4;-0.314543,-0.681113,-0.426396, 0.505473;;, + 79;4;-0.317063,-0.679575,-0.429116, 0.503586;;, + 80;4;-0.319598,-0.677966,-0.431912, 0.501669;;, + 81;4;-0.322226,-0.675630,-0.435638, 0.499738;;, + 82;4;-0.324997,-0.671919,-0.441128, 0.497831;;, + 83;4;-0.327833,-0.666965,-0.448197, 0.495999;;, + 84;4;-0.330616,-0.661085,-0.456410, 0.494307;;, + 85;4;-0.333197,-0.654792,-0.465078, 0.492825;;, + 86;4;-0.335425,-0.648727,-0.473352, 0.491611;;, + 87;4;-0.337185,-0.643507,-0.480427, 0.490696;;, + 88;4;-0.338420,-0.639587,-0.485713, 0.490080;;, + 89;4;-0.339131,-0.637208,-0.488909, 0.489739;;, + 90;4;-0.339356,-0.636425,-0.489959, 0.489634;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.370000,-0.350000;;, + 1;3;-0.000000, 0.370000,-0.350000;;, + 2;3;-0.000000, 0.370000,-0.350000;;, + 3;3;-0.000000, 0.370000,-0.350000;;, + 4;3;-0.000000, 0.370000,-0.350000;;, + 5;3;-0.000000, 0.370000,-0.350000;;, + 6;3;-0.000000, 0.370000,-0.350000;;, + 7;3;-0.000000, 0.370000,-0.350000;;, + 8;3;-0.000000, 0.370000,-0.350000;;, + 9;3;-0.000000, 0.370000,-0.350000;;, + 10;3;-0.000000, 0.370000,-0.350000;;, + 11;3;-0.000000, 0.370000,-0.350000;;, + 12;3;-0.000000, 0.370000,-0.350000;;, + 13;3;-0.000000, 0.370000,-0.350000;;, + 14;3;-0.000000, 0.370000,-0.350000;;, + 15;3;-0.000000, 0.370000,-0.350000;;, + 16;3;-0.000000, 0.370000,-0.350000;;, + 17;3;-0.000000, 0.370000,-0.350000;;, + 18;3;-0.000000, 0.370000,-0.350000;;, + 19;3;-0.000000, 0.370000,-0.350000;;, + 20;3;-0.000000, 0.370000,-0.350000;;, + 21;3;-0.000000, 0.370000,-0.350000;;, + 22;3;-0.000000, 0.370000,-0.350000;;, + 23;3;-0.000000, 0.370000,-0.350000;;, + 24;3;-0.000000, 0.370000,-0.350000;;, + 25;3;-0.000000, 0.370000,-0.350000;;, + 26;3;-0.000000, 0.370000,-0.350000;;, + 27;3;-0.000000, 0.370000,-0.350000;;, + 28;3;-0.000000, 0.370000,-0.350000;;, + 29;3;-0.000000, 0.370000,-0.350000;;, + 30;3;-0.000000, 0.370000,-0.350000;;, + 31;3;-0.000000, 0.370000,-0.350000;;, + 32;3;-0.000000, 0.370000,-0.350000;;, + 33;3;-0.000000, 0.370000,-0.350000;;, + 34;3;-0.000000, 0.370000,-0.350000;;, + 35;3;-0.000000, 0.370000,-0.350000;;, + 36;3;-0.000000, 0.370000,-0.350000;;, + 37;3;-0.000000, 0.370000,-0.350000;;, + 38;3;-0.000000, 0.370000,-0.350000;;, + 39;3;-0.000000, 0.370000,-0.350000;;, + 40;3;-0.000000, 0.370000,-0.350000;;, + 41;3; 0.000072, 0.370002,-0.350000;;, + 42;3; 0.000290, 0.370008,-0.350000;;, + 43;3; 0.000645, 0.370019,-0.350000;;, + 44;3; 0.001109, 0.370034,-0.350000;;, + 45;3; 0.001634, 0.370052,-0.350000;;, + 46;3; 0.002159, 0.370072,-0.350000;;, + 47;3; 0.002623, 0.370092,-0.350000;;, + 48;3; 0.002978, 0.370111,-0.350000;;, + 49;3; 0.003196, 0.370128,-0.350000;;, + 50;3; 0.003268, 0.370143,-0.350000;;, + 51;3; 0.003206, 0.370157,-0.349908;;, + 52;3; 0.003020, 0.370173,-0.349631;;, + 53;3; 0.002715, 0.370190,-0.349181;;, + 54;3; 0.002313, 0.370207,-0.348593;;, + 55;3; 0.001855, 0.370224,-0.347926;;, + 56;3; 0.001391, 0.370238,-0.347259;;, + 57;3; 0.000973, 0.370250,-0.346671;;, + 58;3; 0.000642, 0.370259,-0.346221;;, + 59;3; 0.000422, 0.370264,-0.345944;;, + 60;3; 0.000321, 0.370265,-0.345852;;, + 61;3; 0.000281, 0.370264,-0.345875;;, + 62;3; 0.000243, 0.370259,-0.345944;;, + 63;3; 0.000208, 0.370252,-0.346059;;, + 64;3; 0.000175, 0.370242,-0.346221;;, + 65;3; 0.000145, 0.370229,-0.346426;;, + 66;3; 0.000117, 0.370213,-0.346671;;, + 67;3; 0.000093, 0.370195,-0.346951;;, + 68;3; 0.000073, 0.370175,-0.347259;;, + 69;3; 0.000055, 0.370154,-0.347587;;, + 70;3; 0.000040, 0.370133,-0.347926;;, + 71;3; 0.000028, 0.370111,-0.348264;;, + 72;3; 0.000019, 0.370090,-0.348593;;, + 73;3; 0.000012, 0.370070,-0.348901;;, + 74;3; 0.000007, 0.370052,-0.349181;;, + 75;3; 0.000004, 0.370037,-0.349426;;, + 76;3; 0.000002, 0.370024,-0.349631;;, + 77;3; 0.000001, 0.370013,-0.349792;;, + 78;3; 0.000000, 0.370006,-0.349908;;, + 79;3;-0.000000, 0.370002,-0.349977;;, + 80;3;-0.000000, 0.370000,-0.350000;;, + 81;3; 0.000072, 0.370003,-0.350000;;, + 82;3; 0.000290, 0.370013,-0.350000;;, + 83;3; 0.000645, 0.370028,-0.350000;;, + 84;3; 0.001109, 0.370048,-0.350000;;, + 85;3; 0.001634, 0.370072,-0.350000;;, + 86;3; 0.002159, 0.370094,-0.350000;;, + 87;3; 0.002623, 0.370115,-0.350000;;, + 88;3; 0.002978, 0.370130,-0.350000;;, + 89;3; 0.003196, 0.370140,-0.350000;;, + 90;3; 0.003268, 0.370143,-0.350000;;; + } + } + Animation { + {Armature_Bone_008} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 1;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 2;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 3;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 4;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 5;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 6;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 7;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 8;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 9;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 10;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 11;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 12;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 13;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 14;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 15;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 16;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 17;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 18;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 19;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 20;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 21;4;-0.430343, 0.506930,-0.327682,-0.669908;;, + 22;4;-0.426552, 0.521158,-0.351077,-0.646621;;, + 23;4;-0.423372, 0.537841,-0.382799,-0.615139;;, + 24;4;-0.424177, 0.547749,-0.410786,-0.587535;;, + 25;4;-0.430424, 0.545661,-0.426685,-0.572130;;, + 26;4;-0.446036, 0.529623,-0.431828,-0.568361;;, + 27;4;-0.473165, 0.500168,-0.429575,-0.573601;;, + 28;4;-0.503646, 0.466128,-0.422607,-0.584473;;, + 29;4;-0.525804, 0.440497,-0.416136,-0.594529;;, + 30;4;-0.532957, 0.430963,-0.414106,-0.598952;;, + 31;4;-0.529573, 0.432276,-0.411956,-0.601876;;, + 32;4;-0.520708, 0.438284,-0.403853,-0.608859;;, + 33;4;-0.507758, 0.447792,-0.391311,-0.618867;;, + 34;4;-0.494055, 0.457946,-0.377950,-0.629434;;, + 35;4;-0.482438, 0.466313,-0.366855,-0.638456;;, + 36;4;-0.470683, 0.474543,-0.355897,-0.647615;;, + 37;4;-0.456654, 0.484374,-0.342859,-0.658508;;, + 38;4;-0.443445, 0.493627,-0.330572,-0.668775;;, + 39;4;-0.434691, 0.499748,-0.322355,-0.675648;;, + 40;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 41;4;-0.433297, 0.501304,-0.319938,-0.677143;;, + 42;4;-0.437234, 0.500436,-0.321192,-0.674436;;, + 43;4;-0.443562, 0.499099,-0.323304,-0.669960;;, + 44;4;-0.451798, 0.497393,-0.326109,-0.664065;;, + 45;4;-0.461102, 0.495485,-0.329311,-0.657361;;, + 46;4;-0.470390, 0.493593,-0.332529,-0.650642;;, + 47;4;-0.478580, 0.491932,-0.335379,-0.644701;;, + 48;4;-0.484836, 0.490667,-0.337563,-0.640154;;, + 49;4;-0.488682, 0.489891,-0.338909,-0.637355;;, + 50;4;-0.489959, 0.489634,-0.339356,-0.636425;;, + 51;4;-0.488203, 0.490544,-0.338076,-0.637494;;, + 52;4;-0.482907, 0.493275,-0.334232,-0.640722;;, + 53;4;-0.474276, 0.497695,-0.328002,-0.645990;;, + 54;4;-0.462950, 0.503437,-0.319892,-0.652919;;, + 55;4;-0.450057, 0.509882,-0.310765,-0.660829;;, + 56;4;-0.437072, 0.516234,-0.301731,-0.668832;;, + 57;4;-0.425478, 0.521708,-0.293889,-0.676029;;, + 58;4;-0.416428, 0.525709,-0.288078,-0.681717;;, + 59;4;-0.410592, 0.527900,-0.284774,-0.685484;;, + 60;4;-0.408206, 0.528180,-0.284123,-0.687183;;, + 61;4;-0.407596, 0.527496,-0.284832,-0.687823;;, + 62;4;-0.407109, 0.526768,-0.285632,-0.688402;;, + 63;4;-0.406763, 0.525992,-0.286533,-0.688910;;, + 64;4;-0.406577, 0.525161,-0.287546,-0.689333;;, + 65;4;-0.406571, 0.524266,-0.288679,-0.689658;;, + 66;4;-0.406764, 0.523301,-0.289941,-0.689870;;, + 67;4;-0.407173, 0.522260,-0.291339,-0.689955;;, + 68;4;-0.407814, 0.521136,-0.292877,-0.689900;;, + 69;4;-0.408696, 0.519926,-0.294555,-0.689694;;, + 70;4;-0.409825, 0.518627,-0.296371,-0.689331;;, + 71;4;-0.411198, 0.517240,-0.298318,-0.688807;;, + 72;4;-0.412807, 0.515767,-0.300386,-0.688122;;, + 73;4;-0.414638, 0.514213,-0.302562,-0.687282;;, + 74;4;-0.416671, 0.512583,-0.304831,-0.686294;;, + 75;4;-0.418887, 0.510887,-0.307178,-0.685170;;, + 76;4;-0.421261, 0.509131,-0.309589,-0.683923;;, + 77;4;-0.423772, 0.507324,-0.312048,-0.682566;;, + 78;4;-0.426396, 0.505473,-0.314543,-0.681113;;, + 79;4;-0.429116, 0.503586,-0.317062,-0.679575;;, + 80;4;-0.431912, 0.501668,-0.319598,-0.677966;;, + 81;4;-0.435638, 0.499737,-0.322226,-0.675630;;, + 82;4;-0.441129, 0.497831,-0.324997,-0.671920;;, + 83;4;-0.448197, 0.495999,-0.327833,-0.666966;;, + 84;4;-0.456410, 0.494307,-0.330616,-0.661085;;, + 85;4;-0.465078, 0.492825,-0.333197,-0.654792;;, + 86;4;-0.473352, 0.491611,-0.335425,-0.648727;;, + 87;4;-0.480427, 0.490696,-0.337185,-0.643507;;, + 88;4;-0.485713, 0.490080,-0.338420,-0.639587;;, + 89;4;-0.488910, 0.489739,-0.339131,-0.637208;;, + 90;4;-0.489959, 0.489634,-0.339356,-0.636425;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.370000, 0.350000;;, + 1;3;-0.000000, 0.370000, 0.350000;;, + 2;3;-0.000000, 0.370000, 0.350000;;, + 3;3;-0.000000, 0.370000, 0.350000;;, + 4;3;-0.000000, 0.370000, 0.350000;;, + 5;3;-0.000000, 0.370000, 0.350000;;, + 6;3;-0.000000, 0.370000, 0.350000;;, + 7;3;-0.000000, 0.370000, 0.350000;;, + 8;3;-0.000000, 0.370000, 0.350000;;, + 9;3;-0.000000, 0.370000, 0.350000;;, + 10;3;-0.000000, 0.370000, 0.350000;;, + 11;3;-0.000000, 0.370000, 0.350000;;, + 12;3;-0.000000, 0.370000, 0.350000;;, + 13;3;-0.000000, 0.370000, 0.350000;;, + 14;3;-0.000000, 0.370000, 0.350000;;, + 15;3;-0.000000, 0.370000, 0.350000;;, + 16;3;-0.000000, 0.370000, 0.350000;;, + 17;3;-0.000000, 0.370000, 0.350000;;, + 18;3;-0.000000, 0.370000, 0.350000;;, + 19;3;-0.000000, 0.370000, 0.350000;;, + 20;3;-0.000000, 0.370000, 0.350000;;, + 21;3;-0.000000, 0.370000, 0.350000;;, + 22;3;-0.000000, 0.370000, 0.350000;;, + 23;3;-0.000000, 0.370000, 0.350000;;, + 24;3;-0.000000, 0.370000, 0.350000;;, + 25;3;-0.000000, 0.370000, 0.350000;;, + 26;3;-0.000000, 0.370000, 0.350000;;, + 27;3;-0.000000, 0.370000, 0.350000;;, + 28;3;-0.000000, 0.370000, 0.350000;;, + 29;3;-0.000000, 0.370000, 0.350000;;, + 30;3;-0.000000, 0.370000, 0.350000;;, + 31;3;-0.000000, 0.370000, 0.350000;;, + 32;3;-0.000000, 0.370000, 0.350000;;, + 33;3;-0.000000, 0.370000, 0.350000;;, + 34;3;-0.000000, 0.370000, 0.350000;;, + 35;3;-0.000000, 0.370000, 0.350000;;, + 36;3;-0.000000, 0.370000, 0.350000;;, + 37;3;-0.000000, 0.370000, 0.350000;;, + 38;3;-0.000000, 0.370000, 0.350000;;, + 39;3;-0.000000, 0.370000, 0.350000;;, + 40;3;-0.000000, 0.370000, 0.350000;;, + 41;3; 0.000072, 0.370002, 0.350000;;, + 42;3; 0.000291, 0.370008, 0.350000;;, + 43;3; 0.000645, 0.370019, 0.350000;;, + 44;3; 0.001109, 0.370034, 0.350000;;, + 45;3; 0.001634, 0.370052, 0.350000;;, + 46;3; 0.002159, 0.370072, 0.350000;;, + 47;3; 0.002623, 0.370092, 0.350000;;, + 48;3; 0.002978, 0.370111, 0.350000;;, + 49;3; 0.003196, 0.370128, 0.350000;;, + 50;3; 0.003268, 0.370143, 0.350000;;, + 51;3; 0.003206, 0.370157, 0.349908;;, + 52;3; 0.003020, 0.370173, 0.349631;;, + 53;3; 0.002715, 0.370190, 0.349181;;, + 54;3; 0.002314, 0.370207, 0.348593;;, + 55;3; 0.001855, 0.370224, 0.347926;;, + 56;3; 0.001391, 0.370238, 0.347259;;, + 57;3; 0.000973, 0.370250, 0.346671;;, + 58;3; 0.000643, 0.370259, 0.346221;;, + 59;3; 0.000422, 0.370264, 0.345944;;, + 60;3; 0.000322, 0.370265, 0.345852;;, + 61;3; 0.000281, 0.370264, 0.345875;;, + 62;3; 0.000243, 0.370260, 0.345944;;, + 63;3; 0.000208, 0.370252, 0.346060;;, + 64;3; 0.000175, 0.370242, 0.346221;;, + 65;3; 0.000145, 0.370229, 0.346426;;, + 66;3; 0.000118, 0.370213, 0.346671;;, + 67;3; 0.000093, 0.370195, 0.346951;;, + 68;3; 0.000073, 0.370175, 0.347259;;, + 69;3; 0.000055, 0.370154, 0.347587;;, + 70;3; 0.000040, 0.370133, 0.347926;;, + 71;3; 0.000028, 0.370111, 0.348264;;, + 72;3; 0.000019, 0.370090, 0.348593;;, + 73;3; 0.000012, 0.370070, 0.348901;;, + 74;3; 0.000007, 0.370052, 0.349181;;, + 75;3; 0.000004, 0.370037, 0.349426;;, + 76;3; 0.000002, 0.370024, 0.349631;;, + 77;3; 0.000001, 0.370013, 0.349793;;, + 78;3; 0.000000, 0.370006, 0.349908;;, + 79;3;-0.000000, 0.370002, 0.349977;;, + 80;3;-0.000000, 0.370000, 0.350000;;, + 81;3; 0.000072, 0.370003, 0.350000;;, + 82;3; 0.000290, 0.370013, 0.350000;;, + 83;3; 0.000645, 0.370028, 0.350000;;, + 84;3; 0.001109, 0.370049, 0.350000;;, + 85;3; 0.001634, 0.370071, 0.350000;;, + 86;3; 0.002159, 0.370094, 0.350000;;, + 87;3; 0.002623, 0.370115, 0.350000;;, + 88;3; 0.002978, 0.370130, 0.350000;;, + 89;3; 0.003196, 0.370140, 0.350000;;, + 90;3; 0.003268, 0.370143, 0.350000;;; + } + } + Animation { + {Armature_Bone_009} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 1;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 2;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 3;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 4;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 5;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 6;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 7;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 8;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 9;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 10;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 11;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 12;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 13;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 14;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 15;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 16;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 17;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 18;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 19;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 20;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 21;4;-0.171292,-0.792475,-0.251317, 0.526549;;, + 22;4;-0.193248,-0.771364,-0.249637, 0.546270;;, + 23;4;-0.223546,-0.743385,-0.249591, 0.570717;;, + 24;4;-0.251250,-0.719894,-0.253662, 0.588055;;, + 25;4;-0.268549,-0.708463,-0.262571, 0.591119;;, + 26;4;-0.279750,-0.709268,-0.276909, 0.577247;;, + 27;4;-0.290100,-0.720419,-0.296449, 0.546706;;, + 28;4;-0.297644,-0.737394,-0.316737, 0.509204;;, + 29;4;-0.300956,-0.752215,-0.331815, 0.479757;;, + 30;4;-0.300181,-0.759263,-0.338560, 0.467747;;, + 31;4;-0.294533,-0.762200,-0.337904, 0.467422;;, + 32;4;-0.282366,-0.766052,-0.330739, 0.471577;;, + 33;4;-0.265342,-0.770585,-0.318723, 0.479071;;, + 34;4;-0.247421,-0.775245,-0.305812, 0.487182;;, + 35;4;-0.231981,-0.779557,-0.295379, 0.493587;;, + 36;4;-0.216498,-0.784385,-0.284989, 0.499477;;, + 37;4;-0.198473,-0.790273,-0.272179, 0.506361;;, + 38;4;-0.181365,-0.795779,-0.260244, 0.512886;;, + 39;4;-0.169233,-0.799209,-0.253042, 0.517465;;, + 40;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 41;4;-0.162442,-0.798703,-0.255561, 0.519869;;, + 42;4;-0.162930,-0.796660,-0.261194, 0.519765;;, + 43;4;-0.165185,-0.793799,-0.268891, 0.519134;;, + 44;4;-0.168946,-0.790314,-0.278146, 0.518052;;, + 45;4;-0.173708,-0.786524,-0.288130, 0.516669;;, + 46;4;-0.178778,-0.782831,-0.297805, 0.515188;;, + 47;4;-0.183435,-0.779629,-0.306165, 0.513823;;, + 48;4;-0.187092,-0.777211,-0.312460, 0.512749;;, + 49;4;-0.189384,-0.775737,-0.316289, 0.512075;;, + 50;4;-0.190155,-0.775251,-0.317551, 0.511848;;, + 51;4;-0.188583,-0.775815,-0.315644, 0.512426;;, + 52;4;-0.183859,-0.777517,-0.309895, 0.514159;;, + 53;4;-0.176198,-0.780295,-0.300528, 0.516967;;, + 54;4;-0.166213,-0.783949,-0.288242, 0.520619;;, + 55;4;-0.154958,-0.788121,-0.274267, 0.524724;;, + 56;4;-0.143790,-0.792342,-0.260205, 0.528780;;, + 57;4;-0.134055,-0.796137,-0.247668, 0.532291;;, + 58;4;-0.126785,-0.799138,-0.237910, 0.534877;;, + 59;4;-0.122565,-0.801125,-0.231658, 0.536325;;, + 60;4;-0.121580,-0.802023,-0.229163, 0.536569;;, + 61;4;-0.122260,-0.802383,-0.228579, 0.536191;;, + 62;4;-0.123065,-0.802757,-0.228082, 0.535757;;, + 63;4;-0.124009,-0.803138,-0.227689, 0.535265;;, + 64;4;-0.125105,-0.803515,-0.227422, 0.534711;;, + 65;4;-0.126364,-0.803880,-0.227305, 0.534092;;, + 66;4;-0.127799,-0.804220,-0.227360, 0.533407;;, + 67;4;-0.129416,-0.804520,-0.227612, 0.532656;;, + 68;4;-0.131222,-0.804766,-0.228084, 0.531841;;, + 69;4;-0.133216,-0.804941,-0.228794, 0.530964;;, + 70;4;-0.135394,-0.805033,-0.229757, 0.530032;;, + 71;4;-0.137745,-0.805026,-0.230980, 0.529051;;, + 72;4;-0.140256,-0.804911,-0.232466, 0.528030;;, + 73;4;-0.142909,-0.804681,-0.234207, 0.526978;;, + 74;4;-0.145683,-0.804331,-0.236193, 0.525905;;, + 75;4;-0.148557,-0.803862,-0.238407, 0.524818;;, + 76;4;-0.151511,-0.803274,-0.240830, 0.523727;;, + 77;4;-0.154526,-0.802573,-0.243440, 0.522638;;, + 78;4;-0.157585,-0.801765,-0.246218, 0.521556;;, + 79;4;-0.160672,-0.800856,-0.249142, 0.520486;;, + 80;4;-0.163776,-0.799854,-0.252193, 0.519432;;, + 81;4;-0.167041,-0.798407,-0.256322, 0.518362;;, + 82;4;-0.170579,-0.796167,-0.262460, 0.517258;;, + 83;4;-0.174288,-0.793213,-0.270398, 0.516150;;, + 84;4;-0.178005,-0.789731,-0.279646, 0.515083;;, + 85;4;-0.181517,-0.786021,-0.289423, 0.514109;;, + 86;4;-0.184597,-0.782457,-0.298769, 0.513280;;, + 87;4;-0.187063,-0.779396,-0.306766, 0.512634;;, + 88;4;-0.188814,-0.777100,-0.312745, 0.512185;;, + 89;4;-0.189831,-0.775709,-0.316363, 0.511929;;, + 90;4;-0.190155,-0.775251,-0.317551, 0.511848;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.280000,-0.350000;;, + 1;3;-0.000000, 0.280000,-0.350000;;, + 2;3;-0.000000, 0.280000,-0.350000;;, + 3;3;-0.000000, 0.280000,-0.350000;;, + 4;3;-0.000000, 0.280000,-0.350000;;, + 5;3;-0.000000, 0.280000,-0.350000;;, + 6;3;-0.000000, 0.280000,-0.350000;;, + 7;3;-0.000000, 0.280000,-0.350000;;, + 8;3;-0.000000, 0.280000,-0.350000;;, + 9;3;-0.000000, 0.280000,-0.350000;;, + 10;3;-0.000000, 0.280000,-0.350000;;, + 11;3;-0.000000, 0.280000,-0.350000;;, + 12;3;-0.000000, 0.280000,-0.350000;;, + 13;3;-0.000000, 0.280000,-0.350000;;, + 14;3;-0.000000, 0.280000,-0.350000;;, + 15;3;-0.000000, 0.280000,-0.350000;;, + 16;3;-0.000000, 0.280000,-0.350000;;, + 17;3;-0.000000, 0.280000,-0.350000;;, + 18;3;-0.000000, 0.280000,-0.350000;;, + 19;3;-0.000000, 0.280000,-0.350000;;, + 20;3;-0.000000, 0.280000,-0.350000;;, + 21;3;-0.000000, 0.280000,-0.350000;;, + 22;3;-0.000000, 0.280000,-0.350000;;, + 23;3;-0.000000, 0.280000,-0.350000;;, + 24;3;-0.000000, 0.280000,-0.350000;;, + 25;3;-0.000000, 0.280000,-0.350000;;, + 26;3;-0.000000, 0.280000,-0.350000;;, + 27;3;-0.000000, 0.280000,-0.350000;;, + 28;3;-0.000000, 0.280000,-0.350000;;, + 29;3;-0.000000, 0.280000,-0.350000;;, + 30;3;-0.000000, 0.280000,-0.350000;;, + 31;3;-0.000000, 0.280000,-0.350000;;, + 32;3;-0.000000, 0.280000,-0.350000;;, + 33;3;-0.000000, 0.280000,-0.350000;;, + 34;3;-0.000000, 0.280000,-0.350000;;, + 35;3;-0.000000, 0.280000,-0.350000;;, + 36;3;-0.000000, 0.280000,-0.350000;;, + 37;3;-0.000000, 0.280000,-0.350000;;, + 38;3;-0.000000, 0.280000,-0.350000;;, + 39;3;-0.000000, 0.280000,-0.350000;;, + 40;3;-0.000000, 0.280000,-0.350000;;, + 41;3; 0.000246, 0.280007,-0.350000;;, + 42;3; 0.000988, 0.280029,-0.350000;;, + 43;3; 0.002193, 0.280065,-0.350000;;, + 44;3; 0.003770, 0.280115,-0.350000;;, + 45;3; 0.005556, 0.280177,-0.350000;;, + 46;3; 0.007342, 0.280244,-0.350000;;, + 47;3; 0.008919, 0.280313,-0.350000;;, + 48;3; 0.010124, 0.280378,-0.350000;;, + 49;3; 0.010866, 0.280436,-0.350000;;, + 50;3; 0.011112, 0.280485,-0.350000;;, + 51;3; 0.010902, 0.280533,-0.349687;;, + 52;3; 0.010267, 0.280587,-0.348746;;, + 53;3; 0.009230, 0.280645,-0.347216;;, + 54;3; 0.007866, 0.280703,-0.345215;;, + 55;3; 0.006308, 0.280760,-0.342948;;, + 56;3; 0.004730, 0.280810,-0.340681;;, + 57;3; 0.003310, 0.280851,-0.338680;;, + 58;3; 0.002184, 0.280880,-0.337150;;, + 59;3; 0.001436, 0.280897,-0.336209;;, + 60;3; 0.001093, 0.280902,-0.335897;;, + 61;3; 0.000957, 0.280897,-0.335974;;, + 62;3; 0.000827, 0.280882,-0.336209;;, + 63;3; 0.000706, 0.280857,-0.336602;;, + 64;3; 0.000594, 0.280822,-0.337150;;, + 65;3; 0.000492, 0.280778,-0.337847;;, + 66;3; 0.000400, 0.280724,-0.338680;;, + 67;3; 0.000318, 0.280663,-0.339633;;, + 68;3; 0.000247, 0.280596,-0.340681;;, + 69;3; 0.000186, 0.280525,-0.341797;;, + 70;3; 0.000137, 0.280451,-0.342948;;, + 71;3; 0.000096, 0.280378,-0.344099;;, + 72;3; 0.000065, 0.280306,-0.345215;;, + 73;3; 0.000042, 0.280239,-0.346264;;, + 74;3; 0.000025, 0.280178,-0.347216;;, + 75;3; 0.000014, 0.280125,-0.348050;;, + 76;3; 0.000007, 0.280080,-0.348746;;, + 77;3; 0.000003, 0.280045,-0.349295;;, + 78;3; 0.000001, 0.280020,-0.349687;;, + 79;3;-0.000000, 0.280005,-0.349922;;, + 80;3;-0.000000, 0.280000,-0.350000;;, + 81;3; 0.000246, 0.280011,-0.350000;;, + 82;3; 0.000988, 0.280043,-0.350000;;, + 83;3; 0.002193, 0.280096,-0.350000;;, + 84;3; 0.003770, 0.280165,-0.350000;;, + 85;3; 0.005556, 0.280243,-0.350000;;, + 86;3; 0.007342, 0.280321,-0.350000;;, + 87;3; 0.008919, 0.280389,-0.350000;;, + 88;3; 0.010125, 0.280442,-0.350000;;, + 89;3; 0.010866, 0.280474,-0.350000;;, + 90;3; 0.011112, 0.280485,-0.350000;;; + } + } + Animation { + {Armature_Bone_010} + AnimationKey { // Rotation + 0; + 91; + 0;4;-0.252193, 0.519431,-0.163776,-0.799855;;, + 1;4;-0.252193, 0.519431,-0.163776,-0.799855;;, + 2;4;-0.252721, 0.519116,-0.164609,-0.799607;;, + 3;4;-0.254316, 0.518161,-0.167128,-0.798857;;, + 4;4;-0.256981, 0.516566,-0.171338,-0.797604;;, + 5;4;-0.260695, 0.514344,-0.177204,-0.795859;;, + 6;4;-0.265402, 0.511527,-0.184638,-0.793646;;, + 7;4;-0.271009, 0.508171,-0.193494,-0.791011;;, + 8;4;-0.277379, 0.504359,-0.203554,-0.788017;;, + 9;4;-0.284333, 0.500198,-0.214537,-0.784749;;, + 10;4;-0.291654, 0.495817,-0.226099,-0.781308;;, + 11;4;-0.299100, 0.491361,-0.237859,-0.777809;;, + 12;4;-0.306421, 0.486980,-0.249422,-0.774368;;, + 13;4;-0.313375, 0.482819,-0.260404,-0.771100;;, + 14;4;-0.319744, 0.479007,-0.270465,-0.768106;;, + 15;4;-0.325351, 0.475652,-0.279320,-0.765471;;, + 16;4;-0.330058, 0.472835,-0.286754,-0.763259;;, + 17;4;-0.333772, 0.470612,-0.292619,-0.761514;;, + 18;4;-0.336438, 0.469017,-0.296829,-0.760261;;, + 19;4;-0.338032, 0.468063,-0.299348,-0.759511;;, + 20;4;-0.338560, 0.467747,-0.300181,-0.759264;;, + 21;4;-0.335792, 0.468887,-0.296643,-0.760735;;, + 22;4;-0.327388, 0.472463,-0.285716,-0.765167;;, + 23;4;-0.314961, 0.478033,-0.269101,-0.771627;;, + 24;4;-0.302097, 0.484277,-0.251131,-0.778154;;, + 25;4;-0.291744, 0.489957,-0.235611,-0.783192;;, + 26;4;-0.281576, 0.495824,-0.219905,-0.788042;;, + 27;4;-0.269440, 0.502794,-0.201209,-0.793843;;, + 28;4;-0.258484, 0.509836,-0.183122,-0.798831;;, + 29;4;-0.252275, 0.515606,-0.169999,-0.801068;;, + 30;4;-0.252193, 0.519431,-0.163776,-0.799855;;, + 31;4;-0.253356, 0.528589,-0.169252,-0.790436;;, + 32;4;-0.252052, 0.548687,-0.190830,-0.768950;;, + 33;4;-0.251141, 0.572270,-0.221992,-0.741836;;, + 34;4;-0.254119, 0.588517,-0.250788,-0.719438;;, + 35;4;-0.262568, 0.591122,-0.268546,-0.708465;;, + 36;4;-0.276680, 0.577477,-0.279973,-0.709043;;, + 37;4;-0.295680, 0.547475,-0.290865,-0.719653;;, + 38;4;-0.315542, 0.510399,-0.298837,-0.736201;;, + 39;4;-0.330806, 0.480766,-0.301963,-0.751207;;, + 40;4;-0.338560, 0.467747,-0.300181,-0.759264;;, + 41;4;-0.342060, 0.465129,-0.294983,-0.762747;;, + 42;4;-0.344609, 0.465174,-0.287133,-0.765377;;, + 43;4;-0.345966, 0.467899,-0.276707,-0.767177;;, + 44;4;-0.345911, 0.473042,-0.264084,-0.768268;;, + 45;4;-0.344307, 0.480004,-0.249999,-0.768883;;, + 46;4;-0.341161, 0.487894,-0.235456,-0.769344;;, + 47;4;-0.336637, 0.495731,-0.221505,-0.769988;;, + 48;4;-0.331002, 0.502669,-0.209000,-0.771089;;, + 49;4;-0.324552, 0.508139,-0.198475,-0.772818;;, + 50;4;-0.317551, 0.511848,-0.190155,-0.775251;;, + 51;4;-0.309437, 0.514831,-0.182375,-0.778220;;, + 52;4;-0.299571, 0.518159,-0.173535,-0.781517;;, + 53;4;-0.288242, 0.521727,-0.163911,-0.785056;;, + 54;4;-0.276014, 0.525357,-0.153985,-0.788687;;, + 55;4;-0.263725, 0.528808,-0.144417,-0.792205;;, + 56;4;-0.252350, 0.531824,-0.135936,-0.795385;;, + 57;4;-0.242771, 0.534188,-0.129158,-0.798035;;, + 58;4;-0.235586, 0.535777,-0.124461,-0.800038;;, + 59;4;-0.231055, 0.536558,-0.121961,-0.801359;;, + 60;4;-0.229163, 0.536569,-0.121580,-0.802023;;, + 61;4;-0.228579, 0.536190,-0.122260,-0.802383;;, + 62;4;-0.228082, 0.535757,-0.123065,-0.802757;;, + 63;4;-0.227689, 0.535265,-0.124009,-0.803138;;, + 64;4;-0.227422, 0.534711,-0.125105,-0.803515;;, + 65;4;-0.227305, 0.534092,-0.126364,-0.803880;;, + 66;4;-0.227360, 0.533407,-0.127799,-0.804220;;, + 67;4;-0.227612, 0.532656,-0.129416,-0.804520;;, + 68;4;-0.228084, 0.531840,-0.131222,-0.804766;;, + 69;4;-0.228794, 0.530964,-0.133216,-0.804942;;, + 70;4;-0.229757, 0.530031,-0.135394,-0.805033;;, + 71;4;-0.230980, 0.529051,-0.137745,-0.805026;;, + 72;4;-0.232466, 0.528030,-0.140256,-0.804911;;, + 73;4;-0.234207, 0.526978,-0.142909,-0.804681;;, + 74;4;-0.236193, 0.525905,-0.145683,-0.804332;;, + 75;4;-0.238407, 0.524818,-0.148557,-0.803862;;, + 76;4;-0.240830, 0.523727,-0.151511,-0.803274;;, + 77;4;-0.243440, 0.522638,-0.154526,-0.802573;;, + 78;4;-0.246218, 0.521556,-0.157584,-0.801765;;, + 79;4;-0.249142, 0.520486,-0.160672,-0.800856;;, + 80;4;-0.252193, 0.519431,-0.163776,-0.799855;;, + 81;4;-0.256322, 0.518362,-0.167041,-0.798407;;, + 82;4;-0.262460, 0.517258,-0.170579,-0.796168;;, + 83;4;-0.270398, 0.516150,-0.174288,-0.793214;;, + 84;4;-0.279646, 0.515082,-0.178005,-0.789731;;, + 85;4;-0.289423, 0.514109,-0.181517,-0.786021;;, + 86;4;-0.298769, 0.513280,-0.184597,-0.782457;;, + 87;4;-0.306766, 0.512634,-0.187063,-0.779396;;, + 88;4;-0.312745, 0.512185,-0.188814,-0.777100;;, + 89;4;-0.316363, 0.511929,-0.189831,-0.775709;;, + 90;4;-0.317551, 0.511848,-0.190155,-0.775251;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3;-0.000000, 0.280000, 0.350000;;, + 1;3;-0.000000, 0.280000, 0.350000;;, + 2;3;-0.000000, 0.280000, 0.350000;;, + 3;3;-0.000000, 0.280000, 0.350000;;, + 4;3;-0.000000, 0.280000, 0.350000;;, + 5;3;-0.000000, 0.280000, 0.350000;;, + 6;3;-0.000000, 0.280000, 0.350000;;, + 7;3;-0.000000, 0.280000, 0.350000;;, + 8;3;-0.000000, 0.280000, 0.350000;;, + 9;3;-0.000000, 0.280000, 0.350000;;, + 10;3;-0.000000, 0.280000, 0.350000;;, + 11;3;-0.000000, 0.280000, 0.350000;;, + 12;3;-0.000000, 0.280000, 0.350000;;, + 13;3;-0.000000, 0.280000, 0.350000;;, + 14;3;-0.000000, 0.280000, 0.350000;;, + 15;3;-0.000000, 0.280000, 0.350000;;, + 16;3;-0.000000, 0.280000, 0.350000;;, + 17;3;-0.000000, 0.280000, 0.350000;;, + 18;3;-0.000000, 0.280000, 0.350000;;, + 19;3;-0.000000, 0.280000, 0.350000;;, + 20;3;-0.000000, 0.280000, 0.350000;;, + 21;3;-0.000000, 0.280000, 0.350000;;, + 22;3;-0.000000, 0.280000, 0.350000;;, + 23;3;-0.000000, 0.280000, 0.350000;;, + 24;3;-0.000000, 0.280000, 0.350000;;, + 25;3;-0.000000, 0.280000, 0.350000;;, + 26;3;-0.000000, 0.280000, 0.350000;;, + 27;3;-0.000000, 0.280000, 0.350000;;, + 28;3;-0.000000, 0.280000, 0.350000;;, + 29;3;-0.000000, 0.280000, 0.350000;;, + 30;3;-0.000000, 0.280000, 0.350000;;, + 31;3;-0.000000, 0.280000, 0.350000;;, + 32;3;-0.000000, 0.280000, 0.350000;;, + 33;3;-0.000000, 0.280000, 0.350000;;, + 34;3;-0.000000, 0.280000, 0.350000;;, + 35;3;-0.000000, 0.280000, 0.350000;;, + 36;3;-0.000000, 0.280000, 0.350000;;, + 37;3;-0.000000, 0.280000, 0.350000;;, + 38;3;-0.000000, 0.280000, 0.350000;;, + 39;3;-0.000000, 0.280000, 0.350000;;, + 40;3;-0.000000, 0.280000, 0.350000;;, + 41;3; 0.000246, 0.280007, 0.350000;;, + 42;3; 0.000988, 0.280029, 0.350000;;, + 43;3; 0.002193, 0.280065, 0.350000;;, + 44;3; 0.003770, 0.280115, 0.350000;;, + 45;3; 0.005556, 0.280177, 0.350000;;, + 46;3; 0.007342, 0.280244, 0.350000;;, + 47;3; 0.008919, 0.280313, 0.350000;;, + 48;3; 0.010125, 0.280378, 0.350000;;, + 49;3; 0.010866, 0.280436, 0.350000;;, + 50;3; 0.011112, 0.280485, 0.350000;;, + 51;3; 0.010902, 0.280534, 0.349687;;, + 52;3; 0.010267, 0.280587, 0.348746;;, + 53;3; 0.009230, 0.280645, 0.347216;;, + 54;3; 0.007866, 0.280703, 0.345215;;, + 55;3; 0.006308, 0.280760, 0.342948;;, + 56;3; 0.004730, 0.280810, 0.340681;;, + 57;3; 0.003310, 0.280851, 0.338680;;, + 58;3; 0.002185, 0.280880, 0.337150;;, + 59;3; 0.001436, 0.280897, 0.336209;;, + 60;3; 0.001093, 0.280903, 0.335897;;, + 61;3; 0.000957, 0.280898, 0.335974;;, + 62;3; 0.000828, 0.280883, 0.336209;;, + 63;3; 0.000707, 0.280857, 0.336602;;, + 64;3; 0.000595, 0.280822, 0.337150;;, + 65;3; 0.000492, 0.280778, 0.337847;;, + 66;3; 0.000400, 0.280724, 0.338680;;, + 67;3; 0.000318, 0.280664, 0.339633;;, + 68;3; 0.000247, 0.280596, 0.340681;;, + 69;3; 0.000186, 0.280525, 0.341797;;, + 70;3; 0.000137, 0.280451, 0.342948;;, + 71;3; 0.000097, 0.280378, 0.344099;;, + 72;3; 0.000065, 0.280306, 0.345215;;, + 73;3; 0.000042, 0.280239, 0.346264;;, + 74;3; 0.000025, 0.280178, 0.347216;;, + 75;3; 0.000014, 0.280125, 0.348050;;, + 76;3; 0.000007, 0.280080, 0.348746;;, + 77;3; 0.000003, 0.280045, 0.349295;;, + 78;3; 0.000001, 0.280020, 0.349687;;, + 79;3; 0.000000, 0.280005, 0.349922;;, + 80;3;-0.000000, 0.280000, 0.350000;;, + 81;3; 0.000246, 0.280011, 0.350000;;, + 82;3; 0.000988, 0.280043, 0.350000;;, + 83;3; 0.002193, 0.280096, 0.350000;;, + 84;3; 0.003770, 0.280165, 0.350000;;, + 85;3; 0.005556, 0.280243, 0.350000;;, + 86;3; 0.007342, 0.280321, 0.350000;;, + 87;3; 0.008919, 0.280390, 0.350000;;, + 88;3; 0.010125, 0.280442, 0.350000;;, + 89;3; 0.010866, 0.280475, 0.350000;;, + 90;3; 0.011112, 0.280485, 0.350000;;; + } + } + Animation { + {Group8} + AnimationKey { // Rotation + 0; + 91; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 91; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 91; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs/models/mobs_wolf.png b/mods/mobs/models/mobs_wolf.png new file mode 100644 index 0000000..dc45bb9 Binary files /dev/null and b/mods/mobs/models/mobs_wolf.png differ diff --git a/mods/mobs/models/mobs_wolf.x b/mods/mobs/models/mobs_wolf.x new file mode 100644 index 0000000..5572096 --- /dev/null +++ b/mods/mobs/models/mobs_wolf.x @@ -0,0 +1,7420 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 2.153459, 0.000000, 0.000000, 0.000000, + 0.000000, 2.153459, 0.000000, 0.000000, + 0.000000, 0.000000, 2.153459, 0.000000, + -11.632589, 0.094256, 0.169731, 1.000000;; + } + Frame Armature_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.996529, 0.083252, 0.000000, + 0.000000,-0.083252, 0.996529, 0.000000, + 5.378092,-1.647068, 2.876912, 1.000000;; + } + Frame Armature_noga3 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.618225, 0.037596,-0.622362, 1.000000;; + } + } //End of Armature_noga3 + Frame Armature_noga1 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.618225, 3.072911,-0.875938, 1.000000;; + } + } //End of Armature_noga1 + Frame Armature_noga4 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + -0.648382, 0.037596,-0.622362, 1.000000;; + } + } //End of Armature_noga4 + Frame Armature_noga2 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + -0.648382, 3.072911,-0.875938, 1.000000;; + } + } //End of Armature_noga2 + Frame Armature_hvost { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-0.522249,-0.852793, 0.000000, + -0.000000, 0.852793,-0.522249, 0.000000, + 0.000000,-0.295864,-0.017687, 1.000000;; + } + } //End of Armature_hvost + Frame Armature_sheya { + FrameTransformMatrix { + 0.997121, 0.074946,-0.011510, 0.000000, + -0.075824, 0.985074,-0.154533, 0.000000, + -0.000243, 0.154961, 0.987921, 0.000000, + 0.000000, 3.260104, 0.242284, 1.000000;; + } + Frame Armature_head { + FrameTransformMatrix { + 0.997121,-0.075824,-0.000243, 0.000000, + 0.075813, 0.996898, 0.021119, 0.000000, + -0.001359,-0.021076, 0.999777, 0.000000, + 0.068728, 0.903770, 0.009841, 1.000000;; + } + } //End of Armature_head + Frame Armature_zubi { + FrameTransformMatrix { + 0.997121,-0.075824,-0.000243, 0.000000, + 0.075658, 0.994708, 0.069515, 0.000000, + -0.005029,-0.069333, 0.997581, 0.000000, + 0.205805, 1.974131,-0.481359, 1.000000;; + } + } //End of Armature_zubi + } //End of Armature_sheya + } //End of Armature_Body + } //End of Armature + Frame Cube { + FrameTransformMatrix { + 2.153459, 0.000000, 0.000000, 0.000000, + 0.000000, 2.153459, 0.000000, 0.000000, + 0.000000, 0.000000, 2.153459, 0.000000, + -0.137034,-0.235439, 6.856374, 1.000000;; + } + Mesh { //Mesh Mesh + 344; + -1.000000; 0.155088;-0.615504;, + -1.000000; 2.052689;-0.915563;, + -1.000000; 2.052689; 0.915563;, + -1.000000; 0.155088; 0.615504;, + -1.000000; 2.052689;-0.915563;, + 1.000000; 2.052689;-0.915563;, + 1.000000; 2.052689; 0.915563;, + -1.000000; 2.052689; 0.915563;, + 1.000000; 0.155088;-0.615504;, + 1.000000;-1.728900;-0.764941;, + 1.000000;-1.728900; 0.565265;, + 1.000000; 0.155088; 0.615504;, + 1.000000;-1.728900;-0.764941;, + -1.000000;-1.728900;-0.764941;, + -1.000000;-1.728900; 0.565265;, + 1.000000;-1.728900; 0.565265;, + 1.000000; 0.155088;-0.615504;, + 1.000000; 2.052689;-0.915563;, + -1.000000; 2.052689;-0.915563;, + -1.000000; 0.155088;-0.615504;, + -1.000000; 0.155088; 0.615504;, + -1.000000; 2.052689; 0.915563;, + 1.000000; 2.052689; 0.915563;, + 1.000000; 0.155088; 0.615504;, + -1.000000;-1.728900;-0.764941;, + -1.000000; 0.155088;-0.615504;, + -1.000000; 0.155088; 0.615504;, + -1.000000;-1.728900; 0.565265;, + 1.000000; 2.052689;-0.915563;, + 1.000000; 0.155088;-0.615504;, + 1.000000; 0.155088; 0.615504;, + 1.000000; 2.052689; 0.915563;, + 1.000000;-1.728900;-0.764941;, + 1.000000; 0.155088;-0.615504;, + -1.000000; 0.155088;-0.615504;, + -1.000000;-1.728900;-0.764941;, + -1.000000;-1.728900; 0.565265;, + -1.000000; 0.155088; 0.615504;, + 1.000000; 0.155088; 0.615504;, + 1.000000;-1.728900; 0.565265;, + -0.478282; 1.627421;-0.497030;, + -0.478282; 2.777568;-0.242289;, + -0.478282; 2.571347; 0.688789;, + -0.478282; 1.421201; 0.434048;, + -0.478282; 2.777568;-0.242289;, + 0.646717; 2.777568;-0.242289;, + 0.646717; 2.571347; 0.688789;, + -0.478282; 2.571347; 0.688789;, + 0.646717; 2.777568;-0.242289;, + 0.646717; 1.627421;-0.497030;, + 0.646717; 1.421201; 0.434048;, + 0.646717; 2.571347; 0.688789;, + 0.646717; 1.627421;-0.497030;, + -0.478282; 1.627421;-0.497030;, + -0.478282; 1.421201; 0.434048;, + 0.646717; 1.421201; 0.434048;, + 0.646717; 1.627421;-0.497030;, + 0.646717; 2.777568;-0.242289;, + -0.478282; 2.777568;-0.242289;, + -0.478282; 1.627421;-0.497030;, + -0.478282; 1.421201; 0.434048;, + -0.478282; 2.571347; 0.688789;, + 0.646717; 2.571347; 0.688789;, + 0.646717; 1.421201; 0.434048;, + -0.671784; 2.547537;-0.382663;, + -0.671784; 3.191954;-0.382663;, + -0.671784; 3.191954; 0.728308;, + -0.671784; 2.547537; 0.728308;, + 0.512005; 3.820444;-0.294064;, + -0.394370; 3.820444;-0.294064;, + -0.671784; 3.191954;-0.382663;, + 0.789419; 3.191954;-0.382663;, + 0.789419; 3.191954;-0.382663;, + 0.789419; 2.547537;-0.382663;, + 0.789419; 2.547537; 0.728308;, + 0.789419; 3.191954; 0.728308;, + 0.789419; 2.547537;-0.382663;, + -0.671784; 2.547537;-0.382663;, + -0.671784; 2.547537; 0.728308;, + 0.789419; 2.547537; 0.728308;, + 0.789419; 2.547537;-0.382663;, + 0.789419; 3.191954;-0.382663;, + -0.671784; 3.191954;-0.382663;, + -0.671784; 2.547537;-0.382663;, + -0.671784; 2.547537; 0.728308;, + -0.671784; 3.191954; 0.728308;, + 0.789419; 3.191954; 0.728308;, + 0.789419; 2.547537; 0.728308;, + 0.512005; 4.671586;-0.294064;, + -0.394370; 4.671586;-0.294064;, + -0.394370; 3.820444;-0.294064;, + 0.512005; 3.820444;-0.294064;, + -0.394370; 3.820444; 0.345902;, + 0.512005; 3.820444; 0.345902;, + 0.789419; 3.191954; 0.728308;, + -0.671784; 3.191954; 0.728308;, + 0.512005; 3.820444; 0.345902;, + 0.512005; 3.820444;-0.294064;, + 0.789419; 3.191954;-0.382663;, + 0.789419; 3.191954; 0.728308;, + -0.671784; 3.191954; 0.728308;, + -0.671784; 3.191954;-0.382663;, + -0.394370; 3.820444;-0.294064;, + -0.394370; 3.820444; 0.345902;, + -0.394370; 4.671586;-0.294064;, + 0.512005; 4.671586;-0.294064;, + 0.512005; 4.671586; 0.345902;, + -0.394370; 4.671586; 0.345902;, + -0.394370; 3.820444; 0.345902;, + -0.394370; 3.820444;-0.294064;, + -0.394370; 4.671586;-0.294064;, + -0.394370; 4.671586; 0.345902;, + -0.394370; 4.671586; 0.345902;, + 0.512005; 4.671586; 0.345902;, + 0.512005; 3.820444; 0.345902;, + -0.394370; 3.820444; 0.345902;, + 0.512005; 4.671586; 0.345902;, + 0.512005; 4.671586;-0.294064;, + 0.512005; 3.820444;-0.294064;, + 0.512005; 3.820444; 0.345902;, + 0.278519; 2.361271; 0.644022;, + 0.278519; 2.654585; 0.644022;, + 0.520551; 2.654585; 1.302632;, + 0.520551; 2.361271; 1.302632;, + 0.278519; 2.654585; 0.644022;, + 0.787799; 2.696650; 0.644022;, + 0.798712; 2.696650; 1.302632;, + 0.520551; 2.654585; 1.302632;, + 0.787799; 2.696650; 0.644022;, + 0.787799; 2.403336; 0.644022;, + 0.798712; 2.403336; 1.302632;, + 0.798712; 2.696650; 1.302632;, + 0.787799; 2.403336; 0.644022;, + 0.278519; 2.361271; 0.644022;, + 0.520551; 2.361271; 1.302632;, + 0.798712; 2.403336; 1.302632;, + 0.787799; 2.403336; 0.644022;, + 0.787799; 2.696650; 0.644022;, + 0.278519; 2.654585; 0.644022;, + 0.278519; 2.361271; 0.644022;, + 0.520551; 2.361271; 1.302632;, + 0.520551; 2.654585; 1.302632;, + 0.798712; 2.696650; 1.302632;, + 0.798712; 2.403336; 1.302632;, + -0.681576; 2.380263; 0.632819;, + -0.681576; 2.673577; 0.632819;, + -0.646066; 2.673577; 1.291429;, + -0.646066; 2.380263; 1.291429;, + -0.681576; 2.673577; 0.632819;, + -0.172296; 2.673577; 0.632819;, + -0.391654; 2.673577; 1.291429;, + -0.646066; 2.673577; 1.291429;, + -0.172296; 2.673577; 0.632819;, + -0.172296; 2.380263; 0.632819;, + -0.391654; 2.380263; 1.291429;, + -0.391654; 2.673577; 1.291429;, + -0.172296; 2.380263; 0.632819;, + -0.681576; 2.380263; 0.632819;, + -0.646066; 2.380263; 1.291429;, + -0.391654; 2.380263; 1.291429;, + -0.172296; 2.380263; 0.632819;, + -0.172296; 2.673577; 0.632819;, + -0.681576; 2.673577; 0.632819;, + -0.681576; 2.380263; 0.632819;, + -0.646066; 2.380263; 1.291429;, + -0.646066; 2.673577; 1.291429;, + -0.391654; 2.673577; 1.291429;, + -0.391654; 2.380263; 1.291429;, + -0.120377;-2.912002;-1.784416;, + -0.120377;-2.476886;-2.017185;, + -0.255799;-2.099858;-1.559360;, + -0.255799;-2.740405;-1.216694;, + -0.120377;-2.476886;-2.017185;, + 0.335223;-2.476886;-2.017185;, + 0.470645;-2.099858;-1.559360;, + -0.255799;-2.099858;-1.559360;, + 0.335223;-2.476886;-2.017185;, + 0.335223;-2.912002;-1.784416;, + 0.470645;-2.740405;-1.216694;, + 0.470645;-2.099858;-1.559360;, + 0.335223;-2.912002;-1.784416;, + -0.120377;-2.912002;-1.784416;, + -0.255799;-2.740405;-1.216694;, + 0.470645;-2.740405;-1.216694;, + 0.335223;-2.912002;-1.784416;, + 0.335223;-2.476886;-2.017185;, + -0.120377;-2.476886;-2.017185;, + -0.120377;-2.912002;-1.784416;, + -0.154317;-1.667699; 0.122275;, + -0.154317;-1.356034;-0.044453;, + 0.369163;-1.356034;-0.044453;, + 0.369163;-1.667699; 0.122275;, + -0.255799;-2.255081;-0.309479;, + -0.255799;-1.614535;-0.652145;, + -0.154317;-1.356034;-0.044453;, + -0.154317;-1.667699; 0.122275;, + -0.255799;-1.614535;-0.652145;, + 0.470645;-1.614535;-0.652145;, + 0.369163;-1.356034;-0.044453;, + -0.154317;-1.356034;-0.044453;, + 0.470645;-1.614535;-0.652145;, + 0.470645;-2.255081;-0.309479;, + 0.369163;-1.667699; 0.122275;, + 0.369163;-1.356034;-0.044453;, + 0.470645;-2.255081;-0.309479;, + -0.255799;-2.255081;-0.309479;, + -0.154317;-1.667699; 0.122275;, + 0.369163;-1.667699; 0.122275;, + 0.470645;-2.099858;-1.559360;, + 0.470645;-2.740405;-1.216694;, + 0.470645;-2.255081;-0.309479;, + 0.470645;-1.614535;-0.652145;, + 0.470645;-2.740405;-1.216694;, + -0.255799;-2.740405;-1.216694;, + -0.255799;-2.255081;-0.309479;, + 0.470645;-2.255081;-0.309479;, + -0.792844; 1.496758;-3.209955;, + -0.792844; 1.849385;-3.209955;, + -0.884154; 1.982406;-0.866022;, + -0.884154; 1.363736;-0.866022;, + 0.819857; 1.496758;-3.209955;, + 0.819857; 1.849385;-3.209955;, + 0.440400; 1.849385;-3.209955;, + 0.440400; 1.496758;-3.209955;, + -0.255799;-2.099858;-1.559360;, + 0.470645;-2.099858;-1.559360;, + 0.470645;-1.614535;-0.652145;, + -0.255799;-1.614535;-0.652145;, + 0.440400; 1.496758;-3.209955;, + 0.440400; 1.849385;-3.209955;, + 0.349091; 1.982406;-0.866022;, + 0.349091; 1.363736;-0.866022;, + -0.255799;-2.740405;-1.216694;, + -0.255799;-2.099858;-1.559360;, + -0.255799;-1.614535;-0.652145;, + -0.255799;-2.255081;-0.309479;, + 0.349091; 1.363736;-0.866022;, + 0.349091; 1.982406;-0.866022;, + 0.911166; 1.982406;-0.866022;, + 0.911166; 1.363736;-0.866022;, + 0.440400; 1.849385;-3.209955;, + 0.819857; 1.849385;-3.209955;, + 0.911166; 1.982406;-0.866022;, + 0.349091; 1.982406;-0.866022;, + -0.413388; 1.496758;-3.209955;, + -0.413388; 1.849385;-3.209955;, + -0.792844; 1.849385;-3.209955;, + -0.792844; 1.496758;-3.209955;, + 0.819857; 1.496758;-3.209955;, + 0.440400; 1.496758;-3.209955;, + 0.349091; 1.363736;-0.866022;, + 0.911166; 1.363736;-0.866022;, + 0.819857; 1.849385;-3.209955;, + 0.819857; 1.496758;-3.209955;, + 0.911166; 1.363736;-0.866022;, + 0.911166; 1.982406;-0.866022;, + -0.884154; 1.363736;-0.866022;, + -0.884154; 1.982406;-0.866022;, + -0.322078; 1.982406;-0.866022;, + -0.322078; 1.363736;-0.866022;, + -0.792844; 1.849385;-3.209955;, + -0.413388; 1.849385;-3.209955;, + -0.322078; 1.982406;-0.866022;, + -0.884154; 1.982406;-0.866022;, + -0.413388; 1.496758;-3.209955;, + -0.792844; 1.496758;-3.209955;, + -0.884154; 1.363736;-0.866022;, + -0.322078; 1.363736;-0.866022;, + -0.413388; 1.849385;-3.209955;, + -0.413388; 1.496758;-3.209955;, + -0.322078; 1.363736;-0.866022;, + -0.322078; 1.982406;-0.866022;, + -0.792844;-1.578270;-3.209955;, + -0.792844;-1.225643;-3.209955;, + -0.884154;-1.092621;-0.866022;, + -0.884154;-1.711292;-0.866022;, + -0.413388;-1.578270;-3.209955;, + -0.413388;-1.225643;-3.209955;, + -0.792844;-1.225643;-3.209955;, + -0.792844;-1.578270;-3.209955;, + -0.884154;-1.711292;-0.866022;, + -0.884154;-1.092621;-0.866022;, + -0.322078;-1.092621;-0.866022;, + -0.322078;-1.711292;-0.866022;, + -0.792844;-1.225643;-3.209955;, + -0.413388;-1.225643;-3.209955;, + -0.322078;-1.092621;-0.866022;, + -0.884154;-1.092621;-0.866022;, + -0.413388;-1.578270;-3.209955;, + -0.792844;-1.578270;-3.209955;, + -0.884154;-1.711292;-0.866022;, + -0.322078;-1.711292;-0.866022;, + -0.413388;-1.225643;-3.209955;, + -0.413388;-1.578270;-3.209955;, + -0.322078;-1.711292;-0.866022;, + -0.322078;-1.092621;-0.866022;, + 0.483946;-1.578270;-3.209955;, + 0.483946;-1.225643;-3.209955;, + 0.392636;-1.092621;-0.866022;, + 0.392636;-1.711292;-0.866022;, + 0.863402;-1.578270;-3.209955;, + 0.863402;-1.225643;-3.209955;, + 0.483946;-1.225643;-3.209955;, + 0.483946;-1.578270;-3.209955;, + 0.392636;-1.711292;-0.866022;, + 0.392636;-1.092621;-0.866022;, + 0.954712;-1.092621;-0.866022;, + 0.954712;-1.711292;-0.866022;, + 0.483946;-1.225643;-3.209955;, + 0.863402;-1.225643;-3.209955;, + 0.954712;-1.092621;-0.866022;, + 0.392636;-1.092621;-0.866022;, + 0.863402;-1.578270;-3.209955;, + 0.483946;-1.578270;-3.209955;, + 0.392636;-1.711292;-0.866022;, + 0.954712;-1.711292;-0.866022;, + 0.863402;-1.225643;-3.209955;, + 0.863402;-1.578270;-3.209955;, + 0.954712;-1.711292;-0.866022;, + 0.954712;-1.092621;-0.866022;, + -0.256903; 3.727607;-0.368337;, + -0.256903; 4.656346;-0.368337;, + -0.256903; 4.656346;-0.315211;, + -0.256903; 3.727607;-0.315211;, + -0.256903; 4.656346;-0.368337;, + 0.410987; 4.656346;-0.368337;, + 0.410987; 4.656346;-0.315211;, + -0.256903; 4.656346;-0.315211;, + 0.410987; 4.656346;-0.368337;, + 0.410987; 3.727607;-0.368337;, + 0.410987; 3.727607;-0.315211;, + 0.410987; 4.656346;-0.315211;, + 0.410987; 3.727607;-0.368337;, + -0.256903; 3.727607;-0.368337;, + -0.256903; 3.727607;-0.315211;, + 0.410987; 3.727607;-0.315211;, + 0.410987; 3.727607;-0.368337;, + 0.410987; 4.656346;-0.368337;, + -0.256903; 4.656346;-0.368337;, + -0.256903; 3.727607;-0.368337;, + -0.256903; 3.727607;-0.315211;, + -0.256903; 4.656346;-0.315211;, + 0.410987; 4.656346;-0.315211;, + 0.410987; 3.727607;-0.315211;; + 86; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;; + MeshNormals { //Mesh Normals + 344; + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-0.156185;-0.987728;, + 0.000000;-0.156185;-0.987728;, + 0.000000;-0.156185;-0.987728;, + 0.000000;-0.156185;-0.987728;, + -0.000000;-0.156185; 0.987728;, + -0.000000;-0.156185; 0.987728;, + -0.000000;-0.156185; 0.987728;, + -0.000000;-0.156185; 0.987728;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 0.079071;-0.996869;, + 0.000000; 0.079071;-0.996869;, + 0.000000; 0.079071;-0.996869;, + 0.000000; 0.079071;-0.996869;, + 0.000000;-0.026657; 0.999645;, + 0.000000;-0.026657; 0.999645;, + 0.000000;-0.026657; 0.999645;, + 0.000000;-0.026657; 0.999645;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.976339; 0.216245;, + 0.000000; 0.976339; 0.216245;, + 0.000000; 0.976339; 0.216245;, + 0.000000; 0.976339; 0.216245;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.976339;-0.216245;, + 0.000000;-0.976339;-0.216245;, + 0.000000;-0.976339;-0.216245;, + 0.000000;-0.976339;-0.216245;, + 0.000000; 0.216245;-0.976339;, + 0.000000; 0.216245;-0.976339;, + 0.000000; 0.216245;-0.976339;, + 0.000000; 0.216245;-0.976339;, + 0.000000;-0.216245; 0.976339;, + 0.000000;-0.216245; 0.976339;, + 0.000000;-0.216245; 0.976339;, + 0.000000;-0.216245; 0.976339;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.139591;-0.990209;, + 0.000000; 0.139591;-0.990209;, + 0.000000; 0.139591;-0.990209;, + 0.000000; 0.139591;-0.990209;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000; 0.519795; 0.854291;, + 0.000000; 0.519795; 0.854291;, + 0.000000; 0.519795; 0.854291;, + 0.000000; 0.519795; 0.854291;, + 0.914843; 0.403810; 0.000000;, + 0.914843; 0.403810; 0.000000;, + 0.914843; 0.403810; 0.000000;, + 0.914843; 0.403810; 0.000000;, + -0.914843; 0.403810; 0.000000;, + -0.914843; 0.403810; 0.000000;, + -0.914843; 0.403810; 0.000000;, + -0.914843; 0.403810; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.938627; 0.000000; 0.344935;, + -0.938627; 0.000000; 0.344935;, + -0.938627; 0.000000; 0.344935;, + -0.938627; 0.000000; 0.344935;, + -0.106213; 0.994134; 0.020396;, + -0.106213; 0.994134; 0.020396;, + -0.106213; 0.994134; 0.020396;, + -0.106213; 0.994134; 0.020396;, + 0.999863; 0.000000;-0.016567;, + 0.999863; 0.000000;-0.016567;, + 0.999863; 0.000000;-0.016567;, + 0.999863; 0.000000;-0.016567;, + 0.106213;-0.994134;-0.020396;, + 0.106213;-0.994134;-0.020396;, + 0.106213;-0.994134;-0.020396;, + 0.106213;-0.994134;-0.020396;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.998550; 0.000000; 0.053839;, + -0.998550; 0.000000; 0.053839;, + -0.998550; 0.000000; 0.053839;, + -0.998550; 0.000000; 0.053839;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.948761; 0.000000; 0.315995;, + 0.948761; 0.000000; 0.315995;, + 0.948761; 0.000000; 0.315995;, + 0.948761; 0.000000; 0.315995;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.973941;-0.106983;-0.199983;, + -0.973941;-0.106983;-0.199983;, + -0.973941;-0.106983;-0.199983;, + -0.973941;-0.106983;-0.199983;, + 0.000000; 0.771934;-0.635703;, + 0.000000; 0.771934;-0.635703;, + 0.000000; 0.771934;-0.635703;, + 0.000000; 0.771934;-0.635703;, + 0.973941;-0.106983;-0.199983;, + 0.973941;-0.106983;-0.199983;, + 0.973941;-0.106983;-0.199983;, + 0.973941;-0.106983;-0.199983;, + 0.000000;-0.957230; 0.289329;, + 0.000000;-0.957230; 0.289329;, + 0.000000;-0.957230; 0.289329;, + 0.000000;-0.957230; 0.289329;, + 0.000000;-0.471704;-0.881757;, + 0.000000;-0.471704;-0.881757;, + 0.000000;-0.471704;-0.881757;, + 0.000000;-0.471704;-0.881757;, + 0.000000; 0.471704; 0.881757;, + 0.000000; 0.471704; 0.881757;, + 0.000000; 0.471704; 0.881757;, + 0.000000; 0.471704; 0.881757;, + -0.988307; 0.071924; 0.134447;, + -0.988307; 0.071924; 0.134447;, + -0.988307; 0.071924; 0.134447;, + -0.988307; 0.071924; 0.134447;, + 0.000000; 0.920205;-0.391438;, + 0.000000; 0.920205;-0.391438;, + 0.000000; 0.920205;-0.391438;, + 0.000000; 0.920205;-0.391438;, + 0.988307; 0.071924; 0.134447;, + 0.988307; 0.071924; 0.134447;, + 0.988307; 0.071924; 0.134447;, + 0.988307; 0.071924; 0.134447;, + 0.000000;-0.592261; 0.805746;, + 0.000000;-0.592261; 0.805746;, + 0.000000;-0.592261; 0.805746;, + 0.000000;-0.592261; 0.805746;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.881757; 0.471704;, + 0.000000;-0.881757; 0.471704;, + 0.000000;-0.881757; 0.471704;, + 0.000000;-0.881757; 0.471704;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.881757;-0.471704;, + 0.000000; 0.881757;-0.471704;, + 0.000000; 0.881757;-0.471704;, + 0.000000; 0.881757;-0.471704;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;; + 86; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;; + } //End of Mesh Normals + MeshMaterialList { //Mesh Material List + 1; + 1; + 0;; + Material Default_Material { + 0.800000; 0.800000; 0.800000; 0.800000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Mesh Material List + MeshTextureCoords { //Mesh UV Coordinates + 344; + 0.444664; 0.882740;, + 0.453010; 0.994603;, + 0.352139; 0.990704;, + 0.370352; 0.882084;, + 0.699615; 0.826957;, + 0.888198; 0.826957;, + 0.888198; 0.999617;, + 0.699615; 0.999617;, + 0.566940; 0.877116;, + 0.559308; 0.768256;, + 0.664340; 0.764336;, + 0.671138; 0.868138;, + 0.999617; 0.397190;, + 0.811034; 0.397190;, + 0.811034; 0.271762;, + 0.999617; 0.271762;, + 0.566940; 0.877116;, + 0.565483; 0.991269;, + 0.453010; 0.994603;, + 0.444664; 0.882740;, + 0.370352; 0.882084;, + 0.352139; 0.990704;, + 0.243744; 0.976452;, + 0.255729; 0.872295;, + 0.447331; 0.770867;, + 0.444664; 0.882740;, + 0.370352; 0.882084;, + 0.373731; 0.773298;, + 0.565483; 0.991269;, + 0.566940; 0.877116;, + 0.671138; 0.868138;, + 0.670488; 0.977139;, + 0.559308; 0.768256;, + 0.566940; 0.877116;, + 0.444664; 0.882740;, + 0.447331; 0.770867;, + 0.373731; 0.773298;, + 0.370352; 0.882084;, + 0.255729; 0.872295;, + 0.261819; 0.766836;, + 0.694945; 0.168323;, + 0.694945; 0.057246;, + 0.784866; 0.057246;, + 0.784866; 0.168323;, + 0.978885; 0.802852;, + 0.978885; 0.908930;, + 0.888965; 0.908930;, + 0.888965; 0.802852;, + 0.980864; 0.057246;, + 0.980864; 0.168323;, + 0.890944; 0.168323;, + 0.890944; 0.057246;, + 0.995043; 0.999617;, + 0.888965; 0.999617;, + 0.888965; 0.909696;, + 0.995043; 0.909696;, + 0.588867; 0.168323;, + 0.588867; 0.057246;, + 0.694945; 0.057246;, + 0.694945; 0.168323;, + 0.784866; 0.168323;, + 0.784866; 0.057246;, + 0.890944; 0.057246;, + 0.890944; 0.168323;, + 0.581893; 0.381313;, + 0.525981; 0.490259;, + 0.379618; 0.402841;, + 0.398054; 0.301018;, + 0.815523; 0.662938;, + 0.815524; 0.728486;, + 0.769623; 0.748548;, + 0.769623; 0.642876;, + 0.048873; 0.480128;, + 0.006488; 0.386718;, + 0.167529; 0.313647;, + 0.194276; 0.403737;, + 0.988636; 0.730470;, + 0.896211; 0.730470;, + 0.896211; 0.660198;, + 0.988636; 0.660198;, + 0.723019; 0.642876;, + 0.769623; 0.642876;, + 0.769623; 0.748548;, + 0.723019; 0.748548;, + 0.398054; 0.301018;, + 0.379618; 0.402841;, + 0.194276; 0.403737;, + 0.167529; 0.313647;, + 0.877077; 0.662938;, + 0.877077; 0.728486;, + 0.815524; 0.728486;, + 0.815523; 0.662938;, + 0.357048; 0.517540;, + 0.216152; 0.507657;, + 0.194276; 0.403737;, + 0.379618; 0.402841;, + 0.216152; 0.507657;, + 0.120216; 0.568830;, + 0.048873; 0.480128;, + 0.194276; 0.403737;, + 0.379618; 0.402841;, + 0.525981; 0.490259;, + 0.444034; 0.577428;, + 0.357048; 0.517540;, + 0.362490; 0.686881;, + 0.215162; 0.682739;, + 0.251936; 0.612341;, + 0.315469; 0.601729;, + 0.357048; 0.517540;, + 0.444034; 0.577428;, + 0.362490; 0.686881;, + 0.315469; 0.601729;, + 0.315469; 0.601729;, + 0.251936; 0.612341;, + 0.216152; 0.507657;, + 0.357048; 0.517540;, + 0.251936; 0.612341;, + 0.215162; 0.682739;, + 0.120216; 0.568830;, + 0.216152; 0.507657;, + 0.882221; 0.248633;, + 0.854668; 0.246226;, + 0.860426; 0.180315;, + 0.887978; 0.182722;, + 0.854668; 0.246226;, + 0.811034; 0.225788;, + 0.836391; 0.169090;, + 0.860426; 0.180315;, + 0.955560; 0.229325;, + 0.928738; 0.236069;, + 0.913594; 0.175833;, + 0.940417; 0.169090;, + 0.928738; 0.236069;, + 0.882221; 0.248633;, + 0.887978; 0.182722;, + 0.913594; 0.175833;, + 0.568666; 0.188259;, + 0.570943; 0.215822;, + 0.522758; 0.215822;, + 0.520482; 0.188259;, + 0.557028; 0.187492;, + 0.557028; 0.159835;, + 0.583256; 0.155869;, + 0.583256; 0.183526;, + 0.831256; 0.582510;, + 0.811034; 0.563643;, + 0.853460; 0.518170;, + 0.873682; 0.537037;, + 0.941763; 0.626056;, + 0.893812; 0.623471;, + 0.917809; 0.562573;, + 0.941763; 0.563864;, + 0.893812; 0.623471;, + 0.868081; 0.613331;, + 0.892078; 0.552433;, + 0.917809; 0.562573;, + 0.868081; 0.613331;, + 0.831256; 0.582510;, + 0.873682; 0.537037;, + 0.892078; 0.552433;, + 0.680049; 0.227106;, + 0.680049; 0.254763;, + 0.632028; 0.254763;, + 0.632028; 0.227106;, + 0.631262; 0.227106;, + 0.631262; 0.254763;, + 0.607273; 0.254763;, + 0.607273; 0.227106;, + 0.151813; 0.952191;, + 0.112345; 0.947279;, + 0.113514; 0.904716;, + 0.158003; 0.906790;, + 0.112345; 0.947279;, + 0.077106; 0.948022;, + 0.069721; 0.907057;, + 0.113514; 0.904716;, + 0.077106; 0.948022;, + 0.041465; 0.957980;, + 0.021003; 0.917204;, + 0.069721; 0.907057;, + 0.189475; 0.963315;, + 0.151813; 0.952191;, + 0.158003; 0.906790;, + 0.212875; 0.914749;, + 0.563441; 0.216588;, + 0.563441; 0.263118;, + 0.520482; 0.263118;, + 0.520482; 0.216588;, + 0.758717; 0.826190;, + 0.758717; 0.792862;, + 0.808077; 0.792862;, + 0.808077; 0.826190;, + 0.160570; 0.844684;, + 0.116458; 0.842962;, + 0.117818; 0.795850;, + 0.145830; 0.795143;, + 0.116458; 0.842962;, + 0.069466; 0.841189;, + 0.076449; 0.791324;, + 0.117818; 0.795850;, + 0.069466; 0.841189;, + 0.014746; 0.837740;, + 0.047872; 0.785711;, + 0.076449; 0.791324;, + 0.209296; 0.833892;, + 0.160570; 0.844684;, + 0.145830; 0.795143;, + 0.184389; 0.782622;, + 0.069721; 0.907057;, + 0.021003; 0.917204;, + 0.014746; 0.837740;, + 0.069466; 0.841189;, + 0.212875; 0.914749;, + 0.158003; 0.906790;, + 0.160570; 0.844684;, + 0.209296; 0.833892;, + 0.696701; 0.623144;, + 0.663486; 0.624673;, + 0.640785; 0.404303;, + 0.699058; 0.401620;, + 0.556261; 0.154243;, + 0.556261; 0.187492;, + 0.520482; 0.187492;, + 0.520482; 0.154243;, + 0.113514; 0.904716;, + 0.069721; 0.907057;, + 0.069466; 0.841189;, + 0.116458; 0.842962;, + 0.696269; 0.621054;, + 0.663054; 0.622583;, + 0.640352; 0.402213;, + 0.698626; 0.399530;, + 0.158003; 0.906790;, + 0.113514; 0.904716;, + 0.116458; 0.842962;, + 0.160570; 0.844684;, + 0.621714; 0.314631;, + 0.680049; 0.314631;, + 0.680049; 0.367630;, + 0.621714; 0.367630;, + 0.663054; 0.622583;, + 0.627632; 0.627630;, + 0.587883; 0.409689;, + 0.640352; 0.402213;, + 0.844623; 0.792862;, + 0.844623; 0.826112;, + 0.808843; 0.826112;, + 0.808843; 0.792862;, + 0.732005; 0.622825;, + 0.696269; 0.621054;, + 0.698626; 0.399530;, + 0.751560; 0.402153;, + 0.764905; 0.627630;, + 0.732005; 0.622825;, + 0.751560; 0.402153;, + 0.809283; 0.410584;, + 0.699615; 0.773191;, + 0.757950; 0.773191;, + 0.757950; 0.826190;, + 0.699615; 0.826190;, + 0.663486; 0.624673;, + 0.628065; 0.629720;, + 0.588315; 0.411779;, + 0.640785; 0.404303;, + 0.732437; 0.624915;, + 0.696701; 0.623144;, + 0.699058; 0.401620;, + 0.751992; 0.404243;, + 0.765338; 0.629720;, + 0.732437; 0.624915;, + 0.751992; 0.404243;, + 0.809715; 0.412674;, + 0.697254; 0.619480;, + 0.664039; 0.621009;, + 0.641336; 0.400639;, + 0.699610; 0.397956;, + 0.680049; 0.193089;, + 0.680049; 0.226339;, + 0.644269; 0.226339;, + 0.644269; 0.193089;, + 0.680049; 0.255529;, + 0.680049; 0.313865;, + 0.627050; 0.313865;, + 0.627050; 0.255529;, + 0.664039; 0.621009;, + 0.628617; 0.626056;, + 0.588867; 0.408115;, + 0.641336; 0.400639;, + 0.732989; 0.621251;, + 0.697254; 0.619480;, + 0.699610; 0.397956;, + 0.752544; 0.400579;, + 0.765890; 0.626056;, + 0.732989; 0.621251;, + 0.752544; 0.400579;, + 0.810267; 0.409010;, + 0.697253; 0.620613;, + 0.664039; 0.622143;, + 0.641336; 0.401773;, + 0.699610; 0.399090;, + 0.643503; 0.193089;, + 0.643503; 0.226339;, + 0.607723; 0.226339;, + 0.607723; 0.193089;, + 0.573481; 0.263885;, + 0.573481; 0.322220;, + 0.520482; 0.322220;, + 0.520482; 0.263885;, + 0.664039; 0.622143;, + 0.628617; 0.627190;, + 0.588867; 0.409249;, + 0.641336; 0.401773;, + 0.732989; 0.622384;, + 0.697253; 0.620613;, + 0.699610; 0.399090;, + 0.752544; 0.401713;, + 0.765890; 0.627190;, + 0.732989; 0.622384;, + 0.752544; 0.401713;, + 0.810267; 0.410144;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;; + } //End of Mesh UV Coordinates + XSkinMeshHeader { + 1; + 3; + 9; + } + SkinWeights { + "Armature_Body"; + 40; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.996529,-0.083252, 0.000000, + 0.000000, 0.083252, 0.996529, 0.000000, + -0.039910, 1.507776, 0.102992, 1.000000;; + } //End of Armature_Body Skin Weights + SkinWeights { + "Armature_zubi"; + 24; + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 0.999497, 0.031712, 0.000000, + -0.000000,-0.031712, 0.999497, 0.000000, + -0.095553,-3.687672, 0.221770, 1.000000;; + } //End of Armature_zubi Skin Weights + SkinWeights { + "Armature_hvost"; + 56; + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 224, + 225, + 226, + 227, + 232, + 233, + 234, + 235; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.449440, 0.893311, 0.000000, + -0.000000,-0.893311,-0.449440, 0.000000, + -0.039909,-1.044864, 1.475107, 1.000000;; + } //End of Armature_hvost Skin Weights + SkinWeights { + "Armature_head"; + 104; + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + -0.000000, 0.998694, 0.051097, 0.000000, + -0.000000,-0.051097, 0.998694, 0.000000, + -0.039910,-2.624220,-0.363653, 1.000000;; + } //End of Armature_head Skin Weights + SkinWeights { + "Armature_noga2"; + 24; + 216, + 217, + 218, + 219, + 244, + 245, + 246, + 247, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 1.641199,-0.845231, 0.608472, 1.000000;; + } //End of Armature_noga2 Skin Weights + SkinWeights { + "Armature_noga1"; + 24; + 220, + 221, + 222, + 223, + 228, + 229, + 230, + 231, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 1.641199,-0.845231,-0.658136, 1.000000;; + } //End of Armature_noga1 Skin Weights + SkinWeights { + "Armature_sheya"; + 24; + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.997121,-0.075824,-0.000243, 0.000000, + 0.075644, 0.994519, 0.072177, 0.000000, + -0.005231,-0.071988, 0.997392, 0.000000, + -0.169522,-1.701621,-0.409142, 1.000000;; + } //End of Armature_sheya Skin Weights + SkinWeights { + "Armature_noga4"; + 24; + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -1.404690,-0.845231, 0.608472, 1.000000;; + } //End of Armature_noga4 Skin Weights + SkinWeights { + "Armature_noga3"; + 24; + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -1.404690,-0.845231,-0.658136, 1.000000;; + } //End of Armature_noga3 Skin Weights + } //End of Mesh Mesh + } //End of Cube +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 156; + 0;3; -11.632589, 0.094256, 0.169731;;, + 1;3; -11.632589, 0.094256, 0.169731;;, + 2;3; -11.632589, 0.094256, 0.169731;;, + 3;3; -11.632589, 0.094256, 0.169731;;, + 4;3; -11.632589, 0.094256, 0.169731;;, + 5;3; -11.632589, 0.094256, 0.169731;;, + 6;3; -11.632589, 0.094256, 0.169731;;, + 7;3; -11.632589, 0.094256, 0.169731;;, + 8;3; -11.632589, 0.094256, 0.169731;;, + 9;3; -11.632589, 0.094256, 0.169731;;, + 10;3; -11.632589, 0.094256, 0.169731;;, + 11;3; -11.632589, 0.094256, 0.169731;;, + 12;3; -11.632589, 0.094256, 0.169731;;, + 13;3; -11.632589, 0.094256, 0.169731;;, + 14;3; -11.632589, 0.094256, 0.169731;;, + 15;3; -11.632589, 0.094256, 0.169731;;, + 16;3; -11.632589, 0.094256, 0.169731;;, + 17;3; -11.632589, 0.094256, 0.169731;;, + 18;3; -11.632589, 0.094256, 0.169731;;, + 19;3; -11.632589, 0.094256, 0.169731;;, + 20;3; -11.632589, 0.094256, 0.169731;;, + 21;3; -11.632589, 0.094256, 0.169731;;, + 22;3; -11.632589, 0.094256, 0.169731;;, + 23;3; -11.632589, 0.094256, 0.169731;;, + 24;3; -11.632589, 0.094256, 0.169731;;, + 25;3; -11.632589, 0.094256, 0.169731;;, + 26;3; -11.632589, 0.094256, 0.169731;;, + 27;3; -11.632589, 0.094256, 0.169731;;, + 28;3; -11.632589, 0.094256, 0.169731;;, + 29;3; -11.632589, 0.094256, 0.169731;;, + 30;3; -11.632589, 0.094256, 0.169731;;, + 31;3; -11.632589, 0.094256, 0.169731;;, + 32;3; -11.632589, 0.094256, 0.169731;;, + 33;3; -11.632589, 0.094256, 0.169731;;, + 34;3; -11.632589, 0.094256, 0.169731;;, + 35;3; -11.632589, 0.094256, 0.169731;;, + 36;3; -11.632589, 0.094256, 0.169731;;, + 37;3; -11.632589, 0.094256, 0.169731;;, + 38;3; -11.632589, 0.094256, 0.169731;;, + 39;3; -11.632589, 0.094256, 0.169731;;, + 40;3; -11.632589, 0.094256, 0.169731;;, + 41;3; -11.632589, 0.094256, 0.169731;;, + 42;3; -11.632589, 0.094256, 0.169731;;, + 43;3; -11.632589, 0.094256, 0.169731;;, + 44;3; -11.632589, 0.094256, 0.169731;;, + 45;3; -11.632589, 0.094256, 0.169731;;, + 46;3; -11.632589, 0.094256, 0.169731;;, + 47;3; -11.632589, 0.094256, 0.169731;;, + 48;3; -11.632589, 0.094256, 0.169731;;, + 49;3; -11.632589, 0.094256, 0.169731;;, + 50;3; -11.632589, 0.094256, 0.169731;;, + 51;3; -11.632589, 0.094256, 0.169731;;, + 52;3; -11.632589, 0.094256, 0.169731;;, + 53;3; -11.632589, 0.094256, 0.169731;;, + 54;3; -11.632589, 0.094256, 0.169731;;, + 55;3; -11.632589, 0.094256, 0.169731;;, + 56;3; -11.632589, 0.094256, 0.169731;;, + 57;3; -11.632589, 0.094256, 0.169731;;, + 58;3; -11.632589, 0.094256, 0.169731;;, + 59;3; -11.632589, 0.094256, 0.169731;;, + 60;3; -11.632589, 0.094256, 0.169731;;, + 61;3; -11.632589, 0.094256, 0.169731;;, + 62;3; -11.632589, 0.094256, 0.169731;;, + 63;3; -11.632589, 0.094256, 0.169731;;, + 64;3; -11.632589, 0.094256, 0.169731;;, + 65;3; -11.632589, 0.094256, 0.169731;;, + 66;3; -11.632589, 0.094256, 0.169731;;, + 67;3; -11.632589, 0.094256, 0.169731;;, + 68;3; -11.632589, 0.094256, 0.169731;;, + 69;3; -11.632589, 0.094256, 0.169731;;, + 70;3; -11.632589, 0.094256, 0.169731;;, + 71;3; -11.632589, 0.094256, 0.169731;;, + 72;3; -11.632589, 0.094256, 0.169731;;, + 73;3; -11.632589, 0.094256, 0.169731;;, + 74;3; -11.632589, 0.094256, 0.169731;;, + 75;3; -11.632589, 0.094256, 0.169731;;, + 76;3; -11.632589, 0.094256, 0.169731;;, + 77;3; -11.632589, 0.094256, 0.169731;;, + 78;3; -11.632589, 0.094256, 0.169731;;, + 79;3; -11.632589, 0.094256, 0.169731;;, + 80;3; -11.632589, 0.094256, 0.169731;;, + 81;3; -11.632589, 0.094256, 0.169731;;, + 82;3; -11.632589, 0.094256, 0.169731;;, + 83;3; -11.632589, 0.094256, 0.169731;;, + 84;3; -11.632589, 0.094256, 0.169731;;, + 85;3; -11.632589, 0.094256, 0.169731;;, + 86;3; -11.632589, 0.094256, 0.169731;;, + 87;3; -11.632589, 0.094256, 0.169731;;, + 88;3; -11.632589, 0.094256, 0.169731;;, + 89;3; -11.632589, 0.094256, 0.169731;;, + 90;3; -11.632589, 0.094256, 0.169731;;, + 91;3; -11.632589, 0.094256, 0.169731;;, + 92;3; -11.632589, 0.094256, 0.169731;;, + 93;3; -11.632589, 0.094256, 0.169731;;, + 94;3; -11.632589, 0.094256, 0.169731;;, + 95;3; -11.632589, 0.094256, 0.169731;;, + 96;3; -11.632589, 0.094256, 0.169731;;, + 97;3; -11.632589, 0.094256, 0.169731;;, + 98;3; -11.632589, 0.094256, 0.169731;;, + 99;3; -11.632589, 0.094256, 0.169731;;, + 100;3; -11.632589, 0.094256, 0.169731;;, + 101;3; -11.632589, 0.094256, 0.169731;;, + 102;3; -11.632589, 0.094256, 0.169731;;, + 103;3; -11.632589, 0.094256, 0.169731;;, + 104;3; -11.632589, 0.094256, 0.169731;;, + 105;3; -11.632589, 0.094256, 0.169731;;, + 106;3; -11.632589, 0.094256, 0.169731;;, + 107;3; -11.632589, 0.094256, 0.169731;;, + 108;3; -11.632589, 0.094256, 0.169731;;, + 109;3; -11.632589, 0.094256, 0.169731;;, + 110;3; -11.632589, 0.094256, 0.169731;;, + 111;3; -11.632589, 0.094256, 0.169731;;, + 112;3; -11.632589, 0.094256, 0.169731;;, + 113;3; -11.632589, 0.094256, 0.169731;;, + 114;3; -11.632589, 0.094256, 0.169731;;, + 115;3; -11.632589, 0.094256, 0.169731;;, + 116;3; -11.632589, 0.094256, 0.169731;;, + 117;3; -11.632589, 0.094256, 0.169731;;, + 118;3; -11.632589, 0.094256, 0.169731;;, + 119;3; -11.632589, 0.094256, 0.169731;;, + 120;3; -11.632589, 0.094256, 0.169731;;, + 121;3; -11.632589, 0.094256, 0.169731;;, + 122;3; -11.632589, 0.094256, 0.169731;;, + 123;3; -11.632589, 0.094256, 0.169731;;, + 124;3; -11.632589, 0.094256, 0.169731;;, + 125;3; -11.632589, 0.094256, 0.169731;;, + 126;3; -11.632589, 0.094256, 0.169731;;, + 127;3; -11.632589, 0.094256, 0.169731;;, + 128;3; -11.632589, 0.094256, 0.169731;;, + 129;3; -11.632589, 0.094256, 0.169731;;, + 130;3; -11.632589, 0.094256, 0.169731;;, + 131;3; -11.632589, 0.094256, 0.169731;;, + 132;3; -11.632589, 0.094256, 0.169731;;, + 133;3; -11.632589, 0.094256, 0.169731;;, + 134;3; -11.632589, 0.094256, 0.169731;;, + 135;3; -11.632589, 0.094256, 0.169731;;, + 136;3; -11.632589, 0.094256, 0.169731;;, + 137;3; -11.632589, 0.094256, 0.169731;;, + 138;3; -11.632589, 0.094256, 0.169731;;, + 139;3; -11.632589, 0.094256, 0.169731;;, + 140;3; -11.632589, 0.094256, 0.169731;;, + 141;3; -11.632589, 0.094256, 0.169731;;, + 142;3; -11.632589, 0.094256, 0.169731;;, + 143;3; -11.632589, 0.094256, 0.169731;;, + 144;3; -11.632589, 0.094256, 0.169731;;, + 145;3; -11.632589, 0.094256, 0.169731;;, + 146;3; -11.632589, 0.094256, 0.169731;;, + 147;3; -11.632589, 0.094256, 0.169731;;, + 148;3; -11.632589, 0.094256, 0.169731;;, + 149;3; -11.632589, 0.094256, 0.169731;;, + 150;3; -11.632589, 0.094256, 0.169731;;, + 151;3; -11.632589, 0.094256, 0.169731;;, + 152;3; -11.632589, 0.094256, 0.169731;;, + 153;3; -11.632589, 0.094256, 0.169731;;, + 154;3; -11.632589, 0.094256, 0.169731;;, + 155;3; -11.632589, 0.094256, 0.169731;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 2.153459, 2.153459, 2.153459;;, + 1;3; 2.153459, 2.153459, 2.153459;;, + 2;3; 2.153459, 2.153459, 2.153459;;, + 3;3; 2.153459, 2.153459, 2.153459;;, + 4;3; 2.153459, 2.153459, 2.153459;;, + 5;3; 2.153459, 2.153459, 2.153459;;, + 6;3; 2.153459, 2.153459, 2.153459;;, + 7;3; 2.153459, 2.153459, 2.153459;;, + 8;3; 2.153459, 2.153459, 2.153459;;, + 9;3; 2.153459, 2.153459, 2.153459;;, + 10;3; 2.153459, 2.153459, 2.153459;;, + 11;3; 2.153459, 2.153459, 2.153459;;, + 12;3; 2.153459, 2.153459, 2.153459;;, + 13;3; 2.153459, 2.153459, 2.153459;;, + 14;3; 2.153459, 2.153459, 2.153459;;, + 15;3; 2.153459, 2.153459, 2.153459;;, + 16;3; 2.153459, 2.153459, 2.153459;;, + 17;3; 2.153459, 2.153459, 2.153459;;, + 18;3; 2.153459, 2.153459, 2.153459;;, + 19;3; 2.153459, 2.153459, 2.153459;;, + 20;3; 2.153459, 2.153459, 2.153459;;, + 21;3; 2.153459, 2.153459, 2.153459;;, + 22;3; 2.153459, 2.153459, 2.153459;;, + 23;3; 2.153459, 2.153459, 2.153459;;, + 24;3; 2.153459, 2.153459, 2.153459;;, + 25;3; 2.153459, 2.153459, 2.153459;;, + 26;3; 2.153459, 2.153459, 2.153459;;, + 27;3; 2.153459, 2.153459, 2.153459;;, + 28;3; 2.153459, 2.153459, 2.153459;;, + 29;3; 2.153459, 2.153459, 2.153459;;, + 30;3; 2.153459, 2.153459, 2.153459;;, + 31;3; 2.153459, 2.153459, 2.153459;;, + 32;3; 2.153459, 2.153459, 2.153459;;, + 33;3; 2.153459, 2.153459, 2.153459;;, + 34;3; 2.153459, 2.153459, 2.153459;;, + 35;3; 2.153459, 2.153459, 2.153459;;, + 36;3; 2.153459, 2.153459, 2.153459;;, + 37;3; 2.153459, 2.153459, 2.153459;;, + 38;3; 2.153459, 2.153459, 2.153459;;, + 39;3; 2.153459, 2.153459, 2.153459;;, + 40;3; 2.153459, 2.153459, 2.153459;;, + 41;3; 2.153459, 2.153459, 2.153459;;, + 42;3; 2.153459, 2.153459, 2.153459;;, + 43;3; 2.153459, 2.153459, 2.153459;;, + 44;3; 2.153459, 2.153459, 2.153459;;, + 45;3; 2.153459, 2.153459, 2.153459;;, + 46;3; 2.153459, 2.153459, 2.153459;;, + 47;3; 2.153459, 2.153459, 2.153459;;, + 48;3; 2.153459, 2.153459, 2.153459;;, + 49;3; 2.153459, 2.153459, 2.153459;;, + 50;3; 2.153459, 2.153459, 2.153459;;, + 51;3; 2.153459, 2.153459, 2.153459;;, + 52;3; 2.153459, 2.153459, 2.153459;;, + 53;3; 2.153459, 2.153459, 2.153459;;, + 54;3; 2.153459, 2.153459, 2.153459;;, + 55;3; 2.153459, 2.153459, 2.153459;;, + 56;3; 2.153459, 2.153459, 2.153459;;, + 57;3; 2.153459, 2.153459, 2.153459;;, + 58;3; 2.153459, 2.153459, 2.153459;;, + 59;3; 2.153459, 2.153459, 2.153459;;, + 60;3; 2.153459, 2.153459, 2.153459;;, + 61;3; 2.153459, 2.153459, 2.153459;;, + 62;3; 2.153459, 2.153459, 2.153459;;, + 63;3; 2.153459, 2.153459, 2.153459;;, + 64;3; 2.153459, 2.153459, 2.153459;;, + 65;3; 2.153459, 2.153459, 2.153459;;, + 66;3; 2.153459, 2.153459, 2.153459;;, + 67;3; 2.153459, 2.153459, 2.153459;;, + 68;3; 2.153459, 2.153459, 2.153459;;, + 69;3; 2.153459, 2.153459, 2.153459;;, + 70;3; 2.153459, 2.153459, 2.153459;;, + 71;3; 2.153459, 2.153459, 2.153459;;, + 72;3; 2.153459, 2.153459, 2.153459;;, + 73;3; 2.153459, 2.153459, 2.153459;;, + 74;3; 2.153459, 2.153459, 2.153459;;, + 75;3; 2.153459, 2.153459, 2.153459;;, + 76;3; 2.153459, 2.153459, 2.153459;;, + 77;3; 2.153459, 2.153459, 2.153459;;, + 78;3; 2.153459, 2.153459, 2.153459;;, + 79;3; 2.153459, 2.153459, 2.153459;;, + 80;3; 2.153459, 2.153459, 2.153459;;, + 81;3; 2.153459, 2.153459, 2.153459;;, + 82;3; 2.153459, 2.153459, 2.153459;;, + 83;3; 2.153459, 2.153459, 2.153459;;, + 84;3; 2.153459, 2.153459, 2.153459;;, + 85;3; 2.153459, 2.153459, 2.153459;;, + 86;3; 2.153459, 2.153459, 2.153459;;, + 87;3; 2.153459, 2.153459, 2.153459;;, + 88;3; 2.153459, 2.153459, 2.153459;;, + 89;3; 2.153459, 2.153459, 2.153459;;, + 90;3; 2.153459, 2.153459, 2.153459;;, + 91;3; 2.153459, 2.153459, 2.153459;;, + 92;3; 2.153459, 2.153459, 2.153459;;, + 93;3; 2.153459, 2.153459, 2.153459;;, + 94;3; 2.153459, 2.153459, 2.153459;;, + 95;3; 2.153459, 2.153459, 2.153459;;, + 96;3; 2.153459, 2.153459, 2.153459;;, + 97;3; 2.153459, 2.153459, 2.153459;;, + 98;3; 2.153459, 2.153459, 2.153459;;, + 99;3; 2.153459, 2.153459, 2.153459;;, + 100;3; 2.153459, 2.153459, 2.153459;;, + 101;3; 2.153459, 2.153459, 2.153459;;, + 102;3; 2.153459, 2.153459, 2.153459;;, + 103;3; 2.153459, 2.153459, 2.153459;;, + 104;3; 2.153459, 2.153459, 2.153459;;, + 105;3; 2.153459, 2.153459, 2.153459;;, + 106;3; 2.153459, 2.153459, 2.153459;;, + 107;3; 2.153459, 2.153459, 2.153459;;, + 108;3; 2.153459, 2.153459, 2.153459;;, + 109;3; 2.153459, 2.153459, 2.153459;;, + 110;3; 2.153459, 2.153459, 2.153459;;, + 111;3; 2.153459, 2.153459, 2.153459;;, + 112;3; 2.153459, 2.153459, 2.153459;;, + 113;3; 2.153459, 2.153459, 2.153459;;, + 114;3; 2.153459, 2.153459, 2.153459;;, + 115;3; 2.153459, 2.153459, 2.153459;;, + 116;3; 2.153459, 2.153459, 2.153459;;, + 117;3; 2.153459, 2.153459, 2.153459;;, + 118;3; 2.153459, 2.153459, 2.153459;;, + 119;3; 2.153459, 2.153459, 2.153459;;, + 120;3; 2.153459, 2.153459, 2.153459;;, + 121;3; 2.153459, 2.153459, 2.153459;;, + 122;3; 2.153459, 2.153459, 2.153459;;, + 123;3; 2.153459, 2.153459, 2.153459;;, + 124;3; 2.153459, 2.153459, 2.153459;;, + 125;3; 2.153459, 2.153459, 2.153459;;, + 126;3; 2.153459, 2.153459, 2.153459;;, + 127;3; 2.153459, 2.153459, 2.153459;;, + 128;3; 2.153459, 2.153459, 2.153459;;, + 129;3; 2.153459, 2.153459, 2.153459;;, + 130;3; 2.153459, 2.153459, 2.153459;;, + 131;3; 2.153459, 2.153459, 2.153459;;, + 132;3; 2.153459, 2.153459, 2.153459;;, + 133;3; 2.153459, 2.153459, 2.153459;;, + 134;3; 2.153459, 2.153459, 2.153459;;, + 135;3; 2.153459, 2.153459, 2.153459;;, + 136;3; 2.153459, 2.153459, 2.153459;;, + 137;3; 2.153459, 2.153459, 2.153459;;, + 138;3; 2.153459, 2.153459, 2.153459;;, + 139;3; 2.153459, 2.153459, 2.153459;;, + 140;3; 2.153459, 2.153459, 2.153459;;, + 141;3; 2.153459, 2.153459, 2.153459;;, + 142;3; 2.153459, 2.153459, 2.153459;;, + 143;3; 2.153459, 2.153459, 2.153459;;, + 144;3; 2.153459, 2.153459, 2.153459;;, + 145;3; 2.153459, 2.153459, 2.153459;;, + 146;3; 2.153459, 2.153459, 2.153459;;, + 147;3; 2.153459, 2.153459, 2.153459;;, + 148;3; 2.153459, 2.153459, 2.153459;;, + 149;3; 2.153459, 2.153459, 2.153459;;, + 150;3; 2.153459, 2.153459, 2.153459;;, + 151;3; 2.153459, 2.153459, 2.153459;;, + 152;3; 2.153459, 2.153459, 2.153459;;, + 153;3; 2.153459, 2.153459, 2.153459;;, + 154;3; 2.153459, 2.153459, 2.153459;;, + 155;3; 2.153459, 2.153459, 2.153459;;; + } + } + Animation { + {Armature_Body} + AnimationKey { //Position + 2; + 156; + 0;3; 5.378092,-1.647068, 2.876912;;, + 1;3; 5.378092,-1.647068, 2.876912;;, + 2;3; 5.378092,-1.647068, 2.876912;;, + 3;3; 5.378092,-1.647068, 2.876912;;, + 4;3; 5.378092,-1.647068, 2.876912;;, + 5;3; 5.378092,-1.647068, 2.876912;;, + 6;3; 5.378092,-1.647068, 2.876912;;, + 7;3; 5.378092,-1.647068, 2.876912;;, + 8;3; 5.378092,-1.647068, 2.876912;;, + 9;3; 5.378092,-1.647068, 2.876912;;, + 10;3; 5.378092,-1.647068, 2.876912;;, + 11;3; 5.378092,-1.647068, 2.876912;;, + 12;3; 5.378092,-1.647068, 2.876912;;, + 13;3; 5.378092,-1.647068, 2.876912;;, + 14;3; 5.378092,-1.647068, 2.876912;;, + 15;3; 5.378092,-1.647068, 2.876912;;, + 16;3; 5.378092,-1.647068, 2.876912;;, + 17;3; 5.378092,-1.647068, 2.876912;;, + 18;3; 5.378092,-1.647068, 2.876912;;, + 19;3; 5.378092,-1.647068, 2.876912;;, + 20;3; 5.378092,-1.647068, 2.876912;;, + 21;3; 5.378092,-1.647068, 2.876912;;, + 22;3; 5.378092,-1.647068, 2.876912;;, + 23;3; 5.378092,-1.647068, 2.876912;;, + 24;3; 5.378092,-1.647068, 2.876912;;, + 25;3; 5.378092,-1.647068, 2.876912;;, + 26;3; 5.378092,-1.647068, 2.876912;;, + 27;3; 5.378092,-1.647068, 2.876912;;, + 28;3; 5.378092,-1.647068, 2.876912;;, + 29;3; 5.378092,-1.647068, 2.876912;;, + 30;3; 5.378092,-1.647068, 2.876912;;, + 31;3; 5.378092,-1.647068, 2.876912;;, + 32;3; 5.378092,-1.647068, 2.876912;;, + 33;3; 5.378092,-1.647068, 2.876912;;, + 34;3; 5.378092,-1.647068, 2.876912;;, + 35;3; 5.378092,-1.647068, 2.876912;;, + 36;3; 5.378092,-1.647068, 2.876912;;, + 37;3; 5.378092,-1.647068, 2.876912;;, + 38;3; 5.378092,-1.647068, 2.876912;;, + 39;3; 5.378092,-1.647068, 2.876912;;, + 40;3; 5.378092,-1.647068, 2.876912;;, + 41;3; 5.378092,-1.647068, 2.876912;;, + 42;3; 5.378092,-1.647068, 2.876912;;, + 43;3; 5.378092,-1.647068, 2.876912;;, + 44;3; 5.378092,-1.647068, 2.876912;;, + 45;3; 5.378092,-1.647068, 2.876912;;, + 46;3; 5.378092,-1.647068, 2.876912;;, + 47;3; 5.378092,-1.647068, 2.876912;;, + 48;3; 5.378092,-1.647068, 2.876912;;, + 49;3; 5.378092,-1.647068, 2.876912;;, + 50;3; 5.378092,-1.647068, 2.876912;;, + 51;3; 5.378092,-1.647068, 2.876912;;, + 52;3; 5.378092,-1.647068, 2.876912;;, + 53;3; 5.378092,-1.647068, 2.876912;;, + 54;3; 5.378092,-1.647068, 2.876912;;, + 55;3; 5.378092,-1.647068, 2.876912;;, + 56;3; 5.378092,-1.647068, 2.876912;;, + 57;3; 5.378092,-1.647068, 2.876912;;, + 58;3; 5.378092,-1.647068, 2.876912;;, + 59;3; 5.378092,-1.647068, 2.876912;;, + 60;3; 5.378092,-1.647068, 2.876912;;, + 61;3; 5.378092,-1.647068, 2.876912;;, + 62;3; 5.378092,-1.647068, 2.876912;;, + 63;3; 5.378092,-1.647068, 2.876912;;, + 64;3; 5.378092,-1.647068, 2.876912;;, + 65;3; 5.378092,-1.647068, 2.876912;;, + 66;3; 5.378092,-1.647068, 2.876912;;, + 67;3; 5.378092,-1.647068, 2.876912;;, + 68;3; 5.378092,-1.647068, 2.876912;;, + 69;3; 5.378092,-1.647068, 2.876912;;, + 70;3; 5.378092,-1.647068, 2.876912;;, + 71;3; 5.378092,-1.647068, 2.876912;;, + 72;3; 5.378092,-1.647068, 2.876912;;, + 73;3; 5.378092,-1.647068, 2.876912;;, + 74;3; 5.378092,-1.647068, 2.876912;;, + 75;3; 5.378092,-1.647068, 2.876912;;, + 76;3; 5.378092,-1.647068, 2.876912;;, + 77;3; 5.378092,-1.647068, 2.876912;;, + 78;3; 5.378092,-1.647068, 2.876912;;, + 79;3; 5.378092,-1.647068, 2.876912;;, + 80;3; 5.378092,-1.647068, 2.876912;;, + 81;3; 5.378092,-1.647068, 2.876912;;, + 82;3; 5.378092,-1.647068, 2.876912;;, + 83;3; 5.378092,-1.647068, 2.876912;;, + 84;3; 5.378092,-1.647068, 2.876912;;, + 85;3; 5.378092,-1.647068, 2.876912;;, + 86;3; 5.378092,-1.647068, 2.876912;;, + 87;3; 5.378092,-1.647068, 2.876912;;, + 88;3; 5.378092,-1.647068, 2.876912;;, + 89;3; 5.378092,-1.647068, 2.876912;;, + 90;3; 5.378092,-1.647068, 2.876912;;, + 91;3; 5.378092,-1.647068, 2.876912;;, + 92;3; 5.378092,-1.647068, 2.876912;;, + 93;3; 5.378092,-1.647068, 2.876912;;, + 94;3; 5.378092,-1.647068, 2.876912;;, + 95;3; 5.378092,-1.647068, 2.876912;;, + 96;3; 5.378092,-1.647068, 2.876912;;, + 97;3; 5.378092,-1.647068, 2.876912;;, + 98;3; 5.378092,-1.647068, 2.876912;;, + 99;3; 5.378092,-1.647068, 2.876912;;, + 100;3; 5.378092,-1.647068, 2.876912;;, + 101;3; 5.378092,-1.647068, 2.876912;;, + 102;3; 5.378092,-1.647068, 2.876912;;, + 103;3; 5.378092,-1.647068, 2.876912;;, + 104;3; 5.378092,-1.647068, 2.876912;;, + 105;3; 5.378092,-1.647068, 2.876912;;, + 106;3; 5.378092,-1.647068, 2.876912;;, + 107;3; 5.378092,-1.647068, 2.876912;;, + 108;3; 5.378092,-1.647068, 2.876912;;, + 109;3; 5.378092,-1.647068, 2.876912;;, + 110;3; 5.378092,-1.647068, 2.876912;;, + 111;3; 5.378092,-1.647068, 2.876912;;, + 112;3; 5.378092,-1.647068, 2.876912;;, + 113;3; 5.378092,-1.647068, 2.876912;;, + 114;3; 5.378092,-1.647068, 2.876912;;, + 115;3; 5.378092,-1.647068, 2.876912;;, + 116;3; 5.378092,-1.647068, 2.876912;;, + 117;3; 5.378092,-1.647068, 2.876912;;, + 118;3; 5.378092,-1.647068, 2.876912;;, + 119;3; 5.378092,-1.647068, 2.876912;;, + 120;3; 5.378092,-1.647068, 2.876912;;, + 121;3; 5.378092,-1.647068, 2.876912;;, + 122;3; 5.378092,-1.647068, 2.876912;;, + 123;3; 5.378092,-1.647068, 2.876912;;, + 124;3; 5.378092,-1.647068, 2.876912;;, + 125;3; 5.378092,-1.647068, 2.876912;;, + 126;3; 5.378092,-1.647068, 2.876912;;, + 127;3; 5.378092,-1.647068, 2.876912;;, + 128;3; 5.378092,-1.647068, 2.876912;;, + 129;3; 5.378092,-1.647068, 2.876912;;, + 130;3; 5.378092,-1.647068, 2.876912;;, + 131;3; 5.378092,-1.647068, 2.876912;;, + 132;3; 5.378092,-1.647068, 2.876912;;, + 133;3; 5.378092,-1.647068, 2.876912;;, + 134;3; 5.378092,-1.647068, 2.876912;;, + 135;3; 5.378092,-1.647068, 2.876912;;, + 136;3; 5.378092,-1.187825, 2.736182;;, + 137;3; 5.378092,-0.728790, 2.595572;;, + 138;3; 5.378092,-0.729070, 2.598489;;, + 139;3; 5.378092,-0.730037, 2.606928;;, + 140;3; 5.378092,-0.731865, 2.620276;;, + 141;3; 5.378092,-0.734711, 2.637750;;, + 142;3; 5.378092,-0.738697, 2.658450;;, + 143;3; 5.378092,-0.743910, 2.681418;;, + 144;3; 5.378092,-0.750400, 2.705708;;, + 145;3; 5.378092,-0.758182, 2.730444;;, + 146;3; 5.378092,-0.767245, 2.754857;;, + 147;3; 5.378092,-0.777552, 2.778308;;, + 148;3; 5.378092,-0.789052, 2.800292;;, + 149;3; 5.378092,-0.801685, 2.820429;;, + 150;3; 5.378092,-0.863997, 2.838559;;, + 151;3; 5.378092,-1.019046, 2.853992;;, + 152;3; 5.378092,-1.234415, 2.865585;;, + 153;3; 5.378092,-1.447600, 2.872756;;, + 154;3; 5.378092,-1.595927, 2.876091;;, + 155;3; 5.378092,-1.647068, 2.876912;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 1;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 2;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 3;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 4;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 5;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 6;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 7;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 8;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 9;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 10;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 11;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 12;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 13;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 14;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 15;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 16;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 17;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 18;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 19;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 20;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 21;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 22;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 23;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 24;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 25;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 26;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 27;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 28;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 29;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 30;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 31;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 32;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 33;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 34;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 35;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 36;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 37;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 38;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 39;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 40;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 41;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 42;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 43;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 44;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 45;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 46;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 47;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 48;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 49;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 50;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 51;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 52;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 53;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 54;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 55;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 56;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 57;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 58;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 59;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 60;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 61;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 62;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 63;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 64;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 65;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 66;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 67;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 68;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 69;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 70;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 71;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 72;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 73;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 74;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 75;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 76;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 77;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 78;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 79;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 80;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 81;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 82;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 83;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 84;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 85;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 86;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 87;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 88;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 89;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 90;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 91;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 92;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 93;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 94;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 95;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 96;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 97;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 98;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 99;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 100;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 101;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 102;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 103;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 104;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 105;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 106;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 107;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 108;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 109;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 110;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 111;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 112;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 113;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 114;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 115;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 116;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 117;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 118;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 119;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 120;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 121;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 122;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 123;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 124;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 125;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 126;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 127;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 128;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 129;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 130;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 131;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 132;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 133;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 134;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 135;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 136;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 137;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 138;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 139;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 140;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 141;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 142;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 143;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 144;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 145;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 146;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 147;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 148;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 149;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 150;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 151;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 152;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 153;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 154;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 155;4; -0.999132, 0.041662, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga3} + AnimationKey { //Position + 2; + 156; + 0;3; 0.618225, 0.037596,-0.622362;;, + 1;3; 0.618225, 0.037596,-0.622362;;, + 2;3; 0.618225, 0.037596,-0.622362;;, + 3;3; 0.618225, 0.037596,-0.622362;;, + 4;3; 0.618225, 0.037596,-0.622362;;, + 5;3; 0.618225, 0.037596,-0.622362;;, + 6;3; 0.618225, 0.037596,-0.622362;;, + 7;3; 0.618225, 0.037596,-0.622362;;, + 8;3; 0.618225, 0.037596,-0.622362;;, + 9;3; 0.618225, 0.037596,-0.622362;;, + 10;3; 0.618225, 0.037596,-0.622362;;, + 11;3; 0.618225, 0.037596,-0.622362;;, + 12;3; 0.618225, 0.037596,-0.622362;;, + 13;3; 0.618225, 0.037596,-0.622362;;, + 14;3; 0.618225, 0.037596,-0.622362;;, + 15;3; 0.618225, 0.037596,-0.622362;;, + 16;3; 0.618225, 0.037596,-0.622362;;, + 17;3; 0.618225, 0.037596,-0.622362;;, + 18;3; 0.618225, 0.037596,-0.622362;;, + 19;3; 0.618225, 0.037596,-0.622362;;, + 20;3; 0.618225, 0.037596,-0.622362;;, + 21;3; 0.618225, 0.037596,-0.622362;;, + 22;3; 0.618225, 0.037596,-0.622362;;, + 23;3; 0.618225, 0.037596,-0.622362;;, + 24;3; 0.618225, 0.037596,-0.622362;;, + 25;3; 0.618225, 0.037596,-0.622362;;, + 26;3; 0.618225, 0.037596,-0.622362;;, + 27;3; 0.618225, 0.037596,-0.622362;;, + 28;3; 0.618225, 0.037596,-0.622362;;, + 29;3; 0.618225, 0.037596,-0.622362;;, + 30;3; 0.618225, 0.037596,-0.622362;;, + 31;3; 0.618225, 0.037596,-0.622362;;, + 32;3; 0.618225, 0.037596,-0.622362;;, + 33;3; 0.618225, 0.037596,-0.622362;;, + 34;3; 0.618225, 0.037596,-0.622362;;, + 35;3; 0.618225, 0.037596,-0.622362;;, + 36;3; 0.618225, 0.037596,-0.622362;;, + 37;3; 0.618225, 0.037596,-0.622362;;, + 38;3; 0.618225, 0.037596,-0.622362;;, + 39;3; 0.618225, 0.037596,-0.622362;;, + 40;3; 0.618225, 0.037596,-0.622362;;, + 41;3; 0.618225, 0.037596,-0.622362;;, + 42;3; 0.618225, 0.037596,-0.622362;;, + 43;3; 0.618225, 0.037596,-0.622362;;, + 44;3; 0.618225, 0.037596,-0.622362;;, + 45;3; 0.618225, 0.037596,-0.622362;;, + 46;3; 0.618225, 0.037596,-0.622362;;, + 47;3; 0.618225, 0.037596,-0.622362;;, + 48;3; 0.618225, 0.037596,-0.622362;;, + 49;3; 0.618225, 0.037596,-0.622362;;, + 50;3; 0.618225, 0.037596,-0.622362;;, + 51;3; 0.618225, 0.037596,-0.622362;;, + 52;3; 0.618225, 0.037596,-0.622362;;, + 53;3; 0.618225, 0.037596,-0.622362;;, + 54;3; 0.618225, 0.037596,-0.622362;;, + 55;3; 0.618225, 0.037596,-0.622362;;, + 56;3; 0.618225, 0.037596,-0.622362;;, + 57;3; 0.618225, 0.037596,-0.622362;;, + 58;3; 0.618225, 0.037596,-0.622362;;, + 59;3; 0.618225, 0.037596,-0.622362;;, + 60;3; 0.618225, 0.037596,-0.622362;;, + 61;3; 0.618225, 0.037596,-0.622362;;, + 62;3; 0.618225, 0.037596,-0.622362;;, + 63;3; 0.618225, 0.037596,-0.622362;;, + 64;3; 0.618225, 0.037596,-0.622362;;, + 65;3; 0.618225, 0.037596,-0.622362;;, + 66;3; 0.618225, 0.037596,-0.622362;;, + 67;3; 0.618225, 0.037596,-0.622362;;, + 68;3; 0.618225, 0.037596,-0.622362;;, + 69;3; 0.618225, 0.037596,-0.622362;;, + 70;3; 0.618225, 0.037596,-0.622362;;, + 71;3; 0.618225, 0.037596,-0.622362;;, + 72;3; 0.618225, 0.037596,-0.622362;;, + 73;3; 0.618225, 0.037596,-0.622362;;, + 74;3; 0.618225, 0.037596,-0.622362;;, + 75;3; 0.618225, 0.037596,-0.622362;;, + 76;3; 0.618225, 0.037596,-0.622362;;, + 77;3; 0.618225, 0.037596,-0.622362;;, + 78;3; 0.618225, 0.037596,-0.622362;;, + 79;3; 0.618225, 0.037596,-0.622362;;, + 80;3; 0.618225, 0.037596,-0.622362;;, + 81;3; 0.618225, 0.037596,-0.622362;;, + 82;3; 0.618225, 0.037596,-0.622362;;, + 83;3; 0.618225, 0.037596,-0.622362;;, + 84;3; 0.618225, 0.037596,-0.622362;;, + 85;3; 0.618225, 0.037596,-0.622362;;, + 86;3; 0.618225, 0.037596,-0.622362;;, + 87;3; 0.618225, 0.037596,-0.622362;;, + 88;3; 0.618225, 0.037596,-0.622362;;, + 89;3; 0.618225, 0.037596,-0.622362;;, + 90;3; 0.618225, 0.037596,-0.622362;;, + 91;3; 0.618225, 0.037596,-0.622362;;, + 92;3; 0.618225, 0.037596,-0.622362;;, + 93;3; 0.618225, 0.037596,-0.622362;;, + 94;3; 0.618225, 0.037596,-0.622362;;, + 95;3; 0.618225, 0.037596,-0.622362;;, + 96;3; 0.618225, 0.037596,-0.622362;;, + 97;3; 0.618225, 0.037596,-0.622362;;, + 98;3; 0.618225, 0.037596,-0.622362;;, + 99;3; 0.618225, 0.037596,-0.622362;;, + 100;3; 0.618225, 0.037596,-0.622362;;, + 101;3; 0.618225, 0.037596,-0.622362;;, + 102;3; 0.618225, 0.037596,-0.622362;;, + 103;3; 0.618225, 0.037596,-0.622362;;, + 104;3; 0.618225, 0.037596,-0.622362;;, + 105;3; 0.618225, 0.037596,-0.622362;;, + 106;3; 0.618225, 0.037596,-0.622362;;, + 107;3; 0.618225, 0.037596,-0.622362;;, + 108;3; 0.618225, 0.037596,-0.622362;;, + 109;3; 0.618225, 0.037596,-0.622362;;, + 110;3; 0.618225, 0.037596,-0.622362;;, + 111;3; 0.618225, 0.037596,-0.622362;;, + 112;3; 0.618225, 0.037596,-0.622362;;, + 113;3; 0.618225, 0.037596,-0.622362;;, + 114;3; 0.618225, 0.037596,-0.622362;;, + 115;3; 0.618225, 0.037596,-0.622362;;, + 116;3; 0.618225, 0.037596,-0.622362;;, + 117;3; 0.618225, 0.037596,-0.622362;;, + 118;3; 0.618225, 0.037596,-0.622362;;, + 119;3; 0.618225, 0.037596,-0.622362;;, + 120;3; 0.618225, 0.037596,-0.622362;;, + 121;3; 0.618225, 0.037596,-0.622362;;, + 122;3; 0.618225, 0.037596,-0.622362;;, + 123;3; 0.618225, 0.037596,-0.622362;;, + 124;3; 0.618225, 0.037596,-0.622362;;, + 125;3; 0.618225, 0.037596,-0.622362;;, + 126;3; 0.618225, 0.037596,-0.622362;;, + 127;3; 0.618225, 0.037596,-0.622362;;, + 128;3; 0.618225, 0.037596,-0.622362;;, + 129;3; 0.618225, 0.037596,-0.622362;;, + 130;3; 0.618225, 0.037596,-0.622362;;, + 131;3; 0.618225, 0.037596,-0.622362;;, + 132;3; 0.618225, 0.037596,-0.622362;;, + 133;3; 0.618225, 0.037596,-0.622362;;, + 134;3; 0.618225, 0.037596,-0.622362;;, + 135;3; 0.618225, 0.037596,-0.622362;;, + 136;3; 0.618225, 0.037596,-0.622363;;, + 137;3; 0.618225, 0.037596,-0.622363;;, + 138;3; 0.618225, 0.037596,-0.622362;;, + 139;3; 0.618225, 0.037596,-0.622363;;, + 140;3; 0.618225, 0.037596,-0.622362;;, + 141;3; 0.618225, 0.037596,-0.622362;;, + 142;3; 0.618225, 0.037596,-0.622363;;, + 143;3; 0.618225, 0.037596,-0.622363;;, + 144;3; 0.618225, 0.037596,-0.622362;;, + 145;3; 0.618225, 0.037596,-0.622362;;, + 146;3; 0.618225, 0.037596,-0.622362;;, + 147;3; 0.618225, 0.037596,-0.622363;;, + 148;3; 0.618225, 0.037596,-0.622363;;, + 149;3; 0.618225, 0.037596,-0.622363;;, + 150;3; 0.618225, 0.037596,-0.622363;;, + 151;3; 0.618225, 0.037596,-0.622362;;, + 152;3; 0.618225, 0.037596,-0.622363;;, + 153;3; 0.618225, 0.037596,-0.622362;;, + 154;3; 0.618225, 0.037596,-0.622363;;, + 155;3; 0.618225, 0.037596,-0.622362;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 37;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 38;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 39;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 40;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 41;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 42;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 43;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 44;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 45;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 46;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 47;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 48;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 49;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 50;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 51;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 52;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 53;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 54;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 55;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 56;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 57;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 58;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 59;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 60;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 61;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 62;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 63;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 64;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.474286,-0.523982, 0.474286,-0.523982;;, + 78;4; -0.461337,-0.534416, 0.461337,-0.534416;;, + 79;4; -0.442723,-0.549415, 0.442723,-0.549415;;, + 80;4; -0.424110,-0.564414, 0.424110,-0.564414;;, + 81;4; -0.411163,-0.574847, 0.411163,-0.574847;;, + 82;4; -0.406714,-0.578432, 0.406714,-0.578432;;, + 83;4; -0.408802,-0.576511, 0.408802,-0.576511;;, + 84;4; -0.415106,-0.570712, 0.415106,-0.570712;;, + 85;4; -0.425500,-0.561150, 0.425500,-0.561150;;, + 86;4; -0.439529,-0.548244, 0.439529,-0.548244;;, + 87;4; -0.456329,-0.532789, 0.456329,-0.532789;;, + 88;4; -0.474639,-0.515945, 0.474639,-0.515945;;, + 89;4; -0.492950,-0.499100, 0.492950,-0.499100;;, + 90;4; -0.509750,-0.483645, 0.509750,-0.483645;;, + 91;4; -0.523779,-0.470739, 0.523779,-0.470739;;, + 92;4; -0.534173,-0.461177, 0.534173,-0.461177;;, + 93;4; -0.540477,-0.455378, 0.540477,-0.455378;;, + 94;4; -0.542565,-0.453457, 0.542565,-0.453457;;, + 95;4; -0.538622,-0.457592, 0.538622,-0.457592;;, + 96;4; -0.527147,-0.469626, 0.527147,-0.469626;;, + 97;4; -0.510651,-0.486926, 0.510651,-0.486926;;, + 98;4; -0.494154,-0.504227, 0.494154,-0.504227;;, + 99;4; -0.482678,-0.516262, 0.482678,-0.516262;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 107;4; -0.490465,-0.502499, 0.490465,-0.502499;;, + 108;4; -0.524578,-0.450433, 0.524578,-0.450433;;, + 109;4; -0.573580,-0.375622, 0.573580,-0.375622;;, + 110;4; -0.622557,-0.300834, 0.622557,-0.300834;;, + 111;4; -0.656625,-0.248811, 0.656625,-0.248810;;, + 112;4; -0.668334,-0.230932, 0.668334,-0.230932;;, + 113;4; -0.661874,-0.237181, 0.661874,-0.237181;;, + 114;4; -0.642405,-0.256080, 0.642405,-0.256080;;, + 115;4; -0.610375,-0.287321, 0.610375,-0.287321;;, + 116;4; -0.567273,-0.329627, 0.567273,-0.329627;;, + 117;4; -0.515861,-0.380508, 0.515861,-0.380508;;, + 118;4; -0.460128,-0.436291, 0.460128,-0.436291;;, + 119;4; -0.404820,-0.492536, 0.404820,-0.492536;;, + 120;4; -0.354654,-0.544771, 0.354654,-0.544771;;, + 121;4; -0.313535,-0.589233, 0.313535,-0.589233;;, + 122;4; -0.284114,-0.623311, 0.284114,-0.623311;;, + 123;4; -0.267759,-0.645594, 0.267759,-0.645594;;, + 124;4; -0.264803,-0.655652, 0.264803,-0.655652;;, + 125;4; -0.280825,-0.650350, 0.280825,-0.650350;;, + 126;4; -0.320283,-0.627132, 0.320283,-0.627132;;, + 127;4; -0.374971,-0.591542, 0.374971,-0.591542;;, + 128;4; -0.428834,-0.555035, 0.428834,-0.555035;;, + 129;4; -0.466013,-0.529303, 0.466013,-0.529303;;, + 130;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 131;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 132;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 133;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 134;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 136;4; -0.421019,-0.563519, 0.421019,-0.563519;;, + 137;4; -0.363310,-0.606635, 0.363310,-0.606635;;, + 138;4; -0.364209,-0.605990, 0.364209,-0.605990;;, + 139;4; -0.366735,-0.604180, 0.366735,-0.604180;;, + 140;4; -0.370579,-0.601425, 0.370579,-0.601425;;, + 141;4; -0.375380,-0.597985, 0.375380,-0.597985;;, + 142;4; -0.380746,-0.594141, 0.380746,-0.594141;;, + 143;4; -0.386282,-0.590175, 0.386282,-0.590175;;, + 144;4; -0.391619,-0.586352, 0.391619,-0.586352;;, + 145;4; -0.396433,-0.582903, 0.396433,-0.582903;;, + 146;4; -0.400456,-0.580021, 0.400456,-0.580021;;, + 147;4; -0.403482,-0.577853, 0.403482,-0.577853;;, + 148;4; -0.405364,-0.576505, 0.405364,-0.576505;;, + 149;4; -0.406005,-0.576046, 0.406005,-0.576046;;, + 150;4; -0.398008,-0.581360, 0.398008,-0.581360;;, + 151;4; -0.380894,-0.592732, 0.380894,-0.592732;;, + 152;4; -0.372894,-0.598048, 0.372894,-0.598048;;, + 153;4; -0.398445,-0.579305, 0.398445,-0.579305;;, + 154;4; -0.453128,-0.539191, 0.453128,-0.539191;;, + 155;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga1} + AnimationKey { //Position + 2; + 156; + 0;3; 0.618225, 3.072911,-0.875938;;, + 1;3; 0.618225, 3.072911,-0.875938;;, + 2;3; 0.618225, 3.072911,-0.875938;;, + 3;3; 0.618225, 3.072911,-0.875938;;, + 4;3; 0.618225, 3.072911,-0.875938;;, + 5;3; 0.618225, 3.072911,-0.875938;;, + 6;3; 0.618225, 3.072911,-0.875938;;, + 7;3; 0.618225, 3.072911,-0.875938;;, + 8;3; 0.618225, 3.072911,-0.875938;;, + 9;3; 0.618225, 3.072911,-0.875938;;, + 10;3; 0.618225, 3.072911,-0.875938;;, + 11;3; 0.618225, 3.072911,-0.875938;;, + 12;3; 0.618225, 3.072911,-0.875938;;, + 13;3; 0.618225, 3.072911,-0.875938;;, + 14;3; 0.618225, 3.072911,-0.875938;;, + 15;3; 0.618225, 3.072911,-0.875938;;, + 16;3; 0.618225, 3.072911,-0.875938;;, + 17;3; 0.618225, 3.072911,-0.875938;;, + 18;3; 0.618225, 3.072911,-0.875938;;, + 19;3; 0.618225, 3.072911,-0.875938;;, + 20;3; 0.618225, 3.072911,-0.875938;;, + 21;3; 0.618225, 3.072911,-0.875938;;, + 22;3; 0.618225, 3.072911,-0.875938;;, + 23;3; 0.618225, 3.072911,-0.875938;;, + 24;3; 0.618225, 3.072911,-0.875938;;, + 25;3; 0.618225, 3.072911,-0.875938;;, + 26;3; 0.618225, 3.072911,-0.875938;;, + 27;3; 0.618225, 3.072911,-0.875938;;, + 28;3; 0.618225, 3.072911,-0.875938;;, + 29;3; 0.618225, 3.072911,-0.875938;;, + 30;3; 0.618225, 3.072911,-0.875938;;, + 31;3; 0.618225, 3.072911,-0.875938;;, + 32;3; 0.618225, 3.072911,-0.875938;;, + 33;3; 0.618225, 3.072911,-0.875938;;, + 34;3; 0.618225, 3.072911,-0.875938;;, + 35;3; 0.618225, 3.072911,-0.875938;;, + 36;3; 0.618225, 3.072911,-0.875938;;, + 37;3; 0.618225, 3.072911,-0.875938;;, + 38;3; 0.618225, 3.072911,-0.875938;;, + 39;3; 0.618225, 3.072911,-0.875938;;, + 40;3; 0.618225, 3.072911,-0.875938;;, + 41;3; 0.618225, 3.072911,-0.875938;;, + 42;3; 0.618225, 3.072911,-0.875938;;, + 43;3; 0.618225, 3.072911,-0.875938;;, + 44;3; 0.618225, 3.072911,-0.875938;;, + 45;3; 0.618225, 3.072911,-0.875938;;, + 46;3; 0.618225, 3.072911,-0.875938;;, + 47;3; 0.618225, 3.072911,-0.875938;;, + 48;3; 0.618225, 3.072911,-0.875938;;, + 49;3; 0.618225, 3.072911,-0.875938;;, + 50;3; 0.618225, 3.072911,-0.875938;;, + 51;3; 0.618225, 3.072911,-0.875938;;, + 52;3; 0.618225, 3.072911,-0.875938;;, + 53;3; 0.618225, 3.072911,-0.875938;;, + 54;3; 0.618225, 3.072911,-0.875938;;, + 55;3; 0.618225, 3.072911,-0.875938;;, + 56;3; 0.618225, 3.072911,-0.875938;;, + 57;3; 0.618225, 3.072911,-0.875938;;, + 58;3; 0.618225, 3.072911,-0.875938;;, + 59;3; 0.618225, 3.072911,-0.875938;;, + 60;3; 0.618225, 3.072911,-0.875938;;, + 61;3; 0.618225, 3.072911,-0.875938;;, + 62;3; 0.618225, 3.072911,-0.875938;;, + 63;3; 0.618225, 3.072911,-0.875938;;, + 64;3; 0.618225, 3.072911,-0.875938;;, + 65;3; 0.618225, 3.072911,-0.875938;;, + 66;3; 0.618225, 3.072911,-0.875938;;, + 67;3; 0.618225, 3.072911,-0.875938;;, + 68;3; 0.618225, 3.072911,-0.875938;;, + 69;3; 0.618225, 3.072911,-0.875938;;, + 70;3; 0.618225, 3.072911,-0.875938;;, + 71;3; 0.618225, 3.072911,-0.875938;;, + 72;3; 0.618225, 3.072911,-0.875938;;, + 73;3; 0.618225, 3.072911,-0.875938;;, + 74;3; 0.618225, 3.072911,-0.875938;;, + 75;3; 0.618225, 3.072911,-0.875938;;, + 76;3; 0.618225, 3.072911,-0.875938;;, + 77;3; 0.618225, 3.072911,-0.875938;;, + 78;3; 0.618225, 3.072911,-0.875938;;, + 79;3; 0.618225, 3.072911,-0.875938;;, + 80;3; 0.618225, 3.072911,-0.875938;;, + 81;3; 0.618225, 3.072911,-0.875938;;, + 82;3; 0.618225, 3.072911,-0.875938;;, + 83;3; 0.618225, 3.072911,-0.875938;;, + 84;3; 0.618225, 3.072911,-0.875938;;, + 85;3; 0.618225, 3.072911,-0.875938;;, + 86;3; 0.618225, 3.072911,-0.875938;;, + 87;3; 0.618225, 3.072911,-0.875938;;, + 88;3; 0.618225, 3.072911,-0.875938;;, + 89;3; 0.618225, 3.072911,-0.875938;;, + 90;3; 0.618225, 3.072911,-0.875938;;, + 91;3; 0.618225, 3.072911,-0.875938;;, + 92;3; 0.618225, 3.072911,-0.875938;;, + 93;3; 0.618225, 3.072911,-0.875938;;, + 94;3; 0.618225, 3.072911,-0.875938;;, + 95;3; 0.618225, 3.072911,-0.875938;;, + 96;3; 0.618225, 3.072911,-0.875938;;, + 97;3; 0.618225, 3.072911,-0.875938;;, + 98;3; 0.618225, 3.072911,-0.875938;;, + 99;3; 0.618225, 3.072911,-0.875938;;, + 100;3; 0.618225, 3.072911,-0.875938;;, + 101;3; 0.618225, 3.072911,-0.875938;;, + 102;3; 0.618225, 3.072911,-0.875938;;, + 103;3; 0.618225, 3.072911,-0.875938;;, + 104;3; 0.618225, 3.072911,-0.875938;;, + 105;3; 0.618225, 3.072911,-0.875938;;, + 106;3; 0.618225, 3.072911,-0.875938;;, + 107;3; 0.618225, 3.072911,-0.875938;;, + 108;3; 0.618225, 3.072911,-0.875938;;, + 109;3; 0.618225, 3.072911,-0.875938;;, + 110;3; 0.618225, 3.072911,-0.875938;;, + 111;3; 0.618225, 3.072911,-0.875938;;, + 112;3; 0.618225, 3.072911,-0.875938;;, + 113;3; 0.618225, 3.072911,-0.875938;;, + 114;3; 0.618225, 3.072911,-0.875938;;, + 115;3; 0.618225, 3.072911,-0.875938;;, + 116;3; 0.618225, 3.072911,-0.875938;;, + 117;3; 0.618225, 3.072911,-0.875938;;, + 118;3; 0.618225, 3.072911,-0.875938;;, + 119;3; 0.618225, 3.072911,-0.875938;;, + 120;3; 0.618225, 3.072911,-0.875938;;, + 121;3; 0.618225, 3.072911,-0.875938;;, + 122;3; 0.618225, 3.072911,-0.875938;;, + 123;3; 0.618225, 3.072911,-0.875938;;, + 124;3; 0.618225, 3.072911,-0.875938;;, + 125;3; 0.618225, 3.072911,-0.875938;;, + 126;3; 0.618225, 3.072911,-0.875938;;, + 127;3; 0.618225, 3.072911,-0.875938;;, + 128;3; 0.618225, 3.072911,-0.875938;;, + 129;3; 0.618225, 3.072911,-0.875938;;, + 130;3; 0.618225, 3.072911,-0.875938;;, + 131;3; 0.618225, 3.072911,-0.875938;;, + 132;3; 0.618225, 3.072911,-0.875938;;, + 133;3; 0.618225, 3.072911,-0.875938;;, + 134;3; 0.618225, 3.072911,-0.875938;;, + 135;3; 0.618225, 3.072911,-0.875938;;, + 136;3; 0.618225, 3.072911,-0.875938;;, + 137;3; 0.618225, 3.072911,-0.875938;;, + 138;3; 0.618225, 3.072911,-0.875938;;, + 139;3; 0.618225, 3.072911,-0.875938;;, + 140;3; 0.618225, 3.072911,-0.875938;;, + 141;3; 0.618225, 3.072911,-0.875938;;, + 142;3; 0.618225, 3.072911,-0.875938;;, + 143;3; 0.618225, 3.072911,-0.875938;;, + 144;3; 0.618225, 3.072911,-0.875938;;, + 145;3; 0.618225, 3.072911,-0.875938;;, + 146;3; 0.618225, 3.072911,-0.875938;;, + 147;3; 0.618225, 3.072911,-0.875938;;, + 148;3; 0.618225, 3.072911,-0.875938;;, + 149;3; 0.618225, 3.072911,-0.875938;;, + 150;3; 0.618225, 3.072911,-0.875938;;, + 151;3; 0.618225, 3.072911,-0.875938;;, + 152;3; 0.618225, 3.072911,-0.875938;;, + 153;3; 0.618225, 3.072911,-0.875938;;, + 154;3; 0.618225, 3.072911,-0.875938;;, + 155;3; 0.618225, 3.072911,-0.875938;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 37;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 38;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 39;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 40;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 41;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 42;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 43;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 44;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 45;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 46;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 47;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 48;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 49;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 50;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 51;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 52;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 53;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 54;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 55;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 56;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 57;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 58;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 59;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 60;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 61;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 62;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 63;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 64;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.482678,-0.516262, 0.482678,-0.516262;;, + 78;4; -0.494154,-0.504227, 0.494154,-0.504227;;, + 79;4; -0.510651,-0.486926, 0.510651,-0.486926;;, + 80;4; -0.527147,-0.469626, 0.527147,-0.469626;;, + 81;4; -0.538622,-0.457592, 0.538622,-0.457592;;, + 82;4; -0.542565,-0.453457, 0.542565,-0.453457;;, + 83;4; -0.540477,-0.455378, 0.540477,-0.455378;;, + 84;4; -0.534173,-0.461177, 0.534173,-0.461177;;, + 85;4; -0.523779,-0.470740, 0.523779,-0.470740;;, + 86;4; -0.509749,-0.483646, 0.509749,-0.483645;;, + 87;4; -0.492950,-0.499100, 0.492950,-0.499100;;, + 88;4; -0.474639,-0.515945, 0.474639,-0.515945;;, + 89;4; -0.456329,-0.532789, 0.456329,-0.532789;;, + 90;4; -0.439529,-0.548244, 0.439529,-0.548244;;, + 91;4; -0.425500,-0.561150, 0.425500,-0.561150;;, + 92;4; -0.415106,-0.570712, 0.415106,-0.570712;;, + 93;4; -0.408802,-0.576511, 0.408802,-0.576511;;, + 94;4; -0.406714,-0.578432, 0.406714,-0.578432;;, + 95;4; -0.411163,-0.574847, 0.411163,-0.574847;;, + 96;4; -0.424110,-0.564414, 0.424110,-0.564414;;, + 97;4; -0.442723,-0.549416, 0.442723,-0.549415;;, + 98;4; -0.461337,-0.534416, 0.461337,-0.534416;;, + 99;4; -0.474286,-0.523982, 0.474286,-0.523982;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 107;4; -0.491310,-0.499783, 0.491310,-0.499783;;, + 108;4; -0.527875,-0.439824, 0.527875,-0.439824;;, + 109;4; -0.580385,-0.353680, 0.580385,-0.353680;;, + 110;4; -0.632861,-0.267568, 0.632861,-0.267568;;, + 111;4; -0.669363,-0.207667, 0.669363,-0.207667;;, + 112;4; -0.681910,-0.187081, 0.681910,-0.187081;;, + 113;4; -0.675079,-0.193992, 0.675079,-0.193992;;, + 114;4; -0.654499,-0.214898, 0.654499,-0.214898;;, + 115;4; -0.620650,-0.249464, 0.620650,-0.249464;;, + 116;4; -0.575119,-0.296284, 0.575119,-0.296284;;, + 117;4; -0.520839,-0.352614, 0.520839,-0.352614;;, + 118;4; -0.462040,-0.414402, 0.462040,-0.414402;;, + 119;4; -0.403751,-0.476744, 0.403751,-0.476744;;, + 120;4; -0.350964,-0.534697, 0.350964,-0.534697;;, + 121;4; -0.307811,-0.584103, 0.307811,-0.584103;;, + 122;4; -0.277091,-0.622069, 0.277091,-0.622069;;, + 123;4; -0.260242,-0.647032, 0.260242,-0.647032;;, + 124;4; -0.257613,-0.658510, 0.257613,-0.658510;;, + 125;4; -0.274638,-0.653639, 0.274638,-0.653639;;, + 126;4; -0.315588,-0.630125, 0.315588,-0.630124;;, + 127;4; -0.372016,-0.593669, 0.372016,-0.593669;;, + 128;4; -0.427452,-0.556114, 0.427452,-0.556114;;, + 129;4; -0.465668,-0.529588, 0.465668,-0.529588;;, + 130;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 131;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 132;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 133;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 134;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 136;4; -0.532148,-0.458394, 0.532148,-0.458394;;, + 137;4; -0.585542,-0.396409, 0.585542,-0.396409;;, + 138;4; -0.585686,-0.396666, 0.585686,-0.396666;;, + 139;4; -0.585870,-0.397588, 0.585870,-0.397588;;, + 140;4; -0.585704,-0.399404, 0.585704,-0.399404;;, + 141;4; -0.584786,-0.402326, 0.584786,-0.402326;;, + 142;4; -0.582734,-0.406537, 0.582734,-0.406537;;, + 143;4; -0.579209,-0.412177, 0.579209,-0.412177;;, + 144;4; -0.573938,-0.419337, 0.573938,-0.419337;;, + 145;4; -0.566723,-0.428060, 0.566723,-0.428060;;, + 146;4; -0.557438,-0.438344, 0.557438,-0.438344;;, + 147;4; -0.546028,-0.450151, 0.546028,-0.450151;;, + 148;4; -0.532491,-0.463419, 0.532491,-0.463419;;, + 149;4; -0.516871,-0.478066, 0.516871,-0.478066;;, + 150;4; -0.479547,-0.511265, 0.479547,-0.511265;;, + 151;4; -0.422801,-0.561035, 0.422801,-0.561035;;, + 152;4; -0.398209,-0.582521, 0.398209,-0.582521;;, + 153;4; -0.417653,-0.567522, 0.417653,-0.567522;;, + 154;4; -0.459264,-0.535421, 0.459264,-0.535421;;, + 155;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga4} + AnimationKey { //Position + 2; + 156; + 0;3; -0.648382, 0.037596,-0.622362;;, + 1;3; -0.648382, 0.037596,-0.622362;;, + 2;3; -0.648382, 0.037596,-0.622362;;, + 3;3; -0.648382, 0.037596,-0.622362;;, + 4;3; -0.648382, 0.037596,-0.622362;;, + 5;3; -0.648382, 0.037596,-0.622362;;, + 6;3; -0.648382, 0.037596,-0.622362;;, + 7;3; -0.648382, 0.037596,-0.622362;;, + 8;3; -0.648382, 0.037596,-0.622362;;, + 9;3; -0.648382, 0.037596,-0.622362;;, + 10;3; -0.648382, 0.037596,-0.622362;;, + 11;3; -0.648382, 0.037596,-0.622362;;, + 12;3; -0.648382, 0.037596,-0.622362;;, + 13;3; -0.648382, 0.037596,-0.622362;;, + 14;3; -0.648382, 0.037596,-0.622362;;, + 15;3; -0.648382, 0.037596,-0.622362;;, + 16;3; -0.648382, 0.037596,-0.622362;;, + 17;3; -0.648382, 0.037596,-0.622362;;, + 18;3; -0.648382, 0.037596,-0.622362;;, + 19;3; -0.648382, 0.037596,-0.622362;;, + 20;3; -0.648382, 0.037596,-0.622362;;, + 21;3; -0.648382, 0.037596,-0.622362;;, + 22;3; -0.648382, 0.037596,-0.622362;;, + 23;3; -0.648382, 0.037596,-0.622362;;, + 24;3; -0.648382, 0.037596,-0.622362;;, + 25;3; -0.648382, 0.037596,-0.622362;;, + 26;3; -0.648382, 0.037596,-0.622362;;, + 27;3; -0.648382, 0.037596,-0.622362;;, + 28;3; -0.648382, 0.037596,-0.622362;;, + 29;3; -0.648382, 0.037596,-0.622362;;, + 30;3; -0.648382, 0.037596,-0.622362;;, + 31;3; -0.648382, 0.037596,-0.622362;;, + 32;3; -0.648382, 0.037596,-0.622362;;, + 33;3; -0.648382, 0.037596,-0.622362;;, + 34;3; -0.648382, 0.037596,-0.622362;;, + 35;3; -0.648382, 0.037596,-0.622362;;, + 36;3; -0.648382, 0.037596,-0.622362;;, + 37;3; -0.648382, 0.037596,-0.622362;;, + 38;3; -0.648382, 0.037596,-0.622362;;, + 39;3; -0.648382, 0.037596,-0.622362;;, + 40;3; -0.648382, 0.037596,-0.622362;;, + 41;3; -0.648382, 0.037596,-0.622362;;, + 42;3; -0.648382, 0.037596,-0.622362;;, + 43;3; -0.648382, 0.037596,-0.622362;;, + 44;3; -0.648382, 0.037596,-0.622362;;, + 45;3; -0.648382, 0.037596,-0.622362;;, + 46;3; -0.648382, 0.037596,-0.622362;;, + 47;3; -0.648382, 0.037596,-0.622362;;, + 48;3; -0.648382, 0.037596,-0.622362;;, + 49;3; -0.648382, 0.037596,-0.622362;;, + 50;3; -0.648382, 0.037596,-0.622362;;, + 51;3; -0.648382, 0.037596,-0.622362;;, + 52;3; -0.648382, 0.037596,-0.622362;;, + 53;3; -0.648382, 0.037596,-0.622362;;, + 54;3; -0.648382, 0.037596,-0.622362;;, + 55;3; -0.648382, 0.037596,-0.622362;;, + 56;3; -0.648382, 0.037596,-0.622362;;, + 57;3; -0.648382, 0.037596,-0.622362;;, + 58;3; -0.648382, 0.037596,-0.622362;;, + 59;3; -0.648382, 0.037596,-0.622362;;, + 60;3; -0.648382, 0.037596,-0.622362;;, + 61;3; -0.648382, 0.037596,-0.622362;;, + 62;3; -0.648382, 0.037596,-0.622362;;, + 63;3; -0.648382, 0.037596,-0.622362;;, + 64;3; -0.648382, 0.037596,-0.622362;;, + 65;3; -0.648382, 0.037596,-0.622362;;, + 66;3; -0.648382, 0.037596,-0.622362;;, + 67;3; -0.648382, 0.037596,-0.622362;;, + 68;3; -0.648382, 0.037596,-0.622362;;, + 69;3; -0.648382, 0.037596,-0.622362;;, + 70;3; -0.648382, 0.037596,-0.622362;;, + 71;3; -0.648382, 0.037596,-0.622362;;, + 72;3; -0.648382, 0.037596,-0.622362;;, + 73;3; -0.648382, 0.037596,-0.622362;;, + 74;3; -0.648382, 0.037596,-0.622362;;, + 75;3; -0.648382, 0.037596,-0.622362;;, + 76;3; -0.648382, 0.037596,-0.622362;;, + 77;3; -0.648382, 0.037596,-0.622362;;, + 78;3; -0.648382, 0.037596,-0.622362;;, + 79;3; -0.648382, 0.037596,-0.622362;;, + 80;3; -0.648382, 0.037596,-0.622362;;, + 81;3; -0.648382, 0.037596,-0.622362;;, + 82;3; -0.648382, 0.037596,-0.622362;;, + 83;3; -0.648382, 0.037596,-0.622362;;, + 84;3; -0.648382, 0.037596,-0.622362;;, + 85;3; -0.648382, 0.037596,-0.622362;;, + 86;3; -0.648382, 0.037596,-0.622362;;, + 87;3; -0.648382, 0.037596,-0.622362;;, + 88;3; -0.648382, 0.037596,-0.622362;;, + 89;3; -0.648382, 0.037596,-0.622362;;, + 90;3; -0.648382, 0.037596,-0.622362;;, + 91;3; -0.648382, 0.037596,-0.622362;;, + 92;3; -0.648382, 0.037596,-0.622362;;, + 93;3; -0.648382, 0.037596,-0.622362;;, + 94;3; -0.648382, 0.037596,-0.622362;;, + 95;3; -0.648382, 0.037596,-0.622362;;, + 96;3; -0.648382, 0.037596,-0.622362;;, + 97;3; -0.648382, 0.037596,-0.622362;;, + 98;3; -0.648382, 0.037596,-0.622362;;, + 99;3; -0.648382, 0.037596,-0.622362;;, + 100;3; -0.648382, 0.037596,-0.622362;;, + 101;3; -0.648382, 0.037596,-0.622362;;, + 102;3; -0.648382, 0.037596,-0.622362;;, + 103;3; -0.648382, 0.037596,-0.622362;;, + 104;3; -0.648382, 0.037596,-0.622362;;, + 105;3; -0.648382, 0.037596,-0.622362;;, + 106;3; -0.648382, 0.037596,-0.622362;;, + 107;3; -0.648382, 0.037596,-0.622362;;, + 108;3; -0.648382, 0.037596,-0.622362;;, + 109;3; -0.648382, 0.037596,-0.622362;;, + 110;3; -0.648382, 0.037596,-0.622362;;, + 111;3; -0.648382, 0.037596,-0.622362;;, + 112;3; -0.648382, 0.037596,-0.622362;;, + 113;3; -0.648382, 0.037596,-0.622362;;, + 114;3; -0.648382, 0.037596,-0.622362;;, + 115;3; -0.648382, 0.037596,-0.622362;;, + 116;3; -0.648382, 0.037596,-0.622362;;, + 117;3; -0.648382, 0.037596,-0.622362;;, + 118;3; -0.648382, 0.037596,-0.622362;;, + 119;3; -0.648382, 0.037596,-0.622362;;, + 120;3; -0.648382, 0.037596,-0.622362;;, + 121;3; -0.648382, 0.037596,-0.622362;;, + 122;3; -0.648382, 0.037596,-0.622362;;, + 123;3; -0.648382, 0.037596,-0.622362;;, + 124;3; -0.648382, 0.037596,-0.622362;;, + 125;3; -0.648382, 0.037596,-0.622362;;, + 126;3; -0.648382, 0.037596,-0.622362;;, + 127;3; -0.648382, 0.037596,-0.622362;;, + 128;3; -0.648382, 0.037596,-0.622362;;, + 129;3; -0.648382, 0.037596,-0.622362;;, + 130;3; -0.648382, 0.037596,-0.622362;;, + 131;3; -0.648382, 0.037596,-0.622362;;, + 132;3; -0.648382, 0.037596,-0.622362;;, + 133;3; -0.648382, 0.037596,-0.622362;;, + 134;3; -0.648382, 0.037596,-0.622362;;, + 135;3; -0.648382, 0.037596,-0.622362;;, + 136;3; -0.648382, 0.037596,-0.622363;;, + 137;3; -0.648382, 0.037596,-0.622363;;, + 138;3; -0.648382, 0.037596,-0.622362;;, + 139;3; -0.648382, 0.037596,-0.622363;;, + 140;3; -0.648382, 0.037596,-0.622362;;, + 141;3; -0.648382, 0.037596,-0.622362;;, + 142;3; -0.648382, 0.037596,-0.622363;;, + 143;3; -0.648382, 0.037596,-0.622363;;, + 144;3; -0.648382, 0.037596,-0.622362;;, + 145;3; -0.648382, 0.037596,-0.622362;;, + 146;3; -0.648382, 0.037596,-0.622362;;, + 147;3; -0.648382, 0.037596,-0.622363;;, + 148;3; -0.648382, 0.037596,-0.622363;;, + 149;3; -0.648382, 0.037596,-0.622363;;, + 150;3; -0.648382, 0.037596,-0.622363;;, + 151;3; -0.648382, 0.037596,-0.622362;;, + 152;3; -0.648382, 0.037596,-0.622363;;, + 153;3; -0.648382, 0.037596,-0.622362;;, + 154;3; -0.648382, 0.037596,-0.622363;;, + 155;3; -0.648382, 0.037596,-0.622362;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 37;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 38;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 39;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 40;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 41;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 42;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 43;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 44;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 45;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 46;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 47;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 48;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 49;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 50;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 51;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 52;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 53;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 54;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 55;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 56;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 57;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 58;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 59;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 60;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 61;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 62;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 63;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 64;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.482678,-0.516262, 0.482678,-0.516262;;, + 78;4; -0.494154,-0.504227, 0.494154,-0.504227;;, + 79;4; -0.510651,-0.486926, 0.510651,-0.486926;;, + 80;4; -0.527147,-0.469626, 0.527147,-0.469626;;, + 81;4; -0.538622,-0.457592, 0.538622,-0.457592;;, + 82;4; -0.542565,-0.453457, 0.542565,-0.453457;;, + 83;4; -0.540477,-0.455378, 0.540477,-0.455378;;, + 84;4; -0.534173,-0.461177, 0.534173,-0.461177;;, + 85;4; -0.523779,-0.470740, 0.523779,-0.470740;;, + 86;4; -0.509749,-0.483646, 0.509749,-0.483645;;, + 87;4; -0.492950,-0.499100, 0.492950,-0.499100;;, + 88;4; -0.474639,-0.515945, 0.474639,-0.515945;;, + 89;4; -0.456329,-0.532789, 0.456329,-0.532789;;, + 90;4; -0.439529,-0.548244, 0.439529,-0.548244;;, + 91;4; -0.425500,-0.561150, 0.425500,-0.561150;;, + 92;4; -0.415106,-0.570712, 0.415106,-0.570712;;, + 93;4; -0.408802,-0.576511, 0.408802,-0.576511;;, + 94;4; -0.406714,-0.578432, 0.406714,-0.578432;;, + 95;4; -0.411163,-0.574847, 0.411163,-0.574847;;, + 96;4; -0.424110,-0.564414, 0.424110,-0.564414;;, + 97;4; -0.442723,-0.549416, 0.442723,-0.549415;;, + 98;4; -0.461337,-0.534416, 0.461337,-0.534416;;, + 99;4; -0.474286,-0.523982, 0.474286,-0.523982;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 107;4; -0.463086,-0.529658, 0.463086,-0.529658;;, + 108;4; -0.417557,-0.556598, 0.417557,-0.556598;;, + 109;4; -0.352132,-0.595304, 0.352132,-0.595304;;, + 110;4; -0.286723,-0.633995, 0.286723,-0.633995;;, + 111;4; -0.241223,-0.660908, 0.241223,-0.660908;;, + 112;4; -0.225588,-0.670157, 0.225588,-0.670157;;, + 113;4; -0.231994,-0.664266, 0.231994,-0.664266;;, + 114;4; -0.251338,-0.646487, 0.251338,-0.646487;;, + 115;4; -0.283247,-0.617183, 0.283247,-0.617183;;, + 116;4; -0.326335,-0.577654, 0.326335,-0.577654;;, + 117;4; -0.377964,-0.530352, 0.377964,-0.530352;;, + 118;4; -0.434283,-0.478850, 0.434283,-0.478850;;, + 119;4; -0.490670,-0.427420, 0.490670,-0.427420;;, + 120;4; -0.542496,-0.380332, 0.542496,-0.380332;;, + 121;4; -0.585897,-0.341144, 0.585897,-0.341144;;, + 122;4; -0.618218,-0.312288, 0.618218,-0.312288;;, + 123;4; -0.638054,-0.295043, 0.638054,-0.295043;;, + 124;4; -0.645014,-0.289754, 0.645014,-0.289754;;, + 125;4; -0.635188,-0.304482, 0.635188,-0.304482;;, + 126;4; -0.605463,-0.346110, 0.605463,-0.346110;;, + 127;4; -0.562409,-0.405604, 0.562409,-0.405604;;, + 128;4; -0.519210,-0.464968, 0.519210,-0.464968;;, + 129;4; -0.489096,-0.506226, 0.489096,-0.506226;;, + 130;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 131;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 132;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 133;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 134;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 136;4; -0.423044,-0.562297, 0.423044,-0.562297;;, + 137;4; -0.367362,-0.604190, 0.367362,-0.604190;;, + 138;4; -0.367425,-0.604203, 0.367425,-0.604203;;, + 139;4; -0.367732,-0.604136, 0.367732,-0.604136;;, + 140;4; -0.368467,-0.603827, 0.368467,-0.603826;;, + 141;4; -0.369808,-0.603107, 0.369808,-0.603107;;, + 142;4; -0.371920,-0.601824, 0.371920,-0.601824;;, + 143;4; -0.374937,-0.599842, 0.374937,-0.599842;;, + 144;4; -0.378962,-0.597057, 0.378962,-0.597057;;, + 145;4; -0.384059,-0.593396, 0.384059,-0.593396;;, + 146;4; -0.390257,-0.588817, 0.390257,-0.588817;;, + 147;4; -0.397555,-0.583306, 0.397556,-0.583306;;, + 148;4; -0.405929,-0.576873, 0.405929,-0.576872;;, + 149;4; -0.415336,-0.569543, 0.415336,-0.569543;;, + 150;4; -0.440564,-0.548042, 0.440564,-0.548042;;, + 151;4; -0.480982,-0.513021, 0.480982,-0.513021;;, + 152;4; -0.499219,-0.498090, 0.499219,-0.498090;;, + 153;4; -0.494667,-0.503910, 0.494667,-0.503910;;, + 154;4; -0.483869,-0.515211, 0.483869,-0.515211;;, + 155;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga2} + AnimationKey { //Position + 2; + 156; + 0;3; -0.648382, 3.072911,-0.875938;;, + 1;3; -0.648382, 3.072911,-0.875938;;, + 2;3; -0.648382, 3.072911,-0.875938;;, + 3;3; -0.648382, 3.072911,-0.875938;;, + 4;3; -0.648382, 3.072911,-0.875938;;, + 5;3; -0.648382, 3.072911,-0.875938;;, + 6;3; -0.648382, 3.072911,-0.875938;;, + 7;3; -0.648382, 3.072911,-0.875938;;, + 8;3; -0.648382, 3.072911,-0.875938;;, + 9;3; -0.648382, 3.072911,-0.875938;;, + 10;3; -0.648382, 3.072911,-0.875938;;, + 11;3; -0.648382, 3.072911,-0.875938;;, + 12;3; -0.648382, 3.072911,-0.875938;;, + 13;3; -0.648382, 3.072911,-0.875938;;, + 14;3; -0.648382, 3.072911,-0.875938;;, + 15;3; -0.648382, 3.072911,-0.875938;;, + 16;3; -0.648382, 3.072911,-0.875938;;, + 17;3; -0.648382, 3.072911,-0.875938;;, + 18;3; -0.648382, 3.072911,-0.875938;;, + 19;3; -0.648382, 3.072911,-0.875938;;, + 20;3; -0.648382, 3.072911,-0.875938;;, + 21;3; -0.648382, 3.072911,-0.875938;;, + 22;3; -0.648382, 3.072911,-0.875938;;, + 23;3; -0.648382, 3.072911,-0.875938;;, + 24;3; -0.648382, 3.072911,-0.875938;;, + 25;3; -0.648382, 3.072911,-0.875938;;, + 26;3; -0.648382, 3.072911,-0.875938;;, + 27;3; -0.648382, 3.072911,-0.875938;;, + 28;3; -0.648382, 3.072911,-0.875938;;, + 29;3; -0.648382, 3.072911,-0.875938;;, + 30;3; -0.648382, 3.072911,-0.875938;;, + 31;3; -0.648382, 3.072911,-0.875938;;, + 32;3; -0.648382, 3.072911,-0.875938;;, + 33;3; -0.648382, 3.072911,-0.875938;;, + 34;3; -0.648382, 3.072911,-0.875938;;, + 35;3; -0.648382, 3.072911,-0.875938;;, + 36;3; -0.648382, 3.072911,-0.875938;;, + 37;3; -0.648382, 3.072911,-0.875938;;, + 38;3; -0.648382, 3.072911,-0.875938;;, + 39;3; -0.648382, 3.072911,-0.875938;;, + 40;3; -0.648382, 3.072911,-0.875938;;, + 41;3; -0.648382, 3.072911,-0.875938;;, + 42;3; -0.648382, 3.072911,-0.875938;;, + 43;3; -0.648382, 3.072911,-0.875938;;, + 44;3; -0.648382, 3.072911,-0.875938;;, + 45;3; -0.648382, 3.072911,-0.875938;;, + 46;3; -0.648382, 3.072911,-0.875938;;, + 47;3; -0.648382, 3.072911,-0.875938;;, + 48;3; -0.648382, 3.072911,-0.875938;;, + 49;3; -0.648382, 3.072911,-0.875938;;, + 50;3; -0.648382, 3.072911,-0.875938;;, + 51;3; -0.648382, 3.072911,-0.875938;;, + 52;3; -0.648382, 3.072911,-0.875938;;, + 53;3; -0.648382, 3.072911,-0.875938;;, + 54;3; -0.648382, 3.072911,-0.875938;;, + 55;3; -0.648382, 3.072911,-0.875938;;, + 56;3; -0.648382, 3.072911,-0.875938;;, + 57;3; -0.648382, 3.072911,-0.875938;;, + 58;3; -0.648382, 3.072911,-0.875938;;, + 59;3; -0.648382, 3.072911,-0.875938;;, + 60;3; -0.648382, 3.072911,-0.875938;;, + 61;3; -0.648382, 3.072911,-0.875938;;, + 62;3; -0.648382, 3.072911,-0.875938;;, + 63;3; -0.648382, 3.072911,-0.875938;;, + 64;3; -0.648382, 3.072911,-0.875938;;, + 65;3; -0.648382, 3.072911,-0.875938;;, + 66;3; -0.648382, 3.072911,-0.875938;;, + 67;3; -0.648382, 3.072911,-0.875938;;, + 68;3; -0.648382, 3.072911,-0.875938;;, + 69;3; -0.648382, 3.072911,-0.875938;;, + 70;3; -0.648382, 3.072911,-0.875938;;, + 71;3; -0.648382, 3.072911,-0.875938;;, + 72;3; -0.648382, 3.072911,-0.875938;;, + 73;3; -0.648382, 3.072911,-0.875938;;, + 74;3; -0.648382, 3.072911,-0.875938;;, + 75;3; -0.648382, 3.072911,-0.875938;;, + 76;3; -0.648382, 3.072911,-0.875938;;, + 77;3; -0.648382, 3.072911,-0.875938;;, + 78;3; -0.648382, 3.072911,-0.875938;;, + 79;3; -0.648382, 3.072911,-0.875938;;, + 80;3; -0.648382, 3.072911,-0.875938;;, + 81;3; -0.648382, 3.072911,-0.875938;;, + 82;3; -0.648382, 3.072911,-0.875938;;, + 83;3; -0.648382, 3.072911,-0.875938;;, + 84;3; -0.648382, 3.072911,-0.875938;;, + 85;3; -0.648382, 3.072911,-0.875938;;, + 86;3; -0.648382, 3.072911,-0.875938;;, + 87;3; -0.648382, 3.072911,-0.875938;;, + 88;3; -0.648382, 3.072911,-0.875938;;, + 89;3; -0.648382, 3.072911,-0.875938;;, + 90;3; -0.648382, 3.072911,-0.875938;;, + 91;3; -0.648382, 3.072911,-0.875938;;, + 92;3; -0.648382, 3.072911,-0.875938;;, + 93;3; -0.648382, 3.072911,-0.875938;;, + 94;3; -0.648382, 3.072911,-0.875938;;, + 95;3; -0.648382, 3.072911,-0.875938;;, + 96;3; -0.648382, 3.072911,-0.875938;;, + 97;3; -0.648382, 3.072911,-0.875938;;, + 98;3; -0.648382, 3.072911,-0.875938;;, + 99;3; -0.648382, 3.072911,-0.875938;;, + 100;3; -0.648382, 3.072911,-0.875938;;, + 101;3; -0.648382, 3.072911,-0.875938;;, + 102;3; -0.648382, 3.072911,-0.875938;;, + 103;3; -0.648382, 3.072911,-0.875938;;, + 104;3; -0.648382, 3.072911,-0.875938;;, + 105;3; -0.648382, 3.072911,-0.875938;;, + 106;3; -0.648382, 3.072911,-0.875938;;, + 107;3; -0.648382, 3.072911,-0.875938;;, + 108;3; -0.648382, 3.072911,-0.875938;;, + 109;3; -0.648382, 3.072911,-0.875938;;, + 110;3; -0.648382, 3.072911,-0.875938;;, + 111;3; -0.648382, 3.072911,-0.875938;;, + 112;3; -0.648382, 3.072911,-0.875938;;, + 113;3; -0.648382, 3.072911,-0.875938;;, + 114;3; -0.648382, 3.072911,-0.875938;;, + 115;3; -0.648382, 3.072911,-0.875938;;, + 116;3; -0.648382, 3.072911,-0.875938;;, + 117;3; -0.648382, 3.072911,-0.875938;;, + 118;3; -0.648382, 3.072911,-0.875938;;, + 119;3; -0.648382, 3.072911,-0.875938;;, + 120;3; -0.648382, 3.072911,-0.875938;;, + 121;3; -0.648382, 3.072911,-0.875938;;, + 122;3; -0.648382, 3.072911,-0.875938;;, + 123;3; -0.648382, 3.072911,-0.875938;;, + 124;3; -0.648382, 3.072911,-0.875938;;, + 125;3; -0.648382, 3.072911,-0.875938;;, + 126;3; -0.648382, 3.072911,-0.875938;;, + 127;3; -0.648382, 3.072911,-0.875938;;, + 128;3; -0.648382, 3.072911,-0.875938;;, + 129;3; -0.648382, 3.072911,-0.875938;;, + 130;3; -0.648382, 3.072911,-0.875938;;, + 131;3; -0.648382, 3.072911,-0.875938;;, + 132;3; -0.648382, 3.072911,-0.875938;;, + 133;3; -0.648382, 3.072911,-0.875938;;, + 134;3; -0.648382, 3.072911,-0.875938;;, + 135;3; -0.648382, 3.072911,-0.875938;;, + 136;3; -0.648382, 3.072911,-0.875938;;, + 137;3; -0.648382, 3.072911,-0.875938;;, + 138;3; -0.648382, 3.072911,-0.875938;;, + 139;3; -0.648382, 3.072911,-0.875938;;, + 140;3; -0.648382, 3.072911,-0.875938;;, + 141;3; -0.648382, 3.072911,-0.875938;;, + 142;3; -0.648382, 3.072911,-0.875938;;, + 143;3; -0.648382, 3.072911,-0.875938;;, + 144;3; -0.648382, 3.072911,-0.875938;;, + 145;3; -0.648382, 3.072911,-0.875938;;, + 146;3; -0.648382, 3.072911,-0.875938;;, + 147;3; -0.648382, 3.072911,-0.875938;;, + 148;3; -0.648382, 3.072911,-0.875938;;, + 149;3; -0.648382, 3.072911,-0.875938;;, + 150;3; -0.648382, 3.072911,-0.875938;;, + 151;3; -0.648382, 3.072911,-0.875938;;, + 152;3; -0.648382, 3.072911,-0.875938;;, + 153;3; -0.648382, 3.072911,-0.875938;;, + 154;3; -0.648382, 3.072911,-0.875938;;, + 155;3; -0.648382, 3.072911,-0.875938;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 37;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 38;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 39;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 40;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 41;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 42;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 43;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 44;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 45;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 46;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 47;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 48;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 49;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 50;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 51;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 52;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 53;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 54;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 55;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 56;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 57;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 58;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 59;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 60;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 61;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 62;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 63;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 64;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.474286,-0.523982, 0.474286,-0.523982;;, + 78;4; -0.461337,-0.534416, 0.461337,-0.534416;;, + 79;4; -0.442723,-0.549415, 0.442723,-0.549415;;, + 80;4; -0.424110,-0.564414, 0.424110,-0.564414;;, + 81;4; -0.411163,-0.574847, 0.411163,-0.574847;;, + 82;4; -0.406714,-0.578432, 0.406714,-0.578432;;, + 83;4; -0.408802,-0.576511, 0.408802,-0.576511;;, + 84;4; -0.415106,-0.570712, 0.415106,-0.570712;;, + 85;4; -0.425500,-0.561150, 0.425500,-0.561150;;, + 86;4; -0.439529,-0.548244, 0.439529,-0.548244;;, + 87;4; -0.456329,-0.532789, 0.456329,-0.532789;;, + 88;4; -0.474639,-0.515945, 0.474639,-0.515945;;, + 89;4; -0.492950,-0.499100, 0.492950,-0.499100;;, + 90;4; -0.509750,-0.483645, 0.509750,-0.483645;;, + 91;4; -0.523779,-0.470739, 0.523779,-0.470739;;, + 92;4; -0.534173,-0.461177, 0.534173,-0.461177;;, + 93;4; -0.540477,-0.455378, 0.540477,-0.455378;;, + 94;4; -0.542565,-0.453457, 0.542565,-0.453457;;, + 95;4; -0.538622,-0.457592, 0.538622,-0.457592;;, + 96;4; -0.527147,-0.469626, 0.527147,-0.469626;;, + 97;4; -0.510651,-0.486926, 0.510651,-0.486926;;, + 98;4; -0.494154,-0.504227, 0.494154,-0.504227;;, + 99;4; -0.482678,-0.516262, 0.482678,-0.516262;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 107;4; -0.459849,-0.531450, 0.459849,-0.531450;;, + 108;4; -0.404704,-0.563369, 0.404704,-0.563369;;, + 109;4; -0.324936,-0.608630, 0.324936,-0.608630;;, + 110;4; -0.244150,-0.652732, 0.244150,-0.652732;;, + 111;4; -0.186185,-0.681484, 0.186185,-0.681484;;, + 112;4; -0.163186,-0.688019, 0.163186,-0.688019;;, + 113;4; -0.167199,-0.675519, 0.167199,-0.675519;;, + 114;4; -0.188605,-0.647883, 0.188605,-0.647883;;, + 115;4; -0.226968,-0.605645, 0.226968,-0.605645;;, + 116;4; -0.280509,-0.550553, 0.280509,-0.550553;;, + 117;4; -0.345782,-0.485840, 0.345782,-0.485840;;, + 118;4; -0.417713,-0.416166, 0.417713,-0.416166;;, + 119;4; -0.490176,-0.347070, 0.490176,-0.347070;;, + 120;4; -0.557006,-0.284050, 0.557006,-0.284050;;, + 121;4; -0.613026,-0.231653, 0.613026,-0.231653;;, + 122;4; -0.654651,-0.192961, 0.654651,-0.192961;;, + 123;4; -0.679949,-0.169555, 0.679949,-0.169555;;, + 124;4; -0.688343,-0.161817, 0.688343,-0.161817;;, + 125;4; -0.675400,-0.183963, 0.675400,-0.183963;;, + 126;4; -0.637747,-0.248401, 0.637747,-0.248401;;, + 127;4; -0.583614,-0.341036, 0.583614,-0.341036;;, + 128;4; -0.529441,-0.433709, 0.529441,-0.433709;;, + 129;4; -0.491712,-0.498218, 0.491712,-0.498218;;, + 130;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 131;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 132;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 133;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 134;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 136;4; -0.536290,-0.452136, 0.536290,-0.452136;;, + 137;4; -0.593818,-0.383901, 0.593818,-0.383901;;, + 138;4; -0.592025,-0.386049, 0.592025,-0.386049;;, + 139;4; -0.586989,-0.392082, 0.586989,-0.392082;;, + 140;4; -0.579326,-0.401264, 0.579326,-0.401264;;, + 141;4; -0.569759,-0.412729, 0.569759,-0.412729;;, + 142;4; -0.559069,-0.425541, 0.559069,-0.425541;;, + 143;4; -0.548041,-0.438760, 0.548041,-0.438760;;, + 144;4; -0.537411,-0.451504, 0.537411,-0.451504;;, + 145;4; -0.527823,-0.462997, 0.527823,-0.462997;;, + 146;4; -0.519810,-0.472602, 0.519810,-0.472602;;, + 147;4; -0.513782,-0.479828, 0.513782,-0.479828;;, + 148;4; -0.510034,-0.484321, 0.510034,-0.484321;;, + 149;4; -0.508756,-0.485852, 0.508756,-0.485852;;, + 150;4; -0.520938,-0.472488, 0.520938,-0.472488;;, + 151;4; -0.547004,-0.443890, 0.547004,-0.443890;;, + 152;4; -0.559186,-0.430525, 0.559186,-0.430525;;, + 153;4; -0.539768,-0.452220, 0.539768,-0.452220;;, + 154;4; -0.498201,-0.498658, 0.498201,-0.498657;;, + 155;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_hvost} + AnimationKey { //Position + 2; + 156; + 0;3; 0.000000,-0.295864,-0.017687;;, + 1;3; 0.000000,-0.295864,-0.017687;;, + 2;3; 0.000000,-0.295864,-0.017687;;, + 3;3; 0.000000,-0.295864,-0.017687;;, + 4;3; 0.000000,-0.295864,-0.017687;;, + 5;3; 0.000000,-0.295864,-0.017687;;, + 6;3; 0.000000,-0.295864,-0.017687;;, + 7;3; 0.000000,-0.295864,-0.017687;;, + 8;3; 0.000000,-0.295864,-0.017687;;, + 9;3; 0.000000,-0.295864,-0.017687;;, + 10;3; 0.000000,-0.295864,-0.017687;;, + 11;3; 0.000000,-0.295864,-0.017687;;, + 12;3; 0.000000,-0.295864,-0.017687;;, + 13;3; 0.000000,-0.295864,-0.017687;;, + 14;3; 0.000000,-0.295864,-0.017687;;, + 15;3; 0.000000,-0.295864,-0.017687;;, + 16;3; 0.000000,-0.295864,-0.017687;;, + 17;3; 0.000000,-0.295864,-0.017687;;, + 18;3; 0.000000,-0.295864,-0.017687;;, + 19;3; 0.000000,-0.295864,-0.017687;;, + 20;3; 0.000000,-0.295864,-0.017687;;, + 21;3; 0.000000,-0.295864,-0.017687;;, + 22;3; 0.000000,-0.295864,-0.017687;;, + 23;3; 0.000000,-0.295864,-0.017687;;, + 24;3; 0.000000,-0.295864,-0.017687;;, + 25;3; 0.000000,-0.295864,-0.017687;;, + 26;3; 0.000000,-0.295864,-0.017687;;, + 27;3; 0.000000,-0.295864,-0.017687;;, + 28;3; 0.000000,-0.295864,-0.017687;;, + 29;3; 0.000000,-0.295864,-0.017687;;, + 30;3; 0.000000,-0.295864,-0.017687;;, + 31;3; 0.000000,-0.295864,-0.017687;;, + 32;3; 0.000000,-0.295864,-0.017687;;, + 33;3; 0.000000,-0.295864,-0.017687;;, + 34;3; 0.000000,-0.295864,-0.017687;;, + 35;3; 0.000000,-0.295864,-0.017687;;, + 36;3; 0.000000,-0.295864,-0.017687;;, + 37;3; 0.000000,-0.295864,-0.017687;;, + 38;3; 0.000000,-0.295864,-0.017687;;, + 39;3; 0.000000,-0.295864,-0.017687;;, + 40;3; 0.000000,-0.295864,-0.017687;;, + 41;3; 0.000000,-0.295864,-0.017687;;, + 42;3; 0.000000,-0.295864,-0.017687;;, + 43;3; 0.000000,-0.295864,-0.017687;;, + 44;3; 0.000000,-0.295864,-0.017687;;, + 45;3; 0.000000,-0.295864,-0.017687;;, + 46;3; 0.000000,-0.295864,-0.017687;;, + 47;3; 0.000000,-0.295864,-0.017687;;, + 48;3; 0.000000,-0.295864,-0.017687;;, + 49;3; 0.000000,-0.295864,-0.017687;;, + 50;3; 0.000000,-0.295864,-0.017687;;, + 51;3; 0.000000,-0.295864,-0.017687;;, + 52;3; 0.000000,-0.295864,-0.017687;;, + 53;3; 0.000000,-0.295864,-0.017687;;, + 54;3; 0.000000,-0.295864,-0.017687;;, + 55;3; 0.000000,-0.295864,-0.017687;;, + 56;3; 0.000000,-0.295864,-0.017687;;, + 57;3; 0.000000,-0.295864,-0.017687;;, + 58;3; 0.000000,-0.295864,-0.017687;;, + 59;3; 0.000000,-0.295864,-0.017687;;, + 60;3; 0.000000,-0.295864,-0.017687;;, + 61;3; 0.000000,-0.295864,-0.017687;;, + 62;3; 0.000000,-0.295864,-0.017687;;, + 63;3; 0.000000,-0.295864,-0.017687;;, + 64;3; 0.000000,-0.295864,-0.017687;;, + 65;3; 0.000000,-0.295864,-0.017687;;, + 66;3; 0.000000,-0.295864,-0.017687;;, + 67;3; 0.000000,-0.295864,-0.017687;;, + 68;3; 0.000000,-0.295864,-0.017687;;, + 69;3; 0.000000,-0.295864,-0.017687;;, + 70;3; 0.000000,-0.295864,-0.017687;;, + 71;3; 0.000000,-0.295864,-0.017687;;, + 72;3; 0.000000,-0.295864,-0.017687;;, + 73;3; 0.000000,-0.295864,-0.017687;;, + 74;3; 0.000000,-0.295864,-0.017687;;, + 75;3; 0.000000,-0.295864,-0.017687;;, + 76;3; 0.000000,-0.295864,-0.017687;;, + 77;3; 0.000000,-0.295864,-0.017687;;, + 78;3; 0.000000,-0.295864,-0.017687;;, + 79;3; 0.000000,-0.295864,-0.017687;;, + 80;3; 0.000000,-0.295864,-0.017687;;, + 81;3; 0.000000,-0.295864,-0.017687;;, + 82;3; 0.000000,-0.295864,-0.017687;;, + 83;3; 0.000000,-0.295864,-0.017687;;, + 84;3; 0.000000,-0.295864,-0.017687;;, + 85;3; 0.000000,-0.295864,-0.017687;;, + 86;3; 0.000000,-0.295864,-0.017687;;, + 87;3; 0.000000,-0.295864,-0.017687;;, + 88;3; 0.000000,-0.295864,-0.017687;;, + 89;3; 0.000000,-0.295864,-0.017687;;, + 90;3; 0.000000,-0.295864,-0.017687;;, + 91;3; 0.000000,-0.295864,-0.017687;;, + 92;3; 0.000000,-0.295864,-0.017687;;, + 93;3; 0.000000,-0.295864,-0.017687;;, + 94;3; 0.000000,-0.295864,-0.017687;;, + 95;3; 0.000000,-0.295864,-0.017687;;, + 96;3; 0.000000,-0.295864,-0.017687;;, + 97;3; 0.000000,-0.295864,-0.017687;;, + 98;3; 0.000000,-0.295864,-0.017687;;, + 99;3; 0.000000,-0.295864,-0.017687;;, + 100;3; 0.000000,-0.295864,-0.017687;;, + 101;3; 0.000000,-0.295864,-0.017687;;, + 102;3; 0.000000,-0.295864,-0.017687;;, + 103;3; 0.000000,-0.295864,-0.017687;;, + 104;3; 0.000000,-0.295864,-0.017687;;, + 105;3; 0.000000,-0.295864,-0.017687;;, + 106;3; 0.000000,-0.295864,-0.017687;;, + 107;3; 0.000000,-0.295864,-0.017687;;, + 108;3; 0.000000,-0.295864,-0.017687;;, + 109;3; 0.000000,-0.295864,-0.017687;;, + 110;3; 0.000000,-0.295864,-0.017687;;, + 111;3; 0.000000,-0.295864,-0.017687;;, + 112;3; 0.000000,-0.295864,-0.017687;;, + 113;3; 0.000000,-0.295864,-0.017687;;, + 114;3; 0.000000,-0.295864,-0.017687;;, + 115;3; 0.000000,-0.295864,-0.017687;;, + 116;3; 0.000000,-0.295864,-0.017687;;, + 117;3; 0.000000,-0.295864,-0.017687;;, + 118;3; 0.000000,-0.295864,-0.017687;;, + 119;3; 0.000000,-0.295864,-0.017687;;, + 120;3; 0.000000,-0.295864,-0.017687;;, + 121;3; 0.000000,-0.295864,-0.017687;;, + 122;3; 0.000000,-0.295864,-0.017687;;, + 123;3; 0.000000,-0.295864,-0.017687;;, + 124;3; 0.000000,-0.295864,-0.017687;;, + 125;3; 0.000000,-0.295864,-0.017687;;, + 126;3; 0.000000,-0.295864,-0.017687;;, + 127;3; 0.000000,-0.295864,-0.017687;;, + 128;3; 0.000000,-0.295864,-0.017687;;, + 129;3; 0.000000,-0.295864,-0.017687;;, + 130;3; 0.000000,-0.295864,-0.017687;;, + 131;3; 0.000000,-0.295864,-0.017687;;, + 132;3; 0.000000,-0.295864,-0.017687;;, + 133;3; 0.000000,-0.295864,-0.017687;;, + 134;3; 0.000000,-0.295864,-0.017687;;, + 135;3; 0.000000,-0.295864,-0.017687;;, + 136;3; 0.000000,-0.295864,-0.017687;;, + 137;3; 0.000000,-0.295864,-0.017687;;, + 138;3; 0.000000,-0.295864,-0.017687;;, + 139;3; 0.000000,-0.295864,-0.017687;;, + 140;3; 0.000000,-0.295864,-0.017687;;, + 141;3; 0.000000,-0.295864,-0.017687;;, + 142;3; 0.000000,-0.295864,-0.017687;;, + 143;3; 0.000000,-0.295864,-0.017687;;, + 144;3; 0.000000,-0.295864,-0.017687;;, + 145;3; 0.000000,-0.295864,-0.017687;;, + 146;3; 0.000000,-0.295864,-0.017687;;, + 147;3; 0.000000,-0.295864,-0.017687;;, + 148;3; 0.000000,-0.295864,-0.017687;;, + 149;3; 0.000000,-0.295864,-0.017687;;, + 150;3; 0.000000,-0.295864,-0.017687;;, + 151;3; 0.000000,-0.295864,-0.017687;;, + 152;3; 0.000000,-0.295864,-0.017687;;, + 153;3; 0.000000,-0.295864,-0.017687;;, + 154;3; 0.000000,-0.295864,-0.017687;;, + 155;3; 0.000000,-0.295864,-0.017687;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 1;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 2;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 3;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 4;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 5;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 6;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 7;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 8;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 9;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 10;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 11;4; -0.487739,-0.870622, 0.021531, 0.023041;;, + 12;4; -0.485578,-0.866764, 0.067591, 0.072336;;, + 13;4; -0.484568,-0.864961, 0.089115, 0.095371;;, + 14;4; -0.484568,-0.864961, 0.078105, 0.083589;;, + 15;4; -0.484568,-0.864961, 0.046063, 0.049297;;, + 16;4; -0.484568,-0.864961, 0.000000, 0.000000;;, + 17;4; -0.484568,-0.864961,-0.046062,-0.049296;;, + 18;4; -0.484568,-0.864961,-0.078105,-0.083588;;, + 19;4; -0.484568,-0.864961,-0.089115,-0.095371;;, + 20;4; -0.485505,-0.866634,-0.063411,-0.066145;;, + 21;4; -0.487527,-0.870243,-0.008405,-0.003602;;, + 22;4; -0.488515,-0.872007, 0.017311, 0.025632;;, + 23;4; -0.488578,-0.872119, 0.016836, 0.024930;;, + 24;4; -0.488632,-0.872216, 0.015413, 0.022823;;, + 25;4; -0.488675,-0.872293, 0.013128, 0.019440;;, + 26;4; -0.488708,-0.872351, 0.010222, 0.015137;;, + 27;4; -0.488729,-0.872389, 0.007087, 0.010495;;, + 28;4; -0.488741,-0.872411, 0.004182, 0.006192;;, + 29;4; -0.488747,-0.872421, 0.001897, 0.002809;;, + 30;4; -0.488749,-0.872424, 0.000474, 0.000702;;, + 31;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 32;4; -0.487739,-0.870622, 0.021530, 0.023040;;, + 33;4; -0.485578,-0.866764, 0.067591, 0.072335;;, + 34;4; -0.484568,-0.864961, 0.089115, 0.095371;;, + 35;4; -0.484568,-0.864961, 0.078105, 0.083589;;, + 36;4; -0.484568,-0.864961, 0.046063, 0.049297;;, + 37;4; -0.484568,-0.864961,-0.000000, 0.000000;;, + 38;4; -0.484568,-0.864961,-0.046063,-0.049297;;, + 39;4; -0.484568,-0.864961,-0.078105,-0.083589;;, + 40;4; -0.484568,-0.864961,-0.089115,-0.095371;;, + 41;4; -0.485578,-0.866764,-0.067592,-0.072335;;, + 42;4; -0.487739,-0.870622,-0.021532,-0.023040;;, + 43;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 44;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 45;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 46;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 47;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 48;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 49;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 50;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 51;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 52;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 53;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 54;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 55;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 56;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 57;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 58;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 59;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 60;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 61;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 62;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 63;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 64;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 65;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 66;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 67;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 68;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 69;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 70;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 71;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 72;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 73;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 74;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 75;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 76;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 77;4; -0.475808,-0.877594,-0.000049,-0.000523;;, + 78;4; -0.436940,-0.893029,-0.000173,-0.002149;;, + 79;4; -0.377893,-0.916244,-0.000300,-0.004762;;, + 80;4; -0.312673,-0.941466,-0.000330,-0.007910;;, + 81;4; -0.256835,-0.962415,-0.000187,-0.011003;;, + 82;4; -0.219444,-0.975530, 0.000150,-0.013640;;, + 83;4; -0.193318,-0.983639, 0.000681,-0.016160;;, + 84;4; -0.169382,-0.990265, 0.001418,-0.019016;;, + 85;4; -0.148030,-0.995304, 0.002349,-0.022159;;, + 86;4; -0.129628,-0.998721, 0.003440,-0.025501;;, + 87;4; -0.114440,-1.000587, 0.004639,-0.028910;;, + 88;4; -0.102546,-1.001108, 0.005873,-0.032223;;, + 89;4; -0.093793,-1.000608, 0.007057,-0.035264;;, + 90;4; -0.087804,-0.999487, 0.008111,-0.037878;;, + 91;4; -0.084054,-0.998144, 0.008972,-0.039952;;, + 92;4; -0.081975,-0.996922, 0.009598,-0.041429;;, + 93;4; -0.081039,-0.996075, 0.009973,-0.042296;;, + 94;4; -0.080808,-0.995769, 0.010096,-0.042576;;, + 95;4; -0.106019,-0.988144, 0.009473,-0.039946;;, + 96;4; -0.179360,-0.965968, 0.007657,-0.032292;;, + 97;4; -0.284763,-0.934105, 0.005048,-0.021288;;, + 98;4; -0.390175,-0.902238, 0.002439,-0.010284;;, + 99;4; -0.463531,-0.880054, 0.000624,-0.002630;;, + 100;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 101;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 102;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 103;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 104;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 105;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 106;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 107;4; -0.475808,-0.877594,-0.000049,-0.000523;;, + 108;4; -0.436940,-0.893029,-0.000173,-0.002149;;, + 109;4; -0.377893,-0.916244,-0.000300,-0.004762;;, + 110;4; -0.312673,-0.941466,-0.000330,-0.007910;;, + 111;4; -0.256835,-0.962415,-0.000187,-0.011003;;, + 112;4; -0.219444,-0.975530, 0.000150,-0.013640;;, + 113;4; -0.193318,-0.983639, 0.000681,-0.016160;;, + 114;4; -0.169382,-0.990265, 0.001418,-0.019016;;, + 115;4; -0.148030,-0.995304, 0.002349,-0.022159;;, + 116;4; -0.129628,-0.998721, 0.003440,-0.025501;;, + 117;4; -0.114440,-1.000587, 0.004639,-0.028910;;, + 118;4; -0.102546,-1.001108, 0.005873,-0.032223;;, + 119;4; -0.093793,-1.000608, 0.007057,-0.035264;;, + 120;4; -0.087804,-0.999487, 0.008111,-0.037878;;, + 121;4; -0.084054,-0.998144, 0.008972,-0.039952;;, + 122;4; -0.081975,-0.996922, 0.009598,-0.041429;;, + 123;4; -0.081039,-0.996075, 0.009973,-0.042296;;, + 124;4; -0.080808,-0.995769, 0.010096,-0.042576;;, + 125;4; -0.106019,-0.988144, 0.009473,-0.039946;;, + 126;4; -0.179360,-0.965968, 0.007657,-0.032292;;, + 127;4; -0.284763,-0.934105, 0.005048,-0.021288;;, + 128;4; -0.390175,-0.902238, 0.002439,-0.010284;;, + 129;4; -0.463531,-0.880054, 0.000624,-0.002630;;, + 130;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 131;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 132;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 133;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 134;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 135;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 136;4; -0.069762,-0.905220,-0.000000, 0.000000;;, + 137;4; 0.348011,-0.937491, 0.000000, 0.000000;;, + 138;4; 0.332428,-0.936184, 0.000000, 0.000000;;, + 139;4; 0.294691,-0.933103, 0.000000, 0.000000;;, + 140;4; 0.243447,-0.929002, 0.000000, 0.000000;;, + 141;4; 0.183838,-0.924297, 0.000000, 0.000000;;, + 142;4; 0.119262,-0.919250, 0.000000, 0.000000;;, + 143;4; 0.052141,-0.914041, 0.000000, 0.000000;;, + 144;4; -0.015689,-0.908803,-0.000000, 0.000000;;, + 145;4; -0.082761,-0.903642,-0.000000, 0.000000;;, + 146;4; -0.147851,-0.898644,-0.000000, 0.000000;;, + 147;4; -0.209896,-0.893885,-0.000000, 0.000000;;, + 148;4; -0.267935,-0.889435,-0.000000, 0.000000;;, + 149;4; -0.321076,-0.885358,-0.000000, 0.000000;;, + 150;4; -0.368460,-0.881718,-0.000000, 0.000000;;, + 151;4; -0.409240,-0.878580,-0.000000, 0.000000;;, + 152;4; -0.442564,-0.876008,-0.000000, 0.000000;;, + 153;4; -0.467550,-0.874074,-0.000000, 0.000000;;, + 154;4; -0.483275,-0.872852,-0.000000, 0.000000;;, + 155;4; -0.488749,-0.872425,-0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_sheya} + AnimationKey { //Position + 2; + 156; + 0;3; 0.000000, 3.260104, 0.242284;;, + 1;3; 0.000000, 3.260104, 0.242284;;, + 2;3; 0.000000, 3.260104, 0.242284;;, + 3;3; 0.000000, 3.260104, 0.242284;;, + 4;3; 0.000000, 3.260104, 0.242284;;, + 5;3; 0.000000, 3.260104, 0.242284;;, + 6;3; 0.000000, 3.260104, 0.242284;;, + 7;3; 0.000000, 3.260104, 0.242284;;, + 8;3; 0.000000, 3.260104, 0.242284;;, + 9;3; 0.000000, 3.260104, 0.242284;;, + 10;3; 0.000000, 3.260104, 0.242284;;, + 11;3; 0.000000, 3.260104, 0.242284;;, + 12;3; 0.000000, 3.260104, 0.242284;;, + 13;3; 0.000000, 3.260104, 0.242284;;, + 14;3; 0.000000, 3.260104, 0.242284;;, + 15;3; 0.000000, 3.260104, 0.242284;;, + 16;3; 0.000000, 3.260104, 0.242284;;, + 17;3; 0.000000, 3.260104, 0.242284;;, + 18;3; 0.000000, 3.260104, 0.242284;;, + 19;3; 0.000000, 3.260104, 0.242284;;, + 20;3; 0.000000, 3.260104, 0.242284;;, + 21;3; 0.000000, 3.260104, 0.242284;;, + 22;3; 0.000000, 3.260104, 0.242284;;, + 23;3; 0.000000, 3.260104, 0.242284;;, + 24;3; 0.000000, 3.260104, 0.242284;;, + 25;3; 0.000000, 3.260104, 0.242284;;, + 26;3; 0.000000, 3.260104, 0.242284;;, + 27;3; 0.000000, 3.260104, 0.242284;;, + 28;3; 0.000000, 3.260104, 0.242284;;, + 29;3; 0.000000, 3.260104, 0.242284;;, + 30;3; 0.000000, 3.260104, 0.242284;;, + 31;3; 0.000000, 3.260104, 0.242284;;, + 32;3; 0.000000, 3.260104, 0.242284;;, + 33;3; 0.000000, 3.260104, 0.242284;;, + 34;3; 0.000000, 3.260104, 0.242284;;, + 35;3; 0.000000, 3.260104, 0.242284;;, + 36;3; 0.000000, 3.260104, 0.242284;;, + 37;3; 0.000000, 3.260104, 0.242284;;, + 38;3; 0.000000, 3.260104, 0.242284;;, + 39;3; 0.000000, 3.260104, 0.242284;;, + 40;3; 0.000000, 3.260104, 0.242284;;, + 41;3; 0.000000, 3.260104, 0.242284;;, + 42;3; 0.000000, 3.260104, 0.242284;;, + 43;3; 0.000000, 3.260104, 0.242284;;, + 44;3; 0.000000, 3.260104, 0.242284;;, + 45;3; 0.000000, 3.260104, 0.242284;;, + 46;3; 0.000000, 3.260104, 0.242284;;, + 47;3; 0.000000, 3.260104, 0.242284;;, + 48;3; 0.000000, 3.260104, 0.242284;;, + 49;3; 0.000000, 3.260104, 0.242284;;, + 50;3; 0.000000, 3.260104, 0.242284;;, + 51;3; 0.000000, 3.260104, 0.242284;;, + 52;3; 0.000000, 3.260104, 0.242284;;, + 53;3; 0.000000, 3.260104, 0.242284;;, + 54;3; 0.000000, 3.260104, 0.242284;;, + 55;3; 0.000000, 3.260104, 0.242284;;, + 56;3; 0.000000, 3.260104, 0.242284;;, + 57;3; 0.000000, 3.260104, 0.242284;;, + 58;3; 0.000000, 3.260104, 0.242284;;, + 59;3; 0.000000, 3.260104, 0.242284;;, + 60;3; 0.000000, 3.260104, 0.242284;;, + 61;3; 0.000000, 3.260104, 0.242284;;, + 62;3; 0.000000, 3.260104, 0.242284;;, + 63;3; 0.000000, 3.260104, 0.242284;;, + 64;3; 0.000000, 3.260104, 0.242284;;, + 65;3; 0.000000, 3.260104, 0.242284;;, + 66;3; 0.000000, 3.260104, 0.242284;;, + 67;3; 0.000000, 3.260104, 0.242284;;, + 68;3; 0.000000, 3.260104, 0.242284;;, + 69;3; 0.000000, 3.260104, 0.242284;;, + 70;3; 0.000000, 3.260104, 0.242284;;, + 71;3; 0.000000, 3.260104, 0.242284;;, + 72;3; 0.000000, 3.260104, 0.242284;;, + 73;3; 0.000000, 3.260104, 0.242284;;, + 74;3; 0.000000, 3.260104, 0.242284;;, + 75;3; 0.000000, 3.260104, 0.242284;;, + 76;3; 0.000000, 3.260104, 0.242284;;, + 77;3; 0.000000, 3.260104, 0.242284;;, + 78;3; 0.000000, 3.260104, 0.242284;;, + 79;3; 0.000000, 3.260104, 0.242284;;, + 80;3; 0.000000, 3.260104, 0.242284;;, + 81;3; 0.000000, 3.260104, 0.242284;;, + 82;3; 0.000000, 3.260104, 0.242284;;, + 83;3; 0.000000, 3.260104, 0.242284;;, + 84;3; 0.000000, 3.260104, 0.242284;;, + 85;3; 0.000000, 3.260104, 0.242284;;, + 86;3; 0.000000, 3.260104, 0.242284;;, + 87;3; 0.000000, 3.260104, 0.242284;;, + 88;3; 0.000000, 3.260104, 0.242284;;, + 89;3; 0.000000, 3.260104, 0.242284;;, + 90;3; 0.000000, 3.260104, 0.242284;;, + 91;3; 0.000000, 3.260104, 0.242284;;, + 92;3; 0.000000, 3.260104, 0.242284;;, + 93;3; 0.000000, 3.260104, 0.242284;;, + 94;3; 0.000000, 3.260104, 0.242284;;, + 95;3; 0.000000, 3.260104, 0.242284;;, + 96;3; 0.000000, 3.260104, 0.242284;;, + 97;3; 0.000000, 3.260104, 0.242284;;, + 98;3; 0.000000, 3.260104, 0.242284;;, + 99;3; 0.000000, 3.260104, 0.242284;;, + 100;3; 0.000000, 3.260104, 0.242284;;, + 101;3; 0.000000, 3.260104, 0.242284;;, + 102;3; 0.000000, 3.260104, 0.242284;;, + 103;3; 0.000000, 3.260104, 0.242284;;, + 104;3; 0.000000, 3.260104, 0.242284;;, + 105;3; 0.000000, 3.260104, 0.242284;;, + 106;3; 0.000000, 3.260104, 0.242284;;, + 107;3; 0.000000, 3.260104, 0.242284;;, + 108;3; 0.000000, 3.260104, 0.242284;;, + 109;3; 0.000000, 3.260104, 0.242284;;, + 110;3; 0.000000, 3.260104, 0.242284;;, + 111;3; 0.000000, 3.260104, 0.242284;;, + 112;3; 0.000000, 3.260104, 0.242284;;, + 113;3; 0.000000, 3.260104, 0.242284;;, + 114;3; 0.000000, 3.260104, 0.242284;;, + 115;3; 0.000000, 3.260104, 0.242284;;, + 116;3; 0.000000, 3.260104, 0.242284;;, + 117;3; 0.000000, 3.260104, 0.242284;;, + 118;3; 0.000000, 3.260104, 0.242284;;, + 119;3; 0.000000, 3.260104, 0.242284;;, + 120;3; 0.000000, 3.260104, 0.242284;;, + 121;3; 0.000000, 3.260104, 0.242284;;, + 122;3; 0.000000, 3.260104, 0.242284;;, + 123;3; 0.000000, 3.260104, 0.242284;;, + 124;3; 0.000000, 3.260104, 0.242284;;, + 125;3; 0.000000, 3.260104, 0.242284;;, + 126;3; 0.000000, 3.260104, 0.242284;;, + 127;3; 0.000000, 3.260104, 0.242284;;, + 128;3; 0.000000, 3.260104, 0.242284;;, + 129;3; 0.000000, 3.260104, 0.242284;;, + 130;3; 0.000000, 3.260104, 0.242284;;, + 131;3; 0.000000, 3.260104, 0.242284;;, + 132;3; 0.000000, 3.260104, 0.242284;;, + 133;3; 0.000000, 3.260104, 0.242284;;, + 134;3; 0.000000, 3.260104, 0.242284;;, + 135;3; 0.000000, 3.260104, 0.242284;;, + 136;3; 0.000000, 3.260104, 0.242284;;, + 137;3; 0.000000, 3.260104, 0.242284;;, + 138;3; 0.000000, 3.260104, 0.242284;;, + 139;3; 0.000000, 3.260104, 0.242284;;, + 140;3; 0.000000, 3.260104, 0.242284;;, + 141;3; 0.000000, 3.260104, 0.242284;;, + 142;3; 0.000000, 3.260104, 0.242284;;, + 143;3; 0.000000, 3.260104, 0.242284;;, + 144;3; 0.000000, 3.260104, 0.242284;;, + 145;3; 0.000000, 3.260104, 0.242284;;, + 146;3; 0.000000, 3.260104, 0.242284;;, + 147;3; 0.000000, 3.260104, 0.242284;;, + 148;3; 0.000000, 3.260104, 0.242284;;, + 149;3; 0.000000, 3.260104, 0.242284;;, + 150;3; 0.000000, 3.260104, 0.242284;;, + 151;3; 0.000000, 3.260104, 0.242284;;, + 152;3; 0.000000, 3.260104, 0.242284;;, + 153;3; 0.000000, 3.260104, 0.242284;;, + 154;3; 0.000000, 3.260104, 0.242284;;, + 155;3; 0.000000, 3.260104, 0.242284;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 1;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 2;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 3;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 4;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 5;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 6;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 7;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 8;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 9;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 10;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 11;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 12;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 13;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 14;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 15;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 16;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 17;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 18;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 19;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 20;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 21;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 22;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 23;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 24;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 25;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 26;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 27;4; -0.994416,-0.057162, 0.003586, 0.037647;;, + 28;4; -0.989056, 0.002484, 0.005794, 0.037102;;, + 29;4; -0.981349, 0.088206, 0.008966, 0.036319;;, + 30;4; -0.973641, 0.173928, 0.012139, 0.035535;;, + 31;4; -0.968281, 0.233575, 0.014346, 0.034991;;, + 32;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 33;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 34;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 35;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 36;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 37;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 38;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 39;4; -0.964339, 0.215537, 0.049348, 0.013417;;, + 40;4; -0.959308, 0.112805, 0.138792,-0.042483;;, + 41;4; -0.955516, 0.004698, 0.228007,-0.098299;;, + 42;4; -0.956542,-0.047448, 0.261727,-0.119483;;, + 43;4; -0.961848,-0.061756, 0.245284,-0.109587;;, + 44;4; -0.970009,-0.071634, 0.198581,-0.081241;;, + 45;4; -0.979672,-0.076820, 0.131773,-0.040622;;, + 46;4; -0.988486,-0.078307, 0.065092,-0.000055;;, + 47;4; -0.994313,-0.078015, 0.018746, 0.028147;;, + 48;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 49;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 50;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 51;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 52;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 53;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 54;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 55;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 56;4; -0.996486,-0.073439, 0.002987, 0.037818;;, + 57;4; -0.997129,-0.061537, 0.003438, 0.037774;;, + 58;4; -0.997954,-0.046256, 0.004016, 0.037717;;, + 59;4; -0.998597,-0.034355, 0.004466, 0.037672;;, + 60;4; -0.998826,-0.030129, 0.004626, 0.037657;;, + 61;4; -0.998798,-0.030648, 0.004606, 0.037659;;, + 62;4; -0.998717,-0.032151, 0.004550, 0.037664;;, + 63;4; -0.998587,-0.034552, 0.004459, 0.037673;;, + 64;4; -0.998414,-0.037754, 0.004338, 0.037685;;, + 65;4; -0.998204,-0.041642, 0.004190, 0.037700;;, + 66;4; -0.997964,-0.046086, 0.004022, 0.037716;;, + 67;4; -0.997702,-0.050936, 0.003839, 0.037734;;, + 68;4; -0.997427,-0.056020, 0.003646, 0.037753;;, + 69;4; -0.997150,-0.061137, 0.003453, 0.037772;;, + 70;4; -0.996885,-0.066057, 0.003267, 0.037791;;, + 71;4; -0.996644,-0.070510, 0.003098, 0.037807;;, + 72;4; -0.996445,-0.074185, 0.002959, 0.037821;;, + 73;4; -0.996309,-0.076713, 0.002863, 0.037831;;, + 74;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 75;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 76;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 77;4; -0.996410,-0.074932, 0.002931, 0.037824;;, + 78;4; -0.996852,-0.066980, 0.003232, 0.037795;;, + 79;4; -0.997489,-0.055549, 0.003664, 0.037753;;, + 80;4; -0.998126,-0.044117, 0.004097, 0.037711;;, + 81;4; -0.998568,-0.036165, 0.004398, 0.037682;;, + 82;4; -0.998721,-0.033433, 0.004502, 0.037672;;, + 83;4; -0.998568,-0.036165, 0.004398, 0.037682;;, + 84;4; -0.998126,-0.044117, 0.004097, 0.037711;;, + 85;4; -0.997489,-0.055549, 0.003664, 0.037753;;, + 86;4; -0.996852,-0.066980, 0.003232, 0.037795;;, + 87;4; -0.996410,-0.074932, 0.002931, 0.037824;;, + 88;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 89;4; -0.996430,-0.074206, 0.002958, 0.037821;;, + 90;4; -0.996931,-0.064141, 0.003339, 0.037781;;, + 91;4; -0.997651,-0.049673, 0.003886, 0.037725;;, + 92;4; -0.998372,-0.035204, 0.004433, 0.037669;;, + 93;4; -0.998873,-0.025139, 0.004814, 0.037630;;, + 94;4; -0.999045,-0.021681, 0.004944, 0.037616;;, + 95;4; -0.998873,-0.025139, 0.004814, 0.037630;;, + 96;4; -0.998372,-0.035204, 0.004433, 0.037669;;, + 97;4; -0.997651,-0.049673, 0.003886, 0.037725;;, + 98;4; -0.996931,-0.064141, 0.003339, 0.037781;;, + 99;4; -0.996430,-0.074206, 0.002958, 0.037821;;, + 100;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 101;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 102;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 103;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 104;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 105;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 106;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 107;4; -0.996410,-0.074932, 0.002931, 0.037824;;, + 108;4; -0.996852,-0.066980, 0.003232, 0.037795;;, + 109;4; -0.997489,-0.055549, 0.003664, 0.037753;;, + 110;4; -0.998126,-0.044117, 0.004097, 0.037711;;, + 111;4; -0.998568,-0.036165, 0.004398, 0.037682;;, + 112;4; -0.998721,-0.033433, 0.004502, 0.037672;;, + 113;4; -0.998568,-0.036165, 0.004398, 0.037682;;, + 114;4; -0.998126,-0.044117, 0.004097, 0.037711;;, + 115;4; -0.997489,-0.055549, 0.003664, 0.037753;;, + 116;4; -0.996852,-0.066980, 0.003232, 0.037795;;, + 117;4; -0.996410,-0.074932, 0.002931, 0.037824;;, + 118;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 119;4; -0.996430,-0.074206, 0.002958, 0.037821;;, + 120;4; -0.996931,-0.064141, 0.003339, 0.037781;;, + 121;4; -0.997651,-0.049673, 0.003886, 0.037725;;, + 122;4; -0.998372,-0.035204, 0.004433, 0.037669;;, + 123;4; -0.998873,-0.025139, 0.004814, 0.037630;;, + 124;4; -0.999045,-0.021681, 0.004944, 0.037616;;, + 125;4; -0.998873,-0.025139, 0.004814, 0.037630;;, + 126;4; -0.998372,-0.035204, 0.004433, 0.037669;;, + 127;4; -0.997651,-0.049673, 0.003886, 0.037725;;, + 128;4; -0.996931,-0.064141, 0.003339, 0.037781;;, + 129;4; -0.996430,-0.074206, 0.002958, 0.037821;;, + 130;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 131;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 132;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 133;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 134;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 135;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 136;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 137;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 138;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 139;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 140;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 141;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 142;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 143;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 144;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 145;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 146;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 147;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 148;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 149;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 150;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 151;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 152;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 153;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 154;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 155;4; -0.996257,-0.077664, 0.002827, 0.037834;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_head} + AnimationKey { //Position + 2; + 156; + 0;3; 0.068728, 0.903770, 0.009841;;, + 1;3; 0.068728, 0.903770, 0.009841;;, + 2;3; 0.068728, 0.903770, 0.009841;;, + 3;3; 0.068728, 0.903770, 0.009841;;, + 4;3; 0.068728, 0.903770, 0.009841;;, + 5;3; 0.068728, 0.903770, 0.009841;;, + 6;3; 0.068728, 0.903770, 0.009841;;, + 7;3; 0.068728, 0.903770, 0.009841;;, + 8;3; 0.068728, 0.903770, 0.009841;;, + 9;3; 0.068728, 0.903770, 0.009841;;, + 10;3; 0.068728, 0.903770, 0.009841;;, + 11;3; 0.068728, 0.903770, 0.009841;;, + 12;3; 0.068728, 0.903770, 0.009841;;, + 13;3; 0.068728, 0.903770, 0.009841;;, + 14;3; 0.068728, 0.903770, 0.009841;;, + 15;3; 0.068728, 0.903770, 0.009841;;, + 16;3; 0.068728, 0.903770, 0.009841;;, + 17;3; 0.068728, 0.903770, 0.009841;;, + 18;3; 0.068728, 0.903770, 0.009841;;, + 19;3; 0.068728, 0.903770, 0.009841;;, + 20;3; 0.068728, 0.903770, 0.009841;;, + 21;3; 0.068728, 0.903770, 0.009841;;, + 22;3; 0.068728, 0.903770, 0.009841;;, + 23;3; 0.068728, 0.903770, 0.009841;;, + 24;3; 0.068728, 0.903770, 0.009841;;, + 25;3; 0.068728, 0.903770, 0.009841;;, + 26;3; 0.068728, 0.903770, 0.009841;;, + 27;3; 0.068728, 0.903770, 0.009841;;, + 28;3; 0.068728, 0.903770, 0.009841;;, + 29;3; 0.068728, 0.903770, 0.009841;;, + 30;3; 0.068728, 0.903770, 0.009841;;, + 31;3; 0.068728, 0.903770, 0.009841;;, + 32;3; 0.068728, 0.903770, 0.009841;;, + 33;3; 0.068728, 0.903770, 0.009841;;, + 34;3; 0.068728, 0.903770, 0.009841;;, + 35;3; 0.068728, 0.903770, 0.009841;;, + 36;3; 0.068728, 0.903770, 0.009841;;, + 37;3; 0.068728, 0.903770, 0.009841;;, + 38;3; 0.068728, 0.903770, 0.009841;;, + 39;3; 0.068728, 0.903770, 0.009841;;, + 40;3; 0.068728, 0.903770, 0.009841;;, + 41;3; 0.068728, 0.903770, 0.009840;;, + 42;3; 0.068728, 0.903770, 0.009841;;, + 43;3; 0.068728, 0.903770, 0.009841;;, + 44;3; 0.068728, 0.903770, 0.009841;;, + 45;3; 0.068728, 0.903770, 0.009841;;, + 46;3; 0.068728, 0.903770, 0.009841;;, + 47;3; 0.068727, 0.903770, 0.009841;;, + 48;3; 0.068728, 0.903770, 0.009841;;, + 49;3; 0.068728, 0.903770, 0.009841;;, + 50;3; 0.068728, 0.903770, 0.009841;;, + 51;3; 0.068728, 0.903770, 0.009841;;, + 52;3; 0.068728, 0.903770, 0.009841;;, + 53;3; 0.068728, 0.903770, 0.009841;;, + 54;3; 0.068728, 0.903770, 0.009841;;, + 55;3; 0.068728, 0.903770, 0.009841;;, + 56;3; 0.068728, 0.903770, 0.009841;;, + 57;3; 0.068728, 0.903770, 0.009841;;, + 58;3; 0.068728, 0.903770, 0.009841;;, + 59;3; 0.068728, 0.903770, 0.009841;;, + 60;3; 0.068728, 0.903770, 0.009841;;, + 61;3; 0.068728, 0.903770, 0.009841;;, + 62;3; 0.068727, 0.903770, 0.009841;;, + 63;3; 0.068728, 0.903770, 0.009841;;, + 64;3; 0.068728, 0.903770, 0.009841;;, + 65;3; 0.068727, 0.903770, 0.009841;;, + 66;3; 0.068728, 0.903769, 0.009841;;, + 67;3; 0.068728, 0.903770, 0.009841;;, + 68;3; 0.068728, 0.903770, 0.009841;;, + 69;3; 0.068727, 0.903770, 0.009841;;, + 70;3; 0.068728, 0.903770, 0.009841;;, + 71;3; 0.068728, 0.903770, 0.009841;;, + 72;3; 0.068728, 0.903770, 0.009841;;, + 73;3; 0.068728, 0.903770, 0.009841;;, + 74;3; 0.068728, 0.903770, 0.009841;;, + 75;3; 0.068728, 0.903770, 0.009841;;, + 76;3; 0.068728, 0.903770, 0.009841;;, + 77;3; 0.068728, 0.903770, 0.009841;;, + 78;3; 0.068728, 0.903770, 0.009841;;, + 79;3; 0.068728, 0.903770, 0.009841;;, + 80;3; 0.068728, 0.903770, 0.009841;;, + 81;3; 0.068728, 0.903770, 0.009841;;, + 82;3; 0.068728, 0.903770, 0.009841;;, + 83;3; 0.068728, 0.903770, 0.009841;;, + 84;3; 0.068728, 0.903770, 0.009841;;, + 85;3; 0.068728, 0.903770, 0.009841;;, + 86;3; 0.068728, 0.903770, 0.009841;;, + 87;3; 0.068728, 0.903770, 0.009841;;, + 88;3; 0.068728, 0.903770, 0.009841;;, + 89;3; 0.068728, 0.903770, 0.009841;;, + 90;3; 0.068728, 0.903770, 0.009841;;, + 91;3; 0.068728, 0.903770, 0.009841;;, + 92;3; 0.068728, 0.903769, 0.009841;;, + 93;3; 0.068728, 0.903770, 0.009841;;, + 94;3; 0.068728, 0.903770, 0.009841;;, + 95;3; 0.068728, 0.903770, 0.009841;;, + 96;3; 0.068728, 0.903770, 0.009841;;, + 97;3; 0.068728, 0.903770, 0.009841;;, + 98;3; 0.068728, 0.903770, 0.009841;;, + 99;3; 0.068728, 0.903770, 0.009841;;, + 100;3; 0.068728, 0.903770, 0.009841;;, + 101;3; 0.068728, 0.903770, 0.009841;;, + 102;3; 0.068728, 0.903770, 0.009841;;, + 103;3; 0.068728, 0.903770, 0.009841;;, + 104;3; 0.068728, 0.903770, 0.009841;;, + 105;3; 0.068728, 0.903770, 0.009841;;, + 106;3; 0.068728, 0.903770, 0.009841;;, + 107;3; 0.068728, 0.903770, 0.009841;;, + 108;3; 0.068728, 0.903770, 0.009841;;, + 109;3; 0.068728, 0.903770, 0.009841;;, + 110;3; 0.068728, 0.903770, 0.009841;;, + 111;3; 0.068728, 0.903770, 0.009841;;, + 112;3; 0.068728, 0.903770, 0.009841;;, + 113;3; 0.068728, 0.903770, 0.009841;;, + 114;3; 0.068728, 0.903770, 0.009841;;, + 115;3; 0.068728, 0.903770, 0.009841;;, + 116;3; 0.068728, 0.903770, 0.009841;;, + 117;3; 0.068728, 0.903770, 0.009841;;, + 118;3; 0.068728, 0.903770, 0.009841;;, + 119;3; 0.068728, 0.903770, 0.009841;;, + 120;3; 0.068728, 0.903770, 0.009841;;, + 121;3; 0.068728, 0.903770, 0.009841;;, + 122;3; 0.068728, 0.903769, 0.009841;;, + 123;3; 0.068728, 0.903770, 0.009841;;, + 124;3; 0.068728, 0.903770, 0.009841;;, + 125;3; 0.068728, 0.903770, 0.009841;;, + 126;3; 0.068728, 0.903770, 0.009841;;, + 127;3; 0.068728, 0.903770, 0.009841;;, + 128;3; 0.068728, 0.903770, 0.009841;;, + 129;3; 0.068728, 0.903770, 0.009841;;, + 130;3; 0.068728, 0.903770, 0.009841;;, + 131;3; 0.068728, 0.903770, 0.009841;;, + 132;3; 0.068728, 0.903770, 0.009841;;, + 133;3; 0.068728, 0.903770, 0.009841;;, + 134;3; 0.068728, 0.903770, 0.009841;;, + 135;3; 0.068728, 0.903770, 0.009841;;, + 136;3; 0.068728, 0.903770, 0.009841;;, + 137;3; 0.068728, 0.903770, 0.009841;;, + 138;3; 0.068728, 0.903770, 0.009841;;, + 139;3; 0.068728, 0.903770, 0.009841;;, + 140;3; 0.068727, 0.903770, 0.009841;;, + 141;3; 0.068727, 0.903770, 0.009841;;, + 142;3; 0.068728, 0.903770, 0.009841;;, + 143;3; 0.068728, 0.903770, 0.009841;;, + 144;3; 0.068728, 0.903770, 0.009841;;, + 145;3; 0.068728, 0.903770, 0.009841;;, + 146;3; 0.068728, 0.903770, 0.009841;;, + 147;3; 0.068728, 0.903770, 0.009841;;, + 148;3; 0.068728, 0.903770, 0.009841;;, + 149;3; 0.068728, 0.903770, 0.009841;;, + 150;3; 0.068728, 0.903770, 0.009841;;, + 151;3; 0.068728, 0.903770, 0.009841;;, + 152;3; 0.068727, 0.903770, 0.009841;;, + 153;3; 0.068728, 0.903770, 0.009841;;, + 154;3; 0.068728, 0.903770, 0.009841;;, + 155;3; 0.068728, 0.903770, 0.009841;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 1;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 2;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 3;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 4;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 5;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 6;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 7;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 8;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 9;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 10;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 11;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 12;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 13;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 14;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 15;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 16;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 17;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 18;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 19;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 20;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 21;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 22;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 23;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 24;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 25;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 26;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 27;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 28;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 29;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 30;4; -0.998171, 0.013972,-0.008803,-0.037500;;, + 31;4; -0.994966, 0.024053,-0.034555,-0.036053;;, + 32;4; -0.989862, 0.039359,-0.075148,-0.033468;;, + 33;4; -0.983646, 0.056616,-0.123797,-0.029809;;, + 34;4; -0.977455, 0.071656,-0.171048,-0.025368;;, + 35;4; -0.972271, 0.081255,-0.208929,-0.020539;;, + 36;4; -0.968611, 0.084035,-0.233422,-0.015649;;, + 37;4; -0.965922, 0.082324,-0.249225,-0.009544;;, + 38;4; -0.963643, 0.078387,-0.261222,-0.001252;;, + 39;4; -0.961951, 0.072304,-0.268792, 0.007979;;, + 40;4; -0.960922, 0.064810,-0.272343, 0.016105;;, + 41;4; -0.960466, 0.056998,-0.273293, 0.021361;;, + 42;4; -0.960402, 0.049704,-0.273175, 0.023091;;, + 43;4; -0.962856, 0.042018,-0.256114, 0.019319;;, + 44;4; -0.969855, 0.033096,-0.206980, 0.008347;;, + 45;4; -0.979877, 0.024089,-0.136502,-0.007426;;, + 46;4; -0.989882, 0.016649,-0.066081,-0.023198;;, + 47;4; -0.996836, 0.012036,-0.017106,-0.034169;;, + 48;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 49;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 50;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 51;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 52;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 53;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 54;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 55;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 56;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 57;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 58;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 59;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 60;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 61;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 62;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 63;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 64;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 65;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 66;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 67;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 68;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 69;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 70;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 71;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 72;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 73;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 74;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 75;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 76;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 77;4; -0.998942, 0.010323,-0.006375,-0.037836;;, + 78;4; -0.998114, 0.009640,-0.024116,-0.037539;;, + 79;4; -0.996912, 0.008659,-0.049619,-0.037111;;, + 80;4; -0.995684, 0.007678,-0.075122,-0.036681;;, + 81;4; -0.994788, 0.006994,-0.092863,-0.036381;;, + 82;4; -0.994407, 0.006759,-0.098958,-0.036275;;, + 83;4; -0.994301, 0.006876,-0.095847,-0.036318;;, + 84;4; -0.994200, 0.007231,-0.086457,-0.036455;;, + 85;4; -0.994107, 0.007818,-0.070972,-0.036684;;, + 86;4; -0.994024, 0.008611,-0.050073,-0.036994;;, + 87;4; -0.993951, 0.009561,-0.025046,-0.037367;;, + 88;4; -0.993891, 0.010596, 0.002231,-0.037774;;, + 89;4; -0.993843, 0.011631, 0.029508,-0.038181;;, + 90;4; -0.993807, 0.012581, 0.054535,-0.038555;;, + 91;4; -0.993783, 0.013374, 0.075434,-0.038868;;, + 92;4; -0.993767, 0.013962, 0.090919,-0.039100;;, + 93;4; -0.993759, 0.014319, 0.100309,-0.039240;;, + 94;4; -0.993757, 0.014437, 0.103420,-0.039287;;, + 95;4; -0.994095, 0.014197, 0.097014,-0.039204;;, + 96;4; -0.995077, 0.013500, 0.078371,-0.038961;;, + 97;4; -0.996491, 0.012497, 0.051571,-0.038613;;, + 98;4; -0.997904, 0.011494, 0.024771,-0.038264;;, + 99;4; -0.998887, 0.010797, 0.006127,-0.038022;;, + 100;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 101;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 102;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 103;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 104;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 105;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 106;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 107;4; -0.998942, 0.010323,-0.006375,-0.037836;;, + 108;4; -0.998114, 0.009640,-0.024116,-0.037539;;, + 109;4; -0.996912, 0.008659,-0.049619,-0.037111;;, + 110;4; -0.995684, 0.007678,-0.075122,-0.036681;;, + 111;4; -0.994788, 0.006994,-0.092863,-0.036381;;, + 112;4; -0.994407, 0.006759,-0.098958,-0.036275;;, + 113;4; -0.994301, 0.006876,-0.095847,-0.036318;;, + 114;4; -0.994200, 0.007231,-0.086457,-0.036455;;, + 115;4; -0.994107, 0.007818,-0.070972,-0.036684;;, + 116;4; -0.994024, 0.008611,-0.050073,-0.036994;;, + 117;4; -0.993951, 0.009561,-0.025046,-0.037367;;, + 118;4; -0.993891, 0.010596, 0.002231,-0.037774;;, + 119;4; -0.993843, 0.011631, 0.029508,-0.038181;;, + 120;4; -0.993807, 0.012581, 0.054535,-0.038555;;, + 121;4; -0.993783, 0.013374, 0.075434,-0.038868;;, + 122;4; -0.993767, 0.013962, 0.090919,-0.039100;;, + 123;4; -0.993759, 0.014319, 0.100309,-0.039240;;, + 124;4; -0.993757, 0.014437, 0.103420,-0.039287;;, + 125;4; -0.994095, 0.014197, 0.097014,-0.039204;;, + 126;4; -0.995077, 0.013500, 0.078371,-0.038961;;, + 127;4; -0.996491, 0.012497, 0.051571,-0.038613;;, + 128;4; -0.997904, 0.011494, 0.024771,-0.038264;;, + 129;4; -0.998887, 0.010797, 0.006127,-0.038022;;, + 130;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 131;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 132;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 133;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 134;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 135;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 136;4; -0.995675, 0.034507,-0.001189,-0.037807;;, + 137;4; -0.985676, 0.101940,-0.003750,-0.037435;;, + 138;4; -0.972838, 0.188502,-0.007038,-0.036958;;, + 139;4; -0.962840, 0.255921,-0.009599,-0.036587;;, + 140;4; -0.959291, 0.279862,-0.010509,-0.036455;;, + 141;4; -0.959683, 0.277217,-0.010408,-0.036470;;, + 142;4; -0.960868, 0.269222,-0.010104,-0.036514;;, + 143;4; -0.962840, 0.255919,-0.009599,-0.036587;;, + 144;4; -0.965558, 0.237587,-0.008903,-0.036688;;, + 145;4; -0.968937, 0.214805,-0.008037,-0.036814;;, + 146;4; -0.972839, 0.188493,-0.007038,-0.036958;;, + 147;4; -0.977079, 0.159901,-0.005952,-0.037116;;, + 148;4; -0.981436, 0.130518,-0.004836,-0.037278;;, + 149;4; -0.985676, 0.101926,-0.003750,-0.037435;;, + 150;4; -0.989578, 0.075614,-0.002750,-0.037580;;, + 151;4; -0.992956, 0.052832,-0.001885,-0.037706;;, + 152;4; -0.995675, 0.034500,-0.001189,-0.037807;;, + 153;4; -0.997647, 0.021197,-0.000683,-0.037880;;, + 154;4; -0.998832, 0.013202,-0.000380,-0.037924;;, + 155;4; -0.999224, 0.010557,-0.000279,-0.037939;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_zubi} + AnimationKey { //Position + 2; + 156; + 0;3; 0.205805, 1.974131,-0.481359;;, + 1;3; 0.205805, 1.974131,-0.481359;;, + 2;3; 0.205805, 1.974131,-0.481359;;, + 3;3; 0.205805, 1.974131,-0.481359;;, + 4;3; 0.205805, 1.974131,-0.481359;;, + 5;3; 0.205805, 1.974131,-0.481359;;, + 6;3; 0.205805, 1.974131,-0.481359;;, + 7;3; 0.205805, 1.974131,-0.481359;;, + 8;3; 0.205805, 1.974131,-0.481359;;, + 9;3; 0.205805, 1.974131,-0.481359;;, + 10;3; 0.205805, 1.974131,-0.481359;;, + 11;3; 0.205805, 1.974131,-0.481359;;, + 12;3; 0.205805, 1.974131,-0.481359;;, + 13;3; 0.205805, 1.974131,-0.481359;;, + 14;3; 0.205805, 1.974131,-0.481359;;, + 15;3; 0.205805, 1.974131,-0.481359;;, + 16;3; 0.205805, 1.974131,-0.481359;;, + 17;3; 0.205805, 1.974131,-0.481359;;, + 18;3; 0.205805, 1.974131,-0.481359;;, + 19;3; 0.205805, 1.974131,-0.481359;;, + 20;3; 0.205805, 1.974131,-0.481359;;, + 21;3; 0.205805, 1.974131,-0.481359;;, + 22;3; 0.205805, 1.974131,-0.481359;;, + 23;3; 0.205805, 1.974131,-0.481359;;, + 24;3; 0.205805, 1.974131,-0.481359;;, + 25;3; 0.205805, 1.974131,-0.481359;;, + 26;3; 0.205805, 1.974131,-0.481359;;, + 27;3; 0.205806, 1.974131,-0.481358;;, + 28;3; 0.205805, 1.974131,-0.481358;;, + 29;3; 0.205805, 1.974131,-0.481359;;, + 30;3; 0.205805, 1.974131,-0.481358;;, + 31;3; 0.205806, 1.974131,-0.481358;;, + 32;3; 0.205805, 1.974131,-0.481358;;, + 33;3; 0.205805, 1.974131,-0.481358;;, + 34;3; 0.205805, 1.974131,-0.481358;;, + 35;3; 0.205805, 1.974131,-0.481358;;, + 36;3; 0.205805, 1.974131,-0.481358;;, + 37;3; 0.205805, 1.974131,-0.481358;;, + 38;3; 0.205805, 1.974131,-0.481358;;, + 39;3; 0.205805, 1.974131,-0.481359;;, + 40;3; 0.205805, 1.974131,-0.481358;;, + 41;3; 0.205805, 1.974131,-0.481359;;, + 42;3; 0.205805, 1.974131,-0.481358;;, + 43;3; 0.205805, 1.974131,-0.481358;;, + 44;3; 0.205805, 1.974131,-0.481359;;, + 45;3; 0.205806, 1.974131,-0.481359;;, + 46;3; 0.205805, 1.974131,-0.481358;;, + 47;3; 0.205805, 1.974131,-0.481359;;, + 48;3; 0.205805, 1.974131,-0.481359;;, + 49;3; 0.205805, 1.974131,-0.481359;;, + 50;3; 0.205805, 1.974131,-0.481359;;, + 51;3; 0.205805, 1.974131,-0.481359;;, + 52;3; 0.205805, 1.974131,-0.481359;;, + 53;3; 0.205805, 1.974131,-0.481359;;, + 54;3; 0.205805, 1.974131,-0.481359;;, + 55;3; 0.205805, 1.974131,-0.481359;;, + 56;3; 0.205805, 1.974131,-0.481359;;, + 57;3; 0.205805, 1.974131,-0.481359;;, + 58;3; 0.205805, 1.974131,-0.481359;;, + 59;3; 0.205805, 1.974131,-0.481359;;, + 60;3; 0.205805, 1.974131,-0.481358;;, + 61;3; 0.205805, 1.974131,-0.481359;;, + 62;3; 0.205805, 1.974131,-0.481359;;, + 63;3; 0.205805, 1.974131,-0.481359;;, + 64;3; 0.205805, 1.974131,-0.481359;;, + 65;3; 0.205805, 1.974131,-0.481359;;, + 66;3; 0.205805, 1.974131,-0.481359;;, + 67;3; 0.205805, 1.974131,-0.481359;;, + 68;3; 0.205805, 1.974131,-0.481359;;, + 69;3; 0.205805, 1.974131,-0.481359;;, + 70;3; 0.205805, 1.974131,-0.481359;;, + 71;3; 0.205805, 1.974131,-0.481359;;, + 72;3; 0.205805, 1.974131,-0.481358;;, + 73;3; 0.205805, 1.974131,-0.481358;;, + 74;3; 0.205805, 1.974131,-0.481359;;, + 75;3; 0.205805, 1.974131,-0.481359;;, + 76;3; 0.205805, 1.974131,-0.481359;;, + 77;3; 0.205805, 1.974131,-0.481359;;, + 78;3; 0.205805, 1.974131,-0.481359;;, + 79;3; 0.205805, 1.974131,-0.481359;;, + 80;3; 0.205805, 1.974131,-0.481358;;, + 81;3; 0.205805, 1.974131,-0.481359;;, + 82;3; 0.205805, 1.974131,-0.481359;;, + 83;3; 0.205805, 1.974131,-0.481359;;, + 84;3; 0.205805, 1.974131,-0.481358;;, + 85;3; 0.205805, 1.974131,-0.481359;;, + 86;3; 0.205805, 1.974131,-0.481358;;, + 87;3; 0.205805, 1.974131,-0.481359;;, + 88;3; 0.205805, 1.974131,-0.481359;;, + 89;3; 0.205805, 1.974131,-0.481358;;, + 90;3; 0.205805, 1.974131,-0.481359;;, + 91;3; 0.205805, 1.974131,-0.481359;;, + 92;3; 0.205805, 1.974131,-0.481359;;, + 93;3; 0.205806, 1.974131,-0.481359;;, + 94;3; 0.205805, 1.974131,-0.481359;;, + 95;3; 0.205806, 1.974131,-0.481359;;, + 96;3; 0.205805, 1.974131,-0.481359;;, + 97;3; 0.205805, 1.974131,-0.481358;;, + 98;3; 0.205805, 1.974131,-0.481359;;, + 99;3; 0.205805, 1.974131,-0.481359;;, + 100;3; 0.205805, 1.974131,-0.481359;;, + 101;3; 0.205805, 1.974131,-0.481359;;, + 102;3; 0.205805, 1.974131,-0.481359;;, + 103;3; 0.205805, 1.974131,-0.481359;;, + 104;3; 0.205805, 1.974131,-0.481359;;, + 105;3; 0.205805, 1.974131,-0.481359;;, + 106;3; 0.205805, 1.974131,-0.481359;;, + 107;3; 0.205805, 1.974131,-0.481359;;, + 108;3; 0.205805, 1.974131,-0.481359;;, + 109;3; 0.205805, 1.974131,-0.481359;;, + 110;3; 0.205805, 1.974131,-0.481358;;, + 111;3; 0.205805, 1.974131,-0.481359;;, + 112;3; 0.205805, 1.974131,-0.481359;;, + 113;3; 0.205805, 1.974131,-0.481359;;, + 114;3; 0.205805, 1.974131,-0.481358;;, + 115;3; 0.205805, 1.974131,-0.481359;;, + 116;3; 0.205805, 1.974131,-0.481358;;, + 117;3; 0.205805, 1.974131,-0.481359;;, + 118;3; 0.205805, 1.974131,-0.481359;;, + 119;3; 0.205805, 1.974131,-0.481358;;, + 120;3; 0.205805, 1.974131,-0.481359;;, + 121;3; 0.205805, 1.974131,-0.481359;;, + 122;3; 0.205805, 1.974131,-0.481359;;, + 123;3; 0.205806, 1.974131,-0.481359;;, + 124;3; 0.205805, 1.974131,-0.481359;;, + 125;3; 0.205806, 1.974131,-0.481359;;, + 126;3; 0.205805, 1.974131,-0.481359;;, + 127;3; 0.205805, 1.974131,-0.481358;;, + 128;3; 0.205805, 1.974131,-0.481359;;, + 129;3; 0.205805, 1.974131,-0.481359;;, + 130;3; 0.205805, 1.974131,-0.481359;;, + 131;3; 0.205805, 1.974131,-0.481359;;, + 132;3; 0.205805, 1.974131,-0.481359;;, + 133;3; 0.205805, 1.974131,-0.481359;;, + 134;3; 0.205805, 1.974131,-0.481359;;, + 135;3; 0.205805, 1.974131,-0.481359;;, + 136;3; 0.205805, 1.974131,-0.481359;;, + 137;3; 0.205805, 1.974131,-0.481358;;, + 138;3; 0.205741, 1.973247,-0.469110;;, + 139;3; 0.205551, 1.970632,-0.432877;;, + 140;3; 0.205261, 1.966648,-0.377679;;, + 141;3; 0.204933, 1.962130,-0.315077;;, + 142;3; 0.204643, 1.958146,-0.259887;;, + 143;3; 0.204453, 1.955532,-0.223662;;, + 144;3; 0.204389, 1.954648,-0.211417;;, + 145;3; 0.204415, 1.955004,-0.216358;;, + 146;3; 0.204494, 1.956080,-0.231258;;, + 147;3; 0.204621, 1.957843,-0.255685;;, + 148;3; 0.204792, 1.960192,-0.288231;;, + 149;3; 0.204992, 1.962942,-0.326329;;, + 150;3; 0.205202, 1.965835,-0.366412;;, + 151;3; 0.205402, 1.968585,-0.404515;;, + 152;3; 0.205572, 1.970935,-0.437071;;, + 153;3; 0.205701, 1.972699,-0.461508;;, + 154;3; 0.205779, 1.973774,-0.476414;;, + 155;3; 0.205805, 1.974131,-0.481359;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 1;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 2;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 3;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 4;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 5;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 6;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 7;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 8;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 9;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 10;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 11;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 12;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 13;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 14;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 15;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 16;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 17;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 18;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 19;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 20;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 21;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 22;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 23;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 24;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 25;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 26;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 27;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 28;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 29;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 30;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 31;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 32;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 33;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 34;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 35;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 36;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 37;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 38;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 39;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 40;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 41;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 42;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 43;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 44;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 45;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 46;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 47;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 48;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 49;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 50;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 51;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 52;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 53;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 54;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 55;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 56;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 57;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 58;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 59;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 60;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 61;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 62;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 63;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 64;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 65;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 66;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 67;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 68;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 69;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 70;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 71;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 72;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 73;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 74;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 75;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 76;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 77;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 78;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 79;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 80;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 81;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 82;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 83;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 84;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 85;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 86;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 87;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 88;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 89;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 90;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 91;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 92;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 93;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 94;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 95;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 96;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 97;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 98;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 99;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 100;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 101;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 102;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 103;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 104;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 105;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 106;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 107;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 108;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 109;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 110;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 111;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 112;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 113;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 114;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 115;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 116;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 117;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 118;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 119;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 120;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 121;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 122;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 123;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 124;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 125;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 126;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 127;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 128;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 129;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 130;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 131;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 132;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 133;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 134;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 135;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 136;4; -0.983274,-0.110884, 0.004330,-0.037318;;, + 137;4; -0.965858,-0.256281, 0.009848,-0.036639;;, + 138;4; -0.962184,-0.231571, 0.008909,-0.036503;;, + 139;4; -0.958140,-0.158361, 0.006129,-0.036358;;, + 140;4; -0.954044,-0.046823, 0.001894,-0.036216;;, + 141;4; -0.950374, 0.079679,-0.002909,-0.036092;;, + 142;4; -0.947594, 0.191226,-0.007145,-0.036000;;, + 143;4; -0.945944, 0.264464,-0.009926,-0.035947;;, + 144;4; -0.945422, 0.289230,-0.010866,-0.035930;;, + 145;4; -0.946397, 0.284568,-0.010689,-0.035966;;, + 146;4; -0.949337, 0.270516,-0.010155,-0.036076;;, + 147;4; -0.954156, 0.247481,-0.009280,-0.036256;;, + 148;4; -0.960578, 0.216794,-0.008114,-0.036496;;, + 149;4; -0.968095, 0.180879,-0.006750,-0.036777;;, + 150;4; -0.976003, 0.143096,-0.005314,-0.037073;;, + 151;4; -0.983520, 0.107183,-0.003950,-0.037354;;, + 152;4; -0.989941, 0.076500,-0.002784,-0.037594;;, + 153;4; -0.994761, 0.053469,-0.001909,-0.037774;;, + 154;4; -0.997701, 0.039419,-0.001375,-0.037884;;, + 155;4; -0.998675, 0.034758,-0.001198,-0.037921;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Cube} + AnimationKey { //Position + 2; + 156; + 0;3; -0.137034,-0.235439, 6.856374;;, + 1;3; -0.137034,-0.235439, 6.856374;;, + 2;3; -0.137034,-0.235439, 6.856374;;, + 3;3; -0.137034,-0.235439, 6.856374;;, + 4;3; -0.137034,-0.235439, 6.856374;;, + 5;3; -0.137034,-0.235439, 6.856374;;, + 6;3; -0.137034,-0.235439, 6.856374;;, + 7;3; -0.137034,-0.235439, 6.856374;;, + 8;3; -0.137034,-0.235439, 6.856374;;, + 9;3; -0.137034,-0.235439, 6.856374;;, + 10;3; -0.137034,-0.235439, 6.856374;;, + 11;3; -0.137034,-0.235439, 6.856374;;, + 12;3; -0.137034,-0.235439, 6.856374;;, + 13;3; -0.137034,-0.235439, 6.856374;;, + 14;3; -0.137034,-0.235439, 6.856374;;, + 15;3; -0.137034,-0.235439, 6.856374;;, + 16;3; -0.137034,-0.235439, 6.856374;;, + 17;3; -0.137034,-0.235439, 6.856374;;, + 18;3; -0.137034,-0.235439, 6.856374;;, + 19;3; -0.137034,-0.235439, 6.856374;;, + 20;3; -0.137034,-0.235439, 6.856374;;, + 21;3; -0.137034,-0.235439, 6.856374;;, + 22;3; -0.137034,-0.235439, 6.856374;;, + 23;3; -0.137034,-0.235439, 6.856374;;, + 24;3; -0.137034,-0.235439, 6.856374;;, + 25;3; -0.137034,-0.235439, 6.856374;;, + 26;3; -0.137034,-0.235439, 6.856374;;, + 27;3; -0.137034,-0.235439, 6.856374;;, + 28;3; -0.137034,-0.235439, 6.856374;;, + 29;3; -0.137034,-0.235439, 6.856374;;, + 30;3; -0.137034,-0.235439, 6.856374;;, + 31;3; -0.137034,-0.235439, 6.856374;;, + 32;3; -0.137034,-0.235439, 6.856374;;, + 33;3; -0.137034,-0.235439, 6.856374;;, + 34;3; -0.137034,-0.235439, 6.856374;;, + 35;3; -0.137034,-0.235439, 6.856374;;, + 36;3; -0.137034,-0.235439, 6.856374;;, + 37;3; -0.137034,-0.235439, 6.856374;;, + 38;3; -0.137034,-0.235439, 6.856374;;, + 39;3; -0.137034,-0.235439, 6.856374;;, + 40;3; -0.137034,-0.235439, 6.856374;;, + 41;3; -0.137034,-0.235439, 6.856374;;, + 42;3; -0.137034,-0.235439, 6.856374;;, + 43;3; -0.137034,-0.235439, 6.856374;;, + 44;3; -0.137034,-0.235439, 6.856374;;, + 45;3; -0.137034,-0.235439, 6.856374;;, + 46;3; -0.137034,-0.235439, 6.856374;;, + 47;3; -0.137034,-0.235439, 6.856374;;, + 48;3; -0.137034,-0.235439, 6.856374;;, + 49;3; -0.137034,-0.235439, 6.856374;;, + 50;3; -0.137034,-0.235439, 6.856374;;, + 51;3; -0.137034,-0.235439, 6.856374;;, + 52;3; -0.137034,-0.235439, 6.856374;;, + 53;3; -0.137034,-0.235439, 6.856374;;, + 54;3; -0.137034,-0.235439, 6.856374;;, + 55;3; -0.137034,-0.235439, 6.856374;;, + 56;3; -0.137034,-0.235439, 6.856374;;, + 57;3; -0.137034,-0.235439, 6.856374;;, + 58;3; -0.137034,-0.235439, 6.856374;;, + 59;3; -0.137034,-0.235439, 6.856374;;, + 60;3; -0.137034,-0.235439, 6.856374;;, + 61;3; -0.137034,-0.235439, 6.856374;;, + 62;3; -0.137034,-0.235439, 6.856374;;, + 63;3; -0.137034,-0.235439, 6.856374;;, + 64;3; -0.137034,-0.235439, 6.856374;;, + 65;3; -0.137034,-0.235439, 6.856374;;, + 66;3; -0.137034,-0.235439, 6.856374;;, + 67;3; -0.137034,-0.235439, 6.856374;;, + 68;3; -0.137034,-0.235439, 6.856374;;, + 69;3; -0.137034,-0.235439, 6.856374;;, + 70;3; -0.137034,-0.235439, 6.856374;;, + 71;3; -0.137034,-0.235439, 6.856374;;, + 72;3; -0.137034,-0.235439, 6.856374;;, + 73;3; -0.137034,-0.235439, 6.856374;;, + 74;3; -0.137034,-0.235439, 6.856374;;, + 75;3; -0.137034,-0.235439, 6.856374;;, + 76;3; -0.137034,-0.235439, 6.856374;;, + 77;3; -0.137034,-0.235439, 6.856374;;, + 78;3; -0.137034,-0.235439, 6.856374;;, + 79;3; -0.137034,-0.235439, 6.856374;;, + 80;3; -0.137034,-0.235439, 6.856374;;, + 81;3; -0.137034,-0.235439, 6.856374;;, + 82;3; -0.137034,-0.235439, 6.856374;;, + 83;3; -0.137034,-0.235439, 6.856374;;, + 84;3; -0.137034,-0.235439, 6.856374;;, + 85;3; -0.137034,-0.235439, 6.856374;;, + 86;3; -0.137034,-0.235439, 6.856374;;, + 87;3; -0.137034,-0.235439, 6.856374;;, + 88;3; -0.137034,-0.235439, 6.856374;;, + 89;3; -0.137034,-0.235439, 6.856374;;, + 90;3; -0.137034,-0.235439, 6.856374;;, + 91;3; -0.137034,-0.235439, 6.856374;;, + 92;3; -0.137034,-0.235439, 6.856374;;, + 93;3; -0.137034,-0.235439, 6.856374;;, + 94;3; -0.137034,-0.235439, 6.856374;;, + 95;3; -0.137034,-0.235439, 6.856374;;, + 96;3; -0.137034,-0.235439, 6.856374;;, + 97;3; -0.137034,-0.235439, 6.856374;;, + 98;3; -0.137034,-0.235439, 6.856374;;, + 99;3; -0.137034,-0.235439, 6.856374;;, + 100;3; -0.137034,-0.235439, 6.856374;;, + 101;3; -0.137034,-0.235439, 6.856374;;, + 102;3; -0.137034,-0.235439, 6.856374;;, + 103;3; -0.137034,-0.235439, 6.856374;;, + 104;3; -0.137034,-0.235439, 6.856374;;, + 105;3; -0.137034,-0.235439, 6.856374;;, + 106;3; -0.137034,-0.235439, 6.856374;;, + 107;3; -0.137034,-0.235439, 6.856374;;, + 108;3; -0.137034,-0.235439, 6.856374;;, + 109;3; -0.137034,-0.235439, 6.856374;;, + 110;3; -0.137034,-0.235439, 6.856374;;, + 111;3; -0.137034,-0.235439, 6.856374;;, + 112;3; -0.137034,-0.235439, 6.856374;;, + 113;3; -0.137034,-0.235439, 6.856374;;, + 114;3; -0.137034,-0.235439, 6.856374;;, + 115;3; -0.137034,-0.235439, 6.856374;;, + 116;3; -0.137034,-0.235439, 6.856374;;, + 117;3; -0.137034,-0.235439, 6.856374;;, + 118;3; -0.137034,-0.235439, 6.856374;;, + 119;3; -0.137034,-0.235439, 6.856374;;, + 120;3; -0.137034,-0.235439, 6.856374;;, + 121;3; -0.137034,-0.235439, 6.856374;;, + 122;3; -0.137034,-0.235439, 6.856374;;, + 123;3; -0.137034,-0.235439, 6.856374;;, + 124;3; -0.137034,-0.235439, 6.856374;;, + 125;3; -0.137034,-0.235439, 6.856374;;, + 126;3; -0.137034,-0.235439, 6.856374;;, + 127;3; -0.137034,-0.235439, 6.856374;;, + 128;3; -0.137034,-0.235439, 6.856374;;, + 129;3; -0.137034,-0.235439, 6.856374;;, + 130;3; -0.137034,-0.235439, 6.856374;;, + 131;3; -0.137034,-0.235439, 6.856374;;, + 132;3; -0.137034,-0.235439, 6.856374;;, + 133;3; -0.137034,-0.235439, 6.856374;;, + 134;3; -0.137034,-0.235439, 6.856374;;, + 135;3; -0.137034,-0.235439, 6.856374;;, + 136;3; -0.137034,-0.235439, 6.856374;;, + 137;3; -0.137034,-0.235439, 6.856374;;, + 138;3; -0.137034,-0.235439, 6.856374;;, + 139;3; -0.137034,-0.235439, 6.856374;;, + 140;3; -0.137034,-0.235439, 6.856374;;, + 141;3; -0.137034,-0.235439, 6.856374;;, + 142;3; -0.137034,-0.235439, 6.856374;;, + 143;3; -0.137034,-0.235439, 6.856374;;, + 144;3; -0.137034,-0.235439, 6.856374;;, + 145;3; -0.137034,-0.235439, 6.856374;;, + 146;3; -0.137034,-0.235439, 6.856374;;, + 147;3; -0.137034,-0.235439, 6.856374;;, + 148;3; -0.137034,-0.235439, 6.856374;;, + 149;3; -0.137034,-0.235439, 6.856374;;, + 150;3; -0.137034,-0.235439, 6.856374;;, + 151;3; -0.137034,-0.235439, 6.856374;;, + 152;3; -0.137034,-0.235439, 6.856374;;, + 153;3; -0.137034,-0.235439, 6.856374;;, + 154;3; -0.137034,-0.235439, 6.856374;;, + 155;3; -0.137034,-0.235439, 6.856374;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 2.153459, 2.153459, 2.153459;;, + 1;3; 2.153459, 2.153459, 2.153459;;, + 2;3; 2.153459, 2.153459, 2.153459;;, + 3;3; 2.153459, 2.153459, 2.153459;;, + 4;3; 2.153459, 2.153459, 2.153459;;, + 5;3; 2.153459, 2.153459, 2.153459;;, + 6;3; 2.153459, 2.153459, 2.153459;;, + 7;3; 2.153459, 2.153459, 2.153459;;, + 8;3; 2.153459, 2.153459, 2.153459;;, + 9;3; 2.153459, 2.153459, 2.153459;;, + 10;3; 2.153459, 2.153459, 2.153459;;, + 11;3; 2.153459, 2.153459, 2.153459;;, + 12;3; 2.153459, 2.153459, 2.153459;;, + 13;3; 2.153459, 2.153459, 2.153459;;, + 14;3; 2.153459, 2.153459, 2.153459;;, + 15;3; 2.153459, 2.153459, 2.153459;;, + 16;3; 2.153459, 2.153459, 2.153459;;, + 17;3; 2.153459, 2.153459, 2.153459;;, + 18;3; 2.153459, 2.153459, 2.153459;;, + 19;3; 2.153459, 2.153459, 2.153459;;, + 20;3; 2.153459, 2.153459, 2.153459;;, + 21;3; 2.153459, 2.153459, 2.153459;;, + 22;3; 2.153459, 2.153459, 2.153459;;, + 23;3; 2.153459, 2.153459, 2.153459;;, + 24;3; 2.153459, 2.153459, 2.153459;;, + 25;3; 2.153459, 2.153459, 2.153459;;, + 26;3; 2.153459, 2.153459, 2.153459;;, + 27;3; 2.153459, 2.153459, 2.153459;;, + 28;3; 2.153459, 2.153459, 2.153459;;, + 29;3; 2.153459, 2.153459, 2.153459;;, + 30;3; 2.153459, 2.153459, 2.153459;;, + 31;3; 2.153459, 2.153459, 2.153459;;, + 32;3; 2.153459, 2.153459, 2.153459;;, + 33;3; 2.153459, 2.153459, 2.153459;;, + 34;3; 2.153459, 2.153459, 2.153459;;, + 35;3; 2.153459, 2.153459, 2.153459;;, + 36;3; 2.153459, 2.153459, 2.153459;;, + 37;3; 2.153459, 2.153459, 2.153459;;, + 38;3; 2.153459, 2.153459, 2.153459;;, + 39;3; 2.153459, 2.153459, 2.153459;;, + 40;3; 2.153459, 2.153459, 2.153459;;, + 41;3; 2.153459, 2.153459, 2.153459;;, + 42;3; 2.153459, 2.153459, 2.153459;;, + 43;3; 2.153459, 2.153459, 2.153459;;, + 44;3; 2.153459, 2.153459, 2.153459;;, + 45;3; 2.153459, 2.153459, 2.153459;;, + 46;3; 2.153459, 2.153459, 2.153459;;, + 47;3; 2.153459, 2.153459, 2.153459;;, + 48;3; 2.153459, 2.153459, 2.153459;;, + 49;3; 2.153459, 2.153459, 2.153459;;, + 50;3; 2.153459, 2.153459, 2.153459;;, + 51;3; 2.153459, 2.153459, 2.153459;;, + 52;3; 2.153459, 2.153459, 2.153459;;, + 53;3; 2.153459, 2.153459, 2.153459;;, + 54;3; 2.153459, 2.153459, 2.153459;;, + 55;3; 2.153459, 2.153459, 2.153459;;, + 56;3; 2.153459, 2.153459, 2.153459;;, + 57;3; 2.153459, 2.153459, 2.153459;;, + 58;3; 2.153459, 2.153459, 2.153459;;, + 59;3; 2.153459, 2.153459, 2.153459;;, + 60;3; 2.153459, 2.153459, 2.153459;;, + 61;3; 2.153459, 2.153459, 2.153459;;, + 62;3; 2.153459, 2.153459, 2.153459;;, + 63;3; 2.153459, 2.153459, 2.153459;;, + 64;3; 2.153459, 2.153459, 2.153459;;, + 65;3; 2.153459, 2.153459, 2.153459;;, + 66;3; 2.153459, 2.153459, 2.153459;;, + 67;3; 2.153459, 2.153459, 2.153459;;, + 68;3; 2.153459, 2.153459, 2.153459;;, + 69;3; 2.153459, 2.153459, 2.153459;;, + 70;3; 2.153459, 2.153459, 2.153459;;, + 71;3; 2.153459, 2.153459, 2.153459;;, + 72;3; 2.153459, 2.153459, 2.153459;;, + 73;3; 2.153459, 2.153459, 2.153459;;, + 74;3; 2.153459, 2.153459, 2.153459;;, + 75;3; 2.153459, 2.153459, 2.153459;;, + 76;3; 2.153459, 2.153459, 2.153459;;, + 77;3; 2.153459, 2.153459, 2.153459;;, + 78;3; 2.153459, 2.153459, 2.153459;;, + 79;3; 2.153459, 2.153459, 2.153459;;, + 80;3; 2.153459, 2.153459, 2.153459;;, + 81;3; 2.153459, 2.153459, 2.153459;;, + 82;3; 2.153459, 2.153459, 2.153459;;, + 83;3; 2.153459, 2.153459, 2.153459;;, + 84;3; 2.153459, 2.153459, 2.153459;;, + 85;3; 2.153459, 2.153459, 2.153459;;, + 86;3; 2.153459, 2.153459, 2.153459;;, + 87;3; 2.153459, 2.153459, 2.153459;;, + 88;3; 2.153459, 2.153459, 2.153459;;, + 89;3; 2.153459, 2.153459, 2.153459;;, + 90;3; 2.153459, 2.153459, 2.153459;;, + 91;3; 2.153459, 2.153459, 2.153459;;, + 92;3; 2.153459, 2.153459, 2.153459;;, + 93;3; 2.153459, 2.153459, 2.153459;;, + 94;3; 2.153459, 2.153459, 2.153459;;, + 95;3; 2.153459, 2.153459, 2.153459;;, + 96;3; 2.153459, 2.153459, 2.153459;;, + 97;3; 2.153459, 2.153459, 2.153459;;, + 98;3; 2.153459, 2.153459, 2.153459;;, + 99;3; 2.153459, 2.153459, 2.153459;;, + 100;3; 2.153459, 2.153459, 2.153459;;, + 101;3; 2.153459, 2.153459, 2.153459;;, + 102;3; 2.153459, 2.153459, 2.153459;;, + 103;3; 2.153459, 2.153459, 2.153459;;, + 104;3; 2.153459, 2.153459, 2.153459;;, + 105;3; 2.153459, 2.153459, 2.153459;;, + 106;3; 2.153459, 2.153459, 2.153459;;, + 107;3; 2.153459, 2.153459, 2.153459;;, + 108;3; 2.153459, 2.153459, 2.153459;;, + 109;3; 2.153459, 2.153459, 2.153459;;, + 110;3; 2.153459, 2.153459, 2.153459;;, + 111;3; 2.153459, 2.153459, 2.153459;;, + 112;3; 2.153459, 2.153459, 2.153459;;, + 113;3; 2.153459, 2.153459, 2.153459;;, + 114;3; 2.153459, 2.153459, 2.153459;;, + 115;3; 2.153459, 2.153459, 2.153459;;, + 116;3; 2.153459, 2.153459, 2.153459;;, + 117;3; 2.153459, 2.153459, 2.153459;;, + 118;3; 2.153459, 2.153459, 2.153459;;, + 119;3; 2.153459, 2.153459, 2.153459;;, + 120;3; 2.153459, 2.153459, 2.153459;;, + 121;3; 2.153459, 2.153459, 2.153459;;, + 122;3; 2.153459, 2.153459, 2.153459;;, + 123;3; 2.153459, 2.153459, 2.153459;;, + 124;3; 2.153459, 2.153459, 2.153459;;, + 125;3; 2.153459, 2.153459, 2.153459;;, + 126;3; 2.153459, 2.153459, 2.153459;;, + 127;3; 2.153459, 2.153459, 2.153459;;, + 128;3; 2.153459, 2.153459, 2.153459;;, + 129;3; 2.153459, 2.153459, 2.153459;;, + 130;3; 2.153459, 2.153459, 2.153459;;, + 131;3; 2.153459, 2.153459, 2.153459;;, + 132;3; 2.153459, 2.153459, 2.153459;;, + 133;3; 2.153459, 2.153459, 2.153459;;, + 134;3; 2.153459, 2.153459, 2.153459;;, + 135;3; 2.153459, 2.153459, 2.153459;;, + 136;3; 2.153459, 2.153459, 2.153459;;, + 137;3; 2.153459, 2.153459, 2.153459;;, + 138;3; 2.153459, 2.153459, 2.153459;;, + 139;3; 2.153459, 2.153459, 2.153459;;, + 140;3; 2.153459, 2.153459, 2.153459;;, + 141;3; 2.153459, 2.153459, 2.153459;;, + 142;3; 2.153459, 2.153459, 2.153459;;, + 143;3; 2.153459, 2.153459, 2.153459;;, + 144;3; 2.153459, 2.153459, 2.153459;;, + 145;3; 2.153459, 2.153459, 2.153459;;, + 146;3; 2.153459, 2.153459, 2.153459;;, + 147;3; 2.153459, 2.153459, 2.153459;;, + 148;3; 2.153459, 2.153459, 2.153459;;, + 149;3; 2.153459, 2.153459, 2.153459;;, + 150;3; 2.153459, 2.153459, 2.153459;;, + 151;3; 2.153459, 2.153459, 2.153459;;, + 152;3; 2.153459, 2.153459, 2.153459;;, + 153;3; 2.153459, 2.153459, 2.153459;;, + 154;3; 2.153459, 2.153459, 2.153459;;, + 155;3; 2.153459, 2.153459, 2.153459;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs/models/mobs_yeti.png b/mods/mobs/models/mobs_yeti.png new file mode 100644 index 0000000..ea0b2d5 Binary files /dev/null and b/mods/mobs/models/mobs_yeti.png differ diff --git a/mods/mobs/models/mobs_yeti.x b/mods/mobs/models/mobs_yeti.x new file mode 100644 index 0000000..1838e78 --- /dev/null +++ b/mods/mobs/models/mobs_yeti.x @@ -0,0 +1,2831 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature_root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.013544,-0.083633, 1.540002, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 0.996330, 0.085600, 0.000000, 0.000000, + 0.085600,-0.996329,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.692679, 1.523193, 0.000000, 1.000000;; + } + } //End of Armature_Bone_001 + Frame Armature_Bone_002 { + FrameTransformMatrix { + 0.996330,-0.085600, 0.000000, 0.000000, + -0.085600,-0.996329,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + -0.714786, 1.523193, 0.000000, 1.000000;; + } + } //End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + -0.000000, 0.000001,-1.000000, 0.000000, + 0.449504,-0.650638, 0.000000, 1.000000;; + } + } //End of Armature_Bone_003 + Frame Armature_Bone_004 { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + -0.000000, 0.000001,-1.000000, 0.000000, + -0.478980,-0.650638, 0.000000, 1.000000;; + } + } //End of Armature_Bone_004 + Frame Armature_Bone_005 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 1.402718,-0.262646, 1.000000;; + } + } //End of Armature_Bone_005 + } //End of Armature_root + Frame Cube_004 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { //Cube_010 Mesh + 144; + 0.318756; 0.789709; 3.232342;, + 0.318756;-0.016418; 3.232342;, + 0.318756;-0.016418; 3.887055;, + 0.318756; 0.789709; 3.887055;, + 0.318756;-0.016418; 3.232342;, + -0.348305;-0.016418; 3.232342;, + -0.348305;-0.016418; 3.887055;, + 0.318756;-0.016418; 3.887055;, + -0.348305;-0.016418; 3.232342;, + -0.348305; 0.789709; 3.232342;, + -0.348305; 0.789709; 3.887055;, + -0.348305;-0.016418; 3.887055;, + -0.348305; 0.789709; 3.232342;, + 0.318756; 0.789709; 3.232342;, + 0.318756; 0.789709; 3.887055;, + -0.348305; 0.789709; 3.887055;, + -0.348305; 0.789709; 3.232342;, + -0.348305;-0.016418; 3.232342;, + 0.318756;-0.016418; 3.232342;, + 0.318756; 0.789709; 3.232342;, + 0.318756; 0.789709; 3.887055;, + 0.318756;-0.016418; 3.887055;, + -0.348305;-0.016418; 3.887055;, + -0.348305; 0.789709; 3.887055;, + -0.705105; 0.178616; 1.633796;, + -0.705105;-0.325428; 1.633796;, + -0.705105;-0.325428; 3.633796;, + -0.705105; 0.178616; 3.633796;, + -0.705105;-0.325428; 1.633796;, + -1.047768;-0.325428; 1.633796;, + -1.047768;-0.325428; 3.633796;, + -0.705105;-0.325428; 3.633796;, + -1.047768;-0.325428; 1.633796;, + -1.047768; 0.178616; 1.633796;, + -1.047768; 0.178616; 3.633796;, + -1.047768;-0.325428; 3.633796;, + -1.047768; 0.178616; 1.633796;, + -0.705105; 0.178616; 1.633796;, + -0.705105; 0.178616; 3.633796;, + -1.047768; 0.178616; 3.633796;, + -1.047768; 0.178616; 1.633796;, + -1.047768;-0.325428; 1.633796;, + -0.705105;-0.325428; 1.633796;, + -0.705105; 0.178616; 1.633796;, + -0.705105; 0.178616; 3.633796;, + -0.705105;-0.325428; 3.633796;, + -1.047768;-0.325428; 3.633796;, + -1.047768; 0.178616; 3.633796;, + 0.677945;-0.325428; 3.633796;, + 0.677945;-0.325429; 1.633796;, + 0.677945; 0.178616; 1.633796;, + 0.677945; 0.178616; 3.633796;, + 1.020608;-0.325428; 3.633796;, + 1.020608;-0.325429; 1.633796;, + 0.677945;-0.325429; 1.633796;, + 0.677945;-0.325428; 3.633796;, + 1.020608; 0.178616; 3.633796;, + 1.020608; 0.178616; 1.633796;, + 1.020608;-0.325429; 1.633796;, + 1.020608;-0.325428; 3.633796;, + 0.677945; 0.178616; 3.633796;, + 0.677945; 0.178616; 1.633796;, + 1.020608; 0.178616; 1.633796;, + 1.020608; 0.178616; 3.633796;, + 0.677945;-0.325429; 1.633796;, + 1.020608;-0.325429; 1.633796;, + 1.020608; 0.178616; 1.633796;, + 0.677945; 0.178616; 1.633796;, + 1.020608;-0.325428; 3.633796;, + 0.677945;-0.325428; 3.633796;, + 0.677945; 0.178616; 3.633796;, + 1.020608; 0.178616; 3.633796;, + 0.301218;-0.337135; 1.403617;, + 0.301218;-0.337135; 0.551304;, + 0.301218; 0.166909; 0.551303;, + 0.301218; 0.166909; 1.403617;, + 0.643881;-0.337135; 1.403617;, + 0.643881;-0.337135; 0.551304;, + 0.301218;-0.337135; 0.551304;, + 0.301218;-0.337135; 1.403617;, + 0.643881; 0.166909; 1.403617;, + 0.643881; 0.166909; 0.551303;, + 0.643881;-0.337135; 0.551304;, + 0.643881;-0.337135; 1.403617;, + 0.301218; 0.166909; 1.403617;, + 0.301218; 0.166909; 0.551303;, + 0.643881; 0.166909; 0.551303;, + 0.643881; 0.166909; 1.403617;, + 0.301218;-0.337135; 0.551304;, + 0.643881;-0.337135; 0.551304;, + 0.643881; 0.166909; 0.551303;, + 0.301218; 0.166909; 0.551303;, + 0.643881;-0.337135; 1.403617;, + 0.301218;-0.337135; 1.403617;, + 0.301218; 0.166909; 1.403617;, + 0.643881; 0.166909; 1.403617;, + -0.284914; 0.166909; 1.403617;, + -0.284914; 0.166909; 0.551303;, + -0.284914;-0.337135; 0.551304;, + -0.284914;-0.337135; 1.403617;, + -0.627577; 0.166909; 1.403617;, + -0.627577; 0.166909; 0.551303;, + -0.284914; 0.166909; 0.551303;, + -0.284914; 0.166909; 1.403617;, + -0.627577;-0.337135; 1.403617;, + -0.627577;-0.337135; 0.551304;, + -0.627577; 0.166909; 0.551303;, + -0.627577; 0.166909; 1.403617;, + -0.284914;-0.337135; 1.403617;, + -0.284914;-0.337135; 0.551304;, + -0.627577;-0.337135; 0.551304;, + -0.627577;-0.337135; 1.403617;, + -0.284914; 0.166909; 0.551303;, + -0.627577; 0.166909; 0.551303;, + -0.627577;-0.337135; 0.551304;, + -0.284914;-0.337135; 0.551304;, + -0.627577; 0.166909; 1.403617;, + -0.284914; 0.166909; 1.403617;, + -0.284914;-0.337135; 1.403617;, + -0.627577;-0.337135; 1.403617;, + 0.665053; 0.418757; 1.363851;, + 0.665052;-0.399357; 1.363851;, + 0.665052;-0.399357; 3.791156;, + 0.665053; 0.418757; 3.791156;, + 0.665052;-0.399357; 1.363851;, + -0.694601;-0.399357; 1.363851;, + -0.694601;-0.399357; 3.791156;, + 0.665052;-0.399357; 3.791156;, + -0.694601;-0.399357; 1.363851;, + -0.694601; 0.418757; 1.363851;, + -0.694601; 0.418757; 3.791156;, + -0.694601;-0.399357; 3.791156;, + -0.694601; 0.418757; 1.363851;, + 0.665053; 0.418757; 1.363851;, + 0.665053; 0.418757; 3.791156;, + -0.694601; 0.418757; 3.791156;, + -0.694601; 0.418757; 1.363851;, + -0.694601;-0.399357; 1.363851;, + 0.665052;-0.399357; 1.363851;, + 0.665053; 0.418757; 1.363851;, + 0.665053; 0.418757; 3.791156;, + 0.665052;-0.399357; 3.791156;, + -0.694601;-0.399357; 3.791156;, + -0.694601; 0.418757; 3.791156;; + 36; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;; + MeshNormals { //Cube_010 Normals + 144; + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000; 1.000000;, + -0.000000;-0.000000; 1.000000;, + -0.000000;-0.000000; 1.000000;, + -0.000000;-0.000000; 1.000000;; + 36; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;; + } //End of Cube_010 Normals + MeshMaterialList { //Cube_010 Material List + 1; + 36; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Cube_010 Material List + MeshTextureCoords { //Cube_010 UV Coordinates + 144; + 0.387426; 0.459860;, + 0.094289; 0.459861;, + 0.094288; 0.286103;, + 0.387425; 0.286102;, + 0.059786; 0.262016;, + 0.418026; 0.261439;, + 0.418026; 0.433032;, + 0.059786; 0.433610;, + 0.389470; 0.458599;, + 0.095582; 0.458598;, + 0.094832; 0.288305;, + 0.388720; 0.288306;, + 0.417249; 0.254044;, + 0.059948; 0.254044;, + 0.059948; 0.055927;, + 0.417249; 0.055927;, + 0.419848; 0.262019;, + 0.419848; 0.457484;, + 0.059357; 0.457485;, + 0.059357; 0.262019;, + 0.058928; 0.455355;, + 0.058928; 0.259888;, + 0.419832; 0.259888;, + 0.419832; 0.455355;, + 0.202332; 0.663934;, + 0.202332; 0.543673;, + 0.822669; 0.543673;, + 0.822669; 0.663933;, + 0.202981; 0.662859;, + 0.202981; 0.542598;, + 0.823317; 0.542598;, + 0.823317; 0.662858;, + 0.000739; 0.691902;, + 0.000739; 0.542773;, + 0.728975; 0.542773;, + 0.728975; 0.691902;, + 0.030510; 0.562226;, + 0.030510; 0.441965;, + 0.650847; 0.441965;, + 0.650847; 0.562226;, + 0.033201; 0.715150;, + 0.033201; 0.564904;, + 0.228521; 0.564904;, + 0.228521; 0.715150;, + 0.430636; 0.539772;, + 0.430636; 0.688205;, + 0.237674; 0.688205;, + 0.237674; 0.539772;, + 0.822669; 0.543673;, + 0.202332; 0.543673;, + 0.202332; 0.663934;, + 0.822669; 0.663933;, + 0.823317; 0.542598;, + 0.202981; 0.542598;, + 0.202981; 0.662859;, + 0.823317; 0.662858;, + 0.728975; 0.542773;, + 0.000739; 0.542773;, + 0.000739; 0.691902;, + 0.728975; 0.691902;, + 0.650847; 0.441965;, + 0.030510; 0.441965;, + 0.030510; 0.562226;, + 0.650847; 0.562226;, + 0.228521; 0.564904;, + 0.033201; 0.564904;, + 0.033201; 0.715150;, + 0.228521; 0.715150;, + 0.237674; 0.688205;, + 0.430636; 0.688205;, + 0.430636; 0.539772;, + 0.237674; 0.539772;, + 0.748471; 0.491562;, + 0.747890; 0.636872;, + 0.866287; 0.636872;, + 0.866868; 0.491562;, + 0.873832; 0.491802;, + 0.873832; 0.636858;, + 0.962763; 0.636858;, + 0.962763; 0.491802;, + 0.747989; 0.490711;, + 0.747989; 0.636113;, + 0.865800; 0.636482;, + 0.865800; 0.491080;, + 0.616586; 0.490156;, + 0.616586; 0.639542;, + 0.741276; 0.639912;, + 0.741276; 0.490526;, + 0.865800; 0.740186;, + 0.865800; 0.640286;, + 0.745723; 0.640286;, + 0.745723; 0.740186;, + 0.866661; 0.488915;, + 0.866661; 0.387572;, + 0.746584; 0.387572;, + 0.746584; 0.488915;, + 0.736344; 0.489306;, + 0.736344; 0.642007;, + 0.865321; 0.642007;, + 0.865321; 0.489306;, + 0.866972; 0.489546;, + 0.866972; 0.642541;, + 0.966818; 0.642541;, + 0.966818; 0.489546;, + 0.735819; 0.488455;, + 0.735819; 0.642172;, + 0.864157; 0.642541;, + 0.864157; 0.488825;, + 0.607233; 0.488825;, + 0.607233; 0.638211;, + 0.732937; 0.638580;, + 0.732937; 0.489194;, + 0.864157; 0.742441;, + 0.864157; 0.642541;, + 0.733349; 0.642541;, + 0.733349; 0.742441;, + 0.865096; 0.486660;, + 0.865096; 0.385316;, + 0.734288; 0.385316;, + 0.734288; 0.486660;, + 0.707025; 0.460657;, + 0.520830; 0.459733;, + 0.520830; 0.042592;, + 0.707025; 0.043516;, + 0.998302; 0.458761;, + 0.521381; 0.458761;, + 0.521381; 0.041735;, + 0.998302; 0.041735;, + 0.996909; 0.458865;, + 0.809286; 0.458288;, + 0.809287; 0.043455;, + 0.996911; 0.044033;, + 0.997038; 0.458464;, + 0.521559; 0.458463;, + 0.521559; 0.043516;, + 0.997039; 0.043516;, + 0.995549; 0.309499;, + 0.995549; 0.458510;, + 0.518634; 0.458509;, + 0.518634; 0.309498;, + 0.520935; 0.199387;, + 0.520935; 0.040936;, + 0.996415; 0.040936;, + 0.996415; 0.199387;; + } //End of Cube_010 UV Coordinates + XSkinMeshHeader { + 6; + 18; + 6; + } + SkinWeights { + "Armature_Bone_003"; + 72; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 0.000128, + 0.000000, + 0.000000, + 0.000000, + 0.000050, + 0.000000, + 0.000000, + 0.000128, + 0.000000, + 0.000000, + 0.000000, + 0.000050, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000050, + 0.000128, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 0.999758, + 1.000000, + 0.997048, + 0.990071, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.990071, + 0.997048, + 1.000000, + 0.999758, + 1.000000, + 1.000000, + 1.000000, + 0.990071, + 1.000000, + 0.999758, + 0.997048, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000001, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000001, 0.000000, + -0.463048, 1.430443, 0.083633, 1.000000;; + } //End of Armature_Bone_003 Skin Weights + SkinWeights { + "Armature_root"; + 78; + 49, + 50, + 54, + 61, + 64, + 67, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000018, + 0.009929, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.009929, + 0.000018, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.009929, + 0.000000, + 0.000000, + 0.000018, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.013544,-2.081081,-0.083634, 1.000000;; + } //End of Armature_root Skin Weights + SkinWeights { + "Armature_Bone_004"; + 72; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000242, + 0.000000, + 0.002934, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.002934, + 0.000000, + 0.000242, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000242, + 0.002934, + 0.000000, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 0.998068, + 0.999999, + 1.000000, + 1.000000, + 0.999920, + 0.999974, + 0.999999, + 0.998068, + 0.999999, + 1.000000, + 0.999974, + 0.999920, + 1.000000, + 0.999999, + 0.999974, + 1.000000, + 0.998068, + 1.000000, + 0.999999, + 0.999920; + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000001, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000001, 0.000000, + 0.465436, 1.430442, 0.083633, 1.000000;; + } //End of Armature_Bone_004 Skin Weights + SkinWeights { + "Armature_Bone_002"; + 72; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.001932, + 0.000001, + 0.000000, + 0.000000, + 0.000080, + 0.000026, + 0.000001, + 0.001932, + 0.000001, + 0.000000, + 0.000026, + 0.000080, + 0.000000, + 0.000001, + 0.000026, + 0.000000, + 0.001932, + 0.000000, + 0.000001, + 0.000080; + 0.996330,-0.085600, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.085600,-0.996330, 0.000000, 0.000000, + 1.007194, 3.531019, 0.083633, 1.000000;; + } //End of Armature_Bone_002 Skin Weights + SkinWeights { + "Armature_Bone_005"; + 48; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000004, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000004, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000004; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.013544,-0.179013,-3.483799, 1.000000;; + } //End of Armature_Bone_005 Skin Weights + SkinWeights { + "Armature_Bone_001"; + 48; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95; + 0.999872, + 1.000000, + 1.000000, + 1.000000, + 0.999950, + 1.000000, + 1.000000, + 0.999872, + 0.999996, + 0.999999, + 1.000000, + 0.999950, + 1.000000, + 1.000000, + 0.999999, + 0.999996, + 1.000000, + 1.000000, + 0.999999, + 1.000000, + 0.999950, + 0.999872, + 1.000000, + 0.999996, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 0.996330, 0.085600, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + 0.085600,-0.996330, 0.000000, 0.000000, + -1.012157, 3.530593, 0.083633, 1.000000;; + } //End of Armature_Bone_001 Skin Weights + } //End of Cube_010 Mesh + } //End of Cube_004 + } //End of Armature +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 51; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_root} + AnimationKey { //Position + 2; + 51; + 0;3; 0.013544,-0.083633, 1.540002;;, + 1;3; 0.013544,-0.083633, 1.540002;;, + 2;3; 0.013544,-0.083633, 1.540002;;, + 3;3; 0.013544,-0.083633, 1.540002;;, + 4;3; 0.013544,-0.083633, 1.540002;;, + 5;3; 0.013544,-0.083633, 1.540002;;, + 6;3; 0.013544,-0.083633, 1.540002;;, + 7;3; 0.013544,-0.083633, 1.540002;;, + 8;3; 0.013544,-0.083633, 1.540002;;, + 9;3; 0.013544,-0.083633, 1.540002;;, + 10;3; 0.013544,-0.083633, 1.540002;;, + 11;3; 0.013544,-0.083633, 1.540002;;, + 12;3; 0.013544,-0.083633, 1.540002;;, + 13;3; 0.013544,-0.083633, 1.540002;;, + 14;3; 0.013544,-0.083633, 1.540002;;, + 15;3; 0.013544,-0.083633, 1.540002;;, + 16;3; 0.013544,-0.083633, 1.540002;;, + 17;3; 0.013544,-0.083633, 1.540002;;, + 18;3; 0.013544,-0.083633, 1.540002;;, + 19;3; 0.013544,-0.083633, 1.540002;;, + 20;3; 0.013544,-0.083633, 1.540002;;, + 21;3; 0.013544,-0.083633, 1.540002;;, + 22;3; 0.013544,-0.083633, 1.540002;;, + 23;3; 0.013544,-0.083633, 1.540002;;, + 24;3; 0.013544,-0.083633, 1.540002;;, + 25;3; 0.013544,-0.083633, 1.540002;;, + 26;3; 0.013544,-0.083633, 1.540002;;, + 27;3; 0.013544,-0.083633, 1.540002;;, + 28;3; 0.013544,-0.083633, 1.540002;;, + 29;3; 0.013544,-0.083633, 1.540002;;, + 30;3; 0.013544,-0.083633, 1.540002;;, + 31;3; 0.013544,-0.083633, 1.540002;;, + 32;3; 0.013544,-0.083633, 1.540002;;, + 33;3; 0.013544,-0.083633, 1.540002;;, + 34;3; 0.013544,-0.083633, 1.540002;;, + 35;3; 0.013544,-0.083633, 1.540002;;, + 36;3; 0.013544,-0.083633, 1.540002;;, + 37;3; 0.013544,-0.083633, 1.540002;;, + 38;3; 0.013544,-0.083633, 1.540002;;, + 39;3; 0.013544,-0.083633, 1.540002;;, + 40;3; 0.013544,-0.083633, 1.540002;;, + 41;3; 0.013544,-0.083633, 1.540002;;, + 42;3; 0.013544,-0.083633, 1.540002;;, + 43;3; 0.013544,-0.083633, 1.540002;;, + 44;3; 0.013544,-0.083633, 1.540002;;, + 45;3; 0.013544,-0.083633, 1.540002;;, + 46;3; 0.013544,-0.083633, 1.540002;;, + 47;3; 0.013544,-0.083633, 1.540002;;, + 48;3; 0.013544,-0.083633, 1.540002;;, + 49;3; 0.013544,-0.083633, 1.540002;;, + 50;3; 0.013544,-0.083633, 1.540002;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 2;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 3;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 4;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 5;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 6;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 7;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 9;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 10;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 11;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 12;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 13;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 14;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 16;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 17;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 18;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 19;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 20;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 21;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 22;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 23;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 24;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 25;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 26;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 27;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 28;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 29;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 30;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 31;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 32;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 33;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 34;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 35;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 36;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 37;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 38;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 39;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 40;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 42;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 43;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 44;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 45;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 46;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 47;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 48;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 49;4; -0.707107, 0.707107, 0.000000, 0.000000;;, + 50;4; -0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { //Position + 2; + 51; + 0;3; 0.692679, 1.523193, 0.000000;;, + 1;3; 0.692679, 1.523193, 0.000000;;, + 2;3; 0.692679, 1.523193, 0.000000;;, + 3;3; 0.692679, 1.523193, 0.000000;;, + 4;3; 0.692679, 1.523193, 0.000000;;, + 5;3; 0.692679, 1.523193, 0.000000;;, + 6;3; 0.692679, 1.523193, 0.000000;;, + 7;3; 0.692679, 1.523193, 0.000000;;, + 8;3; 0.692679, 1.523193, 0.000000;;, + 9;3; 0.692679, 1.523193, 0.000000;;, + 10;3; 0.692679, 1.523193, 0.000000;;, + 11;3; 0.692679, 1.523193, 0.000000;;, + 12;3; 0.692679, 1.523193, 0.000000;;, + 13;3; 0.692679, 1.523193, 0.000000;;, + 14;3; 0.692679, 1.523193, 0.000000;;, + 15;3; 0.692679, 1.523193, 0.000000;;, + 16;3; 0.692679, 1.523193, 0.000000;;, + 17;3; 0.692679, 1.523193, 0.000000;;, + 18;3; 0.692679, 1.523193, 0.000000;;, + 19;3; 0.692679, 1.523193, 0.000000;;, + 20;3; 0.692679, 1.523193, 0.000000;;, + 21;3; 0.692679, 1.523193, 0.000000;;, + 22;3; 0.692679, 1.523193, 0.000000;;, + 23;3; 0.692679, 1.523193, 0.000000;;, + 24;3; 0.692679, 1.523193, 0.000000;;, + 25;3; 0.692679, 1.523193, 0.000000;;, + 26;3; 0.692679, 1.523193, 0.000000;;, + 27;3; 0.692679, 1.523193, 0.000000;;, + 28;3; 0.692679, 1.523193, 0.000000;;, + 29;3; 0.692679, 1.523193, 0.000000;;, + 30;3; 0.692679, 1.523193, 0.000000;;, + 31;3; 0.692679, 1.523193, 0.000000;;, + 32;3; 0.692679, 1.523193, 0.000000;;, + 33;3; 0.692679, 1.523193, 0.000000;;, + 34;3; 0.692679, 1.523193, 0.000000;;, + 35;3; 0.692679, 1.523193, 0.000000;;, + 36;3; 0.692679, 1.523193, 0.000000;;, + 37;3; 0.692679, 1.523193, 0.000000;;, + 38;3; 0.692679, 1.523193, 0.000000;;, + 39;3; 0.692679, 1.523193, 0.000000;;, + 40;3; 0.692679, 1.523193, 0.000000;;, + 41;3; 0.692679, 1.523193, 0.000000;;, + 42;3; 0.692679, 1.523193, 0.000000;;, + 43;3; 0.692679, 1.523193, 0.000000;;, + 44;3; 0.692679, 1.523193, 0.000000;;, + 45;3; 0.692679, 1.523193, 0.000000;;, + 46;3; 0.692679, 1.523193, 0.000000;;, + 47;3; 0.692679, 1.523193, 0.000000;;, + 48;3; 0.692679, 1.523193, 0.000000;;, + 49;3; 0.692679, 1.523193, 0.000000;;, + 50;3; 0.692679, 1.523193, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -0.000000, 0.999054, 0.043483, 0.000000;;, + 1;4; -0.000000, 0.999054, 0.043483, 0.000000;;, + 2;4; -0.002786, 0.998997, 0.043893,-0.000311;;, + 3;4; -0.010065, 0.998846, 0.045127,-0.000920;;, + 4;4; -0.017323, 0.998682, 0.047110,-0.001040;;, + 5;4; -0.020088, 0.998523, 0.049636,-0.000842;;, + 6;4; -0.018689, 0.998359, 0.052361,-0.000658;;, + 7;4; -0.014500, 0.998211, 0.054887,-0.000453;;, + 8;4; -0.008418, 0.998097, 0.056873,-0.000262;;, + 9;4; -0.002308, 0.998029, 0.058110,-0.000095;;, + 10;4; 0.002359, 0.998007, 0.058522, 0.000050;;, + 11;4; 0.006399, 0.998054, 0.058190, 0.000214;;, + 12;4; 0.010483, 0.998189, 0.057189, 0.000409;;, + 13;4; 0.013328, 0.998365, 0.055560, 0.000560;;, + 14;4; 0.014240, 0.998526, 0.053427, 0.000611;;, + 15;4; 0.013361, 0.998670, 0.051008, 0.000573;;, + 16;4; 0.010801, 0.998803, 0.048589, 0.000463;;, + 17;4; 0.007120, 0.998914, 0.046454, 0.000305;;, + 18;4; 0.003440, 0.998994, 0.044821, 0.000148;;, + 19;4; 0.000880, 0.999040, 0.043816, 0.000038;;, + 20;4; -0.000000, 0.999054, 0.043483, 0.000000;;, + 21;4; 0.018035, 0.997872, 0.043432, 0.000785;;, + 22;4; 0.065205, 0.994781, 0.043298, 0.002838;;, + 23;4; 0.112371, 0.991689, 0.043163, 0.004891;;, + 24;4; 0.130403, 0.990507, 0.043111, 0.005676;;, + 25;4; 0.121352, 0.990507, 0.043111, 0.005282;;, + 26;4; 0.094337, 0.990507, 0.043111, 0.004106;;, + 27;4; 0.051808, 0.990507, 0.043111, 0.002255;;, + 28;4; -0.000000, 0.990507, 0.043111, 0.000000;;, + 29;4; -0.051808, 0.990507, 0.043111,-0.002255;;, + 30;4; -0.094338, 0.990507, 0.043111,-0.004106;;, + 31;4; -0.121352, 0.990507, 0.043111,-0.005282;;, + 32;4; -0.130403, 0.990507, 0.043111,-0.005676;;, + 33;4; -0.126687, 0.991693, 0.043073,-0.005509;;, + 34;4; -0.108005, 0.994795, 0.042975,-0.004685;;, + 35;4; -0.065065, 0.997896, 0.042877,-0.002811;;, + 36;4; -0.000000, 0.999082, 0.042839, 0.000000;;, + 37;4; 0.120436, 0.986490, 0.042299, 0.005178;;, + 38;4; 0.276464, 0.957580, 0.041060, 0.011891;;, + 39;4; 0.341430, 0.938931, 0.040260, 0.014640;;, + 40;4; 0.341438, 0.934855, 0.008219, 0.003024;;, + 41;4; 0.340581, 0.936196,-0.059903,-0.021794;;, + 42;4; 0.340108, 0.935297,-0.091824,-0.033391;;, + 43;4; 0.340866, 0.926626,-0.010721,-0.004014;;, + 44;4; 0.339248, 0.913310, 0.162947, 0.058982;;, + 45;4; 0.330009, 0.907523, 0.244160, 0.088785;;, + 46;4; 0.275994, 0.920184, 0.216318, 0.076868;;, + 47;4; 0.157556, 0.953297, 0.143541, 0.044720;;, + 48;4; 0.043241, 0.986416, 0.070721, 0.012386;;, + 49;4; -0.000000, 0.999082, 0.042839, 0.000000;;, + 50;4; -0.000000, 0.999082, 0.042839, 0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { //Position + 2; + 51; + 0;3; -0.714786, 1.523193, 0.000000;;, + 1;3; -0.714786, 1.523193, 0.000000;;, + 2;3; -0.714786, 1.523193, 0.000000;;, + 3;3; -0.714786, 1.523193, 0.000000;;, + 4;3; -0.714786, 1.523193, 0.000000;;, + 5;3; -0.714786, 1.523193, 0.000000;;, + 6;3; -0.714786, 1.523193, 0.000000;;, + 7;3; -0.714786, 1.523193, 0.000000;;, + 8;3; -0.714786, 1.523193, 0.000000;;, + 9;3; -0.714786, 1.523193, 0.000000;;, + 10;3; -0.714786, 1.523193, 0.000000;;, + 11;3; -0.714786, 1.523193, 0.000000;;, + 12;3; -0.714786, 1.523193, 0.000000;;, + 13;3; -0.714786, 1.523193, 0.000000;;, + 14;3; -0.714786, 1.523193, 0.000000;;, + 15;3; -0.714786, 1.523193, 0.000000;;, + 16;3; -0.714786, 1.523193, 0.000000;;, + 17;3; -0.714786, 1.523193, 0.000000;;, + 18;3; -0.714786, 1.523193, 0.000000;;, + 19;3; -0.714786, 1.523193, 0.000000;;, + 20;3; -0.714786, 1.523193, 0.000000;;, + 21;3; -0.714786, 1.523193, 0.000000;;, + 22;3; -0.714786, 1.523193, 0.000000;;, + 23;3; -0.714786, 1.523193, 0.000000;;, + 24;3; -0.714786, 1.523193, 0.000000;;, + 25;3; -0.714786, 1.523193, 0.000000;;, + 26;3; -0.714786, 1.523193, 0.000000;;, + 27;3; -0.714786, 1.523193, 0.000000;;, + 28;3; -0.714786, 1.523193, 0.000000;;, + 29;3; -0.714786, 1.523193, 0.000000;;, + 30;3; -0.714786, 1.523193, 0.000000;;, + 31;3; -0.714786, 1.523193, 0.000000;;, + 32;3; -0.714786, 1.523193, 0.000000;;, + 33;3; -0.714786, 1.523193, 0.000000;;, + 34;3; -0.714786, 1.523193, 0.000000;;, + 35;3; -0.714786, 1.523193, 0.000000;;, + 36;3; -0.714786, 1.523193, 0.000000;;, + 37;3; -0.714786, 1.523193, 0.000000;;, + 38;3; -0.714786, 1.523193, 0.000000;;, + 39;3; -0.714786, 1.523193, 0.000000;;, + 40;3; -0.714786, 1.523193, 0.000000;;, + 41;3; -0.714786, 1.523193, 0.000000;;, + 42;3; -0.714786, 1.523193, 0.000000;;, + 43;3; -0.714786, 1.523193, 0.000000;;, + 44;3; -0.714786, 1.523193, 0.000000;;, + 45;3; -0.714786, 1.523193, 0.000000;;, + 46;3; -0.714786, 1.523193, 0.000000;;, + 47;3; -0.714786, 1.523193, 0.000000;;, + 48;3; -0.714786, 1.523193, 0.000000;;, + 49;3; -0.714786, 1.523193, 0.000000;;, + 50;3; -0.714786, 1.523193, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -0.000000, 0.999110,-0.042196, 0.000000;;, + 1;4; -0.000000, 0.999110,-0.042196, 0.000000;;, + 2;4; 0.000704, 0.999095,-0.042530,-0.000030;;, + 3;4; 0.002688, 0.999050,-0.043530,-0.000115;;, + 4;4; 0.005236, 0.998976,-0.045136,-0.000224;;, + 5;4; 0.007220, 0.998879,-0.047179,-0.000310;;, + 6;4; 0.007924, 0.998770,-0.049383,-0.000340;;, + 7;4; 0.006508, 0.998640,-0.051425,-0.000298;;, + 8;4; 0.002376, 0.998489,-0.053027,-0.000169;;, + 9;4; -0.002908, 0.998369,-0.054024, 0.000011;;, + 10;4; -0.007235, 0.998326,-0.054356, 0.000183;;, + 11;4; -0.011320, 0.998359,-0.054088, 0.000391;;, + 12;4; -0.015247, 0.998449,-0.053278, 0.000624;;, + 13;4; -0.016679, 0.998551,-0.051959, 0.000715;;, + 14;4; -0.015923, 0.998656,-0.050234, 0.000683;;, + 15;4; -0.013685, 0.998770,-0.048279, 0.000587;;, + 16;4; -0.010274, 0.998882,-0.046323, 0.000441;;, + 17;4; -0.006406, 0.998979,-0.044597, 0.000275;;, + 18;4; -0.002996, 0.999051,-0.043278, 0.000128;;, + 19;4; -0.000757, 0.999095,-0.042466, 0.000032;;, + 20;4; -0.000000, 0.999110,-0.042196, 0.000000;;, + 21;4; -0.018036, 0.997928,-0.042146, 0.000762;;, + 22;4; -0.065209, 0.994836,-0.042014, 0.002754;;, + 23;4; -0.112377, 0.991744,-0.041884, 0.004746;;, + 24;4; -0.130410, 0.990562,-0.041835, 0.005508;;, + 25;4; -0.121359, 0.990562,-0.041835, 0.005126;;, + 26;4; -0.094343, 0.990562,-0.041835, 0.003985;;, + 27;4; -0.051811, 0.990562,-0.041835, 0.002188;;, + 28;4; -0.000000, 0.990562,-0.041835, 0.000000;;, + 29;4; 0.051811, 0.990562,-0.041835,-0.002188;;, + 30;4; 0.094343, 0.990562,-0.041835,-0.003984;;, + 31;4; 0.121359, 0.990562,-0.041835,-0.005125;;, + 32;4; 0.130410, 0.990562,-0.041835,-0.005508;;, + 33;4; 0.112382, 0.991740,-0.041974,-0.004746;;, + 34;4; 0.065231, 0.994822,-0.042337,-0.002753;;, + 35;4; 0.018053, 0.997904,-0.042701,-0.000761;;, + 36;4; -0.000000, 0.999082,-0.042839, 0.000000;;, + 37;4; 0.083385, 0.985795,-0.042270,-0.003592;;, + 38;4; 0.261893, 0.955695,-0.040979,-0.011274;;, + 39;4; 0.345980, 0.937264,-0.040189,-0.014835;;, + 40;4; 0.346156, 0.933706,-0.010684,-0.003973;;, + 41;4; 0.345424, 0.934834, 0.052066, 0.019224;;, + 42;4; 0.344990, 0.934584, 0.081436, 0.030061;;, + 43;4; 0.345701, 0.928801, 0.012686, 0.004769;;, + 44;4; 0.344806, 0.919766,-0.134517,-0.049452;;, + 45;4; 0.338064, 0.915821,-0.203345,-0.075062;;, + 46;4; 0.285075, 0.927335,-0.181147,-0.064951;;, + 47;4; 0.163548, 0.957448,-0.123111,-0.037771;;, + 48;4; 0.045024, 0.987565,-0.065056,-0.010458;;, + 49;4; -0.000000, 0.999082,-0.042839, 0.000000;;, + 50;4; -0.000000, 0.999082,-0.042839, 0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { //Position + 2; + 51; + 0;3; 0.449504,-0.650638, 0.000000;;, + 1;3; 0.449504,-0.650638, 0.000000;;, + 2;3; 0.449504,-0.650638, 0.000000;;, + 3;3; 0.449504,-0.650638, 0.000000;;, + 4;3; 0.449504,-0.650638, 0.000000;;, + 5;3; 0.449504,-0.650638, 0.000000;;, + 6;3; 0.449504,-0.650638, 0.000000;;, + 7;3; 0.449504,-0.650638, 0.000000;;, + 8;3; 0.449504,-0.650638, 0.000000;;, + 9;3; 0.449504,-0.650638, 0.000000;;, + 10;3; 0.449504,-0.650638, 0.000000;;, + 11;3; 0.449504,-0.650638, 0.000000;;, + 12;3; 0.449504,-0.650638, 0.000000;;, + 13;3; 0.449504,-0.650638, 0.000000;;, + 14;3; 0.449504,-0.650638, 0.000000;;, + 15;3; 0.449504,-0.650638, 0.000000;;, + 16;3; 0.449504,-0.650638, 0.000000;;, + 17;3; 0.449504,-0.650638, 0.000000;;, + 18;3; 0.449504,-0.650638, 0.000000;;, + 19;3; 0.449504,-0.650638, 0.000000;;, + 20;3; 0.449504,-0.650638, 0.000000;;, + 21;3; 0.449504,-0.650638, 0.000000;;, + 22;3; 0.449504,-0.650638, 0.000000;;, + 23;3; 0.449504,-0.650638, 0.000000;;, + 24;3; 0.449504,-0.650638, 0.000000;;, + 25;3; 0.449504,-0.650638, 0.000000;;, + 26;3; 0.449504,-0.650638, 0.000000;;, + 27;3; 0.449504,-0.650638, 0.000000;;, + 28;3; 0.449504,-0.650638, 0.000000;;, + 29;3; 0.449504,-0.650638, 0.000000;;, + 30;3; 0.449504,-0.650638, 0.000000;;, + 31;3; 0.449504,-0.650638, 0.000000;;, + 32;3; 0.449504,-0.650638, 0.000000;;, + 33;3; 0.449504,-0.650638, 0.000000;;, + 34;3; 0.449504,-0.650638, 0.000000;;, + 35;3; 0.449504,-0.650638, 0.000000;;, + 36;3; 0.449504,-0.650638, 0.000000;;, + 37;3; 0.449504,-0.650638, 0.000000;;, + 38;3; 0.449504,-0.650638, 0.000000;;, + 39;3; 0.449504,-0.650638, 0.000000;;, + 40;3; 0.449504,-0.650638, 0.000000;;, + 41;3; 0.449504,-0.650638, 0.000000;;, + 42;3; 0.449504,-0.650638, 0.000000;;, + 43;3; 0.449504,-0.650638, 0.000000;;, + 44;3; 0.449504,-0.650638, 0.000000;;, + 45;3; 0.449504,-0.650638, 0.000000;;, + 46;3; 0.449504,-0.650638, 0.000000;;, + 47;3; 0.449504,-0.650638, 0.000000;;, + 48;3; 0.449504,-0.650638, 0.000000;;, + 49;3; 0.449504,-0.650638, 0.000000;;, + 50;3; 0.449504,-0.650638, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 21;4; -0.018053, 0.998817,-0.000000,-0.000000;;, + 22;4; -0.065268, 0.995722,-0.000000,-0.000000;;, + 23;4; -0.112478, 0.992628,-0.000000,-0.000000;;, + 24;4; -0.130527, 0.991445,-0.000000,-0.000000;;, + 25;4; -0.121468, 0.991445,-0.000000,-0.000000;;, + 26;4; -0.094427, 0.991445,-0.000000,-0.000000;;, + 27;4; -0.051857, 0.991445,-0.000000,-0.000000;;, + 28;4; -0.000000, 0.991445,-0.000000,-0.000000;;, + 29;4; 0.051857, 0.991445,-0.000000,-0.000000;;, + 30;4; 0.094426, 0.991445,-0.000000,-0.000000;;, + 31;4; 0.121467, 0.991445,-0.000000,-0.000000;;, + 32;4; 0.130526, 0.991445,-0.000000,-0.000000;;, + 33;4; 0.112480, 0.992628,-0.000000,-0.000000;;, + 34;4; 0.065279, 0.995722,-0.000000,-0.000000;;, + 35;4; 0.018062, 0.998817,-0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000,-0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { //Position + 2; + 51; + 0;3; -0.478980,-0.650638, 0.000000;;, + 1;3; -0.478980,-0.650638, 0.000000;;, + 2;3; -0.478980,-0.650638, 0.000000;;, + 3;3; -0.478980,-0.650638, 0.000000;;, + 4;3; -0.478980,-0.650638, 0.000000;;, + 5;3; -0.478980,-0.650638, 0.000000;;, + 6;3; -0.478980,-0.650638, 0.000000;;, + 7;3; -0.478980,-0.650638, 0.000000;;, + 8;3; -0.478980,-0.650638, 0.000000;;, + 9;3; -0.478980,-0.650638, 0.000000;;, + 10;3; -0.478980,-0.650638, 0.000000;;, + 11;3; -0.478980,-0.650638, 0.000000;;, + 12;3; -0.478980,-0.650638, 0.000000;;, + 13;3; -0.478980,-0.650638, 0.000000;;, + 14;3; -0.478980,-0.650638, 0.000000;;, + 15;3; -0.478980,-0.650638, 0.000000;;, + 16;3; -0.478980,-0.650638, 0.000000;;, + 17;3; -0.478980,-0.650638, 0.000000;;, + 18;3; -0.478980,-0.650638, 0.000000;;, + 19;3; -0.478980,-0.650638, 0.000000;;, + 20;3; -0.478980,-0.650638, 0.000000;;, + 21;3; -0.478980,-0.650638, 0.000000;;, + 22;3; -0.478980,-0.650638, 0.000000;;, + 23;3; -0.478980,-0.650638, 0.000000;;, + 24;3; -0.478980,-0.650638, 0.000000;;, + 25;3; -0.478980,-0.650638, 0.000000;;, + 26;3; -0.478980,-0.650638, 0.000000;;, + 27;3; -0.478980,-0.650638, 0.000000;;, + 28;3; -0.478980,-0.650638, 0.000000;;, + 29;3; -0.478980,-0.650638, 0.000000;;, + 30;3; -0.478980,-0.650638, 0.000000;;, + 31;3; -0.478980,-0.650638, 0.000000;;, + 32;3; -0.478980,-0.650638, 0.000000;;, + 33;3; -0.478980,-0.650638, 0.000000;;, + 34;3; -0.478980,-0.650638, 0.000000;;, + 35;3; -0.478980,-0.650638, 0.000000;;, + 36;3; -0.478980,-0.650638, 0.000000;;, + 37;3; -0.478980,-0.650638, 0.000000;;, + 38;3; -0.478980,-0.650638, 0.000000;;, + 39;3; -0.478980,-0.650638, 0.000000;;, + 40;3; -0.478980,-0.650638, 0.000000;;, + 41;3; -0.478980,-0.650638, 0.000000;;, + 42;3; -0.478980,-0.650638, 0.000000;;, + 43;3; -0.478980,-0.650638, 0.000000;;, + 44;3; -0.478980,-0.650638, 0.000000;;, + 45;3; -0.478980,-0.650638, 0.000000;;, + 46;3; -0.478980,-0.650638, 0.000000;;, + 47;3; -0.478980,-0.650638, 0.000000;;, + 48;3; -0.478980,-0.650638, 0.000000;;, + 49;3; -0.478980,-0.650638, 0.000000;;, + 50;3; -0.478980,-0.650638, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 1;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 2;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 3;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 4;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 5;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 6;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 7;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 8;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 9;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 10;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 11;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 12;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 13;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 14;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 15;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 16;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 17;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 18;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 19;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 20;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 21;4; 0.018052, 0.998817,-0.000000,-0.000000;;, + 22;4; 0.065267, 0.995722,-0.000000,-0.000000;;, + 23;4; 0.112477, 0.992628,-0.000000,-0.000000;;, + 24;4; 0.130526, 0.991445,-0.000000,-0.000000;;, + 25;4; 0.121467, 0.991445,-0.000000,-0.000000;;, + 26;4; 0.094426, 0.991445,-0.000000,-0.000000;;, + 27;4; 0.051856, 0.991445,-0.000000,-0.000000;;, + 28;4; -0.000000, 0.991445,-0.000000,-0.000000;;, + 29;4; -0.051857, 0.991445,-0.000000,-0.000000;;, + 30;4; -0.094427, 0.991445,-0.000000,-0.000000;;, + 31;4; -0.121468, 0.991445,-0.000000,-0.000000;;, + 32;4; -0.130527, 0.991445,-0.000000,-0.000000;;, + 33;4; -0.112481, 0.992628,-0.000000,-0.000000;;, + 34;4; -0.065280, 0.995722,-0.000000,-0.000000;;, + 35;4; -0.018062, 0.998817,-0.000000,-0.000000;;, + 36;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 37;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 38;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 39;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 40;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 41;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 42;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 43;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 44;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 45;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 46;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 47;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 48;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 49;4; -0.000000, 1.000000,-0.000000,-0.000000;;, + 50;4; -0.000000, 1.000000,-0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_005} + AnimationKey { //Position + 2; + 51; + 0;3; 0.000000, 1.402718,-0.262646;;, + 1;3; 0.000000, 1.402718,-0.262646;;, + 2;3; 0.000000, 1.402718,-0.262646;;, + 3;3; 0.000000, 1.402718,-0.262646;;, + 4;3; 0.000000, 1.402718,-0.262646;;, + 5;3; 0.000000, 1.402718,-0.262646;;, + 6;3; 0.000000, 1.402718,-0.262646;;, + 7;3; 0.000000, 1.402718,-0.262646;;, + 8;3; 0.000000, 1.402718,-0.262646;;, + 9;3; 0.000000, 1.402718,-0.262646;;, + 10;3; 0.000000, 1.402718,-0.262646;;, + 11;3; 0.000000, 1.402718,-0.262646;;, + 12;3; 0.000000, 1.402718,-0.262646;;, + 13;3; 0.000000, 1.402718,-0.262646;;, + 14;3; 0.000000, 1.402718,-0.262646;;, + 15;3; 0.000000, 1.402718,-0.262646;;, + 16;3; 0.000000, 1.402718,-0.262646;;, + 17;3; 0.000000, 1.402718,-0.262646;;, + 18;3; 0.000000, 1.402718,-0.262646;;, + 19;3; 0.000000, 1.402718,-0.262646;;, + 20;3; 0.000000, 1.402718,-0.262646;;, + 21;3; 0.000000, 1.402718,-0.262646;;, + 22;3; 0.000000, 1.402718,-0.262646;;, + 23;3; 0.000000, 1.402718,-0.262646;;, + 24;3; 0.000000, 1.402718,-0.262646;;, + 25;3; 0.000000, 1.402718,-0.262646;;, + 26;3; 0.000000, 1.402718,-0.262646;;, + 27;3; 0.000000, 1.402718,-0.262646;;, + 28;3; 0.000000, 1.402718,-0.262646;;, + 29;3; 0.000000, 1.402718,-0.262646;;, + 30;3; 0.000000, 1.402718,-0.262646;;, + 31;3; 0.000000, 1.402718,-0.262646;;, + 32;3; 0.000000, 1.402718,-0.262646;;, + 33;3; 0.000000, 1.402718,-0.262646;;, + 34;3; 0.000000, 1.402718,-0.262646;;, + 35;3; 0.000000, 1.402718,-0.262646;;, + 36;3; 0.000000, 1.402718,-0.262646;;, + 37;3; 0.000000, 1.402718,-0.262646;;, + 38;3; 0.000000, 1.402718,-0.262646;;, + 39;3; 0.000000, 1.402718,-0.262646;;, + 40;3; 0.000000, 1.402718,-0.262646;;, + 41;3; 0.000000, 1.402718,-0.262646;;, + 42;3; 0.000000, 1.402718,-0.262646;;, + 43;3; 0.000000, 1.402718,-0.262646;;, + 44;3; 0.000000, 1.402718,-0.262646;;, + 45;3; 0.000000, 1.402718,-0.262646;;, + 46;3; 0.000000, 1.402718,-0.262646;;, + 47;3; 0.000000, 1.402718,-0.262646;;, + 48;3; 0.000000, 1.402718,-0.262646;;, + 49;3; 0.000000, 1.402718,-0.262646;;, + 50;3; 0.000000, 1.402718,-0.262646;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 1;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 2;4; -0.706531,-0.707666,-0.000000, 0.000000;;, + 3;4; -0.704805,-0.709343,-0.000000, 0.000000;;, + 4;4; -0.702032,-0.712035,-0.000000, 0.000000;;, + 5;4; -0.698505,-0.715460,-0.000000, 0.000000;;, + 6;4; -0.694700,-0.719156,-0.000000, 0.000000;;, + 7;4; -0.691173,-0.722581,-0.000000, 0.000000;;, + 8;4; -0.688400,-0.725274,-0.000000, 0.000000;;, + 9;4; -0.686673,-0.726951,-0.000000, 0.000000;;, + 10;4; -0.686098,-0.727509,-0.000000, 0.000000;;, + 11;4; -0.686563,-0.727057,-0.000000, 0.000000;;, + 12;4; -0.687965,-0.725696,-0.000000, 0.000000;;, + 13;4; -0.690244,-0.723483,-0.000000, 0.000000;;, + 14;4; -0.693225,-0.720588,-0.000000, 0.000000;;, + 15;4; -0.696602,-0.717308,-0.000000, 0.000000;;, + 16;4; -0.699979,-0.714029,-0.000000, 0.000000;;, + 17;4; -0.702960,-0.711134,-0.000000, 0.000000;;, + 18;4; -0.705239,-0.708920,-0.000000, 0.000000;;, + 19;4; -0.706641,-0.707559,-0.000000, 0.000000;;, + 20;4; -0.707107,-0.707107,-0.000000, 0.000000;;, + 21;4; -0.706907,-0.706907,-0.006243, 0.006243;;, + 22;4; -0.706386,-0.706385,-0.022573, 0.022573;;, + 23;4; -0.705864,-0.705864,-0.038903, 0.038903;;, + 24;4; -0.705664,-0.705664,-0.045146, 0.045146;;, + 25;4; -0.705665,-0.705665,-0.042301, 0.042301;;, + 26;4; -0.705672,-0.705672,-0.033810, 0.033810;;, + 27;4; -0.705691,-0.705691,-0.020443, 0.020443;;, + 28;4; -0.705730,-0.705730,-0.004159, 0.004159;;, + 29;4; -0.705794,-0.705794, 0.012125,-0.012125;;, + 30;4; -0.705887,-0.705887, 0.025492,-0.025492;;, + 31;4; -0.706006,-0.706006, 0.033983,-0.033983;;, + 32;4; -0.706147,-0.706147, 0.036828,-0.036828;;, + 33;4; -0.706376,-0.706376, 0.031735,-0.031735;;, + 34;4; -0.706715,-0.706715, 0.018415,-0.018415;;, + 35;4; -0.707004,-0.707004, 0.005093,-0.005093;;, + 36;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 37;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 38;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 39;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 40;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 41;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 42;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 43;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 44;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 45;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 46;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 47;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 48;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 49;4; -0.707107,-0.707107, 0.000000, 0.000000;;, + 50;4; -0.707107,-0.707107, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Cube_004} + AnimationKey { //Position + 2; + 51; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 51; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 51; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;; + } + } +} //End of AnimationSet + diff --git a/mods/mobs/models/zmobs_lava_flan.png b/mods/mobs/models/zmobs_lava_flan.png new file mode 100644 index 0000000..d9799ae Binary files /dev/null and b/mods/mobs/models/zmobs_lava_flan.png differ diff --git a/mods/mobs/models/zmobs_lava_flan.x b/mods/mobs/models/zmobs_lava_flan.x new file mode 100644 index 0000000..be78ff9 --- /dev/null +++ b/mods/mobs/models/zmobs_lava_flan.x @@ -0,0 +1,3506 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + -5.000000, 0.000001, 0.000000, 0.000000, + -0.000001,-5.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 5.000000, 0.000000, + 0.000000, 0.000000,-5.000000, 1.000000;; + } + Frame Armature_Bone { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 2.000000, 0.000000, 1.000000;; + } + Frame Armature_Bone_002 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.300000, 0.000000, 1.000000;; + } + Frame Armature_Bone_003 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.300000, 0.000000, 1.000000;; + } + Frame Armature_Bone_004 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.400000, 0.000000, 1.000000;; + } + } // End of Armature_Bone_004 + } // End of Armature_Bone_003 + } // End of Armature_Bone_002 + } // End of Armature_Bone_001 + } // End of Armature_Bone + Frame Cube { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 1.000000;; + } + Mesh { // Cube mesh + 264; + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -0.800000;-0.800000; 1.000000;, + -0.800000; 0.800000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000; 0.999999; 1.000000;, + 0.999999;-1.000001; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 0.999999;-1.000001; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 0.999999; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + -0.800000; 0.800000; 1.666667;, + -0.800000;-0.800000; 1.666667;, + -0.800000;-0.800000; 2.000000;, + -0.800000; 0.800000; 2.000000;, + 0.999999;-1.000001; 1.000000;, + 1.000000; 0.999999; 1.000000;, + 0.800000; 0.800000; 1.000000;, + 0.799999;-0.800001; 1.000000;, + 1.000000; 0.999999; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -0.800000; 0.800000; 1.000000;, + 0.800000; 0.800000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + 0.999999;-1.000001; 1.000000;, + 0.799999;-0.800001; 1.000000;, + -0.800000;-0.800000; 1.000000;, + -0.800000;-0.800000; 2.000000;, + 0.799999;-0.800001; 2.000000;, + 0.640000;-0.640000; 2.000000;, + -0.640000;-0.640000; 2.000000;, + 0.799999;-0.800001; 1.666667;, + 0.800000; 0.800000; 1.666667;, + 0.800000; 0.800000; 2.000000;, + 0.799999;-0.800001; 2.000000;, + 0.800000; 0.800000; 1.666667;, + -0.800000; 0.800000; 1.666667;, + -0.800000; 0.800000; 2.000000;, + 0.800000; 0.800000; 2.000000;, + -0.800000;-0.800000; 1.666667;, + 0.799999;-0.800001; 1.666667;, + 0.799999;-0.800001; 2.000000;, + -0.800000;-0.800000; 2.000000;, + 0.640000; 0.640000; 2.000000;, + -0.640000; 0.640000; 2.000000;, + -0.640000; 0.640000; 2.500000;, + 0.640000; 0.640000; 2.500000;, + -0.800000; 0.800000; 2.000000;, + -0.800000;-0.800000; 2.000000;, + -0.640000;-0.640000; 2.000000;, + -0.640000; 0.640000; 2.000000;, + 0.799999;-0.800001; 2.000000;, + 0.800000; 0.800000; 2.000000;, + 0.640000; 0.640000; 2.000000;, + 0.640000;-0.640000; 2.000000;, + 0.800000; 0.800000; 2.000000;, + -0.800000; 0.800000; 2.000000;, + -0.640000; 0.640000; 2.000000;, + 0.640000; 0.640000; 2.000000;, + 0.640000; 0.640000; 2.500000;, + -0.640000; 0.640000; 2.500000;, + -0.640000;-0.640000; 2.500000;, + 0.640000;-0.640000; 2.500000;, + -0.640000;-0.640000; 2.000000;, + 0.640000;-0.640000; 2.000000;, + 0.640000;-0.640000; 2.500000;, + -0.640000;-0.640000; 2.500000;, + -0.640000; 0.640000; 2.000000;, + -0.640000;-0.640000; 2.000000;, + -0.640000;-0.640000; 2.500000;, + -0.640000; 0.640000; 2.500000;, + 0.640000;-0.640000; 2.000000;, + 0.640000; 0.640000; 2.000000;, + 0.640000; 0.640000; 2.500000;, + 0.640000;-0.640000; 2.500000;, + -0.800000; 0.800000; 1.000000;, + -0.800000;-0.800000; 1.000000;, + -0.800000;-0.800000; 1.333333;, + -0.800000; 0.800000; 1.333333;, + -0.800000; 0.800000; 1.333333;, + -0.800000;-0.800000; 1.333333;, + -0.800000;-0.800000; 1.666667;, + -0.800000; 0.800000; 1.666667;, + 0.799999;-0.800001; 1.000000;, + 0.800000; 0.800000; 1.000000;, + 0.800000; 0.800000; 1.333333;, + 0.799999;-0.800001; 1.333333;, + 0.799999;-0.800001; 1.333333;, + 0.800000; 0.800000; 1.333333;, + 0.800000; 0.800000; 1.666667;, + 0.799999;-0.800001; 1.666667;, + 0.800000; 0.800000; 1.000000;, + -0.800000; 0.800000; 1.000000;, + -0.800000; 0.800000; 1.333333;, + 0.800000; 0.800000; 1.333333;, + 0.800000; 0.800000; 1.333333;, + -0.800000; 0.800000; 1.333333;, + -0.800000; 0.800000; 1.666667;, + 0.800000; 0.800000; 1.666667;, + -0.800000;-0.800000; 1.000000;, + 0.799999;-0.800001; 1.000000;, + 0.799999;-0.800001; 1.333333;, + -0.800000;-0.800000; 1.333333;, + 0.799999;-0.800001; 1.333333;, + 0.799999;-0.800001; 1.666667;, + 0.560000;-0.000000; 1.616667;, + 0.560000;-0.000000; 1.383333;, + -0.560000; 0.000000; 1.383333;, + 0.560000;-0.000000; 1.383333;, + 0.560000;-0.000000; 1.616667;, + -0.560000; 0.000000; 1.616667;, + 0.799999;-0.800001; 1.666667;, + -0.800000;-0.800000; 1.666667;, + -0.560000; 0.000000; 1.616667;, + 0.560000;-0.000000; 1.616667;, + -0.800000;-0.800000; 1.666667;, + -0.800000;-0.800000; 1.333333;, + -0.560000; 0.000000; 1.383333;, + -0.560000; 0.000000; 1.616667;, + -0.800000;-0.800000; 1.333333;, + 0.799999;-0.800001; 1.333333;, + 0.560000;-0.000000; 1.383333;, + -0.560000; 0.000000; 1.383333;, + -0.000000;-0.790000; 1.340000;, + -0.000000;-0.690000; 1.540000;, + -0.100000;-0.690000; 1.340000;, + -0.000000;-0.590000; 1.340000;, + -0.000000;-0.690000; 1.540000;, + 0.100000;-0.690000; 1.340000;, + 0.400000;-0.590000; 1.340000;, + 0.500000;-0.690000; 1.340000;, + 0.400000;-0.790000; 1.340000;, + 0.300000;-0.690000; 1.340000;, + -0.100000;-0.690000; 1.340000;, + -0.000000;-0.690000; 1.540000;, + -0.000000;-0.590000; 1.340000;, + 0.100000;-0.690000; 1.340000;, + -0.000000;-0.690000; 1.540000;, + -0.000000;-0.790000; 1.340000;, + 0.200000;-0.590000; 1.340000;, + 0.300000;-0.690000; 1.340000;, + 0.200000;-0.790000; 1.340000;, + 0.100000;-0.690000; 1.340000;, + 0.300000;-0.690000; 1.340000;, + 0.200000;-0.690000; 1.540000;, + 0.200000;-0.790000; 1.340000;, + 0.100000;-0.690000; 1.340000;, + 0.200000;-0.690000; 1.540000;, + 0.200000;-0.590000; 1.340000;, + 0.200000;-0.590000; 1.340000;, + 0.200000;-0.690000; 1.540000;, + 0.300000;-0.690000; 1.340000;, + 0.500000;-0.690000; 1.340000;, + 0.400000;-0.690000; 1.540000;, + 0.400000;-0.790000; 1.340000;, + 0.200000;-0.790000; 1.340000;, + 0.200000;-0.690000; 1.540000;, + 0.100000;-0.690000; 1.340000;, + -0.000000;-0.590000; 1.340000;, + 0.100000;-0.690000; 1.340000;, + -0.000000;-0.790000; 1.340000;, + -0.100000;-0.690000; 1.340000;, + 0.300000;-0.690000; 1.340000;, + 0.400000;-0.690000; 1.540000;, + 0.400000;-0.590000; 1.340000;, + 0.400000;-0.590000; 1.340000;, + 0.400000;-0.690000; 1.540000;, + 0.500000;-0.690000; 1.340000;, + 0.400000;-0.790000; 1.340000;, + 0.400000;-0.690000; 1.540000;, + 0.300000;-0.690000; 1.340000;, + -0.200000;-0.590000; 1.340000;, + -0.100000;-0.690000; 1.340000;, + -0.200000;-0.790000; 1.340000;, + -0.300000;-0.690000; 1.340000;, + -0.100000;-0.690000; 1.340000;, + -0.200000;-0.690000; 1.540000;, + -0.200000;-0.790000; 1.340000;, + -0.300000;-0.690000; 1.340000;, + -0.200000;-0.690000; 1.540000;, + -0.200000;-0.590000; 1.340000;, + -0.200000;-0.590000; 1.340000;, + -0.200000;-0.690000; 1.540000;, + -0.100000;-0.690000; 1.340000;, + -0.200000;-0.790000; 1.340000;, + -0.200000;-0.690000; 1.540000;, + -0.300000;-0.690000; 1.340000;, + -0.400000;-0.590000; 1.340000;, + -0.300000;-0.690000; 1.340000;, + -0.400000;-0.790000; 1.340000;, + -0.500000;-0.690000; 1.340000;, + -0.300000;-0.690000; 1.340000;, + -0.400000;-0.690000; 1.540000;, + -0.400000;-0.790000; 1.340000;, + -0.500000;-0.690000; 1.340000;, + -0.400000;-0.690000; 1.540000;, + -0.400000;-0.590000; 1.340000;, + -0.400000;-0.590000; 1.340000;, + -0.400000;-0.690000; 1.540000;, + -0.300000;-0.690000; 1.340000;, + -0.400000;-0.790000; 1.340000;, + -0.400000;-0.690000; 1.540000;, + -0.500000;-0.690000; 1.340000;, + 0.200000;-0.700000; 2.400000;, + 0.200000;-0.500000; 2.400000;, + 0.200000;-0.500000; 2.200000;, + 0.200000;-0.700000; 2.200000;, + 0.200000;-0.500000; 2.400000;, + 0.400000;-0.500000; 2.400000;, + 0.400000;-0.500000; 2.200000;, + 0.200000;-0.500000; 2.200000;, + 0.400000;-0.500000; 2.400000;, + 0.400000;-0.700000; 2.400000;, + 0.400000;-0.700000; 2.200000;, + 0.400000;-0.500000; 2.200000;, + 0.400000;-0.700000; 2.400000;, + 0.200000;-0.700000; 2.400000;, + 0.200000;-0.700000; 2.200000;, + 0.400000;-0.700000; 2.200000;, + 0.200000;-0.700000; 2.200000;, + 0.200000;-0.500000; 2.200000;, + 0.400000;-0.500000; 2.200000;, + 0.400000;-0.700000; 2.200000;, + 0.400000;-0.700000; 2.400000;, + 0.400000;-0.500000; 2.400000;, + 0.200000;-0.500000; 2.400000;, + 0.200000;-0.700000; 2.400000;, + -0.400000;-0.700000; 2.400000;, + -0.400000;-0.500000; 2.400000;, + -0.400000;-0.500000; 2.200000;, + -0.400000;-0.700000; 2.200000;, + -0.400000;-0.500000; 2.400000;, + -0.200000;-0.500000; 2.400000;, + -0.200000;-0.500000; 2.200000;, + -0.400000;-0.500000; 2.200000;, + -0.200000;-0.500000; 2.400000;, + -0.200000;-0.700000; 2.400000;, + -0.200000;-0.700000; 2.200000;, + -0.200000;-0.500000; 2.200000;, + -0.200000;-0.700000; 2.400000;, + -0.400000;-0.700000; 2.400000;, + -0.400000;-0.700000; 2.200000;, + -0.200000;-0.700000; 2.200000;, + -0.400000;-0.700000; 2.200000;, + -0.400000;-0.500000; 2.200000;, + -0.200000;-0.500000; 2.200000;, + -0.200000;-0.700000; 2.200000;, + -0.200000;-0.700000; 2.400000;, + -0.200000;-0.500000; 2.400000;, + -0.400000;-0.500000; 2.400000;, + -0.400000;-0.700000; 2.400000;; + 71; + 4;3;2;1;0;, + 4;7;6;5;4;, + 4;11;10;9;8;, + 4;15;14;13;12;, + 4;19;18;17;16;, + 4;23;22;21;20;, + 4;27;26;25;24;, + 4;31;30;29;28;, + 4;35;34;33;32;, + 4;39;38;37;36;, + 4;43;42;41;40;, + 4;47;46;45;44;, + 4;51;50;49;48;, + 4;55;54;53;52;, + 4;59;58;57;56;, + 4;63;62;61;60;, + 4;67;66;65;64;, + 4;71;70;69;68;, + 4;75;74;73;72;, + 4;79;78;77;76;, + 4;83;82;81;80;, + 4;87;86;85;84;, + 4;91;90;89;88;, + 4;95;94;93;92;, + 4;99;98;97;96;, + 4;103;102;101;100;, + 4;107;106;105;104;, + 4;111;110;109;108;, + 4;115;114;113;112;, + 4;119;118;117;116;, + 4;123;122;121;120;, + 4;127;126;125;124;, + 4;131;130;129;128;, + 4;135;134;133;132;, + 3;138;137;136;, + 3;141;140;139;, + 4;145;144;143;142;, + 3;148;147;146;, + 3;151;150;149;, + 4;155;154;153;152;, + 3;158;157;156;, + 3;161;160;159;, + 3;164;163;162;, + 3;167;166;165;, + 3;170;169;168;, + 4;174;173;172;171;, + 3;177;176;175;, + 3;180;179;178;, + 3;183;182;181;, + 4;187;186;185;184;, + 3;190;189;188;, + 3;193;192;191;, + 3;196;195;194;, + 3;199;198;197;, + 4;203;202;201;200;, + 3;206;205;204;, + 3;209;208;207;, + 3;212;211;210;, + 3;215;214;213;, + 4;219;218;217;216;, + 4;223;222;221;220;, + 4;227;226;225;224;, + 4;231;230;229;228;, + 4;235;234;233;232;, + 4;239;238;237;236;, + 4;243;242;241;240;, + 4;247;246;245;244;, + 4;251;250;249;248;, + 4;255;254;253;252;, + 4;259;258;257;256;, + 4;263;262;261;260;; + MeshNormals { // Cube normals + 71; + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000001; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000;-0.000001; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.957826;-0.287348; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000;-0.062378;-0.998053;, + 0.957826;-0.287348; 0.000000;, + 0.000000;-0.062378; 0.998053;, + -0.666667;-0.666667; 0.333333;, + 0.666667; 0.666666; 0.333333;, + 0.000000; 0.000000;-1.000000;, + -0.666667; 0.666667; 0.333333;, + 0.666667;-0.666667; 0.333333;, + 0.000000; 0.000000;-1.000000;, + 0.666667;-0.666667; 0.333333;, + -0.666667; 0.666667; 0.333333;, + 0.666667; 0.666667; 0.333333;, + 0.666667;-0.666667; 0.333333;, + -0.666667;-0.666667; 0.333333;, + 0.000000; 0.000000;-1.000000;, + -0.666667; 0.666667; 0.333333;, + 0.666667; 0.666667; 0.333333;, + -0.666667;-0.666667; 0.333333;, + 0.000000; 0.000000;-1.000000;, + 0.666667;-0.666667; 0.333333;, + -0.666667; 0.666667; 0.333333;, + 0.666667; 0.666667; 0.333333;, + -0.666667;-0.666667; 0.333333;, + 0.000000; 0.000000;-1.000000;, + 0.666667;-0.666667; 0.333333;, + -0.666667; 0.666667; 0.333333;, + 0.666667; 0.666667; 0.333333;, + -0.666667;-0.666667; 0.333333;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 71; + 4;0;0;0;0;, + 4;1;1;1;1;, + 4;2;2;2;2;, + 4;3;3;3;3;, + 4;4;4;4;4;, + 4;5;5;5;5;, + 4;6;6;6;6;, + 4;7;7;7;7;, + 4;8;8;8;8;, + 4;9;9;9;9;, + 4;10;10;10;10;, + 4;11;11;11;11;, + 4;12;12;12;12;, + 4;13;13;13;13;, + 4;14;14;14;14;, + 4;15;15;15;15;, + 4;16;16;16;16;, + 4;17;17;17;17;, + 4;18;18;18;18;, + 4;19;19;19;19;, + 4;20;20;20;20;, + 4;21;21;21;21;, + 4;22;22;22;22;, + 4;23;23;23;23;, + 4;24;24;24;24;, + 4;25;25;25;25;, + 4;26;26;26;26;, + 4;27;27;27;27;, + 4;28;28;28;28;, + 4;29;29;29;29;, + 4;30;30;30;30;, + 4;31;31;31;31;, + 4;32;32;32;32;, + 4;33;33;33;33;, + 3;34;34;34;, + 3;35;35;35;, + 4;36;36;36;36;, + 3;37;37;37;, + 3;38;38;38;, + 4;39;39;39;39;, + 3;40;40;40;, + 3;41;41;41;, + 3;42;42;42;, + 3;43;43;43;, + 3;44;44;44;, + 4;45;45;45;45;, + 3;46;46;46;, + 3;47;47;47;, + 3;48;48;48;, + 4;49;49;49;49;, + 3;50;50;50;, + 3;51;51;51;, + 3;52;52;52;, + 3;53;53;53;, + 4;54;54;54;54;, + 3;55;55;55;, + 3;56;56;56;, + 3;57;57;57;, + 3;58;58;58;, + 4;59;59;59;59;, + 4;60;60;60;60;, + 4;61;61;61;61;, + 4;62;62;62;62;, + 4;63;63;63;63;, + 4;64;64;64;64;, + 4;65;65;65;65;, + 4;66;66;66;66;, + 4;67;67;67;67;, + 4;68;68;68;68;, + 4;69;69;69;69;, + 4;70;70;70;70;; + } // End of Cube normals + MeshTextureCoords { // Cube UV coordinates + 264; + 0.000000; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.000000;, + 0.000000; 0.000000;, + -0.000104; 0.000450;, + -0.000014; 0.499950;, + 0.058184; 0.442464;, + 0.057363; 0.058619;, + 0.000000; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.000000;, + 0.000000; 0.000000;, + 0.000000; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.000000;, + 0.000000; 0.000000;, + 0.000000; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.000000;, + 0.000000; 0.000000;, + 0.000000; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.000000;, + 0.000000; 0.000000;, + 0.499960; 0.416620;, + 0.000040; 0.416620;, + 0.000040; 0.624921;, + 0.499960; 0.624921;, + 0.499489; 0.499550;, + 0.499399; 0.000050;, + 0.441201; 0.057536;, + 0.442021; 0.441381;, + 0.499399; 0.000050;, + -0.000104; 0.000450;, + 0.057363; 0.058619;, + 0.441201; 0.057536;, + -0.000014; 0.499950;, + 0.499489; 0.499550;, + 0.442021; 0.441381;, + 0.058184; 0.442464;, + -0.000014; 0.499950;, + 0.499489; 0.499550;, + 0.442022; 0.441382;, + 0.058184; 0.442464;, + 0.000040; 0.208320;, + 0.499960; 0.208320;, + 0.499960; 0.000020;, + 0.000040; 0.000020;, + 0.499960; 0.416621;, + 0.000040; 0.416620;, + 0.000040; 0.624921;, + 0.499960; 0.624921;, + 0.000046; 0.499908;, + 0.499954; 0.499909;, + 0.499954; 0.291613;, + 0.000046; 0.291613;, + 0.499969;-0.015638;, + 0.000031;-0.015639;, + 0.000031; 0.374937;, + 0.499969; 0.374938;, + -0.000104; 0.000450;, + -0.000014; 0.499950;, + 0.058184; 0.442464;, + 0.057364; 0.058619;, + 0.499489; 0.499550;, + 0.499399; 0.000050;, + 0.441201; 0.057536;, + 0.442022; 0.441382;, + 0.499399; 0.000050;, + -0.000104; 0.000450;, + 0.057364; 0.058619;, + 0.441201; 0.057536;, + 0.499950; 0.000050;, + 0.000050; 0.000050;, + 0.000050; 0.499950;, + 0.499950; 0.499950;, + 0.000031; 0.374937;, + 0.499969; 0.374938;, + 0.499969;-0.015638;, + 0.000031;-0.015639;, + 0.499969;-0.015639;, + 0.000031;-0.015639;, + 0.000031; 0.374937;, + 0.499969; 0.374938;, + 0.000031; 0.374937;, + 0.499969; 0.374938;, + 0.499969;-0.015639;, + 0.000031;-0.015639;, + 0.499960; 0.000019;, + 0.000040; 0.000019;, + 0.000040; 0.208320;, + 0.499960; 0.208320;, + 0.499960; 0.208320;, + 0.000040; 0.208320;, + 0.000040; 0.416620;, + 0.499960; 0.416620;, + 0.000040; 0.624921;, + 0.499960; 0.624921;, + 0.499960; 0.416620;, + 0.000040; 0.416621;, + 0.000040; 0.416621;, + 0.499960; 0.416620;, + 0.499960; 0.208320;, + 0.000040; 0.208320;, + 0.499961; 0.000021;, + 0.000040; 0.000020;, + 0.000040; 0.208320;, + 0.499960; 0.208321;, + 0.499960; 0.208321;, + 0.000040; 0.208320;, + 0.000040; 0.416620;, + 0.499960; 0.416621;, + 0.000046; 0.291430;, + 0.499954; 0.291430;, + 0.499954; 0.083135;, + 0.000046; 0.083134;, + 0.482632; 0.297524;, + 0.499972; 0.143183;, + 0.275451; 0.201614;, + 0.279529; 0.217376;, + 0.000023; 0.249954;, + 0.499977; 0.249954;, + 0.499977; 0.041640;, + 0.000023; 0.041640;, + 0.499972; 0.143183;, + 0.017368; 0.143350;, + 0.220471; 0.223498;, + 0.275451; 0.201614;, + 0.017368; 0.143350;, + 0.000028; 0.297691;, + 0.224549; 0.239260;, + 0.220471; 0.223498;, + 0.000035; 0.499630;, + 0.499965; 0.499457;, + 0.424889; 0.249031;, + 0.074938; 0.249151;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.843750; 0.500000;, + 0.750000; 0.375000;, + 0.656250; 0.500000;, + 0.562500; 0.562500;, + 0.500000; 0.500000;, + 0.500000; 1.000000;, + 0.562500; 0.937500;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + 1.000000; 0.500000;, + 0.937500; 0.562500;, + 0.937500; 0.937500;, + 0.999902; 0.999901;, + 0.968750; 0.031250;, + 0.843750; 0.031250;, + 0.843750; 0.156250;, + 0.968750; 0.156250;, + 0.562500; 0.937500;, + 0.500000; 1.000000;, + 0.999902; 0.999901;, + 0.937500; 0.937500;, + 0.937500; 0.562500;, + 1.000000; 0.500000;, + 0.500000; 0.500000;, + 0.562500; 0.562500;, + 0.562500; 0.562500;, + 0.500000; 0.500000;, + 0.500000; 1.000000;, + 0.562500; 0.937500;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + 1.000000; 0.500000;, + 0.937500; 0.562500;, + 0.937559; 0.942680;, + 0.999902; 0.999901;, + 0.656250; 0.031250;, + 0.531250; 0.031250;, + 0.531250; 0.156250;, + 0.656250; 0.156250;, + 0.562500; 0.937500;, + 0.500000; 1.000000;, + 0.999902; 0.999901;, + 0.937559; 0.942680;, + 0.937500; 0.562500;, + 1.000000; 0.500000;, + 0.500000; 0.500000;, + 0.562500; 0.562500;; + } // End of Cube UV coordinates + MeshMaterialList { // Cube material list + 1; + 71; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } // End of Cube material list + XSkinMeshHeader { + 5; + 15; + 5; + } + SkinWeights { + "Armature_Bone_003"; + 249; + 4, + 5, + 6, + 7, + 9, + 10, + 13, + 14, + 17, + 18, + 20, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 76, + 77, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263; + 0.097855, + 0.076266, + 0.083495, + 0.107234, + 0.089782, + 0.015282, + 0.015282, + 0.076266, + 0.076266, + 0.097855, + 0.089782, + 0.097855, + 0.297901, + 0.287737, + 0.176628, + 0.182485, + 0.015282, + 0.089782, + 0.098610, + 0.018636, + 0.089782, + 0.097855, + 0.107234, + 0.098610, + 0.076266, + 0.015282, + 0.018636, + 0.083495, + 0.176628, + 0.003327, + 0.018794, + 0.127925, + 0.020404, + 0.286977, + 0.174766, + 0.003327, + 0.286977, + 0.297901, + 0.182485, + 0.174766, + 0.287737, + 0.020404, + 0.003327, + 0.176628, + 0.126954, + 0.136859, + 0.062329, + 0.060353, + 0.182485, + 0.176628, + 0.127925, + 0.136859, + 0.003327, + 0.174766, + 0.126954, + 0.018794, + 0.174766, + 0.182485, + 0.136859, + 0.126954, + 0.060353, + 0.062329, + 0.059240, + 0.127925, + 0.018794, + 0.059240, + 0.136859, + 0.127925, + 0.059240, + 0.062329, + 0.018794, + 0.126954, + 0.060353, + 0.107234, + 0.083495, + 0.133455, + 0.171692, + 0.171692, + 0.133455, + 0.287737, + 0.297901, + 0.018636, + 0.098610, + 0.162048, + 0.016914, + 0.016914, + 0.162048, + 0.286977, + 0.020404, + 0.098610, + 0.107234, + 0.171692, + 0.162048, + 0.162048, + 0.171692, + 0.297901, + 0.286977, + 0.083495, + 0.018636, + 0.016914, + 0.133455, + 0.016914, + 0.020404, + 0.031793, + 0.024185, + 0.091978, + 0.024185, + 0.031793, + 0.098530, + 0.020404, + 0.287737, + 0.098530, + 0.031793, + 0.287737, + 0.133455, + 0.091978, + 0.098530, + 0.133455, + 0.016914, + 0.024185, + 0.091978, + 0.500298, + 0.488502, + 0.484399, + 0.484912, + 0.488502, + 0.484399, + 0.574901, + 0.567861, + 0.584345, + 0.581311, + 0.484399, + 0.488502, + 0.484912, + 0.484399, + 0.488502, + 0.500298, + 0.650639, + 0.642159, + 0.660270, + 0.658477, + 0.642159, + 0.652886, + 0.660270, + 0.658477, + 0.652886, + 0.650639, + 0.650639, + 0.652886, + 0.642159, + 0.567861, + 0.577104, + 0.584345, + 0.660270, + 0.652886, + 0.658477, + 0.484912, + 0.484399, + 0.500298, + 0.484399, + 0.581311, + 0.577104, + 0.574901, + 0.574901, + 0.577104, + 0.567861, + 0.584345, + 0.577104, + 0.581311, + 0.650637, + 0.658473, + 0.660266, + 0.642160, + 0.658473, + 0.652884, + 0.660266, + 0.642160, + 0.652884, + 0.650637, + 0.650637, + 0.652884, + 0.658473, + 0.660266, + 0.652884, + 0.642160, + 0.574890, + 0.581306, + 0.584343, + 0.567845, + 0.581306, + 0.577096, + 0.584343, + 0.567845, + 0.577096, + 0.574890, + 0.574890, + 0.577096, + 0.581306, + 0.584343, + 0.577096, + 0.567845, + 0.228406, + 0.235541, + 0.226562, + 0.226110, + 0.235541, + 0.218934, + 0.220409, + 0.226562, + 0.218934, + 0.223567, + 0.223362, + 0.220409, + 0.223567, + 0.228406, + 0.226110, + 0.223362, + 0.226110, + 0.226562, + 0.220409, + 0.223362, + 0.223567, + 0.218934, + 0.235541, + 0.228406, + 0.467092, + 0.474056, + 0.449203, + 0.459631, + 0.474056, + 0.473079, + 0.460570, + 0.449203, + 0.473079, + 0.467589, + 0.462597, + 0.460570, + 0.467589, + 0.467092, + 0.459631, + 0.462597, + 0.459631, + 0.449203, + 0.460570, + 0.462597, + 0.467589, + 0.473079, + 0.474056, + 0.467092; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000,-1.600000, 0.000000, 1.000000;; + } // End of Armature_Bone_003 skin weights + SkinWeights { + "Armature_Bone_002"; + 210; + 0, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 13, + 14, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215; + 0.026699, + 0.019645, + 0.225152, + 0.090050, + 0.096422, + 0.247592, + 0.026699, + 0.225915, + 0.091110, + 0.091110, + 0.090050, + 0.090050, + 0.225152, + 0.019645, + 0.225915, + 0.026699, + 0.019645, + 0.225152, + 0.378267, + 0.217186, + 0.396865, + 0.489530, + 0.091110, + 0.225915, + 0.248358, + 0.097508, + 0.225915, + 0.225152, + 0.247592, + 0.248358, + 0.090050, + 0.091110, + 0.097508, + 0.096422, + 0.396865, + 0.398905, + 0.438519, + 0.443076, + 0.218141, + 0.380147, + 0.489880, + 0.398905, + 0.380147, + 0.378267, + 0.489530, + 0.489880, + 0.217186, + 0.218141, + 0.398905, + 0.396865, + 0.504112, + 0.502873, + 0.231972, + 0.249788, + 0.489530, + 0.396865, + 0.443076, + 0.502873, + 0.398905, + 0.489880, + 0.504112, + 0.438519, + 0.489880, + 0.489530, + 0.502873, + 0.504112, + 0.249788, + 0.231972, + 0.219728, + 0.214257, + 0.443076, + 0.438519, + 0.214257, + 0.219728, + 0.502873, + 0.443076, + 0.219728, + 0.231972, + 0.438519, + 0.504112, + 0.249788, + 0.214257, + 0.247592, + 0.096422, + 0.123030, + 0.409380, + 0.409380, + 0.123030, + 0.217186, + 0.378267, + 0.097508, + 0.248358, + 0.410435, + 0.124284, + 0.124284, + 0.410435, + 0.380147, + 0.218141, + 0.248358, + 0.247592, + 0.409380, + 0.410435, + 0.410435, + 0.409380, + 0.378267, + 0.380147, + 0.096422, + 0.097508, + 0.124284, + 0.123030, + 0.124284, + 0.218141, + 0.103633, + 0.087149, + 0.092557, + 0.087149, + 0.103633, + 0.094423, + 0.218141, + 0.217186, + 0.094423, + 0.103633, + 0.217186, + 0.123030, + 0.092557, + 0.094423, + 0.123030, + 0.124284, + 0.087149, + 0.092557, + 0.499702, + 0.511498, + 0.515601, + 0.515088, + 0.511498, + 0.515601, + 0.425099, + 0.432139, + 0.415655, + 0.418689, + 0.515601, + 0.511498, + 0.515088, + 0.515601, + 0.511498, + 0.499702, + 0.349361, + 0.357841, + 0.339730, + 0.341523, + 0.357841, + 0.347114, + 0.339730, + 0.341523, + 0.347114, + 0.349361, + 0.349361, + 0.347114, + 0.357841, + 0.432139, + 0.422896, + 0.415655, + 0.339730, + 0.347114, + 0.341523, + 0.515088, + 0.515601, + 0.499702, + 0.515601, + 0.418689, + 0.422896, + 0.425099, + 0.425099, + 0.422896, + 0.432139, + 0.415655, + 0.422896, + 0.418689, + 0.349363, + 0.341527, + 0.339734, + 0.357840, + 0.341527, + 0.347116, + 0.339734, + 0.357840, + 0.347116, + 0.349363, + 0.349363, + 0.347116, + 0.341527, + 0.339734, + 0.347116, + 0.357840, + 0.425110, + 0.418694, + 0.415657, + 0.432155, + 0.418694, + 0.422904, + 0.415657, + 0.432155, + 0.422904, + 0.425110, + 0.425110, + 0.422904, + 0.418694, + 0.415657, + 0.422904, + 0.432155; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000,-1.300000, 0.000000, 1.000000;; + } // End of Armature_Bone_002 skin weights + SkinWeights { + "Armature_Bone_001"; + 127; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 75, + 76, + 77, + 78, + 80, + 81, + 84, + 85, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135; + 0.028090, + 0.044667, + 0.027228, + 0.014924, + 0.187604, + 0.200597, + 0.217670, + 0.204339, + 0.028090, + 0.204480, + 0.310430, + 0.044667, + 0.044667, + 0.310430, + 0.200597, + 0.027228, + 0.027228, + 0.200597, + 0.187604, + 0.014924, + 0.204480, + 0.028090, + 0.014924, + 0.187604, + 0.067482, + 0.064812, + 0.031709, + 0.033965, + 0.310430, + 0.204480, + 0.222012, + 0.341423, + 0.204480, + 0.187604, + 0.204339, + 0.222012, + 0.200597, + 0.310430, + 0.341423, + 0.217670, + 0.031709, + 0.101587, + 0.070428, + 0.017181, + 0.167670, + 0.078366, + 0.047455, + 0.101587, + 0.078366, + 0.067482, + 0.033965, + 0.047455, + 0.064812, + 0.167670, + 0.101587, + 0.031709, + 0.027631, + 0.014453, + 0.033965, + 0.031709, + 0.017181, + 0.014453, + 0.101587, + 0.047455, + 0.027631, + 0.070428, + 0.047455, + 0.033965, + 0.014453, + 0.027631, + 0.008199, + 0.017181, + 0.070428, + 0.008199, + 0.014453, + 0.017181, + 0.070428, + 0.027631, + 0.008199, + 0.204339, + 0.217670, + 0.123770, + 0.116219, + 0.116219, + 0.123770, + 0.064812, + 0.067482, + 0.341423, + 0.222012, + 0.131980, + 0.371812, + 0.371812, + 0.131980, + 0.078366, + 0.167670, + 0.222012, + 0.204339, + 0.116219, + 0.131980, + 0.131980, + 0.116219, + 0.067482, + 0.078366, + 0.217670, + 0.341423, + 0.371812, + 0.123770, + 0.371812, + 0.167670, + 0.122698, + 0.132035, + 0.078042, + 0.132035, + 0.122698, + 0.065986, + 0.167670, + 0.064812, + 0.065986, + 0.122698, + 0.064812, + 0.123770, + 0.078042, + 0.065986, + 0.123770, + 0.371812, + 0.132035, + 0.078042; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 1.000000;; + } // End of Armature_Bone_001 skin weights + SkinWeights { + "Armature_Bone"; + 136; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135; + 0.945211, + 0.955333, + 0.972772, + 0.965432, + 0.441407, + 0.557541, + 0.520087, + 0.387790, + 0.945211, + 0.424328, + 0.470645, + 0.955333, + 0.955333, + 0.470645, + 0.557541, + 0.972772, + 0.972772, + 0.557541, + 0.441407, + 0.965432, + 0.424328, + 0.945211, + 0.965432, + 0.441407, + 0.133775, + 0.243816, + 0.149205, + 0.083512, + 0.470645, + 0.424328, + 0.371115, + 0.418447, + 0.424328, + 0.441407, + 0.387790, + 0.371115, + 0.557541, + 0.470645, + 0.418447, + 0.520087, + 0.149205, + 0.102630, + 0.077530, + 0.107912, + 0.165882, + 0.124352, + 0.077496, + 0.102630, + 0.124352, + 0.133775, + 0.083512, + 0.077496, + 0.243816, + 0.165882, + 0.102630, + 0.149205, + 0.060886, + 0.066205, + 0.013250, + 0.011723, + 0.083512, + 0.149205, + 0.107912, + 0.066205, + 0.102630, + 0.077496, + 0.060886, + 0.077530, + 0.077496, + 0.083512, + 0.066205, + 0.060886, + 0.011723, + 0.013250, + 0.048094, + 0.022321, + 0.107912, + 0.077530, + 0.022321, + 0.048094, + 0.066205, + 0.107912, + 0.048094, + 0.013250, + 0.077530, + 0.060886, + 0.011723, + 0.022321, + 0.387790, + 0.520087, + 0.494225, + 0.226848, + 0.226848, + 0.494225, + 0.243816, + 0.133775, + 0.418447, + 0.371115, + 0.212428, + 0.276984, + 0.276984, + 0.212428, + 0.124352, + 0.165882, + 0.371115, + 0.387790, + 0.226848, + 0.212428, + 0.212428, + 0.226848, + 0.133775, + 0.124352, + 0.520087, + 0.418447, + 0.276984, + 0.494225, + 0.276984, + 0.165882, + 0.382664, + 0.483353, + 0.390460, + 0.483353, + 0.382664, + 0.298215, + 0.165882, + 0.243816, + 0.298215, + 0.382664, + 0.243816, + 0.494225, + 0.390460, + 0.298215, + 0.494225, + 0.276984, + 0.483353, + 0.390460; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 1.000000;; + } // End of Armature_Bone skin weights + SkinWeights { + "Armature_Bone_004"; + 172; + 4, + 5, + 6, + 7, + 9, + 10, + 13, + 14, + 17, + 18, + 20, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263; + 0.047982, + 0.075546, + 0.082326, + 0.053045, + 0.055496, + 0.112532, + 0.112532, + 0.075546, + 0.075546, + 0.047982, + 0.055496, + 0.047982, + 0.122575, + 0.186448, + 0.245593, + 0.210507, + 0.112532, + 0.055496, + 0.059905, + 0.123986, + 0.055496, + 0.047982, + 0.053045, + 0.059905, + 0.075546, + 0.112532, + 0.123986, + 0.082326, + 0.245593, + 0.393551, + 0.394730, + 0.303906, + 0.427903, + 0.130157, + 0.210403, + 0.393551, + 0.130157, + 0.122575, + 0.210507, + 0.210403, + 0.186448, + 0.427903, + 0.393551, + 0.245593, + 0.280416, + 0.279610, + 0.692449, + 0.678135, + 0.210507, + 0.245593, + 0.303906, + 0.279610, + 0.393551, + 0.210403, + 0.280416, + 0.394730, + 0.210403, + 0.210507, + 0.279610, + 0.280416, + 0.678135, + 0.692449, + 0.672937, + 0.755223, + 0.303906, + 0.394730, + 0.755223, + 0.672937, + 0.279610, + 0.303906, + 0.672937, + 0.692449, + 0.394730, + 0.280416, + 0.678135, + 0.755223, + 0.053045, + 0.082326, + 0.125519, + 0.075862, + 0.075862, + 0.125519, + 0.186448, + 0.122575, + 0.123986, + 0.059905, + 0.083109, + 0.210006, + 0.210006, + 0.083109, + 0.130157, + 0.427903, + 0.059905, + 0.053045, + 0.075862, + 0.083109, + 0.083109, + 0.075862, + 0.122575, + 0.130157, + 0.082326, + 0.123986, + 0.210006, + 0.125519, + 0.210006, + 0.427903, + 0.359212, + 0.273279, + 0.346964, + 0.273279, + 0.359212, + 0.442846, + 0.427903, + 0.186448, + 0.442846, + 0.359212, + 0.186448, + 0.125519, + 0.346964, + 0.442846, + 0.125519, + 0.210006, + 0.273279, + 0.346964, + 0.771594, + 0.764459, + 0.773438, + 0.773890, + 0.764459, + 0.781066, + 0.779591, + 0.773438, + 0.781066, + 0.776433, + 0.776638, + 0.779591, + 0.776433, + 0.771594, + 0.773890, + 0.776638, + 0.773890, + 0.773438, + 0.779591, + 0.776638, + 0.776433, + 0.781066, + 0.764459, + 0.771594, + 0.532908, + 0.525944, + 0.550797, + 0.540369, + 0.525944, + 0.526921, + 0.539430, + 0.550797, + 0.526921, + 0.532411, + 0.537403, + 0.539430, + 0.532411, + 0.532908, + 0.540369, + 0.537403, + 0.540369, + 0.550797, + 0.539430, + 0.537403, + 0.532411, + 0.526921, + 0.525944, + 0.532908; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000,-2.000000, 0.000000, 1.000000;; + } // End of Armature_Bone_004 skin weights + } // End of Cube mesh + } // End of Cube + } // End of Armature +} // End of Root +AnimationSet Global { + Animation { + {Armature} + AnimationKey { // Rotation + 0; + 31; + 0;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 1;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 2;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 3;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 4;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 5;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 6;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 7;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 8;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 9;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 10;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 11;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 12;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 13;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 14;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 15;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 16;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 17;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 18;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 19;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 20;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 21;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 22;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 23;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 24;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 25;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 26;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 27;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 28;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 29;4;-0.000000, 0.000000, 0.000000, 1.000000;;, + 30;4;-0.000000, 0.000000, 0.000000, 1.000000;;; + } + AnimationKey { // Scale + 1; + 31; + 0;3; 5.000000, 5.000000, 5.000000;;, + 1;3; 5.000000, 5.000000, 5.000000;;, + 2;3; 5.000000, 5.000000, 5.000000;;, + 3;3; 5.000000, 5.000000, 5.000000;;, + 4;3; 5.000000, 5.000000, 5.000000;;, + 5;3; 5.000000, 5.000000, 5.000000;;, + 6;3; 5.000000, 5.000000, 5.000000;;, + 7;3; 5.000000, 5.000000, 5.000000;;, + 8;3; 5.000000, 5.000000, 5.000000;;, + 9;3; 5.000000, 5.000000, 5.000000;;, + 10;3; 5.000000, 5.000000, 5.000000;;, + 11;3; 5.000000, 5.000000, 5.000000;;, + 12;3; 5.000000, 5.000000, 5.000000;;, + 13;3; 5.000000, 5.000000, 5.000000;;, + 14;3; 5.000000, 5.000000, 5.000000;;, + 15;3; 5.000000, 5.000000, 5.000000;;, + 16;3; 5.000000, 5.000000, 5.000000;;, + 17;3; 5.000000, 5.000000, 5.000000;;, + 18;3; 5.000000, 5.000000, 5.000000;;, + 19;3; 5.000000, 5.000000, 5.000000;;, + 20;3; 5.000000, 5.000000, 5.000000;;, + 21;3; 5.000000, 5.000000, 5.000000;;, + 22;3; 5.000000, 5.000000, 5.000000;;, + 23;3; 5.000000, 5.000000, 5.000000;;, + 24;3; 5.000000, 5.000000, 5.000000;;, + 25;3; 5.000000, 5.000000, 5.000000;;, + 26;3; 5.000000, 5.000000, 5.000000;;, + 27;3; 5.000000, 5.000000, 5.000000;;, + 28;3; 5.000000, 5.000000, 5.000000;;, + 29;3; 5.000000, 5.000000, 5.000000;;, + 30;3; 5.000000, 5.000000, 5.000000;;; + } + AnimationKey { // Position + 2; + 31; + 0;3; 0.000000, 0.000000,-5.000000;;, + 1;3; 0.000000, 0.000000,-5.000000;;, + 2;3; 0.000000, 0.000000,-5.000000;;, + 3;3; 0.000000, 0.000000,-5.000000;;, + 4;3; 0.000000, 0.000000,-5.000000;;, + 5;3; 0.000000, 0.000000,-5.000000;;, + 6;3; 0.000000, 0.000000,-5.000000;;, + 7;3; 0.000000, 0.000000,-5.000000;;, + 8;3; 0.000000, 0.000000,-5.000000;;, + 9;3; 0.000000, 0.000000,-5.000000;;, + 10;3; 0.000000, 0.000000,-5.000000;;, + 11;3; 0.000000, 0.000000,-5.000000;;, + 12;3; 0.000000, 0.000000,-5.000000;;, + 13;3; 0.000000, 0.000000,-5.000000;;, + 14;3; 0.000000, 0.000000,-5.000000;;, + 15;3; 0.000000, 0.000000,-5.000000;;, + 16;3; 0.000000, 0.000000,-5.000000;;, + 17;3; 0.000000, 0.000000,-5.000000;;, + 18;3; 0.000000, 0.000000,-5.000000;;, + 19;3; 0.000000, 0.000000,-5.000000;;, + 20;3; 0.000000, 0.000000,-5.000000;;, + 21;3; 0.000000, 0.000000,-5.000000;;, + 22;3; 0.000000, 0.000000,-5.000000;;, + 23;3; 0.000000, 0.000000,-5.000000;;, + 24;3; 0.000000, 0.000000,-5.000000;;, + 25;3; 0.000000, 0.000000,-5.000000;;, + 26;3; 0.000000, 0.000000,-5.000000;;, + 27;3; 0.000000, 0.000000,-5.000000;;, + 28;3; 0.000000, 0.000000,-5.000000;;, + 29;3; 0.000000, 0.000000,-5.000000;;, + 30;3; 0.000000, 0.000000,-5.000000;;; + } + } + Animation { + {Armature_Bone} + AnimationKey { // Rotation + 0; + 31; + 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 24;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 25;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 26;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 27;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 28;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 29;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 30;4;-0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 31; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 31; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { // Rotation + 0; + 31; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-0.998539, 0.054035, 0.000000,-0.000000;;, + 21;4;-0.996147, 0.053932, 0.002355, 0.043499;;, + 22;4;-0.998539, 0.054035, 0.000000, 0.000000;;, + 23;4;-0.997589, 0.053983,-0.002357,-0.043556;;, + 24;4;-0.998539, 0.054035, 0.000000, 0.000000;;, + 25;4;-0.996639, 0.053932, 0.003045, 0.056265;;, + 26;4;-0.994740, 0.053829, 0.004709, 0.087028;;, + 27;4;-0.996147, 0.053932, 0.002355, 0.043519;;, + 28;4;-0.998539, 0.054035, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 31; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 31; + 0;3; 0.000000, 2.000000, 0.000000;;, + 1;3; 0.000000, 2.000000, 0.000000;;, + 2;3; 0.000000, 2.000000, 0.000000;;, + 3;3; 0.000000, 2.000000, 0.000000;;, + 4;3; 0.000000, 2.000000, 0.000000;;, + 5;3; 0.000000, 2.000000, 0.000000;;, + 6;3; 0.000000, 2.000000, 0.000000;;, + 7;3; 0.000000, 2.000000, 0.000000;;, + 8;3; 0.000000, 2.000000, 0.000000;;, + 9;3; 0.000000, 2.000000, 0.000000;;, + 10;3; 0.000000, 2.000000, 0.000000;;, + 11;3; 0.000000, 2.000000, 0.000000;;, + 12;3; 0.000000, 2.000000, 0.000000;;, + 13;3; 0.000000, 2.000000, 0.000000;;, + 14;3; 0.000000, 2.000000, 0.000000;;, + 15;3; 0.000000, 2.000000, 0.000000;;, + 16;3; 0.000000, 2.000000, 0.000000;;, + 17;3; 0.000000, 2.000000, 0.000000;;, + 18;3; 0.000000, 2.000000, 0.000000;;, + 19;3; 0.000000, 2.000000, 0.000000;;, + 20;3; 0.000000, 2.000000, 0.000000;;, + 21;3; 0.000000, 2.000000, 0.000000;;, + 22;3; 0.000000, 2.000000, 0.000000;;, + 23;3; 0.000000, 2.000000, 0.000000;;, + 24;3; 0.000000, 2.000000, 0.000000;;, + 25;3; 0.000000, 2.000000, 0.000000;;, + 26;3; 0.000000, 2.000000, 0.000000;;, + 27;3; 0.000000, 2.000000, 0.000000;;, + 28;3; 0.000000, 2.000000, 0.000000;;, + 29;3; 0.000000, 2.000000, 0.000000;;, + 30;3; 0.000000, 2.000000, 0.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { // Rotation + 0; + 31; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 31; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 31; + 0;3; 0.000000, 0.300000, 0.000000;;, + 1;3; 0.000000, 0.300000, 0.000000;;, + 2;3; 0.000000, 0.300000, 0.000000;;, + 3;3; 0.000000, 0.300000, 0.000000;;, + 4;3; 0.000000, 0.300000, 0.000000;;, + 5;3; 0.000000, 0.300000, 0.000000;;, + 6;3; 0.000000, 0.300000, 0.000000;;, + 7;3; 0.000000, 0.300000, 0.000000;;, + 8;3; 0.000000, 0.300000, 0.000000;;, + 9;3; 0.000000, 0.300000, 0.000000;;, + 10;3; 0.000000, 0.300000, 0.000000;;, + 11;3; 0.000000, 0.300000, 0.000000;;, + 12;3; 0.000000, 0.300000, 0.000000;;, + 13;3; 0.000000, 0.300000, 0.000000;;, + 14;3; 0.000000, 0.300000, 0.000000;;, + 15;3; 0.000000, 0.300000, 0.000000;;, + 16;3; 0.000000, 0.300000, 0.000000;;, + 17;3; 0.000000, 0.300000, 0.000000;;, + 18;3; 0.000000, 0.300000, 0.000000;;, + 19;3; 0.000000, 0.300000, 0.000000;;, + 20;3; 0.000000, 0.300000, 0.000000;;, + 21;3;-0.000000, 0.300000,-0.000000;;, + 22;3;-0.000000, 0.300000, 0.000000;;, + 23;3;-0.000000, 0.300000, 0.000000;;, + 24;3;-0.000000, 0.300000, 0.000000;;, + 25;3;-0.000000, 0.300000,-0.000000;;, + 26;3;-0.000000, 0.300000, 0.000000;;, + 27;3;-0.000000, 0.300000,-0.000000;;, + 28;3; 0.000000, 0.300000, 0.000000;;, + 29;3; 0.000000, 0.300000, 0.000000;;, + 30;3; 0.000000, 0.300000, 0.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { // Rotation + 0; + 31; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-0.998097,-0.000000, 0.000000,-0.043583;;, + 12;4;-0.996195,-0.000000, 0.000000,-0.087156;;, + 13;4;-0.998097,-0.000000, 0.000000,-0.056342;;, + 14;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 15;4;-0.998097,-0.000000,-0.000000, 0.056342;;, + 16;4;-0.996195,-0.000000,-0.000000, 0.087156;;, + 17;4;-0.998097,-0.000000,-0.000000, 0.043583;;, + 18;4;-1.000000,-0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000,-0.000000, 0.000000, 0.000000;;, + 20;4;-0.996195, 0.087156, 0.000000, 0.000000;;, + 21;4;-0.996434, 0.081668, 0.000000, 0.000000;;, + 22;4;-0.996936, 0.070172, 0.000000, 0.000000;;, + 23;4;-0.997535, 0.056459, 0.000000, 0.000000;;, + 24;4;-0.998149, 0.042383, 0.000000, 0.000000;;, + 25;4;-0.998729, 0.029106, 0.000000, 0.000000;;, + 26;4;-0.999236, 0.017493, 0.000000, 0.000000;;, + 27;4;-0.999638, 0.008289, 0.000000, 0.000000;;, + 28;4;-0.999904, 0.002208, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 31; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 31; + 0;3; 0.000000, 0.300000, 0.000000;;, + 1;3; 0.000000, 0.300000, 0.000000;;, + 2;3; 0.000000, 0.300000, 0.000000;;, + 3;3; 0.000000, 0.300000, 0.000000;;, + 4;3; 0.000000, 0.300000, 0.000000;;, + 5;3; 0.000000, 0.300000, 0.000000;;, + 6;3; 0.000000, 0.300000, 0.000000;;, + 7;3; 0.000000, 0.300000, 0.000000;;, + 8;3; 0.000000, 0.300000, 0.000000;;, + 9;3; 0.000000, 0.300000, 0.000000;;, + 10;3; 0.000000, 0.300000, 0.000000;;, + 11;3; 0.000000, 0.300000, 0.000000;;, + 12;3; 0.000000, 0.300000, 0.000000;;, + 13;3; 0.000000, 0.300000, 0.000000;;, + 14;3; 0.000000, 0.300000, 0.000000;;, + 15;3; 0.000000, 0.300000, 0.000000;;, + 16;3; 0.000000, 0.300000, 0.000000;;, + 17;3; 0.000000, 0.300000, 0.000000;;, + 18;3; 0.000000, 0.300000, 0.000000;;, + 19;3; 0.000000, 0.300000, 0.000000;;, + 20;3; 0.000000, 0.300000, 0.000000;;, + 21;3;-0.000000, 0.300000,-0.000000;;, + 22;3;-0.000000, 0.300000,-0.000000;;, + 23;3; 0.000000, 0.300000, 0.000000;;, + 24;3;-0.000000, 0.300000,-0.000000;;, + 25;3; 0.000000, 0.300000,-0.000000;;, + 26;3;-0.000000, 0.300000,-0.000000;;, + 27;3;-0.000000, 0.300000,-0.000000;;, + 28;3;-0.000000, 0.300000, 0.000000;;, + 29;3; 0.000000, 0.300000, 0.000000;;, + 30;3; 0.000000, 0.300000, 0.000000;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { // Rotation + 0; + 31; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-0.999524, 0.021812, 0.000000,-0.000000;;, + 2;4;-0.999048, 0.043619, 0.000000,-0.000000;;, + 3;4;-0.999524, 0.028196, 0.000000,-0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-0.999524,-0.028196,-0.000000, 0.000000;;, + 6;4;-0.999048,-0.043619,-0.000000, 0.000000;;, + 7;4;-0.999524,-0.021810,-0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 31; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 31; + 0;3; 0.000000, 0.400000, 0.000000;;, + 1;3; 0.000000, 0.400000, 0.000000;;, + 2;3; 0.000000, 0.400000, 0.000000;;, + 3;3; 0.000000, 0.400000, 0.000000;;, + 4;3; 0.000000, 0.400000, 0.000000;;, + 5;3; 0.000000, 0.400000, 0.000000;;, + 6;3; 0.000000, 0.400000, 0.000000;;, + 7;3; 0.000000, 0.400000, 0.000000;;, + 8;3; 0.000000, 0.400000, 0.000000;;, + 9;3; 0.000000, 0.400000, 0.000000;;, + 10;3; 0.000000, 0.400000, 0.000000;;, + 11;3; 0.000000, 0.400000,-0.000000;;, + 12;3;-0.000000, 0.400000, 0.000000;;, + 13;3; 0.000000, 0.400000, 0.000000;;, + 14;3;-0.000000, 0.400000, 0.000000;;, + 15;3;-0.000000, 0.400000, 0.000000;;, + 16;3; 0.000000, 0.400000, 0.000000;;, + 17;3;-0.000000, 0.400000,-0.000000;;, + 18;3;-0.000000, 0.400000,-0.000000;;, + 19;3;-0.000000, 0.400000,-0.000000;;, + 20;3; 0.000000, 0.400000,-0.000000;;, + 21;3; 0.000000, 0.400000, 0.000000;;, + 22;3;-0.000000, 0.400000,-0.000000;;, + 23;3;-0.000000, 0.400000,-0.000000;;, + 24;3;-0.000000, 0.400000,-0.000000;;, + 25;3; 0.000000, 0.400000, 0.000000;;, + 26;3;-0.000000, 0.400000, 0.000000;;, + 27;3;-0.000000, 0.400000, 0.000000;;, + 28;3; 0.000000, 0.400000, 0.000000;;, + 29;3; 0.000000, 0.400000, 0.000000;;, + 30;3; 0.000000, 0.400000, 0.000000;;; + } + } + Animation { + {Cube} + AnimationKey { // Rotation + 0; + 31; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 31; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 31; + 0;3; 0.000000, 0.000000, 1.000000;;, + 1;3; 0.000000, 0.000000, 1.000000;;, + 2;3; 0.000000, 0.000000, 1.000000;;, + 3;3; 0.000000, 0.000000, 1.000000;;, + 4;3; 0.000000, 0.000000, 1.000000;;, + 5;3; 0.000000, 0.000000, 1.000000;;, + 6;3; 0.000000, 0.000000, 1.000000;;, + 7;3; 0.000000, 0.000000, 1.000000;;, + 8;3; 0.000000, 0.000000, 1.000000;;, + 9;3; 0.000000, 0.000000, 1.000000;;, + 10;3; 0.000000, 0.000000, 1.000000;;, + 11;3; 0.000000, 0.000000, 1.000000;;, + 12;3; 0.000000, 0.000000, 1.000000;;, + 13;3; 0.000000, 0.000000, 1.000000;;, + 14;3; 0.000000, 0.000000, 1.000000;;, + 15;3; 0.000000, 0.000000, 1.000000;;, + 16;3; 0.000000, 0.000000, 1.000000;;, + 17;3; 0.000000, 0.000000, 1.000000;;, + 18;3; 0.000000, 0.000000, 1.000000;;, + 19;3; 0.000000, 0.000000, 1.000000;;, + 20;3; 0.000000, 0.000000, 1.000000;;, + 21;3; 0.000000, 0.000000, 1.000000;;, + 22;3; 0.000000, 0.000000, 1.000000;;, + 23;3; 0.000000, 0.000000, 1.000000;;, + 24;3; 0.000000, 0.000000, 1.000000;;, + 25;3; 0.000000, 0.000000, 1.000000;;, + 26;3; 0.000000, 0.000000, 1.000000;;, + 27;3; 0.000000, 0.000000, 1.000000;;, + 28;3; 0.000000, 0.000000, 1.000000;;, + 29;3; 0.000000, 0.000000, 1.000000;;, + 30;3; 0.000000, 0.000000, 1.000000;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs/models/zmobs_mese_monster.png b/mods/mobs/models/zmobs_mese_monster.png new file mode 100644 index 0000000..55f662a Binary files /dev/null and b/mods/mobs/models/zmobs_mese_monster.png differ diff --git a/mods/mobs/models/zmobs_mese_monster.x b/mods/mobs/models/zmobs_mese_monster.x new file mode 100644 index 0000000..78734c2 --- /dev/null +++ b/mods/mobs/models/zmobs_mese_monster.x @@ -0,0 +1,2999 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + -5.000000,-0.000001, 0.000000, 0.000000, + 0.000001,-5.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 5.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature_head { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 1.000000;; + } + Frame Armature_wing_1 { + FrameTransformMatrix { + 0.346593, 0.643673,-0.682319, 0.000000, + 0.880471,-0.474100,-0.000000, 0.000000, + -0.323487,-0.600762,-0.731055, 0.000000, + 1.000000, 1.625000,-0.000000, 1.000000;; + } + } // End of Armature_wing_1 + Frame Armature_wing_2 { + FrameTransformMatrix { + 0.421701,-0.783159, 0.456980, 0.000000, + -0.880471,-0.474100,-0.000000, 0.000000, + 0.216654,-0.402357,-0.889477, 0.000000, + -1.000000, 1.625000, 0.000000, 1.000000;; + } + } // End of Armature_wing_2 + } // End of Armature_head + Frame Cube { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { // Cube mesh + 384; + 1.000000; 0.000000; 0.125000;, + 1.125000; 0.000000; 0.125000;, + 1.125000; 0.000000;-0.125000;, + 1.375000; 0.000000;-0.125000;, + 1.375000; 0.000000;-0.250000;, + 1.500000; 0.000000;-0.250000;, + 1.500000; 0.000000;-0.375000;, + 1.625000; 0.000000;-0.375000;, + 1.625000; 0.000000;-0.500000;, + 2.000000; 0.000000;-0.500000;, + 2.000000; 0.000000;-0.625000;, + 2.250000; 0.000000;-0.625000;, + 2.250000; 0.000000;-0.750000;, + 2.375000; 0.000000;-0.750000;, + 2.375000; 0.000000;-0.875000;, + 2.750000; 0.000000;-0.875000;, + 2.750000; 0.000000;-0.625000;, + 2.625000; 0.000000;-0.625000;, + 2.625000; 0.000000; 0.250000;, + 2.500000; 0.000000; 0.250000;, + 2.500000; 0.000000; 0.500000;, + 2.375000; 0.000000; 0.500000;, + 2.375000; 0.000000; 0.625000;, + 2.125000; 0.000000; 0.625000;, + 2.125000; 0.000000; 0.750000;, + 2.000000; 0.000000; 0.750000;, + 2.000000; 0.000000; 0.875000;, + 1.875000; 0.000000; 0.875000;, + 1.875000; 0.000000; 1.000000;, + 1.000000; 0.000000; 1.000000;, + 1.000000; 0.125000; 0.125000;, + 1.000000; 0.125000; 1.000000;, + 1.875000; 0.125000; 1.000000;, + 1.875000; 0.125000; 0.875000;, + 2.000000; 0.125000; 0.875000;, + 2.000000; 0.125000; 0.750000;, + 2.125000; 0.125000; 0.750000;, + 2.125000; 0.125000; 0.625000;, + 2.375000; 0.125000; 0.625000;, + 2.375000; 0.125000; 0.500000;, + 2.500000; 0.125000; 0.500000;, + 2.500000; 0.125000; 0.250000;, + 2.625000; 0.125000; 0.250000;, + 2.625000; 0.125000;-0.625000;, + 2.750000; 0.125000;-0.625000;, + 2.750000; 0.125000;-0.875000;, + 2.375000; 0.125000;-0.875000;, + 2.375000; 0.125000;-0.750000;, + 2.250000; 0.125000;-0.750000;, + 2.250000; 0.125000;-0.625000;, + 2.000000; 0.125000;-0.625000;, + 2.000000; 0.125000;-0.500000;, + 1.625000; 0.125000;-0.500000;, + 1.625000; 0.125000;-0.375000;, + 1.500000; 0.125000;-0.375000;, + 1.500000; 0.125000;-0.250000;, + 1.375000; 0.125000;-0.250000;, + 1.375000; 0.125000;-0.125000;, + 1.125000; 0.125000;-0.125000;, + 1.125000; 0.125000; 0.125000;, + 1.875000; 0.000000; 0.875000;, + 2.000000; 0.000000; 0.875000;, + 2.000000; 0.125000; 0.875000;, + 1.875000; 0.125000; 0.875000;, + 1.125000; 0.000000; 0.125000;, + 1.000000; 0.000000; 0.125000;, + 1.000000; 0.125000; 0.125000;, + 1.125000; 0.125000; 0.125000;, + 1.500000; 0.000000;-0.375000;, + 1.500000; 0.000000;-0.250000;, + 1.500000; 0.125000;-0.250000;, + 1.500000; 0.125000;-0.375000;, + 2.250000; 0.000000;-0.625000;, + 2.000000; 0.000000;-0.625000;, + 2.000000; 0.125000;-0.625000;, + 2.250000; 0.125000;-0.625000;, + 2.750000; 0.000000;-0.625000;, + 2.750000; 0.000000;-0.875000;, + 2.750000; 0.125000;-0.875000;, + 2.750000; 0.125000;-0.625000;, + 2.375000; 0.000000; 0.500000;, + 2.500000; 0.000000; 0.500000;, + 2.500000; 0.125000; 0.500000;, + 2.375000; 0.125000; 0.500000;, + 2.000000; 0.000000; 0.875000;, + 2.000000; 0.000000; 0.750000;, + 2.000000; 0.125000; 0.750000;, + 2.000000; 0.125000; 0.875000;, + 1.000000; 0.000000; 0.125000;, + 1.000000; 0.000000; 1.000000;, + 1.000000; 0.125000; 1.000000;, + 1.000000; 0.125000; 0.125000;, + 1.500000; 0.000000;-0.250000;, + 1.375000; 0.000000;-0.250000;, + 1.375000; 0.125000;-0.250000;, + 1.500000; 0.125000;-0.250000;, + 2.000000; 0.000000;-0.625000;, + 2.000000; 0.000000;-0.500000;, + 2.000000; 0.125000;-0.500000;, + 2.000000; 0.125000;-0.625000;, + 2.750000; 0.000000;-0.875000;, + 2.375000; 0.000000;-0.875000;, + 2.375000; 0.125000;-0.875000;, + 2.750000; 0.125000;-0.875000;, + 2.500000; 0.000000; 0.500000;, + 2.500000; 0.000000; 0.250000;, + 2.500000; 0.125000; 0.250000;, + 2.500000; 0.125000; 0.500000;, + 2.000000; 0.000000; 0.750000;, + 2.125000; 0.000000; 0.750000;, + 2.125000; 0.125000; 0.750000;, + 2.000000; 0.125000; 0.750000;, + 1.375000; 0.000000;-0.250000;, + 1.375000; 0.000000;-0.125000;, + 1.375000; 0.125000;-0.125000;, + 1.375000; 0.125000;-0.250000;, + 2.000000; 0.000000;-0.500000;, + 1.625000; 0.000000;-0.500000;, + 1.625000; 0.125000;-0.500000;, + 2.000000; 0.125000;-0.500000;, + 2.375000; 0.000000;-0.875000;, + 2.375000; 0.000000;-0.750000;, + 2.375000; 0.125000;-0.750000;, + 2.375000; 0.125000;-0.875000;, + 2.500000; 0.000000; 0.250000;, + 2.625000; 0.000000; 0.250000;, + 2.625000; 0.125000; 0.250000;, + 2.500000; 0.125000; 0.250000;, + 2.125000; 0.000000; 0.750000;, + 2.125000; 0.000000; 0.625000;, + 2.125000; 0.125000; 0.625000;, + 2.125000; 0.125000; 0.750000;, + 1.000000; 0.000000; 1.000000;, + 1.875000; 0.000000; 1.000000;, + 1.875000; 0.125000; 1.000000;, + 1.000000; 0.125000; 1.000000;, + 1.375000; 0.000000;-0.125000;, + 1.125000; 0.000000;-0.125000;, + 1.125000; 0.125000;-0.125000;, + 1.375000; 0.125000;-0.125000;, + 1.625000; 0.000000;-0.500000;, + 1.625000; 0.000000;-0.375000;, + 1.625000; 0.125000;-0.375000;, + 1.625000; 0.125000;-0.500000;, + 2.375000; 0.000000;-0.750000;, + 2.250000; 0.000000;-0.750000;, + 2.250000; 0.125000;-0.750000;, + 2.375000; 0.125000;-0.750000;, + 2.625000; 0.000000; 0.250000;, + 2.625000; 0.000000;-0.625000;, + 2.625000; 0.125000;-0.625000;, + 2.625000; 0.125000; 0.250000;, + 2.125000; 0.000000; 0.625000;, + 2.375000; 0.000000; 0.625000;, + 2.375000; 0.125000; 0.625000;, + 2.125000; 0.125000; 0.625000;, + 1.875000; 0.000000; 1.000000;, + 1.875000; 0.000000; 0.875000;, + 1.875000; 0.125000; 0.875000;, + 1.875000; 0.125000; 1.000000;, + 1.125000; 0.000000;-0.125000;, + 1.125000; 0.000000; 0.125000;, + 1.125000; 0.125000; 0.125000;, + 1.125000; 0.125000;-0.125000;, + 1.625000; 0.000000;-0.375000;, + 1.500000; 0.000000;-0.375000;, + 1.500000; 0.125000;-0.375000;, + 1.625000; 0.125000;-0.375000;, + 2.250000; 0.000000;-0.750000;, + 2.250000; 0.000000;-0.625000;, + 2.250000; 0.125000;-0.625000;, + 2.250000; 0.125000;-0.750000;, + 2.625000; 0.000000;-0.625000;, + 2.750000; 0.000000;-0.625000;, + 2.750000; 0.125000;-0.625000;, + 2.625000; 0.125000;-0.625000;, + 2.375000; 0.000000; 0.625000;, + 2.375000; 0.000000; 0.500000;, + 2.375000; 0.125000; 0.500000;, + 2.375000; 0.125000; 0.625000;, + -1.000000; 0.125000; 0.125000;, + -1.125000; 0.125000; 0.125000;, + -1.125000; 0.125000;-0.125000;, + -1.375000; 0.125000;-0.125000;, + -1.375000; 0.125000;-0.250000;, + -1.500000; 0.125000;-0.250000;, + -1.500000; 0.125000;-0.375000;, + -1.625000; 0.125000;-0.375000;, + -1.625000; 0.125000;-0.500000;, + -2.000000; 0.125000;-0.500000;, + -2.000000; 0.125000;-0.625000;, + -2.250000; 0.125000;-0.625000;, + -2.250000; 0.125000;-0.750000;, + -2.375000; 0.125000;-0.750000;, + -2.375000; 0.125000;-0.875000;, + -2.750000; 0.125000;-0.875000;, + -2.750000; 0.125000;-0.625000;, + -2.625000; 0.125000;-0.625000;, + -2.625000; 0.125000; 0.250000;, + -2.500000; 0.125000; 0.250000;, + -2.500000; 0.125000; 0.500000;, + -2.375000; 0.125000; 0.500000;, + -2.375000; 0.125000; 0.625000;, + -2.125000; 0.125000; 0.625000;, + -2.125000; 0.125000; 0.750000;, + -2.000000; 0.125000; 0.750000;, + -2.000000; 0.125000; 0.875000;, + -1.875000; 0.125000; 0.875000;, + -1.875000; 0.125000; 1.000000;, + -1.000000; 0.125000; 1.000000;, + -1.000000;-0.000000; 0.125000;, + -1.000000;-0.000000; 1.000000;, + -1.875000; 0.000000; 1.000000;, + -1.875000; 0.000000; 0.875000;, + -2.000000; 0.000000; 0.875000;, + -2.000000; 0.000000; 0.750000;, + -2.125000; 0.000000; 0.750000;, + -2.125000; 0.000000; 0.625000;, + -2.375000; 0.000000; 0.625000;, + -2.375000; 0.000000; 0.500000;, + -2.500000; 0.000000; 0.500000;, + -2.500000; 0.000000; 0.250000;, + -2.625000; 0.000000; 0.250000;, + -2.625000; 0.000000;-0.625000;, + -2.750000; 0.000000;-0.625000;, + -2.750000; 0.000000;-0.875000;, + -2.375000; 0.000000;-0.875000;, + -2.375000; 0.000000;-0.750000;, + -2.250000; 0.000000;-0.750000;, + -2.250000; 0.000000;-0.625000;, + -2.000000; 0.000000;-0.625000;, + -2.000000; 0.000000;-0.500000;, + -1.625000;-0.000000;-0.500000;, + -1.625000;-0.000000;-0.375000;, + -1.500000;-0.000000;-0.375000;, + -1.500000;-0.000000;-0.250000;, + -1.375000;-0.000000;-0.250000;, + -1.375000;-0.000000;-0.125000;, + -1.125000;-0.000000;-0.125000;, + -1.125000;-0.000000; 0.125000;, + -1.875000; 0.125000; 0.875000;, + -2.000000; 0.125000; 0.875000;, + -2.000000; 0.000000; 0.875000;, + -1.875000; 0.000000; 0.875000;, + -1.125000; 0.125000; 0.125000;, + -1.000000; 0.125000; 0.125000;, + -1.000000;-0.000000; 0.125000;, + -1.125000;-0.000000; 0.125000;, + -1.500000; 0.125000;-0.375000;, + -1.500000; 0.125000;-0.250000;, + -1.500000;-0.000000;-0.250000;, + -1.500000;-0.000000;-0.375000;, + -2.250000; 0.125000;-0.625000;, + -2.000000; 0.125000;-0.625000;, + -2.000000; 0.000000;-0.625000;, + -2.250000; 0.000000;-0.625000;, + -2.750000; 0.125000;-0.625000;, + -2.750000; 0.125000;-0.875000;, + -2.750000; 0.000000;-0.875000;, + -2.750000; 0.000000;-0.625000;, + -2.375000; 0.125000; 0.500000;, + -2.500000; 0.125000; 0.500000;, + -2.500000; 0.000000; 0.500000;, + -2.375000; 0.000000; 0.500000;, + -2.000000; 0.125000; 0.875000;, + -2.000000; 0.125000; 0.750000;, + -2.000000; 0.000000; 0.750000;, + -2.000000; 0.000000; 0.875000;, + -1.000000; 0.125000; 0.125000;, + -1.000000; 0.125000; 1.000000;, + -1.000000;-0.000000; 1.000000;, + -1.000000;-0.000000; 0.125000;, + -1.500000; 0.125000;-0.250000;, + -1.375000; 0.125000;-0.250000;, + -1.375000;-0.000000;-0.250000;, + -1.500000;-0.000000;-0.250000;, + -2.000000; 0.125000;-0.625000;, + -2.000000; 0.125000;-0.500000;, + -2.000000; 0.000000;-0.500000;, + -2.000000; 0.000000;-0.625000;, + -2.750000; 0.125000;-0.875000;, + -2.375000; 0.125000;-0.875000;, + -2.375000; 0.000000;-0.875000;, + -2.750000; 0.000000;-0.875000;, + -2.500000; 0.125000; 0.500000;, + -2.500000; 0.125000; 0.250000;, + -2.500000; 0.000000; 0.250000;, + -2.500000; 0.000000; 0.500000;, + -2.000000; 0.125000; 0.750000;, + -2.125000; 0.125000; 0.750000;, + -2.125000; 0.000000; 0.750000;, + -2.000000; 0.000000; 0.750000;, + -1.375000; 0.125000;-0.250000;, + -1.375000; 0.125000;-0.125000;, + -1.375000;-0.000000;-0.125000;, + -1.375000;-0.000000;-0.250000;, + -2.000000; 0.125000;-0.500000;, + -1.625000; 0.125000;-0.500000;, + -1.625000;-0.000000;-0.500000;, + -2.000000; 0.000000;-0.500000;, + -2.375000; 0.125000;-0.875000;, + -2.375000; 0.125000;-0.750000;, + -2.375000; 0.000000;-0.750000;, + -2.375000; 0.000000;-0.875000;, + -2.500000; 0.125000; 0.250000;, + -2.625000; 0.125000; 0.250000;, + -2.625000; 0.000000; 0.250000;, + -2.500000; 0.000000; 0.250000;, + -2.125000; 0.125000; 0.750000;, + -2.125000; 0.125000; 0.625000;, + -2.125000; 0.000000; 0.625000;, + -2.125000; 0.000000; 0.750000;, + -1.000000; 0.125000; 1.000000;, + -1.875000; 0.125000; 1.000000;, + -1.875000; 0.000000; 1.000000;, + -1.000000;-0.000000; 1.000000;, + -1.375000; 0.125000;-0.125000;, + -1.125000; 0.125000;-0.125000;, + -1.125000;-0.000000;-0.125000;, + -1.375000;-0.000000;-0.125000;, + -1.625000; 0.125000;-0.500000;, + -1.625000; 0.125000;-0.375000;, + -1.625000;-0.000000;-0.375000;, + -1.625000;-0.000000;-0.500000;, + -2.375000; 0.125000;-0.750000;, + -2.250000; 0.125000;-0.750000;, + -2.250000; 0.000000;-0.750000;, + -2.375000; 0.000000;-0.750000;, + -2.625000; 0.125000; 0.250000;, + -2.625000; 0.125000;-0.625000;, + -2.625000; 0.000000;-0.625000;, + -2.625000; 0.000000; 0.250000;, + -2.125000; 0.125000; 0.625000;, + -2.375000; 0.125000; 0.625000;, + -2.375000; 0.000000; 0.625000;, + -2.125000; 0.000000; 0.625000;, + -1.875000; 0.125000; 1.000000;, + -1.875000; 0.125000; 0.875000;, + -1.875000; 0.000000; 0.875000;, + -1.875000; 0.000000; 1.000000;, + -1.125000; 0.125000;-0.125000;, + -1.125000; 0.125000; 0.125000;, + -1.125000;-0.000000; 0.125000;, + -1.125000;-0.000000;-0.125000;, + -1.625000; 0.125000;-0.375000;, + -1.500000; 0.125000;-0.375000;, + -1.500000;-0.000000;-0.375000;, + -1.625000;-0.000000;-0.375000;, + -2.250000; 0.125000;-0.750000;, + -2.250000; 0.125000;-0.625000;, + -2.250000; 0.000000;-0.625000;, + -2.250000; 0.000000;-0.750000;, + -2.625000; 0.125000;-0.625000;, + -2.750000; 0.125000;-0.625000;, + -2.750000; 0.000000;-0.625000;, + -2.625000; 0.000000;-0.625000;, + -2.375000; 0.125000; 0.625000;, + -2.375000; 0.125000; 0.500000;, + -2.375000; 0.000000; 0.500000;, + -2.375000; 0.000000; 0.625000;, + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 70; + 30;29;28;27;26;25;24;23;22;21;20;19;18;17;16;15;14;13;12;11;10;9;8;7;6;5;4;3;2;1;0;, + 30;59;58;57;56;55;54;53;52;51;50;49;48;47;46;45;44;43;42;41;40;39;38;37;36;35;34;33;32;31;30;, + 4;63;62;61;60;, + 4;67;66;65;64;, + 4;71;70;69;68;, + 4;75;74;73;72;, + 4;79;78;77;76;, + 4;83;82;81;80;, + 4;87;86;85;84;, + 4;91;90;89;88;, + 4;95;94;93;92;, + 4;99;98;97;96;, + 4;103;102;101;100;, + 4;107;106;105;104;, + 4;111;110;109;108;, + 4;115;114;113;112;, + 4;119;118;117;116;, + 4;123;122;121;120;, + 4;127;126;125;124;, + 4;131;130;129;128;, + 4;135;134;133;132;, + 4;139;138;137;136;, + 4;143;142;141;140;, + 4;147;146;145;144;, + 4;151;150;149;148;, + 4;155;154;153;152;, + 4;159;158;157;156;, + 4;163;162;161;160;, + 4;167;166;165;164;, + 4;171;170;169;168;, + 4;175;174;173;172;, + 4;179;178;177;176;, + 30;209;208;207;206;205;204;203;202;201;200;199;198;197;196;195;194;193;192;191;190;189;188;187;186;185;184;183;182;181;180;, + 30;239;238;237;236;235;234;233;232;231;230;229;228;227;226;225;224;223;222;221;220;219;218;217;216;215;214;213;212;211;210;, + 4;243;242;241;240;, + 4;247;246;245;244;, + 4;251;250;249;248;, + 4;255;254;253;252;, + 4;259;258;257;256;, + 4;263;262;261;260;, + 4;267;266;265;264;, + 4;271;270;269;268;, + 4;275;274;273;272;, + 4;279;278;277;276;, + 4;283;282;281;280;, + 4;287;286;285;284;, + 4;291;290;289;288;, + 4;295;294;293;292;, + 4;299;298;297;296;, + 4;303;302;301;300;, + 4;307;306;305;304;, + 4;311;310;309;308;, + 4;315;314;313;312;, + 4;319;318;317;316;, + 4;323;322;321;320;, + 4;327;326;325;324;, + 4;331;330;329;328;, + 4;335;334;333;332;, + 4;339;338;337;336;, + 4;343;342;341;340;, + 4;347;346;345;344;, + 4;351;350;349;348;, + 4;355;354;353;352;, + 4;359;358;357;356;, + 4;363;362;361;360;, + 4;367;366;365;364;, + 4;371;370;369;368;, + 4;375;374;373;372;, + 4;379;378;377;376;, + 4;383;382;381;380;; + MeshNormals { // Cube normals + 70; + 0.000000;-1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000;-1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 70; + 30;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;, + 30;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;, + 4;2;2;2;2;, + 4;3;3;3;3;, + 4;4;4;4;4;, + 4;5;5;5;5;, + 4;6;6;6;6;, + 4;7;7;7;7;, + 4;8;8;8;8;, + 4;9;9;9;9;, + 4;10;10;10;10;, + 4;11;11;11;11;, + 4;12;12;12;12;, + 4;13;13;13;13;, + 4;14;14;14;14;, + 4;15;15;15;15;, + 4;16;16;16;16;, + 4;17;17;17;17;, + 4;18;18;18;18;, + 4;19;19;19;19;, + 4;20;20;20;20;, + 4;21;21;21;21;, + 4;22;22;22;22;, + 4;23;23;23;23;, + 4;24;24;24;24;, + 4;25;25;25;25;, + 4;26;26;26;26;, + 4;27;27;27;27;, + 4;28;28;28;28;, + 4;29;29;29;29;, + 4;30;30;30;30;, + 4;31;31;31;31;, + 30;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;, + 30;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;, + 4;34;34;34;34;, + 4;35;35;35;35;, + 4;36;36;36;36;, + 4;37;37;37;37;, + 4;38;38;38;38;, + 4;39;39;39;39;, + 4;40;40;40;40;, + 4;41;41;41;41;, + 4;42;42;42;42;, + 4;43;43;43;43;, + 4;44;44;44;44;, + 4;45;45;45;45;, + 4;46;46;46;46;, + 4;47;47;47;47;, + 4;48;48;48;48;, + 4;49;49;49;49;, + 4;50;50;50;50;, + 4;51;51;51;51;, + 4;52;52;52;52;, + 4;53;53;53;53;, + 4;54;54;54;54;, + 4;55;55;55;55;, + 4;56;56;56;56;, + 4;57;57;57;57;, + 4;58;58;58;58;, + 4;59;59;59;59;, + 4;60;60;60;60;, + 4;61;61;61;61;, + 4;62;62;62;62;, + 4;63;63;63;63;, + 4;64;64;64;64;, + 4;65;65;65;65;, + 4;66;66;66;66;, + 4;67;67;67;67;, + 4;68;68;68;68;, + 4;69;69;69;69;; + } // End of Cube normals + MeshTextureCoords { // Cube UV coordinates + 384; + 0.500018; 0.718750;, + 0.468768; 0.718750;, + 0.468768; 0.781250;, + 0.406268; 0.781250;, + 0.406268; 0.812500;, + 0.375018; 0.812500;, + 0.375018; 0.843750;, + 0.343768; 0.843750;, + 0.343768; 0.875000;, + 0.250018; 0.875000;, + 0.250018; 0.906250;, + 0.187518; 0.906250;, + 0.187518; 0.937500;, + 0.156268; 0.937500;, + 0.156268; 0.968750;, + 0.062518; 0.968750;, + 0.063583; 0.905511;, + 0.093768; 0.906250;, + 0.093768; 0.687500;, + 0.125018; 0.687500;, + 0.125018; 0.625000;, + 0.156268; 0.625000;, + 0.158954; 0.593750;, + 0.218768; 0.593750;, + 0.218768; 0.562500;, + 0.250018; 0.562500;, + 0.250018; 0.531250;, + 0.281268; 0.531250;, + 0.281268; 0.500000;, + 0.500018; 0.500000;, + 0.500018; 0.718750;, + 0.500018; 0.500000;, + 0.281268; 0.500000;, + 0.281268; 0.531250;, + 0.250018; 0.531250;, + 0.250018; 0.562500;, + 0.218768; 0.562500;, + 0.218768; 0.593750;, + 0.158954; 0.593750;, + 0.156268; 0.625000;, + 0.125018; 0.625000;, + 0.125018; 0.687500;, + 0.093768; 0.687500;, + 0.093768; 0.906250;, + 0.063583; 0.905511;, + 0.062518; 0.968750;, + 0.156268; 0.968750;, + 0.156268; 0.937500;, + 0.187518; 0.937500;, + 0.187518; 0.906250;, + 0.250018; 0.906250;, + 0.250018; 0.875000;, + 0.343768; 0.875000;, + 0.343768; 0.843750;, + 0.375018; 0.843750;, + 0.375018; 0.812500;, + 0.406268; 0.812500;, + 0.406268; 0.781250;, + 0.468768; 0.781250;, + 0.468768; 0.718750;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.500018; 0.718750;, + 0.468768; 0.718750;, + 0.468768; 0.781250;, + 0.406268; 0.781250;, + 0.406268; 0.812500;, + 0.375018; 0.812500;, + 0.375018; 0.843750;, + 0.343768; 0.843750;, + 0.343768; 0.875000;, + 0.250018; 0.875000;, + 0.250018; 0.906250;, + 0.187518; 0.906250;, + 0.187518; 0.937500;, + 0.156268; 0.937500;, + 0.156268; 0.968750;, + 0.062518; 0.968750;, + 0.063583; 0.905511;, + 0.093768; 0.906250;, + 0.093768; 0.687500;, + 0.125018; 0.687500;, + 0.125018; 0.625000;, + 0.156268; 0.625000;, + 0.158954; 0.593750;, + 0.218768; 0.593750;, + 0.218768; 0.562500;, + 0.250018; 0.562500;, + 0.250018; 0.531250;, + 0.281268; 0.531250;, + 0.281268; 0.500000;, + 0.500018; 0.500000;, + 0.500018; 0.718750;, + 0.500018; 0.500000;, + 0.281268; 0.500000;, + 0.281268; 0.531250;, + 0.250018; 0.531250;, + 0.250018; 0.562500;, + 0.218768; 0.562500;, + 0.218768; 0.593750;, + 0.158954; 0.593750;, + 0.156268; 0.625000;, + 0.125018; 0.625000;, + 0.125018; 0.687500;, + 0.093768; 0.687500;, + 0.093768; 0.906250;, + 0.063583; 0.905511;, + 0.062518; 0.968750;, + 0.156268; 0.968750;, + 0.156268; 0.937500;, + 0.187518; 0.937500;, + 0.187518; 0.906250;, + 0.250018; 0.906250;, + 0.250018; 0.875000;, + 0.343768; 0.875000;, + 0.343768; 0.843750;, + 0.375018; 0.843750;, + 0.375018; 0.812500;, + 0.406268; 0.812500;, + 0.406268; 0.781250;, + 0.468768; 0.781250;, + 0.468768; 0.718750;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.015643; 0.750000;, + 0.499982; 0.000000;, + 0.000053; 0.000000;, + 0.000053; 0.499929;, + 0.499982; 0.499929;, + 0.499982; 0.000000;, + 0.000053; 0.000000;, + 0.000053; 0.499929;, + 0.499982; 0.499929;, + 0.499982; 0.000000;, + 0.000053; 0.000000;, + 0.000053; 0.499929;, + 0.499982; 0.499929;, + 0.999982; 0.000000;, + 0.500053; 0.000000;, + 0.500053; 0.499929;, + 0.999982; 0.499929;, + 0.000053; 0.000000;, + 0.000053; 0.499929;, + 0.499982; 0.499929;, + 0.499982; 0.000000;, + 0.499982; 0.499929;, + 0.499982; 0.000000;, + 0.000053; 0.000000;, + 0.000053; 0.499929;; + } // End of Cube UV coordinates + MeshMaterialList { // Cube material list + 1; + 70; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } // End of Cube material list + XSkinMeshHeader { + 1; + 3; + 3; + } + SkinWeights { + "Armature_head"; + 24; + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 1.000000;; + } // End of Armature_head skin weights + SkinWeights { + "Armature_wing_2"; + 180; + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.421701,-0.880471, 0.216654, 0.000000, + -0.456980, 0.000000, 0.889477, 0.000000, + -0.783159,-0.474100,-0.402357, 0.000000, + 0.911175,-0.584159, 0.468127, 1.000000;; + } // End of Armature_wing_2 skin weights + SkinWeights { + "Armature_wing_1"; + 180; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.346593, 0.880471,-0.323487, 0.000000, + 0.682319, 0.000000, 0.731055, 0.000000, + 0.643673,-0.474100,-0.600762, 0.000000, + -0.748888,-0.584159, 0.698963, 1.000000;; + } // End of Armature_wing_1 skin weights + } // End of Cube mesh + } // End of Cube + } // End of Armature +} // End of Root +AnimationSet Global { + Animation { + {Armature} + AnimationKey { // Rotation + 0; + 66; + 0;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 1;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 2;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 3;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 4;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 5;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 6;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 7;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 8;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 9;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 10;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 11;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 12;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 13;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 14;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 15;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 16;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 17;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 18;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 19;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 20;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 21;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 22;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 23;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 24;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 25;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 26;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 27;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 28;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 29;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 30;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 31;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 32;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 33;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 34;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 35;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 36;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 37;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 38;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 39;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 40;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 41;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 42;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 43;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 44;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 45;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 46;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 47;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 48;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 49;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 50;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 51;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 52;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 53;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 54;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 55;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 56;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 57;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 58;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 59;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 60;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 61;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 62;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 63;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 64;4;-0.000000, 0.000000,-0.000000,-1.000000;;, + 65;4;-0.000000, 0.000000,-0.000000,-1.000000;;; + } + AnimationKey { // Scale + 1; + 66; + 0;3; 5.000000, 5.000000, 5.000000;;, + 1;3; 5.000000, 5.000000, 5.000000;;, + 2;3; 5.000000, 5.000000, 5.000000;;, + 3;3; 5.000000, 5.000000, 5.000000;;, + 4;3; 5.000000, 5.000000, 5.000000;;, + 5;3; 5.000000, 5.000000, 5.000000;;, + 6;3; 5.000000, 5.000000, 5.000000;;, + 7;3; 5.000000, 5.000000, 5.000000;;, + 8;3; 5.000000, 5.000000, 5.000000;;, + 9;3; 5.000000, 5.000000, 5.000000;;, + 10;3; 5.000000, 5.000000, 5.000000;;, + 11;3; 5.000000, 5.000000, 5.000000;;, + 12;3; 5.000000, 5.000000, 5.000000;;, + 13;3; 5.000000, 5.000000, 5.000000;;, + 14;3; 5.000000, 5.000000, 5.000000;;, + 15;3; 5.000000, 5.000000, 5.000000;;, + 16;3; 5.000000, 5.000000, 5.000000;;, + 17;3; 5.000000, 5.000000, 5.000000;;, + 18;3; 5.000000, 5.000000, 5.000000;;, + 19;3; 5.000000, 5.000000, 5.000000;;, + 20;3; 5.000000, 5.000000, 5.000000;;, + 21;3; 5.000000, 5.000000, 5.000000;;, + 22;3; 5.000000, 5.000000, 5.000000;;, + 23;3; 5.000000, 5.000000, 5.000000;;, + 24;3; 5.000000, 5.000000, 5.000000;;, + 25;3; 5.000000, 5.000000, 5.000000;;, + 26;3; 5.000000, 5.000000, 5.000000;;, + 27;3; 5.000000, 5.000000, 5.000000;;, + 28;3; 5.000000, 5.000000, 5.000000;;, + 29;3; 5.000000, 5.000000, 5.000000;;, + 30;3; 5.000000, 5.000000, 5.000000;;, + 31;3; 5.000000, 5.000000, 5.000000;;, + 32;3; 5.000000, 5.000000, 5.000000;;, + 33;3; 5.000000, 5.000000, 5.000000;;, + 34;3; 5.000000, 5.000000, 5.000000;;, + 35;3; 5.000000, 5.000000, 5.000000;;, + 36;3; 5.000000, 5.000000, 5.000000;;, + 37;3; 5.000000, 5.000000, 5.000000;;, + 38;3; 5.000000, 5.000000, 5.000000;;, + 39;3; 5.000000, 5.000000, 5.000000;;, + 40;3; 5.000000, 5.000000, 5.000000;;, + 41;3; 5.000000, 5.000000, 5.000000;;, + 42;3; 5.000000, 5.000000, 5.000000;;, + 43;3; 5.000000, 5.000000, 5.000000;;, + 44;3; 5.000000, 5.000000, 5.000000;;, + 45;3; 5.000000, 5.000000, 5.000000;;, + 46;3; 5.000000, 5.000000, 5.000000;;, + 47;3; 5.000000, 5.000000, 5.000000;;, + 48;3; 5.000000, 5.000000, 5.000000;;, + 49;3; 5.000000, 5.000000, 5.000000;;, + 50;3; 5.000000, 5.000000, 5.000000;;, + 51;3; 5.000000, 5.000000, 5.000000;;, + 52;3; 5.000000, 5.000000, 5.000000;;, + 53;3; 5.000000, 5.000000, 5.000000;;, + 54;3; 5.000000, 5.000000, 5.000000;;, + 55;3; 5.000000, 5.000000, 5.000000;;, + 56;3; 5.000000, 5.000000, 5.000000;;, + 57;3; 5.000000, 5.000000, 5.000000;;, + 58;3; 5.000000, 5.000000, 5.000000;;, + 59;3; 5.000000, 5.000000, 5.000000;;, + 60;3; 5.000000, 5.000000, 5.000000;;, + 61;3; 5.000000, 5.000000, 5.000000;;, + 62;3; 5.000000, 5.000000, 5.000000;;, + 63;3; 5.000000, 5.000000, 5.000000;;, + 64;3; 5.000000, 5.000000, 5.000000;;, + 65;3; 5.000000, 5.000000, 5.000000;;; + } + AnimationKey { // Position + 2; + 66; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Armature_head} + AnimationKey { // Rotation + 0; + 66; + 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4;-0.704100, 0.710062, 0.000000,-0.000000;;, + 2;4;-0.697665, 0.716385, 0.000000,-0.000000;;, + 3;4;-0.694658, 0.719340, 0.000000,-0.000000;;, + 4;4;-0.695674, 0.718354, 0.000000,-0.000000;;, + 5;4;-0.698775, 0.715331, 0.000000,-0.000000;;, + 6;4;-0.703071, 0.711112, 0.000000,-0.000000;;, + 7;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4;-0.711933, 0.702229,-0.000000, 0.000000;;, + 9;4;-0.717265, 0.696785,-0.000000, 0.000000;;, + 10;4;-0.719340, 0.694658,-0.000000, 0.000000;;, + 11;4;-0.719197, 0.694831,-0.000000, 0.000000;;, + 12;4;-0.717853, 0.696253,-0.000000, 0.000000;;, + 13;4;-0.713883, 0.700301,-0.000000, 0.000000;;, + 14;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 16;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 17;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 18;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 19;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 20;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 21;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 22;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 23;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 24;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 25;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 26;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 27;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 28;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 29;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 30;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 31;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 32;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 33;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 34;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 35;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 36;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 37;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 38;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 39;4;-0.642788, 0.766045, 0.000000,-0.000000;;, + 40;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 41;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 42;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 43;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 44;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 45;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 46;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 47;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 48;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 49;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 50;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 51;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 52;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 53;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 54;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 55;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 56;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 57;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 58;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 59;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 60;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 61;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 62;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 63;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 64;4;-0.461749, 0.887011, 0.000000,-0.000000;;, + 65;4;-0.461749, 0.887011, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 66; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 66; + 0;3; 0.000000, 0.000000,-1.000000;;, + 1;3; 0.000000, 0.000000,-1.000000;;, + 2;3; 0.000000, 0.000000,-1.000000;;, + 3;3; 0.000000, 0.000000,-1.000000;;, + 4;3; 0.000000, 0.000000,-1.000000;;, + 5;3; 0.000000, 0.000000,-1.000000;;, + 6;3; 0.000000, 0.000000,-1.000000;;, + 7;3; 0.000000, 0.000000,-1.000000;;, + 8;3; 0.000000, 0.000000,-1.000000;;, + 9;3; 0.000000, 0.000000,-1.000000;;, + 10;3; 0.000000, 0.000000,-1.000000;;, + 11;3; 0.000000, 0.000000,-1.000000;;, + 12;3; 0.000000, 0.000000,-1.000000;;, + 13;3; 0.000000, 0.000000,-1.000000;;, + 14;3; 0.000000, 0.000000,-1.000000;;, + 15;3; 0.000000, 0.000000,-1.000000;;, + 16;3; 0.000000, 0.000000,-1.000000;;, + 17;3; 0.000000, 0.000000,-1.000000;;, + 18;3; 0.000000, 0.000000,-1.000000;;, + 19;3; 0.000000, 0.000000,-1.000000;;, + 20;3; 0.000000, 0.000000,-1.000000;;, + 21;3; 0.000000, 0.000000,-1.000000;;, + 22;3; 0.000000, 0.000000,-1.000000;;, + 23;3; 0.000000, 0.000000,-1.000000;;, + 24;3; 0.000000, 0.000000,-1.000000;;, + 25;3; 0.000000, 0.000000,-1.000000;;, + 26;3; 0.000000, 0.000000,-1.000000;;, + 27;3; 0.000000, 0.000000,-1.000000;;, + 28;3; 0.000000, 0.000000,-1.000000;;, + 29;3; 0.000000, 0.000000,-1.000000;;, + 30;3; 0.000000, 0.000000,-1.000000;;, + 31;3; 0.000000, 0.000000,-1.000000;;, + 32;3; 0.000000, 0.000000,-1.000000;;, + 33;3; 0.000000, 0.000000,-1.000000;;, + 34;3; 0.000000, 0.000000,-1.000000;;, + 35;3; 0.000000, 0.000000,-1.000000;;, + 36;3; 0.000000, 0.000000,-1.000000;;, + 37;3; 0.000000, 0.000000,-1.000000;;, + 38;3; 0.000000, 0.000000,-1.000000;;, + 39;3; 0.000000, 0.000000,-1.000000;;, + 40;3; 0.000000, 0.000000,-1.000000;;, + 41;3; 0.000000, 0.000000,-1.000000;;, + 42;3; 0.000000, 0.000000,-1.000000;;, + 43;3; 0.000000, 0.000000,-1.000000;;, + 44;3; 0.000000, 0.000000,-1.000000;;, + 45;3; 0.000000, 0.000000,-1.000000;;, + 46;3; 0.000000, 0.000000,-1.000000;;, + 47;3; 0.000000, 0.000000,-1.000000;;, + 48;3; 0.000000, 0.000000,-1.000000;;, + 49;3; 0.000000, 0.000000,-1.000000;;, + 50;3; 0.000000, 0.000000,-1.000000;;, + 51;3; 0.000000, 0.000000,-1.000000;;, + 52;3; 0.000000, 0.000000,-1.000000;;, + 53;3; 0.000000, 0.000000,-1.000000;;, + 54;3; 0.000000, 0.000000,-1.000000;;, + 55;3; 0.000000, 0.000000,-1.000000;;, + 56;3; 0.000000, 0.000000,-1.000000;;, + 57;3; 0.000000, 0.000000,-1.000000;;, + 58;3; 0.000000, 0.000000,-1.000000;;, + 59;3; 0.000000, 0.000000,-1.000000;;, + 60;3; 0.000000, 0.000000,-1.000000;;, + 61;3; 0.000000, 0.000000,-1.000000;;, + 62;3; 0.000000, 0.000000,-1.000000;;, + 63;3; 0.000000, 0.000000,-1.000000;;, + 64;3; 0.000000, 0.000000,-1.000000;;, + 65;3; 0.000000, 0.000000,-1.000000;;; + } + } + Animation { + {Armature_wing_1} + AnimationKey { // Rotation + 0; + 66; + 0;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 1;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 2;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 3;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 4;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 5;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 6;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 7;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 8;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 9;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 10;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 11;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 12;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 13;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 14;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 15;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 16;4; 0.204581, 0.794330, 0.568519,-0.057054;;, + 17;4; 0.212346, 0.791426, 0.568486,-0.051278;;, + 18;4; 0.225151, 0.786639, 0.568431,-0.041755;;, + 19;4; 0.242433, 0.780177, 0.568358,-0.028902;;, + 20;4; 0.263128, 0.772439, 0.568269,-0.013512;;, + 21;4; 0.285683, 0.764005, 0.568173, 0.003261;;, + 22;4; 0.308237, 0.755571, 0.568077, 0.020034;;, + 23;4; 0.328931, 0.747833, 0.567989, 0.035424;;, + 24;4; 0.346212, 0.741371, 0.567915, 0.048275;;, + 25;4; 0.359016, 0.736583, 0.567860, 0.057796;;, + 26;4; 0.366780, 0.733680, 0.567827, 0.063571;;, + 27;4; 0.369353, 0.732718, 0.567816, 0.065483;;, + 28;4; 0.367798, 0.733399, 0.567888, 0.064304;;, + 29;4; 0.362979, 0.735489, 0.568097, 0.060650;;, + 30;4; 0.354745, 0.739016, 0.568425, 0.054419;;, + 31;4; 0.343125, 0.743915, 0.568837, 0.045645;;, + 32;4; 0.328408, 0.750004, 0.569283, 0.034559;;, + 33;4; 0.311174, 0.756969, 0.569697, 0.021618;;, + 34;4; 0.292257, 0.764399, 0.570011, 0.007464;;, + 35;4; 0.272609, 0.771849, 0.570162,-0.007173;;, + 36;4; 0.253137, 0.778915, 0.570104,-0.021602;;, + 37;4; 0.234575, 0.785292, 0.569815,-0.035271;;, + 38;4; 0.217433, 0.790783, 0.569287,-0.047798;;, + 39;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 40;4; 0.185603, 0.799386, 0.567266,-0.070677;;, + 41;4; 0.165937, 0.803530, 0.565251,-0.084532;;, + 42;4; 0.144707, 0.807433, 0.562704,-0.099350;;, + 43;4; 0.124755, 0.810722, 0.560061,-0.113186;;, + 44;4; 0.109085, 0.813092, 0.557846,-0.124000;;, + 45;4; 0.099546, 0.814441, 0.556437,-0.130562;;, + 46;4; 0.096474, 0.814856, 0.555970,-0.132670;;, + 47;4; 0.105855, 0.813117, 0.557086,-0.126119;;, + 48;4; 0.132278, 0.808218, 0.560231,-0.107666;;, + 49;4; 0.166204, 0.801929, 0.564269,-0.083972;;, + 50;4; 0.192627, 0.797031, 0.567414,-0.065518;;, + 51;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 52;4; 0.193983, 0.796420, 0.567340,-0.064485;;, + 53;4; 0.170239, 0.799758, 0.563819,-0.080812;;, + 54;4; 0.134064, 0.804843, 0.558453,-0.105687;;, + 55;4; 0.093032, 0.810612, 0.552368,-0.133902;;, + 56;4; 0.056856, 0.815697, 0.547003,-0.158777;;, + 57;4; 0.033113, 0.819035, 0.543481,-0.175103;;, + 58;4; 0.025087, 0.820163, 0.542291,-0.180622;;, + 59;4; 0.036015, 0.818626, 0.543912,-0.173108;;, + 60;4; 0.067818, 0.814153, 0.548628,-0.151242;;, + 61;4; 0.113537, 0.807723, 0.555407,-0.119809;;, + 62;4; 0.159262, 0.801295, 0.562189,-0.088368;;, + 63;4; 0.191075, 0.796827, 0.566908,-0.066488;;, + 64;4; 0.202008, 0.795292, 0.568530,-0.058967;;, + 65;4; 0.202008, 0.795292, 0.568530,-0.058967;;; + } + AnimationKey { // Scale + 1; + 66; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 66; + 0;3; 1.000000, 1.625000,-0.000000;;, + 1;3; 1.000000, 1.625000,-0.000000;;, + 2;3; 1.000000, 1.625000,-0.000000;;, + 3;3; 1.000000, 1.625000,-0.000000;;, + 4;3; 1.000000, 1.625000,-0.000000;;, + 5;3; 1.000000, 1.625000,-0.000000;;, + 6;3; 1.000000, 1.625000,-0.000000;;, + 7;3; 1.000000, 1.625000,-0.000000;;, + 8;3; 1.000000, 1.625000,-0.000000;;, + 9;3; 1.000000, 1.625000,-0.000000;;, + 10;3; 1.000000, 1.625000,-0.000000;;, + 11;3; 1.000000, 1.625000,-0.000000;;, + 12;3; 1.000000, 1.625000,-0.000000;;, + 13;3; 1.000000, 1.625000,-0.000000;;, + 14;3; 1.000000, 1.625000,-0.000000;;, + 15;3; 1.000000, 1.625000,-0.000000;;, + 16;3; 1.000000, 1.625000,-0.000000;;, + 17;3; 1.000000, 1.625000,-0.000000;;, + 18;3; 1.000000, 1.625000,-0.000000;;, + 19;3; 1.000000, 1.625000,-0.000000;;, + 20;3; 1.000000, 1.625000,-0.000000;;, + 21;3; 1.000000, 1.625000, 0.000000;;, + 22;3; 1.000000, 1.625000, 0.000000;;, + 23;3; 1.000000, 1.625000, 0.000000;;, + 24;3; 1.000000, 1.625000, 0.000000;;, + 25;3; 1.000000, 1.625000, 0.000000;;, + 26;3; 1.000000, 1.625000, 0.000000;;, + 27;3; 1.000000, 1.625000, 0.000000;;, + 28;3; 1.000000, 1.625000, 0.000000;;, + 29;3; 1.000000, 1.625000, 0.000000;;, + 30;3; 1.000000, 1.625000, 0.000000;;, + 31;3; 1.000000, 1.625000, 0.000000;;, + 32;3; 1.000000, 1.625000, 0.000000;;, + 33;3; 1.000000, 1.625000, 0.000000;;, + 34;3; 1.000000, 1.625000,-0.000000;;, + 35;3; 1.000000, 1.625000,-0.000000;;, + 36;3; 1.000000, 1.625000,-0.000000;;, + 37;3; 1.000000, 1.625000,-0.000000;;, + 38;3; 1.000000, 1.625000,-0.000000;;, + 39;3; 1.000000, 1.625000,-0.000000;;, + 40;3; 1.000000, 1.625000, 0.000000;;, + 41;3; 1.000000, 1.625000, 0.000000;;, + 42;3; 1.000000, 1.625000, 0.000000;;, + 43;3; 1.000000, 1.625000, 0.000000;;, + 44;3; 1.000000, 1.625000, 0.000000;;, + 45;3; 1.000000, 1.625000, 0.000000;;, + 46;3; 1.000000, 1.625000, 0.000000;;, + 47;3; 1.000000, 1.625000, 0.000000;;, + 48;3; 1.000000, 1.625000, 0.000000;;, + 49;3; 1.000000, 1.625000, 0.000000;;, + 50;3; 1.000000, 1.625000, 0.000000;;, + 51;3; 1.000000, 1.625000, 0.000000;;, + 52;3; 1.000000, 1.625000, 0.000000;;, + 53;3; 1.000000, 1.625000, 0.000000;;, + 54;3; 1.000000, 1.625000, 0.000000;;, + 55;3; 1.000000, 1.625000, 0.000000;;, + 56;3; 1.000000, 1.625000, 0.000000;;, + 57;3; 1.000000, 1.625000, 0.000000;;, + 58;3; 1.000000, 1.625000, 0.000000;;, + 59;3; 1.000000, 1.625000, 0.000000;;, + 60;3; 1.000000, 1.625000, 0.000000;;, + 61;3; 1.000000, 1.625000, 0.000000;;, + 62;3; 1.000000, 1.625000, 0.000000;;, + 63;3; 1.000000, 1.625000, 0.000000;;, + 64;3; 1.000000, 1.625000, 0.000000;;, + 65;3; 1.000000, 1.625000, 0.000000;;; + } + } + Animation { + {Armature_wing_2} + AnimationKey { // Rotation + 0; + 66; + 0;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 1;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 2;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 3;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 4;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 5;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 6;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 7;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 8;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 9;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 10;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 11;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 12;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 13;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 14;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 15;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 16;4; 0.280932, 0.794618,-0.534925,-0.052891;;, + 17;4; 0.288619, 0.790947,-0.533823,-0.058212;;, + 18;4; 0.301294, 0.784893,-0.532005,-0.066985;;, + 19;4; 0.318401, 0.776722,-0.529552,-0.078825;;, + 20;4; 0.338886, 0.766938,-0.526614,-0.093003;;, + 21;4; 0.361213, 0.756275,-0.523413,-0.108455;;, + 22;4; 0.383539, 0.745611,-0.520211,-0.123906;;, + 23;4; 0.404024, 0.735827,-0.517273,-0.138083;;, + 24;4; 0.421130, 0.727657,-0.514820,-0.149922;;, + 25;4; 0.433804, 0.721603,-0.513003,-0.158693;;, + 26;4; 0.441490, 0.717932,-0.511901,-0.164013;;, + 27;4; 0.444036, 0.716716,-0.511536,-0.165775;;, + 28;4; 0.442507, 0.717553,-0.511821,-0.164700;;, + 29;4; 0.437762, 0.720127,-0.512692,-0.161369;;, + 30;4; 0.429652, 0.724478,-0.514150,-0.155683;;, + 31;4; 0.418200, 0.730539,-0.516159,-0.147667;;, + 32;4; 0.403684, 0.738096,-0.518627,-0.137526;;, + 33;4; 0.386672, 0.746778,-0.521411,-0.125667;;, + 34;4; 0.367978, 0.756087,-0.524327,-0.112672;;, + 35;4; 0.348538, 0.765481,-0.527183,-0.099201;;, + 36;4; 0.329243, 0.774467,-0.529808,-0.085882;;, + 37;4; 0.310818, 0.782666,-0.532078,-0.073222;;, + 38;4; 0.293767, 0.789830,-0.533916,-0.061570;;, + 39;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 40;4; 0.261962, 0.801502,-0.536298,-0.040094;;, + 41;4; 0.242206, 0.807514,-0.537011,-0.026942;;, + 42;4; 0.220828, 0.813422,-0.537411,-0.012802;;, + 43;4; 0.200701, 0.818585,-0.537542, 0.000449;;, + 44;4; 0.184876, 0.822421,-0.537506, 0.010834;;, + 45;4; 0.175234, 0.824662,-0.537424, 0.017146;;, + 46;4; 0.172126, 0.825362,-0.537384, 0.019178;;, + 47;4; 0.181572, 0.822738,-0.537198, 0.012928;;, + 48;4; 0.208176, 0.815345,-0.536674,-0.004674;;, + 49;4; 0.242336, 0.805852,-0.536001,-0.027276;;, + 50;4; 0.268940, 0.798459,-0.535476,-0.044879;;, + 51;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 52;4; 0.270272, 0.797712,-0.535217,-0.045818;;, + 53;4; 0.246270, 0.803266,-0.534999,-0.030107;;, + 54;4; 0.209700, 0.811729,-0.534667,-0.006169;;, + 55;4; 0.168221, 0.821328,-0.534291, 0.020982;;, + 56;4; 0.131651, 0.829791,-0.533959, 0.044920;;, + 57;4; 0.107649, 0.835346,-0.533742, 0.060631;;, + 58;4; 0.099536, 0.837223,-0.533668, 0.065941;;, + 59;4; 0.110583, 0.834667,-0.533768, 0.058711;;, + 60;4; 0.142733, 0.827225,-0.534059, 0.037670;;, + 61;4; 0.188949, 0.816526,-0.534478, 0.007421;;, + 62;4; 0.235172, 0.805829,-0.534897,-0.022835;;, + 63;4; 0.267333, 0.798390,-0.535190,-0.043891;;, + 64;4; 0.278385, 0.795834,-0.535290,-0.051129;;, + 65;4; 0.278385, 0.795834,-0.535290,-0.051129;;; + } + AnimationKey { // Scale + 1; + 66; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 66; + 0;3;-1.000000, 1.625000, 0.000000;;, + 1;3;-1.000000, 1.625000, 0.000000;;, + 2;3;-1.000000, 1.625000, 0.000000;;, + 3;3;-1.000000, 1.625000, 0.000000;;, + 4;3;-1.000000, 1.625000, 0.000000;;, + 5;3;-1.000000, 1.625000, 0.000000;;, + 6;3;-1.000000, 1.625000, 0.000000;;, + 7;3;-1.000000, 1.625000, 0.000000;;, + 8;3;-1.000000, 1.625000, 0.000000;;, + 9;3;-1.000000, 1.625000, 0.000000;;, + 10;3;-1.000000, 1.625000, 0.000000;;, + 11;3;-1.000000, 1.625000, 0.000000;;, + 12;3;-1.000000, 1.625000, 0.000000;;, + 13;3;-1.000000, 1.625000, 0.000000;;, + 14;3;-1.000000, 1.625000, 0.000000;;, + 15;3;-1.000000, 1.625000, 0.000000;;, + 16;3;-1.000000, 1.625000, 0.000000;;, + 17;3;-1.000000, 1.625000, 0.000000;;, + 18;3;-1.000000, 1.625000, 0.000000;;, + 19;3;-1.000000, 1.625000, 0.000000;;, + 20;3;-1.000000, 1.625000, 0.000000;;, + 21;3;-1.000000, 1.625000, 0.000000;;, + 22;3;-1.000000, 1.625000, 0.000000;;, + 23;3;-1.000000, 1.625000, 0.000000;;, + 24;3;-1.000000, 1.625000, 0.000000;;, + 25;3;-1.000000, 1.625000, 0.000000;;, + 26;3;-1.000000, 1.625000, 0.000000;;, + 27;3;-1.000000, 1.625000, 0.000000;;, + 28;3;-1.000000, 1.625000, 0.000000;;, + 29;3;-1.000000, 1.625000, 0.000000;;, + 30;3;-1.000000, 1.625000, 0.000000;;, + 31;3;-1.000000, 1.625000, 0.000000;;, + 32;3;-1.000000, 1.625000, 0.000000;;, + 33;3;-1.000000, 1.625000, 0.000000;;, + 34;3;-1.000000, 1.625000, 0.000000;;, + 35;3;-1.000000, 1.625000, 0.000000;;, + 36;3;-1.000000, 1.625000, 0.000000;;, + 37;3;-1.000000, 1.625000, 0.000000;;, + 38;3;-1.000000, 1.625000, 0.000000;;, + 39;3;-1.000000, 1.625000, 0.000000;;, + 40;3;-1.000000, 1.625000,-0.000000;;, + 41;3;-1.000000, 1.625000,-0.000000;;, + 42;3;-1.000000, 1.625000,-0.000000;;, + 43;3;-1.000000, 1.625000,-0.000000;;, + 44;3;-1.000000, 1.625000,-0.000000;;, + 45;3;-1.000000, 1.625000,-0.000000;;, + 46;3;-1.000000, 1.625000,-0.000000;;, + 47;3;-1.000000, 1.625000,-0.000000;;, + 48;3;-1.000000, 1.625000,-0.000000;;, + 49;3;-1.000000, 1.625000,-0.000000;;, + 50;3;-1.000000, 1.625000,-0.000000;;, + 51;3;-1.000000, 1.625000,-0.000000;;, + 52;3;-1.000000, 1.625000,-0.000000;;, + 53;3;-1.000000, 1.625000,-0.000000;;, + 54;3;-1.000000, 1.625000,-0.000000;;, + 55;3;-1.000000, 1.625000,-0.000000;;, + 56;3;-1.000000, 1.625000,-0.000000;;, + 57;3;-1.000000, 1.625000,-0.000000;;, + 58;3;-1.000000, 1.625000,-0.000000;;, + 59;3;-1.000000, 1.625000,-0.000000;;, + 60;3;-1.000000, 1.625000,-0.000000;;, + 61;3;-1.000000, 1.625000,-0.000000;;, + 62;3;-1.000000, 1.625000,-0.000000;;, + 63;3;-1.000000, 1.625000,-0.000000;;, + 64;3;-1.000000, 1.625000,-0.000000;;, + 65;3;-1.000000, 1.625000,-0.000000;;; + } + } + Animation { + {Cube} + AnimationKey { // Rotation + 0; + 66; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 66; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 66; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs/oerkki.lua b/mods/mobs/oerkki.lua new file mode 100644 index 0000000..f7a7c0e --- /dev/null +++ b/mods/mobs/oerkki.lua @@ -0,0 +1,55 @@ + +-- Oerkki + +mobs:register_mob("mobs:oerkki", { + type = "monster", + hp_min = 20, + hp_max = 40, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, + visual = "mesh", + mesh = "mobs_oerkki.x", + textures = {"mobs_oerkki.png"}, + visual_size = {x=5, y=5}, + makes_footstep_sound = false, + view_range = 15, + walk_velocity = 1, + run_velocity = 4, + damage = 4, + drops = { + {name = "bones:bones", + chance = 2, + min = 1, + max = 2,}, + {name = "default:tree", + chance = 5, + min = 1, + max = 2,}, + {name = "default:sapling", + chance = 10, + min = 1, + max = 2,}, + }, + armor = 100, + drawtype = "front", + light_resistant = true, + water_damage = 1, + lava_damage = 3, + light_damage = 0, + attack_type = "dogfight", + animation = { + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 36, + run_start = 37, + run_end = 49, + punch_start = 37, + punch_end = 49, + speed_normal = 15, + speed_run = 15, + }, + jump = true, + step = 0.5, + blood_texture = "mobs_blood.png", +}) +mobs:register_spawn("mobs:oerkki", {"default:stone"}, 5, -1, 1000, 1, 20) diff --git a/mods/mobs/rat.lua b/mods/mobs/rat.lua new file mode 100644 index 0000000..6db7859 --- /dev/null +++ b/mods/mobs/rat.lua @@ -0,0 +1,67 @@ + +-- Rat + +mobs:register_mob("mobs:rat", { + type = "animal", + hp_min = 1, + hp_max = 4, -- 1 + collisionbox = {-0.2, -0.01, -0.2, 0.2, 0.2, 0.2}, + visual = "mesh", + mesh = "mobs_rat.x", + textures = {"mobs_rat.png"}, + makes_footstep_sound = false, + walk_velocity = 1, + armor = 200, + drops = { + {name = "default:wood", -- rnd + chance = 2, + min = 1, + max = 1,}, + }, + drawtype = "front", + water_damage = 0, + lava_damage = 1, + light_damage = 0, +jump = true, +step = 1, +passive = true, + + on_rightclick = function(self, clicker) + if clicker:is_player() and clicker:get_inventory() then + clicker:get_inventory():add_item("main", "mobs:rat") + self.object:remove() + end + end, +}) +mobs:register_spawn("mobs:rat", {"default:stone"}, 20, -1, 5000, 10, 31000) + +-- Can Right-click Rat to Pick Up + +minetest.register_craftitem("mobs:rat", { + description = "Rat", + inventory_image = "mobs_rat_inventory.png", + + on_place = function(itemstack, placer, pointed_thing) + if pointed_thing.above then + minetest.env:add_entity(pointed_thing.above, "mobs:rat") + itemstack:take_item() + end + return itemstack + end, +}) + +-- Cooked Rat, yummy! + +minetest.register_craftitem("mobs:rat_cooked", { + description = "Cooked Rat", + inventory_image = "mobs_cooked_rat.png", + + on_use = minetest.item_eat(3), +}) + +minetest.register_craft({ + type = "cooking", + output = "mobs:rat_cooked", + recipe = "mobs:rat", + cooktime = 5, +}) diff --git a/mods/mobs/sandmonster.lua b/mods/mobs/sandmonster.lua new file mode 100644 index 0000000..2cb8d04 --- /dev/null +++ b/mods/mobs/sandmonster.lua @@ -0,0 +1,47 @@ + +-- Sand Monster + +mobs:register_mob("mobs:sand_monster", { + type = "monster", + hp_min = 10, + hp_max = 20, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, + visual = "mesh", + mesh = "mobs_sand_monster.x", + textures = {"mobs_sand_monster.png"}, + visual_size = {x=8,y=8}, + makes_footstep_sound = true, + view_range = 15, + walk_velocity = 1.5, + run_velocity = 4, + damage = 1, + drops = { + {name = "default:desert_sand", + chance = 1, + min = 3, + max = 5,}, + }, + light_resistant = true, + armor = 100, + drawtype = "front", + water_damage = 3, + lava_damage = 1, + light_damage = 0, + attack_type = "dogfight", + animation = { + speed_normal = 15, + speed_run = 15, + stand_start = 0, + stand_end = 39, + walk_start = 41, + walk_end = 72, + run_start = 74, + run_end = 105, + punch_start = 74, + punch_end = 105, + }, + jump = true, + step = 0.5, + blood_texture = "mobs_blood.png", +}) +mobs:register_spawn("mobs:sand_monster", {"default:stone","default:desert_sand", "default:sand"}, 8, -1, 7000, 1, 31000) diff --git a/mods/mobs/sheep.lua b/mods/mobs/sheep.lua new file mode 100644 index 0000000..805e759 --- /dev/null +++ b/mods/mobs/sheep.lua @@ -0,0 +1,74 @@ + +-- Sheep + +mobs:register_mob("mobs:sheep", { + type = "animal", + hp_min = 8, + hp_max = 10, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, + textures = {"mobs_sheep.png"}, + visual = "mesh", + mesh = "mobs_sheep.x", + makes_footstep_sound = true, + monsterdetect = false, + walk_velocity = 1, + armor = 200, + drops = { + {name = "mobs:meat_raw", + chance = 1, + min = 2, + max = 3,}, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + sounds = { + random = "mobs_sheep", + }, + animation = { + speed_normal = 15, + stand_start = 0, + stand_end = 80, + walk_start = 81, + walk_end = 100, + }, + jump = true, + step = 1, + blood_texture = "mobs_blood.png", + passive = true, + follow = "farming:wheat", + view_range = 5, + on_rightclick = function(self, clicker) + local item = clicker:get_wielded_item() + if item:get_name() == "farming:wheat" then + if not minetest.setting_getbool("creative_mode") then + item:take_item() + clicker:set_wielded_item(item) + end + self.food = (self.food or 0) + 1 + if self.food >= 8 then + self.food = 0 + self.naked = false + self.tamed = true + self.object:set_properties({ + textures = {"mobs_sheep.png"}, + mesh = "mobs_sheep.x", + }) + minetest.sound_play("mobs_sheep", {object = self.object,gain = 1.0,max_hear_distance = 32,loop = false,}) + end + return + end + if clicker:get_inventory() and not self.naked then + self.naked = true + if minetest.registered_items["wool:white"] then + clicker:get_inventory():add_item("main", ItemStack("wool:white "..math.random(1,3))) + end + self.object:set_properties({ + textures = {"mobs_sheep_shaved.png"}, + mesh = "mobs_sheep_shaved.x", + }) + end + end, +}) +mobs:register_spawn("mobs:sheep", {"default:dirt_with_grass", "ethereal:green_dirt_top"}, 20, 8, 9000, 1, 31000) diff --git a/mods/mobs/sounds/mobs_cow.ogg b/mods/mobs/sounds/mobs_cow.ogg new file mode 100644 index 0000000..e919c6b Binary files /dev/null and b/mods/mobs/sounds/mobs_cow.ogg differ diff --git a/mods/mobs/sounds/mobs_fireball.ogg b/mods/mobs/sounds/mobs_fireball.ogg new file mode 100644 index 0000000..bdc4ac2 Binary files /dev/null and b/mods/mobs/sounds/mobs_fireball.ogg differ diff --git a/mods/mobs/sounds/mobs_pig.ogg b/mods/mobs/sounds/mobs_pig.ogg new file mode 100644 index 0000000..e7c7591 Binary files /dev/null and b/mods/mobs/sounds/mobs_pig.ogg differ diff --git a/mods/mobs/sounds/mobs_sheep.ogg b/mods/mobs/sounds/mobs_sheep.ogg new file mode 100644 index 0000000..54f62cd Binary files /dev/null and b/mods/mobs/sounds/mobs_sheep.ogg differ diff --git a/mods/mobs/spider.lua b/mods/mobs/spider.lua new file mode 100644 index 0000000..2225299 --- /dev/null +++ b/mods/mobs/spider.lua @@ -0,0 +1,99 @@ + +-- Glowtest Spider + +mobs:register_mob("mobs:spider", { + type = "animal", + hp_min = 40, + hp_max = 40, + collisionbox = {-0.9, -0.01, -0.7, 0.7, 0.6, 0.7}, + textures = {"mobs_spider.png"}, + visual_size = {x=7,y=7}, + visual = "mesh", + mesh = "mobs_spider.x", + makes_footstep_sound = true, + view_range = 15, + walk_velocity = 1, + run_velocity = 5, + armor = 100, + damage = 10, + drops = { + {name = "farming:string", + chance = 1, + min = 1, + max = 5,}, + {name = "ethereal:crystal_spike", + chance = 15, + min = 1, + max = 2,}, + }, + light_resistant = false, + drawtype = "front", + water_damage = 5, + lava_damage = 5, + light_damage = 0, + on_rightclick = nil, + attack_type = "dogfight", + + on_rightclick = function(self, clicker) + tool = clicker:get_wielded_item() + if tool:get_name() == "mobs:bee" then + clicker:get_inventory():remove_item("main", "mobs:bee") + minetest.add_entity(self.object:getpos(), "mobs:warspider") + self.object:remove() + end + end, + + animation = { + speed_normal = 15, + speed_run = 15, + stand_start = 1, + stand_end = 1, + walk_start = 20, + walk_end = 40, + run_start = 20, + run_end = 40, + punch_start = 50, + punch_end = 90, + }, + jump = true, + sounds = {}, + step = 1, +}) +mobs:register_spawn("mobs:spider", {"default:desert_stone", "ethereal:crystal_topped_dirt", "default:dirt_with_grass","default:dirt"}, 20, -1, 1000, 1, 31000) + +-- Ethereal crystal spike compatibility + +if not minetest.get_modpath("ethereal") then + minetest.register_alias("ethereal:crystal_spike", "default:sandstone") +end + +-- Cobweb + +minetest.register_node("mobs:cobweb", { + description = "Cobweb", + drawtype = "plantlike", + visual_scale = 1.1, + tiles = {"mobs_cobweb.png"}, + inventory_image = "mobs_cobweb.png", + paramtype = "light", + sunlight_propagates = true, + liquid_viscosity = 11, + liquidtype = "source", + liquid_alternative_flowing = "mobs:cobweb", + liquid_alternative_source = "mobs:cobweb", + liquid_renewable = false, + liquid_range = 0, + walkable = false, + groups = {snappy=1,liquid=3}, + drop = "farming:cotton", + sounds = default.node_sound_leaves_defaults(), +}) + +minetest.register_craft({ + output = "mobs:cobweb", + recipe = { + {"farming:string", "farming:string", "farming:string"}, + {"farming:string", "farming:string", "farming:string"}, + {"farming:string", "farming:string", "farming:string"}, + } +}) diff --git a/mods/mobs/stonemonster.lua b/mods/mobs/stonemonster.lua new file mode 100644 index 0000000..afc9caa --- /dev/null +++ b/mods/mobs/stonemonster.lua @@ -0,0 +1,63 @@ + +-- Stone Monster + +mobs:register_mob("mobs:stone_monster", { + type = "monster", + hp_min = 30, + hp_max = 40, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, + visual = "mesh", + mesh = "mobs_stone_monster.x", + textures = {"mobs_stone_monster.png"}, + visual_size = {x=3, y=2.6}, + makes_footstep_sound = true, + view_range = 10, + walk_velocity = 0.5, + run_velocity = 4, + damage = 5, + drops = { + {name = "default:torch", + chance = 2, + min = 3, + max = 5,}, + {name = "default:iron_lump", + chance=5, + min=1, + max=2,}, + {name = "default:coal_lump", + chance=3, + min=1, + max=3,}, + {name = "bones:bones", + chance=2, + min=1, + max=1,}, + {name = "default:apple", + chance=2, + min=1, + max=1,}, + }, + light_resistant = true, + armor = 100, + drawtype = "front", + water_damage = 0, + lava_damage = 2, + light_damage = 0, + attack_type = "dogfight", + animation = { + speed_normal = 15, + speed_run = 25, + stand_start = 0, + stand_end = 14, + walk_start = 15, + walk_end = 38, + run_start = 40, + run_end = 63, + punch_start = 40, + punch_end = 63, + }, + jump = true, + step = 0.5, + blood_texture = "mobs_blood.png", +}) +mobs:register_spawn("mobs:stone_monster", {"default:stone"}, 5, -1, 10000, 30, 31000) diff --git a/mods/mobs/textures/mobs_bee_inv.png b/mods/mobs/textures/mobs_bee_inv.png new file mode 100644 index 0000000..94d5ace Binary files /dev/null and b/mods/mobs/textures/mobs_bee_inv.png differ diff --git a/mods/mobs/textures/mobs_beehive.png b/mods/mobs/textures/mobs_beehive.png new file mode 100644 index 0000000..be4a4fa Binary files /dev/null and b/mods/mobs/textures/mobs_beehive.png differ diff --git a/mods/mobs/textures/mobs_blood.png b/mods/mobs/textures/mobs_blood.png new file mode 100644 index 0000000..77cfbda Binary files /dev/null and b/mods/mobs/textures/mobs_blood.png differ diff --git a/mods/mobs/textures/mobs_bucket_milk.png b/mods/mobs/textures/mobs_bucket_milk.png new file mode 100644 index 0000000..c897957 Binary files /dev/null and b/mods/mobs/textures/mobs_bucket_milk.png differ diff --git a/mods/mobs/textures/mobs_cheese.png b/mods/mobs/textures/mobs_cheese.png new file mode 100644 index 0000000..04e03d8 Binary files /dev/null and b/mods/mobs/textures/mobs_cheese.png differ diff --git a/mods/mobs/textures/mobs_cheeseblock.png b/mods/mobs/textures/mobs_cheeseblock.png new file mode 100644 index 0000000..dfa7c18 Binary files /dev/null and b/mods/mobs/textures/mobs_cheeseblock.png differ diff --git a/mods/mobs/textures/mobs_chicken_cooked.png b/mods/mobs/textures/mobs_chicken_cooked.png new file mode 100644 index 0000000..bda35f3 Binary files /dev/null and b/mods/mobs/textures/mobs_chicken_cooked.png differ diff --git a/mods/mobs/textures/mobs_chicken_egg.png b/mods/mobs/textures/mobs_chicken_egg.png new file mode 100644 index 0000000..be8a4e1 Binary files /dev/null and b/mods/mobs/textures/mobs_chicken_egg.png differ diff --git a/mods/mobs/textures/mobs_chicken_egg_fried.png b/mods/mobs/textures/mobs_chicken_egg_fried.png new file mode 100644 index 0000000..ad144a5 Binary files /dev/null and b/mods/mobs/textures/mobs_chicken_egg_fried.png differ diff --git a/mods/mobs/textures/mobs_chicken_inv.png b/mods/mobs/textures/mobs_chicken_inv.png new file mode 100644 index 0000000..ccaca24 Binary files /dev/null and b/mods/mobs/textures/mobs_chicken_inv.png differ diff --git a/mods/mobs/textures/mobs_chicken_raw.png b/mods/mobs/textures/mobs_chicken_raw.png new file mode 100644 index 0000000..3987a4a Binary files /dev/null and b/mods/mobs/textures/mobs_chicken_raw.png differ diff --git a/mods/mobs/textures/mobs_cobweb.png b/mods/mobs/textures/mobs_cobweb.png new file mode 100644 index 0000000..05b4fdc Binary files /dev/null and b/mods/mobs/textures/mobs_cobweb.png differ diff --git a/mods/mobs/textures/mobs_cooked_rat.png b/mods/mobs/textures/mobs_cooked_rat.png new file mode 100644 index 0000000..daad3be Binary files /dev/null and b/mods/mobs/textures/mobs_cooked_rat.png differ diff --git a/mods/mobs/textures/mobs_dungeon_master_fireball.png b/mods/mobs/textures/mobs_dungeon_master_fireball.png new file mode 100644 index 0000000..f2d3de5 Binary files /dev/null and b/mods/mobs/textures/mobs_dungeon_master_fireball.png differ diff --git a/mods/mobs/textures/mobs_dungeon_master_fireball_back.png b/mods/mobs/textures/mobs_dungeon_master_fireball_back.png new file mode 100644 index 0000000..0553c7b Binary files /dev/null and b/mods/mobs/textures/mobs_dungeon_master_fireball_back.png differ diff --git a/mods/mobs/textures/mobs_fireball.png b/mods/mobs/textures/mobs_fireball.png new file mode 100644 index 0000000..3279e66 Binary files /dev/null and b/mods/mobs/textures/mobs_fireball.png differ diff --git a/mods/mobs/textures/mobs_honey_inv.png b/mods/mobs/textures/mobs_honey_inv.png new file mode 100644 index 0000000..e70666d Binary files /dev/null and b/mods/mobs/textures/mobs_honey_inv.png differ diff --git a/mods/mobs/textures/mobs_ice_arrow.png b/mods/mobs/textures/mobs_ice_arrow.png new file mode 100644 index 0000000..5ac0d78 Binary files /dev/null and b/mods/mobs/textures/mobs_ice_arrow.png differ diff --git a/mods/mobs/textures/mobs_meat.png b/mods/mobs/textures/mobs_meat.png new file mode 100644 index 0000000..4c63fdd Binary files /dev/null and b/mods/mobs/textures/mobs_meat.png differ diff --git a/mods/mobs/textures/mobs_meat_raw.png b/mods/mobs/textures/mobs_meat_raw.png new file mode 100644 index 0000000..0dea4ec Binary files /dev/null and b/mods/mobs/textures/mobs_meat_raw.png differ diff --git a/mods/mobs/textures/mobs_pork_cooked.png b/mods/mobs/textures/mobs_pork_cooked.png new file mode 100644 index 0000000..8d8c166 Binary files /dev/null and b/mods/mobs/textures/mobs_pork_cooked.png differ diff --git a/mods/mobs/textures/mobs_pork_raw.png b/mods/mobs/textures/mobs_pork_raw.png new file mode 100644 index 0000000..c070c57 Binary files /dev/null and b/mods/mobs/textures/mobs_pork_raw.png differ diff --git a/mods/mobs/textures/mobs_rat_inventory.png b/mods/mobs/textures/mobs_rat_inventory.png new file mode 100644 index 0000000..a8d6151 Binary files /dev/null and b/mods/mobs/textures/mobs_rat_inventory.png differ diff --git a/mods/mobs/textures/spideregg.png b/mods/mobs/textures/spideregg.png new file mode 100644 index 0000000..e243ae9 Binary files /dev/null and b/mods/mobs/textures/spideregg.png differ diff --git a/mods/mobs/textures/zmobs_egg_lava_flan.png b/mods/mobs/textures/zmobs_egg_lava_flan.png new file mode 100644 index 0000000..c46641b Binary files /dev/null and b/mods/mobs/textures/zmobs_egg_lava_flan.png differ diff --git a/mods/mobs/textures/zmobs_egg_mese_monster.png b/mods/mobs/textures/zmobs_egg_mese_monster.png new file mode 100644 index 0000000..994acc4 Binary files /dev/null and b/mods/mobs/textures/zmobs_egg_mese_monster.png differ diff --git a/mods/mobs/textures/zmobs_lava_orb.png b/mods/mobs/textures/zmobs_lava_orb.png new file mode 100644 index 0000000..bffd74c Binary files /dev/null and b/mods/mobs/textures/zmobs_lava_orb.png differ diff --git a/mods/mobs/treemonster.lua b/mods/mobs/treemonster.lua new file mode 100644 index 0000000..dfd33a6 --- /dev/null +++ b/mods/mobs/treemonster.lua @@ -0,0 +1,64 @@ + +-- Tree Monster (or Tree Gollum as I like to call it) + +mobs:register_mob("mobs:tree_monster", { + type = "monster", + hp_min = 15, + hp_max = 33, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, + visual = "mesh", + mesh = "mobs_tree_monster.x", + textures = {"mobs_tree_monster.png"}, + visual_size = {x=4.5,y=4.5}, + makes_footstep_sound = true, + view_range = 15, + walk_velocity = 1, + run_velocity = 3, + damage = 2, + drops = { + {name = "ethereal:tree_sapling", + chance = 3, + min = 1, + max = 2,}, + {name = "ethereal:jungle_tree_sapling", + chance = 3, + min = 1, + max = 2,}, + {name = "default:apple", + chance = 2, + min = 1, + max=3, + }, + }, + light_resistant = true, + armor = 100, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 2, + disable_fall_damage = true, + attack_type = "dogfight", + animation = { + speed_normal = 15, + speed_run = 15, + stand_start = 0, + stand_end = 24, + walk_start = 25, + walk_end = 47, + run_start = 48, + run_end = 62, + punch_start = 48, + punch_end = 62, + }, + step = 0.5, + jump = true, + blood_texture = "default_wood.png", +}) +mobs:register_spawn("mobs:tree_monster", {"default:leaves", "default:jungleleaves"}, 3, -1, 7000, 1, 31000) + +-- Ethereal sapling compatibility + +if not minetest.get_modpath("ethereal") then + minetest.register_alias("ethereal:tree_sapling", "default:sapling") + minetest.register_alias("ethereal:jungle_tree_sapling", "default:junglesapling") +end diff --git a/mods/mobs/wardog.lua b/mods/mobs/wardog.lua new file mode 100644 index 0000000..5b4c1ce --- /dev/null +++ b/mods/mobs/wardog.lua @@ -0,0 +1,54 @@ +mobs:register_mob("mobs:wardog", { + type = "warpet", + hp_max = 50, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, + textures = {"mobs_wardog.png"}, + visual = "mesh", + mesh = "mobs_wardog.x", + makes_footstep_sound = true, + view_range = 1000, + monsterrange = 30, + owner = "", + monsterdetect = false, + walk_velocity = 4, + run_velocity = 4, + damage = 20, + armor = 50, + attacks_monsters = true, + attack_type = "dogfight", + drops = { + {name = "mobs:meat_raw", + chance = 1, + min = 2, + max = 3,}, + }, + drawtype = "front", + water_damage = 0, + lava_damage = 5, + light_damage = 0, + on_rightclick = function(self, clicker) + tool = clicker:get_wielded_item() + if tool:get_name() == "default:sign_wall" then + self.owner = clicker:get_player_name() + else + minetest.add_entity(self.object:getpos(), "mobs:wardog") + self.object:remove() + end + end, + animation = { + speed_normal = 20, + speed_run = 30, + stand_start = 10, + stand_end = 20, + walk_start = 75, + walk_end = 100, + run_start = 100, + run_end = 130, + punch_start = 135, + punch_end = 155, + }, + jump = true, + step = 1, + blood_texture = "mobs_blood.png", +}) + diff --git a/mods/mobs/warspider.lua b/mods/mobs/warspider.lua new file mode 100644 index 0000000..c55d526 --- /dev/null +++ b/mods/mobs/warspider.lua @@ -0,0 +1,114 @@ + +-- Glowtest Spider + +mobs:register_mob("mobs:warspider", { + type = "warpet", + attacks_monsters = true, + hp_min = 60, + hp_max = 60, + owner = "", + collisionbox = {-0.9, -0.01, -0.7, 0.7, 0.6, 0.7}, + textures = {"mobs_warspider.png"}, + visual_size = {x=7,y=7}, + visual = "mesh", + mesh = "mobs_warspider.x", + makes_footstep_sound = true, + view_range = 1000, + monsterrange = 30, + monsterdetect = false, + walk_velocity = 4, + run_velocity = 4, + armor = 70, + damage = 20, + drops = { + {name = "farming:string", + chance = 1, + min = 1, + max = 5,}, + {name = "ethereal:crystal_spike", + chance = 15, + min = 1, + max = 2,}, + }, + light_resistant = false, + drawtype = "front", + water_damage = 5, + lava_damage = 5, + light_damage = 0, + on_rightclick = nil, + attack_type = "dogfight", + + + on_rightclick = function(self, clicker) + tool = clicker:get_wielded_item() + if tool:get_name() == "default:sign_wall" then + self.owner = clicker:get_player_name() + elseif tool:get_name() == "mobs:egg" then + clicker:get_inventory():add_item("main", "mobs:spideregg") + clicker:get_inventory():remove_item("main", "mobs:egg") + else + minetest.add_entity(self.object:getpos(), "mobs:warspider") + self.object:remove() + end + end, + + animation = { + speed_normal = 20, + speed_run = 30, + stand_start = 1, + stand_end = 1, + walk_start = 20, + walk_end = 40, + run_start = 20, + run_end = 40, + punch_start = 50, + punch_end = 90, + }, + jump = true, + sounds = {}, + step = 1, +}) + +-- Cobweb + +minetest.register_node("mobs:cobweb", { + description = "Cobweb", + drawtype = "plantlike", + visual_scale = 1.1, + tiles = {"mobs_cobweb.png"}, + inventory_image = "mobs_cobweb.png", + paramtype = "light", + sunlight_propagates = true, + liquid_viscosity = 11, + liquidtype = "source", + liquid_alternative_flowing = "mobs:cobweb", + liquid_alternative_source = "mobs:cobweb", + liquid_renewable = false, + liquid_range = 0, + walkable = false, + groups = {snappy=1,liquid=3}, + drop = "farming:cotton", + sounds = default.node_sound_leaves_defaults(), +}) + +minetest.register_craft({ + output = "mobs:cobweb", + recipe = { + {"farming:string", "farming:string", "farming:string"}, + {"farming:string", "farming:string", "farming:string"}, + {"farming:string", "farming:string", "farming:string"}, + } +}) + +minetest.register_craftitem("mobs:spideregg", { +description = "Spider Egg", + inventory_image = "spideregg.png", + + on_place = function(itemstack, placer, pointed_thing) + if pointed_thing.above then + minetest.env:add_entity(pointed_thing.above, "mobs:littlespider") + itemstack:take_item() + end + return itemstack + end, +}) diff --git a/mods/mobs/warthog.lua b/mods/mobs/warthog.lua new file mode 100644 index 0000000..ef2455e --- /dev/null +++ b/mods/mobs/warthog.lua @@ -0,0 +1,79 @@ +-- Warthog + +mobs:register_mob("mobs:pumba", { + type = "animal", + hp_min = 5, + hp_max = 15, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, + textures = {"mobs_pumba.png"}, + visual = "mesh", + mesh = "mobs_pumba.x", + makes_footstep_sound = true, + walk_velocity = 2, + armor = 200, + drops = { + {name = "mobs:pork_raw", + chance = 1, + min = 2, + max = 3,}, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + sounds = { + random = "mobs_pig", + }, + animation = { + speed_normal = 15, + stand_start = 25, + stand_end = 55, + walk_start = 70, + walk_end = 100, + }, + follow = "farming:wheat", + view_range = 5, +jump = true, +step = 1, +passive = true, + + on_rightclick = function(self, clicker) + local item = clicker:get_wielded_item() + if item:get_name() == "farming:wheat" then + if not minetest.setting_getbool("creative_mode") then + item:take_item() + clicker:set_wielded_item(item) + end + self.food = (self.food or 0) + 1 + if self.food >= 8 then + self.food = 0 + self.tamed = true + minetest.sound_play("mobs_pig", {object = self.object,gain = 1.0,max_hear_distance = 32,loop = false,}) + end + return + end + end, + +}) +mobs:register_spawn("mobs:pumba", {"ethereal:mushroom_dirt", "default:dirt_with_grass","default:dirt","default:snow", "default:snowblock"}, 20, 8, 9000, 1, 31000) + +-- Porkchops + +minetest.register_craftitem("mobs:pork_raw", { + description = "Raw Porkchop", + inventory_image = "mobs_pork_raw.png", + on_use = minetest.item_eat(4), +}) + +minetest.register_craftitem("mobs:pork_cooked", { + description = "Cooked Porkchop", + inventory_image = "mobs_pork_cooked.png", + on_use = minetest.item_eat(8), +}) + +minetest.register_craft({ + type = "cooking", + output = "mobs:pork_cooked", + recipe = "mobs:pork_raw", + cooktime = 5, +}) diff --git a/mods/mobs/wolf.lua b/mods/mobs/wolf.lua new file mode 100644 index 0000000..c331586 --- /dev/null +++ b/mods/mobs/wolf.lua @@ -0,0 +1,49 @@ +mobs:register_mob("mobs:wolf", { + type = "animal", + hp_max = 25, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, + textures = {"mobs_wolf.png"}, + visual = "mesh", + mesh = "mobs_wolf.x", + makes_footstep_sound = true, + view_range = 7, + walk_velocity = 2, + run_velocity = 3, + damage = 10, + armor = 50, + attack_type = "dogfight", + drops = { + {name = "mobs:meat_raw", + chance = 1, + min = 2, + max = 3,}, + }, + drawtype = "front", + water_damage = 0, + lava_damage = 5, + light_damage = 0, + on_rightclick = function(self, clicker) + tool = clicker:get_wielded_item() + if tool:get_name() == "mobs:meat_raw" then + clicker:get_inventory():remove_item("main", "mobs:meat_raw") + minetest.add_entity(self.object:getpos(), "mobs:wardog") + self.object:remove() + end + end, + animation = { + speed_normal = 20, + speed_run = 30, + stand_start = 10, + stand_end = 20, + walk_start = 75, + walk_end = 100, + run_start = 100, + run_end = 130, + punch_start = 135, + punch_end = 155, + }, + jump = true, + step = 0.5, + blood_texture = "mobs_blood.png", +}) +mobs:register_spawn("mobs:wolf", {"default:dirt_with_grass","default:dirt","default:snow", "default:snowblock"}, 20, -1, 7000, 1, 31000) diff --git a/mods/mobs/yeti.lua b/mods/mobs/yeti.lua new file mode 100644 index 0000000..f0c6ba4 --- /dev/null +++ b/mods/mobs/yeti.lua @@ -0,0 +1,68 @@ + +-- Sand Monster + +mobs:register_mob("mobs:yeti", { + type = "monster", + hp_min = 50, + hp_max = 50, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, + visual = "mesh", + mesh = "mobs_yeti.x", + textures = {"mobs_yeti.png"}, + visual_size = {x=8,y=8}, + makes_footstep_sound = true, + view_range = 15, + walk_velocity = 1.5, + run_velocity = 4, + damage = 5, + drops = { + {name = "default:ice", + chance = 1, + min = 3, + max = 5,}, + }, + light_resistant = true, + armor = 60, + drawtype = "front", + water_damage = 3, + lava_damage = 1, + light_damage = 0, + attack_type = "shoot", + arrow = "mobs:ice_arrow", + shoot_interval = .5, + animation = { + run_start = 40, + run_end = 63, + stand_start = 0, + stand_end = 19, + walk_start = 20, + walk_end = 35, + punch_start = 36, + punch_end = 48, + speed_normal = 15, + speed_run = 15, + }, + jump = true, + step = 0.5, + blood_texture = "mobs_ice_arrow.png", +}) +mobs:register_spawn("mobs:yeti", {"default:snow", "default:snowblock", "default:ice"}, 20, -1, 10000, 10, 31000) +mobs:register_arrow("mobs:ice_arrow", { + visual = "sprite", + visual_size = {x=.5, y=.5}, + textures = {"mobs_ice_arrow.png"}, + velocity = 5, + + hit_player = function(self, player) + local s = self.object:getpos() + local p = player:getpos() + + player:punch(self.object, 1.0, { + full_punch_interval=1.0, + damage_groups = {fleshy=1}, + }, {x=s.x-p.x, y=s.y-p.y, z=s.z-p.z}) + end, + + hit_node = function(self, pos, node) + end +}) \ No newline at end of file diff --git a/mods/mods_here.txt b/mods/mods_here.txt new file mode 100644 index 0000000..e105fbd --- /dev/null +++ b/mods/mods_here.txt @@ -0,0 +1,4 @@ +You can install Minetest mods by copying (and extracting) them into this folder. +To enable them, go to the configure world window in the main menu or write + load_mod_ = true +in world.mt in the world directory. diff --git a/mods/moreblocks/LICENSE.txt b/mods/moreblocks/LICENSE.txt new file mode 100644 index 0000000..76c1791 --- /dev/null +++ b/mods/moreblocks/LICENSE.txt @@ -0,0 +1,14 @@ +zlib license +============ + +Copyright (c) 2011-2014 Calinou and contributors + +This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. diff --git a/mods/moreblocks/README.txt b/mods/moreblocks/README.txt new file mode 100644 index 0000000..ac2654f --- /dev/null +++ b/mods/moreblocks/README.txt @@ -0,0 +1,12 @@ +More Blocks +=========== + +More Blocks for Minetest (http://minetest.net), a free and open source infinite +world block sandbox game. + +To install, just clone this repository into your "mods" directory. + +More Blocks code is under the zlib license, textures are under CC BY-SA 3.0 unported. + +Forum topic: http://forum.minetest.net/viewtopic.php?id=509 + diff --git a/mods/moreblocks/aliases.lua b/mods/moreblocks/aliases.lua new file mode 100644 index 0000000..df820c3 --- /dev/null +++ b/mods/moreblocks/aliases.lua @@ -0,0 +1,75 @@ +-- More Blocks aliases + +minetest.register_alias("sweeper", "moreblocks:sweeper") +minetest.register_alias("circular_saw", "moreblocks:circular_saw") +minetest.register_alias("jungle_stick", "moreblocks:jungle_stick") + +-- Old block/item replacement + +minetest.register_alias("moreblocks:oerkkiblock", "default:mossycobble") +minetest.register_alias("moreblocks:screwdriver", "screwdriver:screwdriver") + +-- Node and item renaming + +minetest.register_alias("moreblocks:stone_bricks", "default:stonebrick") +minetest.register_alias("moreblocks:stonebrick", "default:stonebrick") +minetest.register_alias("moreblocks:junglewood", "default:junglewood") +minetest.register_alias("moreblocks:jungle_wood", "default:junglewood") + +for _, t in pairs(circular_saw.names) do + minetest.register_alias("moreblocks:" ..t[1].. "_jungle_wood" ..t[2], + "moreblocks:" ..t[1].. "_junglewood" ..t[2]) +end +minetest.register_alias("moreblocks:horizontaltree", "moreblocks:horizontal_tree") +minetest.register_alias("moreblocks:horizontaljungletree", "moreblocks:horizontal_jungle_tree") +minetest.register_alias("moreblocks:stonesquare", "moreblocks:stone_tile") +minetest.register_alias("moreblocks:circlestonebrick", "moreblocks:circle_stone_bricks") +minetest.register_alias("moreblocks:ironstonebrick", "moreblocks:iron_stone_bricks") +minetest.register_alias("moreblocks:fence_junglewood", "moreblocks:fence_jungle_wood") +minetest.register_alias("moreblocks:coalstone", "moreblocks:coal_stone") +minetest.register_alias("moreblocks:ironstone", "moreblocks:iron_stone") +minetest.register_alias("moreblocks:woodtile", "moreblocks:wood_tile") +minetest.register_alias("moreblocks:woodtile_full", "moreblocks:wood_tile_full") +minetest.register_alias("moreblocks:woodtile_centered", "moreblocks:wood_tile_centered") +minetest.register_alias("moreblocks:woodtile_up", "moreblocks:wood_tile_up") +minetest.register_alias("moreblocks:woodtile_down", "moreblocks:wood_tile_down") +minetest.register_alias("moreblocks:woodtile_left", "moreblocks:wood_tile_left") +minetest.register_alias("moreblocks:woodtile_right", "moreblocks:wood_tile_right") +minetest.register_alias("moreblocks:coalglass", "moreblocks:coal_glass") +minetest.register_alias("moreblocks:ironglass", "moreblocks:iron_glass") +minetest.register_alias("moreblocks:glowglass", "moreblocks:glow_glass") +minetest.register_alias("moreblocks:superglowglass", "moreblocks:super_glow_glass") +minetest.register_alias("moreblocks:trapglass", "moreblocks:trap_glass") +minetest.register_alias("moreblocks:trapstone", "moreblocks:trap_stone") +minetest.register_alias("moreblocks:cactuschecker", "moreblocks:cactus_checker") +minetest.register_alias("moreblocks:coalchecker", "moreblocks:coal_checker") +minetest.register_alias("moreblocks:ironchecker", "moreblocks:iron_checker") +minetest.register_alias("moreblocks:cactusbrick", "moreblocks:cactus_brick") +minetest.register_alias("moreblocks:cleanglass", "moreblocks:clean_glass") +minetest.register_alias("moreblocks:emptybookshelf", "moreblocks:empty_bookshelf") +minetest.register_alias("moreblocks:junglestick", "moreblocks:jungle_stick") +minetest.register_alias("moreblocks:splitstonesquare","moreblocks:split_stone_tile") +minetest.register_alias("moreblocks:allfacestree","moreblocks:all_faces_tree") + +-- ABM for horizontal trees (fix facedir). + +local horizontal_tree_convert_facedir = {7, 12, 9, 18} + +minetest.register_abm({ + nodenames = {"moreblocks:horizontal_tree","moreblocks:horizontal_jungle_tree"}, + interval = 1, + chance = 1, + action = function(pos, node) + if node.name == "moreblocks:horizontal_tree" then + node.name = "default:tree" + else + node.name = "default:jungletree" + end + node.param2 = node.param2 < 3 and node.param2 or 0 + minetest.set_node(pos, { + name = node.name, + param2 = horizontal_tree_convert_facedir[node.param2 + 1] + }) + end, +}) + diff --git a/mods/moreblocks/circular_saw.lua b/mods/moreblocks/circular_saw.lua new file mode 100644 index 0000000..361eee5 --- /dev/null +++ b/mods/moreblocks/circular_saw.lua @@ -0,0 +1,356 @@ +local S = moreblocks.intllib + +circular_saw = {} + +circular_saw.known_stairs = setmetatable({}, { + __newindex = function(k, v) + local modname = minetest.get_current_modname() + print(("WARNING: mod %s tried to add node %s to the circular saw" + .. " manually."):format(modname, v)) + end, +}) + +-- This is populated by stairsplus:register_all: +circular_saw.known_nodes = {} + +-- How many microblocks does this shape at the output inventory cost: +circular_saw.cost_in_microblocks = { + 1, 1, 1, 1, 1, 1, 1, 2, + 2, 3, 2, 4, 2, 4, 5, 6, + 7, 1, 1, 2, 4, 6, 7, 8, + 3, 1, 1, 2, 4, 0, 0, 0, +} + +circular_saw.names = { + {"micro", "_1"}, + {"panel", "_1"}, + {"micro", "_2"}, + {"panel", "_2"}, + {"micro", "_4"}, + {"panel", "_4"}, + {"micro", ""}, + {"panel", ""}, + {"micro", "_12"}, + {"panel", "_12"}, + {"micro", "_14"}, + {"panel", "_14"}, + {"micro", "_15"}, + {"panel", "_15"}, + {"stair", "_outer"}, + {"stair", ""}, + {"stair", "_inner"}, + {"slab", "_1"}, + {"slab", "_2"}, + {"slab", "_quarter"}, + {"slab", ""}, + {"slab", "_three_quarter"}, + {"slab", "_14"}, + {"slab", "_15"}, + {"stair", "_half"}, + {"stair", "_alt_1"}, + {"stair", "_alt_2"}, + {"stair", "_alt_4"}, + {"stair", "_alt"}, +} + +function circular_saw:get_cost(inv, stackname) + for i, item in pairs(inv:get_list("output")) do + if item:get_name() == stackname then + return circular_saw.cost_in_microblocks[i] + end + end +end + +function circular_saw:get_output_inv(modname, material, amount, max) + if (not max or max < 1 or max > 99) then max = 99 end + + local list = {} + -- If there is nothing inside, display empty inventory: + if amount < 1 then + return list + end + + for i, t in ipairs(circular_saw.names) do + local cost = circular_saw.cost_in_microblocks[i] + table.insert(list, modname .. ":" .. t[1] .. "_" .. material .. t[2] + .. " " .. math.min(math.floor(amount/cost), max)) + end + return list +end + + +-- Reset empty circular_saw after last full block has been taken out +-- (or the circular_saw has been placed the first time) +-- Note: max_offered is not reset: +function circular_saw:reset(pos) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + + inv:set_list("input", {}) + inv:set_list("micro", {}) + inv:set_list("output", {}) + meta:set_int("anz", 0) + + meta:set_string("infotext", + S("Circular Saw is empty (owned by %s)") + :format(meta:get_string("owner") or "")) +end + + +-- Player has taken something out of the box or placed something inside +-- that amounts to count microblocks: +function circular_saw:update_inventory(pos, amount) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + + amount = meta:get_int("anz") + amount + + -- The material is recycled automaticly. + inv:set_list("recycle", {}) + + if amount < 1 then -- If the last block is taken out. + self:reset(pos) + return + end + + local stack = inv:get_stack("input", 1) + -- At least one "normal" block is necessary to see what kind of stairs are requested. + if stack:is_empty() then + -- Any microblocks not taken out yet are now lost. + -- (covers material loss in the machine) + self:reset(pos) + return + + end + local node_name = stack:get_name() or "" + local name_parts = circular_saw.known_nodes[node_name] or "" + local modname = name_parts[1] or "" + local material = name_parts[2] or "" + + inv:set_list("input", { -- Display as many full blocks as possible: + node_name.. " " .. math.floor(amount / 8) + }) + + -- The stairnodes made of default nodes use moreblocks namespace, other mods keep own: + if modname == "default" then + modname = "moreblocks" + end + -- print("circular_saw set to " .. modname .. " : " + -- .. material .. " with " .. (amount) .. " microblocks.") + + -- 0-7 microblocks may remain left-over: + inv:set_list("micro", { + modname .. ":micro_" .. material .. "_bottom " .. (amount % 8) + }) + -- Display: + inv:set_list("output", + self:get_output_inv(modname, material, amount, + meta:get_int("max_offered"))) + -- Store how many microblocks are available: + meta:set_int("anz", amount) + + meta:set_string("infotext", + S("Circular Saw is working on %s (owned by %s)") + :format(material, meta:get_string("owner") or "")) +end + + +-- The amount of items offered per shape can be configured: +function circular_saw.on_receive_fields(pos, formname, fields, sender) + local meta = minetest.get_meta(pos) + local max = tonumber(fields.max_offered) + if max and max > 0 then + meta:set_string("max_offered", max) + -- Update to show the correct number of items: + circular_saw:update_inventory(pos, 0) + end +end + + +-- Moving the inventory of the circular_saw around is not allowed because it +-- is a fictional inventory. Moving inventory around would be rather +-- impractical and make things more difficult to calculate: +function circular_saw.allow_metadata_inventory_move( + pos, from_list, from_index, to_list, to_index, count, player) + return 0 +end + + +-- Only input- and recycle-slot are intended as input slots: +function circular_saw.allow_metadata_inventory_put( + pos, listname, index, stack, player) + -- The player is not allowed to put something in there: + if listname == "output" or listname == "micro" then + return 0 + end + + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local stackname = stack:get_name() + local count = stack:get_count() + + -- Only alow those items that are offered in the output inventory to be recycled: + if listname == "recycle" then + if not inv:contains_item("output", stackname) then + return 0 + end + local stackmax = stack:get_stack_max() + local instack = inv:get_stack("input", 1) + local microstack = inv:get_stack("micro", 1) + local incount = instack:get_count() + local incost = (incount * 8) + microstack:get_count() + local maxcost = (stackmax * 8) + 7 + local cost = circular_saw:get_cost(inv, stackname) + if (incost + cost) > maxcost then + return math.max((maxcost - incost) / cost, 0) + end + return count + end + + -- Only accept certain blocks as input which are known to be craftable into stairs: + if listname == "input" then + if not inv:is_empty("input") and + inv:get_stack("input", index):get_name() ~= stackname then + return 0 + end + for name, t in pairs(circular_saw.known_nodes) do + if name == stackname and inv:room_for_item("input", stack) then + return count + end + end + return 0 + end +end + +-- Taking is allowed from all slots (even the internal microblock slot). +-- Putting something in is slightly more complicated than taking anything +-- because we have to make sure it is of a suitable material: +function circular_saw.on_metadata_inventory_put( + pos, listname, index, stack, player) + -- We need to find out if the circular_saw is already set to a + -- specific material or not: + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local stackname = stack:get_name() + local count = stack:get_count() + + -- Putting something into the input slot is only possible if that had + -- been empty before or did contain something of the same material: + if listname == "input" then + -- Each new block is worth 8 microblocks: + circular_saw:update_inventory(pos, 8 * count) + elseif listname == "recycle" then + -- Lets look which shape this represents: + local cost = circular_saw:get_cost(inv, stackname) + circular_saw:update_inventory(pos, cost * count) + end +end + +function circular_saw.on_metadata_inventory_take( + pos, listname, index, stack, player) + -- If it is one of the offered stairs: find out how many + -- microblocks have to be substracted: + if listname == "output" then + -- We do know how much each block at each position costs: + local cost = circular_saw.cost_in_microblocks[index] + * stack:get_count() + + circular_saw:update_inventory(pos, -cost) + elseif listname == "micro" then + -- Each microblock costs 1 microblock: + circular_saw:update_inventory(pos, -stack:get_count()) + elseif listname == "input" then + -- Each normal (= full) block taken costs 8 microblocks: + circular_saw:update_inventory(pos, 8 * -stack:get_count()) + end + -- The recycle field plays no role here since it is processed immediately. +end + +gui_slots = "listcolors[#606060AA;#808080;#101010;#202020;#FFF]" + +function circular_saw.on_construct(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", "size[11,9]" ..gui_slots.. + "label[0,0;" ..S("Input\nmaterial").. "]" .. + "list[current_name;input;1.5,0;1,1;]" .. + "label[0,1;" ..S("Left-over").. "]" .. + "list[current_name;micro;1.5,1;1,1;]" .. + "label[0,2;" ..S("Recycle\noutput").. "]" .. + "list[current_name;recycle;1.5,2;1,1;]" .. + "field[0.3,3.5;1,1;max_offered;" ..S("Max").. ":;${max_offered}]" .. + "button[1,3.2;1,1;Set;" ..S("Set").. "]" .. + "list[current_name;output;2.8,0;8,4;]" .. + "list[current_player;main;1.5,5;8,4;]") + + meta:set_int("anz", 0) -- No microblocks inside yet. + meta:set_string("max_offered", 99) -- How many items of this kind are offered by default? + meta:set_string("infotext", S("Circular Saw is empty")) + + local inv = meta:get_inventory() + inv:set_size("input", 1) -- Input slot for full blocks of material x. + inv:set_size("micro", 1) -- Storage for 1-7 surplus microblocks. + inv:set_size("recycle", 1) -- Surplus partial blocks can be placed here. + inv:set_size("output", 4*8) -- 4x8 versions of stair-parts of material x. + + circular_saw:reset(pos) +end + + +function circular_saw.can_dig(pos,player) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if not inv:is_empty("input") or + not inv:is_empty("micro") or + not inv:is_empty("recycle") then + return false + end + -- Can be dug by anyone when empty, not only by the owner: + return true +end + +minetest.register_node("moreblocks:circular_saw", { + description = S("Circular Saw"), + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = { + {-0.4, -0.5, -0.4, -0.25, 0.25, -0.25}, -- Leg + {0.25, -0.5, 0.25, 0.4, 0.25, 0.4}, -- Leg + {-0.4, -0.5, 0.25, -0.25, 0.25, 0.4}, -- Leg + {0.25, -0.5, -0.4, 0.4, 0.25, -0.25}, -- Leg + {-0.5, 0.25, -0.5, 0.5, 0.375, 0.5}, -- Tabletop + {-0.01, 0.4375, -0.125, 0.01, 0.5, 0.125}, -- Saw blade (top) + {-0.01, 0.375, -0.1875, 0.01, 0.4375, 0.1875}, -- Saw blade (bottom) + {-0.25, -0.0625, -0.25, 0.25, 0.25, 0.25}, -- Motor case + }, + }, + tiles = {"moreblocks_circular_saw_top.png", + "moreblocks_circular_saw_bottom.png", + "moreblocks_circular_saw_side.png"}, + paramtype = "light", + sunlight_propagates = true, + paramtype2 = "facedir", + groups = {choppy = 2,oddly_breakable_by_hand = 2}, + sounds = default.node_sound_wood_defaults(), + on_construct = circular_saw.on_construct, + can_dig = circular_saw.can_dig, + -- Set the owner of this circular saw. + after_place_node = function(pos, placer) + local meta = minetest.get_meta(pos) + local owner = placer and placer:get_player_name() or "" + meta:set_string("owner", owner) + meta:set_string("infotext", + S("Circular Saw is empty (owned by %s)") + :format(owner)) + end, + + -- The amount of items offered per shape can be configured: + on_receive_fields = circular_saw.on_receive_fields, + allow_metadata_inventory_move = circular_saw.allow_metadata_inventory_move, + -- Only input- and recycle-slot are intended as input slots: + allow_metadata_inventory_put = circular_saw.allow_metadata_inventory_put, + -- Taking is allowed from all slots (even the internal microblock slot). Moving is forbidden. + -- Putting something in is slightly more complicated than taking anything because we have to make sure it is of a suitable material: + on_metadata_inventory_put = circular_saw.on_metadata_inventory_put, + on_metadata_inventory_take = circular_saw.on_metadata_inventory_take, +}) diff --git a/mods/moreblocks/config.lua b/mods/moreblocks/config.lua new file mode 100644 index 0000000..e5db086 --- /dev/null +++ b/mods/moreblocks/config.lua @@ -0,0 +1,22 @@ +moreblocks.config = {} + +local function getbool_default(setting, default) + local value = minetest.setting_getbool(setting) + if value == nil then + value = default + end + return value +end + +local function setting(settingtype, name, default) + if settingtype == "bool" then + moreblocks.config[name] = + getbool_default("moreblocks." .. name, default) + else + moreblocks.config[name] = + minetest.setting_get("moreblocks." .. name) or default + end +end + +-- Show stairs/slabs/panels/microblocks in creative inventory (true or false): +setting("bool", "stairsplus_in_creative_inventory", false) diff --git a/mods/moreblocks/crafting.lua b/mods/moreblocks/crafting.lua new file mode 100644 index 0000000..d8a006d --- /dev/null +++ b/mods/moreblocks/crafting.lua @@ -0,0 +1,463 @@ +-- Crafting + +minetest.register_craft({ + output = "default:stick", + recipe = {{"default:dry_shrub"},} +}) + +minetest.register_craft({ + output = "default:stick", + recipe = {{"default:sapling"},} +}) + +minetest.register_craft({ + output = "default:stick", + recipe = {{"default:junglesapling"},} +}) + +minetest.register_craft({ + output = "default:wood", + recipe = { + {"default:stick", "default:stick"}, + {"default:stick", "default:stick"}, + } +}) + +minetest.register_craft({ + output = "default:junglewood", + recipe = { + {"moreblocks:jungle_stick", "moreblocks:jungle_stick"}, + {"moreblocks:jungle_stick", "moreblocks:jungle_stick"}, + } +}) + +minetest.register_craft({ + output = "default:dirt_with_grass", + type = "shapeless", + recipe = {"default:junglegrass", "default:dirt"}, +}) + +minetest.register_craft({ + output = "default:dirt_with_grass", + type = "shapeless", + recipe = {"default:mese", "default:dirt"}, +}) + +minetest.register_craft({ + output = "default:mossycobble", + type = "shapeless", + recipe = {"default:junglegrass", "default:cobble"}, +}) + +minetest.register_craft({ + output = "default:mossycobble", + type = "shapeless", + recipe = {"default:mese_crystal_fragment", "default:cobble"}, +}) + +minetest.register_craft({ + output = "moreblocks:wood_tile 9", + recipe = { + {"default:wood", "default:wood", "default:wood"}, + {"default:wood", "default:wood", "default:wood"}, + {"default:wood", "default:wood", "default:wood"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:wood_tile_flipped", + recipe = {{"moreblocks:wood_tile"},} +}) + +minetest.register_craft({ + output = "moreblocks:wood_tile_center 9", + recipe = { + {"default:wood", "default:wood", "default:wood"}, + {"default:wood", "moreblocks:wood_tile", "default:wood"}, + {"default:wood", "default:wood", "default:wood"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:wood_tile_full 4", + recipe = { + {"moreblocks:wood_tile", "moreblocks:wood_tile"}, + {"moreblocks:wood_tile", "moreblocks:wood_tile"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:wood_tile_up", + recipe = { + {"default:stick"}, + {"moreblocks:wood_tile_center"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:wood_tile_down", + recipe = { + {"moreblocks:wood_tile_center"}, + {"default:stick"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:wood_tile_left", + recipe = { + {"default:stick", "moreblocks:wood_tile_center"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:wood_tile_right", + recipe = { + {"moreblocks:wood_tile_center", "default:stick"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:junglestick 4", + recipe = {{"default:junglewood"},} +}) + +minetest.register_craft({ + output = "moreblocks:fence_jungle_wood 2", + recipe = { + {"moreblocks:jungle_stick", "moreblocks:jungle_stick", "moreblocks:jungle_stick"}, + {"moreblocks:jungle_stick", "moreblocks:jungle_stick", "moreblocks:jungle_stick"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:circle_stone_bricks 8", + recipe = { + {"default:stone", "default:stone", "default:stone"}, + {"default:stone", "", "default:stone"}, + {"default:stone", "default:stone", "default:stone"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:all_faces_tree 8", + recipe = { + {"default:tree", "default:tree", "default:tree"}, + {"default:tree", "", "default:tree"}, + {"default:tree", "default:tree", "default:tree"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:all_faces_jungle_tree 8", + recipe = { + {"default:jungletree", "default:jungletree", "default:jungletree"}, + {"default:jungletree", "", "default:jungletree"}, + {"default:jungletree", "default:jungletree", "default:jungletree"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:sweeper 4", + recipe = { + {"default:junglegrass"}, + {"default:stick"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:stone_tile 4", + recipe = { + {"default:cobble", "default:cobble"}, + {"default:cobble", "default:cobble"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:split_stone_tile", + recipe = { + {"moreblocks:stone_tile"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:split_stone_tile_alt", + recipe = { + {"moreblocks:split_stone_tile"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:grey_bricks 2", + type = "shapeless", + recipe = {"default:stone", "default:brick"}, +}) + +minetest.register_craft({ + output = "moreblocks:grey_bricks 2", + type = "shapeless", + recipe = {"default:stonebrick", "default:brick"}, +}) + +minetest.register_craft({ + output = "moreblocks:empty_bookshelf", + type = "shapeless", + recipe = {"moreblocks:sweeper", "default:bookshelf"}, +}) + +minetest.register_craft({ + output = "moreblocks:coal_stone_bricks 4", + recipe = { + {"moreblocks:coal_stone", "moreblocks:coal_stone"}, + {"moreblocks:coal_stone", "moreblocks:coal_stone"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:iron_stone_bricks 4", + recipe = { + {"moreblocks:iron_stone", "moreblocks:iron_stone"}, + {"moreblocks:iron_stone", "moreblocks:iron_stone"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:plankstone 4", + recipe = { + {"default:stone", "default:wood"}, + {"default:wood", "default:stone"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:plankstone 4", + recipe = { + {"default:wood", "default:stone"}, + {"default:stone", "default:wood"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:coal_checker 4", + recipe = { + {"default:stone", "default:coal_lump"}, + {"default:coal_lump", "default:stone"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:coal_checker 4", + recipe = { + {"default:coal_lump", "default:stone"}, + {"default:stone", "default:coal_lump"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:iron_checker 4", + recipe = { + {"default:steel_ingot", "default:stone"}, + {"default:stone", "default:steel_ingot"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:iron_checker 4", + recipe = { + {"default:stone", "default:steel_ingot"}, + {"default:steel_ingot", "default:stone"}, + } +}) + +minetest.register_craft({ + output = "default:chest_locked", + type = "shapeless", + recipe = {"default:steel_ingot", "default:chest"}, +}) +minetest.register_craft({ + output = "default:chest_locked", + type = "shapeless", + recipe = {"default:copper_ingot", "default:chest"}, +}) + +minetest.register_craft({ + output = "default:chest_locked", + type = "shapeless", + recipe = {"default:bronze_ingot", "default:chest"}, +}) + +minetest.register_craft({ + output = "default:chest_locked", + type = "shapeless", + recipe = {"default:gold_ingot", "default:chest"}, +}) + +minetest.register_craft({ + output = "moreblocks:iron_glass", + type = "shapeless", + recipe = {"default:steel_ingot", "default:glass"}, +}) + +minetest.register_craft({ + output = "default:glass", + type = "shapeless", + recipe = {"default:coal_lump", "moreblocks:iron_glass"}, +}) + + +minetest.register_craft({ + output = "moreblocks:coal_glass", + type = "shapeless", + recipe = {"default:coal_lump", "default:glass"}, +}) + +minetest.register_craft({ + output = "default:glass", + type = "shapeless", + recipe = {"default:steel_ingot", "moreblocks:coal_glass"}, +}) + +minetest.register_craft({ + output = "moreblocks:clean_glass", + type = "shapeless", + recipe = {"moreblocks:sweeper", "default:glass"}, +}) + +minetest.register_craft({ + output = "moreblocks:glow_glass", + type = "shapeless", + recipe = {"default:torch", "default:glass"}, +}) + +minetest.register_craft({ + output = "moreblocks:trap_glow_glass", + type = "shapeless", + recipe = {"default:mese_crystal_fragment", "default:glass", "default:torch"}, +}) + +minetest.register_craft({ + output = "moreblocks:trap_glow_glass", + type = "shapeless", + recipe = {"default:mese_crystal_fragment", "moreblocks:glow_glass"}, +}) + +minetest.register_craft({ + output = "moreblocks:super_glow_glass", + type = "shapeless", + recipe = {"default:torch", "default:torch", "default:glass"}, +}) + +minetest.register_craft({ + output = "moreblocks:super_glow_glass", + type = "shapeless", + recipe = {"default:torch", "moreblocks:glow_glass"}, +}) + + +minetest.register_craft({ + output = "moreblocks:trap_super_glow_glass", + type = "shapeless", + recipe = {"default:mese_crystal_fragment", "default:glass", "default:torch", "default:torch"}, +}) + +minetest.register_craft({ + output = "moreblocks:trap_super_glow_glass", + type = "shapeless", + recipe = {"default:mese_crystal_fragment", "moreblocks:super_glow_glass"}, +}) + +minetest.register_craft({ + output = "moreblocks:coal_stone", + type = "shapeless", + recipe = {"default:coal_lump", "default:stone"}, +}) + +minetest.register_craft({ + output = "default:stone", + type = "shapeless", + recipe = {"default:steel_ingot", "moreblocks:coal_stone"}, +}) + +minetest.register_craft({ + output = "moreblocks:iron_stone", + type = "shapeless", + recipe = {"default:steel_ingot", "default:stone"}, +}) + +minetest.register_craft({ + output = "default:stone", + type = "shapeless", + recipe = {"default:coal_lump", "moreblocks:iron_stone"}, +}) + +minetest.register_craft({ + output = "moreblocks:trap_stone", + type = "shapeless", + recipe = {"default:mese_crystal_fragment", "default:stone"}, +}) + +minetest.register_craft({ + output = "moreblocks:trap_glass", + type = "shapeless", + recipe = {"default:mese_crystal_fragment", "default:glass"}, +}) + +minetest.register_craft({ + output = "moreblocks:cactus_brick", + type = "shapeless", + recipe = {"default:cactus", "default:brick"}, +}) + +minetest.register_craft({ + output = "moreblocks:cactus_checker 4", + recipe = { + {"default:cactus", "default:stone"}, + {"default:stone", "default:cactus"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:cactuschecker 4", + recipe = { + {"default:stone", "default:cactus"}, + {"default:cactus", "default:stone"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:rope 3", + recipe = { + {"default:junglegrass"}, + {"default:junglegrass"}, + {"default:junglegrass"}, + } +}) + +minetest.register_craft({ + output = "moreblocks:cobble_compressed", + recipe = { + {"default:cobble", "default:cobble", "default:cobble"}, + {"default:cobble", "default:cobble", "default:cobble"}, + {"default:cobble", "default:cobble", "default:cobble"}, + } +}) + +minetest.register_craft({ + output = "default:cobble 9", + recipe = { + {"moreblocks:cobble_compressed"}, + } +}) + + +minetest.register_craft({ + type = "cooking", output = "moreblocks:tar", recipe = "default:gravel", +}) + +minetest.register_craft({ + output = "moreblocks:circular_saw", + recipe = { + { "", "default:steel_ingot", "" }, + { "group:wood", "group:wood", "group:wood"}, + { "group:wood", "", "group:wood"}, + } +}) diff --git a/mods/moreblocks/depends.txt b/mods/moreblocks/depends.txt new file mode 100644 index 0000000..198fe8a --- /dev/null +++ b/mods/moreblocks/depends.txt @@ -0,0 +1,2 @@ +default +intllib? diff --git a/mods/moreblocks/init.lua b/mods/moreblocks/init.lua new file mode 100644 index 0000000..7e3b4d9 --- /dev/null +++ b/mods/moreblocks/init.lua @@ -0,0 +1,33 @@ +--[[ +====================================================================== +** More Blocks ** +By Calinou, with the help of ShadowNinja and VanessaE. + +Copyright (c) 2011-2014 Calinou and contributors. +Licensed under the zlib license. See LICENSE.txt for more information. +====================================================================== +--]] + +moreblocks = {} + +local S +if minetest.get_modpath("intllib") then + S = intllib.Getter() +else + S = function(s) return s end +end +moreblocks.intllib = S + +local modpath = minetest.get_modpath("moreblocks") + +dofile(modpath .. "/config.lua") +dofile(modpath .. "/circular_saw.lua") +dofile(modpath .. "/stairsplus/init.lua") +dofile(modpath .. "/nodes.lua") +dofile(modpath .. "/redefinitions.lua") +dofile(modpath .. "/crafting.lua") +dofile(modpath .. "/aliases.lua") + +if minetest.setting_getbool("log_mods") then + minetest.log("action", S("[moreblocks] loaded.")) +end diff --git a/mods/moreblocks/locale/de.txt b/mods/moreblocks/locale/de.txt new file mode 100644 index 0000000..542f977 --- /dev/null +++ b/mods/moreblocks/locale/de.txt @@ -0,0 +1,67 @@ +# Translation by Xanthin + +###init.lua### +[moreblocks] loaded. = [moreblocks] geladen. + +###nodes.lua### +Jungle Wood Fence = Tropenholzzaun +Empty Bookshelf = Leeres Buecherregal +Clean Glass = Klares Glas +Plankstone = Brettstein +Wooden Tile = Holzfliese +Full Wooden Tile = Vollholzfliese +Centered Wooden Tile = Holzfliese mittig +Up Wooden Tile = Holzfliese oben +Down Wooden Tile = Holzfliese unten +Left Wooden Tile = Holzfliese links +Right Wooden Tile = Holzfliese rechts +Circle Stone Bricks = Kreissteinziegel +Stone Tile = Steinfliese +Split Stone Tile = Geteilte Steinfliese +Glow Glass = Leuchtglas +Super Glow Glass = Superleuchtglas +Coal Glass = Kohleglas +Iron Glass = Eisenglas +Coal Checker = Karierte Kohle +Iron Checker = Kariertes Eisen +Trap Stone = Steinfalle +Trap Glass = Glasfalle +Trap Glow Glass = Leuchtglasfalle +Trap Super Glow Glass = Superleuchtglasfalle +Coal Stone = Kohlestein +Iron Stone = Eisenstein +Coal Stone Bricks = Kohlesteinziegel +Iron Stone Bricks = Eisensteinziegel +Cactus Checker = Karierter Kaktus +Cactus Brick = Kaktusziegel +Sweeper = Besen +Jungle Stick = Tropenholzstock +Rope = Seil +All-faces Tree = Baumscheibenstamm + +###circular_saw.lua### +Circular Saw = Kreissaege +Circular saw, empty (owned by %s) = Kreissaege, leer (gehoert %s) +Circular saw, working with %s (owned by %s) = Kreissaege, arbeitet mit %s (gehoert %s) +Circular saw, empty = Kreissaege, leer +Circular saw is empty (owned by %s) = Kreissaege ist leer (gehoert %s) + +Input\nmaterial = Ausgangs-\nmaterial +Left-over = Rest +Max = Anzahl +Set = Ok +Recycle\noutput = Wiederver-\nwerten + +###./stairsplus/*### +%s Stairs = %streppe +%s Slab = %sstufe +%s Panel = %spaneel +%s Microblock = %smikroblock + +%s Pane = %sscheibe +%s Fence = %szaun + +###ownership.lua### +someone = jemand +Sorry, %s owns that spot. = Tut mir leid, %s gehoert diese Stelle. + diff --git a/mods/moreblocks/locale/es.txt b/mods/moreblocks/locale/es.txt new file mode 100644 index 0000000..d11ba49 --- /dev/null +++ b/mods/moreblocks/locale/es.txt @@ -0,0 +1,52 @@ +# Translation by kaeza + +[moreblocks] loaded. = [moreblocks] cargado. + +Jungle Wooden Planks = Tablones de madera de jungla +Empty Bookshelf = Estante para libros vacío +Clean Glass = Cristal Limpio +Plankstone = Tablones de piedra +Wooden Tile = Parquet +Full Wooden Tile = Parquet Completo +Centered Wooden Tile = Parquet Centrado +Up Wooden Tile = Parquet Superior +Down Wooden Tile = Parquet Inferior +Left Wooden Tile = Parquet Izquierdo +Right Wooden Tile = Parquet Derecho +Circle Stone Bricks = Bloques de Piedra Circulares +Stone Tile = Baldosa de Piedra +Split Stone Tile = Baldosas de Piedra Partida +Glow Glass = Cristal Brillante +Super Glow Glass = Cristal Súper Brillante +Coal Glass = Cristal con Carbón +Iron Glass = Cristal con Hierro +Coal Checker = Cuadros de Carbón +Iron Checker = Cuadros de Hierro +Trap Stone = Piedra Trampa +Trap Glass = Cristal Trampa +Coal Stone = Carbón y Piedra +Iron Stone = Hierro y Piedra +Cactus Checker = Cuadros de Cactus +Cactus Brick = Ladrillos de Cactus +Sweeper = Limpiador +Jungle Stick = Varita de Madera de Jungla +Horizontal Tree = Tronco de árbol horizontal +Horizontal Jungle Tree = Tronco de árbol de la jungla horizontal +Rope = Soga +All-faces Tree = Tronco de Árbol + +%s Stairs = Escalera de %s +%s Slab = Losa de %s +%s Panel = Panel de %s +%s Microblock = Microbloque de %s + +Wooden = Madera +Papyrus = Papiro +Dry Shrub = Arbusto Desértico +Sapling = Brote de Árbol +Wooden Planks = Tablones de Madera +Ladder = Escalera de Mano +Glass = Cristal + +%s Pane = Panel de %s +%s Fence = Valla de %s diff --git a/mods/moreblocks/locale/fr.txt b/mods/moreblocks/locale/fr.txt new file mode 100644 index 0000000..6bd7f98 --- /dev/null +++ b/mods/moreblocks/locale/fr.txt @@ -0,0 +1,72 @@ +# Translation by Calinou + +###init.lua### +[moreblocks] loaded. = [moreblocks] a t charg. + +Jungle Wooden Planks = Planches de bois de jungle +Empty Bookshelf = tagre vide +Clean Glass = Verre propre +Plankstone = Pierre-bois +Wooden Tile = Dalle en bois +Full Wooden Tile = Dalle en bois complte +Centered Wooden Tile = Dalle en bois centre +Up Wooden Tile = Dalle en bois vers le haut +Down Wooden Tile = Dalle en bois vers le bas +Left Wooden Tile = Dalle en bois vers la gauche +Right Wooden Tile = Dalle en bois vers la droite +Circle Stone Bricks = Briques en pierre circulaires +Stone Tile = Dalle en pierre +Split Stone Tile = Dalle en pierre dcoupe +Glow Glass = Verre brillant +Super Glow Glass = Verre trs brillant +Coal Glass = Verre de charbon +Iron Glass = Verre de fer +Coal Checker = Damier en charbon +Iron Checker = Damier en fer +Trap Stone = Pierre traversable +Trap Glass = Verre traversable +Trap Glow Glass = Verre brillant traversable +Trap Super Glow Glass = Verre trs brillant traversable +Coal Stone = Pierre de charbon +Iron Stone = Pierre de fer +Coal Stone Bricks = Briques en pierre de charbon +Iron Stone Bricks = Briques en pierre de fer +Cactus Checker = Damier en cactus +Cactus Brick = Briques de cactus +Sweeper = Balai +Jungle Stick = Bton en bois de jungle +Horizontal Tree = Tronc d'arbre horizontal +Horizontal Jungle Tree = Tronc d'arbre de jungle horizontal +Rope = Corde +All-faces Tree = Tronc d'arbre + +###redefinition.lua### +Wooden = bois +Papyrus = Papyrus +Dry Shrub = Buisson mort +Sapling = Pousse d'arbre +Wooden Planks = Planches de bois +Ladder = chelle +Glass = Verre + +###circular_saw.lua### +Circular Saw = Scie circulaire +Circular saw, empty (owned by %s) = Scie circulaire, vide (proprit de %s) +Circular saw, working with %s (owned by %s) = Scie circulaire, manipule %s (proprit de %s) +Circular saw, empty = Scie circulaire, vide +Circular saw is empty (owned by %s) = Scie circulaire est vide (proprit de %s) + +Input material = Entre du matriel +Rest/microblocks = Reste/microbloc +Max: = Max: +Set = Fixer +Recycle output = Recyclage + +###./stairsplus/*### +%s Stairs = Escaliers en %s +%s Slab = Demi-dalle en %s +%s Panel = Barre en %s +%s Microblock = Microbloc en %s + +%s Pane = Panneau en %s +%s Fence = Barrire en %s \ No newline at end of file diff --git a/mods/moreblocks/locale/template.txt b/mods/moreblocks/locale/template.txt new file mode 100644 index 0000000..2b88227 --- /dev/null +++ b/mods/moreblocks/locale/template.txt @@ -0,0 +1,64 @@ +###init.lua### +[moreblocks] loaded. = + +###nodes.lua### +Jungle Wood Fence = +Empty Bookshelf = +Clean Glass = +Plankstone = +Wooden Tile = +Full Wooden Tile = +Centered Wooden Tile = +Up Wooden Tile = +Down Wooden Tile = +Left Wooden Tile = +Right Wooden Tile = +Circle Stone Bricks = +Stone Tile = +Split Stone Tile = +Glow Glass = +Super Glow Glass = +Coal Glass = +Iron Glass = +Coal Checker = +Iron Checker = +Trap Stone = +Trap Glass = +Trap Glow Glass = +Trap Super Glow Glass = +Coal Stone = +Iron Stone = +Coal Stone Bricks = +Iron Stone Bricks = +Cactus Checker = +Cactus Brick = +Sweeper = +Jungle Stick = +Rope = +All-faces Tree = + +###circular_saw.lua### +Circular Saw = +Circular saw, empty (owned by %s) = +Circular saw, working with %s (owned by %s) = +Circular saw, empty = +Circular saw is empty (owned by %s) = + +Input\nmaterial = +Left-over = +Max = +Set = +Recycle\noutput = + +###ownership.lua### +someone = +Sorry, %s owns that spot. = + +###./stairsplus/*### +%s Stairs = +%s Slab = +%s Panel = +%s Microblock = + +%s Pane = +%s Fence = diff --git a/mods/moreblocks/models/moreblocks_slope.obj b/mods/moreblocks/models/moreblocks_slope.obj new file mode 100644 index 0000000..05c853b --- /dev/null +++ b/mods/moreblocks/models/moreblocks_slope.obj @@ -0,0 +1,21 @@ +# Blender v2.69 (sub 0) OBJ File: 'slope_test_slope_onetexture.blend' +# www.blender.org +mtllib slope_test_slope_onetexture.mtl +o Cube_Cube.002 +v 0.500000 0.500000 0.500000 +v -0.500000 0.500000 0.500000 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 -0.500000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +usemtl None +s off +f 1/1 2/2 3/3 4/4 +f 4/3 3/4 5/1 6/2 +f 2/1 5/3 3/4 +f 1/2 4/3 6/4 +f 2/1 1/2 6/3 5/4 diff --git a/mods/moreblocks/models/moreblocks_slope_half.obj b/mods/moreblocks/models/moreblocks_slope_half.obj new file mode 100644 index 0000000..bc96bb8 --- /dev/null +++ b/mods/moreblocks/models/moreblocks_slope_half.obj @@ -0,0 +1,23 @@ +# Blender v2.69 (sub 0) OBJ File: 'slope_test_slope_long_fronthalf_onetexture.blend' +# www.blender.org +mtllib slope_test_slope_long_fronthalf_onetexture.mtl +o Cube_Cube.002 +v 0.500000 -0.000000 0.500000 +v -0.500000 -0.000000 0.500000 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 -0.500000 +vt 1.000000 0.500000 +vt 0.000000 0.500000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +usemtl None +s off +f 1/1 2/2 3/3 4/4 +f 4/3 3/4 5/5 6/6 +f 2/1 5/3 3/4 +f 1/2 4/3 6/4 +f 2/5 1/6 6/3 5/4 diff --git a/mods/moreblocks/models/moreblocks_slope_half_raised.obj b/mods/moreblocks/models/moreblocks_slope_half_raised.obj new file mode 100644 index 0000000..79e0dc0 --- /dev/null +++ b/mods/moreblocks/models/moreblocks_slope_half_raised.obj @@ -0,0 +1,26 @@ +# Blender v2.69 (sub 0) OBJ File: 'slope_test_slope_long_backhalf_onetexture.blend' +# www.blender.org +mtllib slope_test_slope_long_backhalf_onetexture.mtl +o Cube +v -0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 0.500000 0.500000 +v -0.500000 0.000000 -0.500000 +v 0.500000 0.000000 -0.500000 +v 0.500000 0.500000 0.500000 +vt 1.000000 1.000000 +vt 0.000000 0.500000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 0.500000 +vt 0.000000 1.000000 +usemtl None +s off +f 5/1 6/2 2/3 1/4 +f 6/5 7/2 3/3 2/4 +f 7/5 8/6 4/3 3/4 +f 8/1 5/6 1/3 4/4 +f 1/4 2/1 3/6 4/3 +f 8/6 7/3 6/4 5/1 diff --git a/mods/moreblocks/models/moreblocks_slope_inner.obj b/mods/moreblocks/models/moreblocks_slope_inner.obj new file mode 100644 index 0000000..68fc170 --- /dev/null +++ b/mods/moreblocks/models/moreblocks_slope_inner.obj @@ -0,0 +1,26 @@ +# Blender v2.69 (sub 0) OBJ File: 'slope_test_icorner_onetexture.blend' +# www.blender.org +o Cube_Cube.000 +v 0.500000 0.500000 0.500000 +v -0.500000 0.500000 0.500000 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v 0.500000 0.500000 -0.500000 +v 0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 -0.500000 +v -0.500000 -0.500000 -0.500000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +s off +f 6/1 1/2 7/3 8/4 +f 2/1 5/3 3/4 +f 2/1 1/2 5/4 +f 6/2 8/3 9/4 +f 9/1 8/2 7/3 3/4 +f 3/3 7/4 1/1 2/2 +f 1/1 6/2 9/3 +l 1 4 +l 3 4 diff --git a/mods/moreblocks/models/moreblocks_slope_inner_half.obj b/mods/moreblocks/models/moreblocks_slope_inner_half.obj new file mode 100644 index 0000000..6decaea --- /dev/null +++ b/mods/moreblocks/models/moreblocks_slope_inner_half.obj @@ -0,0 +1,28 @@ +# Blender v2.69 (sub 0) OBJ File: 'slope_test_icorner_half_short_onetexture.blend' +# www.blender.org +mtllib slope_test_icorner_half_short_onetexture.mtl +o Cube_Cube.000 +v 0.500000 -0.000000 0.500000 +v -0.500000 -0.000000 0.500000 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v 0.500000 -0.000000 -0.500000 +v 0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 -0.500000 +v -0.500000 -0.500000 -0.500000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +usemtl None +s off +f 6/1 1/2 7/3 8/4 +f 2/1 5/3 3/4 +f 2/1 1/2 5/4 +f 6/2 8/3 9/4 +f 9/1 8/2 7/3 3/4 +f 3/3 7/4 1/1 2/2 +f 1/1 6/2 9/3 +l 1 4 +l 3 4 diff --git a/mods/moreblocks/models/moreblocks_slope_inner_half_raised.obj b/mods/moreblocks/models/moreblocks_slope_inner_half_raised.obj new file mode 100644 index 0000000..8aff6ca --- /dev/null +++ b/mods/moreblocks/models/moreblocks_slope_inner_half_raised.obj @@ -0,0 +1,31 @@ +# Blender v2.69 (sub 0) OBJ File: 'slope_test_icorner_half_tall_onetexture.blend' +# www.blender.org +mtllib slope_test_icorner_half_tall_onetexture.mtl +o Cube_Cube.000 +v 0.500000 0.500000 0.500000 +v -0.500000 0.500000 0.500000 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 0.000000 -0.500000 +v 0.500000 0.500000 -0.500000 +v 0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 -0.500000 +v -0.500000 0.000000 -0.500000 +v -0.500000 -0.500000 -0.500000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 0.500000 +vt 0.000000 0.500000 +usemtl None +s off +f 6/1 1/2 7/3 8/4 +f 2/1 1/2 5/4 +f 3/3 7/4 1/1 2/2 +f 1/2 6/3 9/4 +f 3/1 10/2 8/3 7/4 +f 8/3 10/4 5/5 6/2 +f 3/4 2/1 5/6 10/3 +l 1 4 +l 3 4 diff --git a/mods/moreblocks/models/moreblocks_slope_outer.obj b/mods/moreblocks/models/moreblocks_slope_outer.obj new file mode 100644 index 0000000..383c195 --- /dev/null +++ b/mods/moreblocks/models/moreblocks_slope_outer.obj @@ -0,0 +1,18 @@ +# Blender v2.69 (sub 0) OBJ File: 'slope_test_ocorner_onetexture.blend' +# www.blender.org +o Cube_Cube.002 +v 0.500000 0.500000 0.500000 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 -0.500000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +s off +f 3/1 2/2 4/3 5/4 +f 1/2 3/3 5/4 +f 1/1 2/3 3/4 +f 1/1 4/3 2/4 +f 1/2 5/3 4/4 diff --git a/mods/moreblocks/models/moreblocks_slope_outer_cut.obj b/mods/moreblocks/models/moreblocks_slope_outer_cut.obj new file mode 100644 index 0000000..4608c69 --- /dev/null +++ b/mods/moreblocks/models/moreblocks_slope_outer_cut.obj @@ -0,0 +1,19 @@ +# Blender v2.69 (sub 0) OBJ File: 'slope_test_corner_pyramid_tall_2_onetexture.blend' +# www.blender.org +mtllib slope_test_corner_pyramid_tall_2_onetexture.mtl +o Cube +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 0.500000 +v 0.500000 0.500000 0.500000 +vt 1.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 0.000000 1.000000 +vt 0.500000 1.000000 +usemtl None +s off +f 4/1 1/2 3/3 +f 2/3 4/4 3/2 +f 3/2 1/3 2/4 +f 1/3 4/5 2/2 diff --git a/mods/moreblocks/models/moreblocks_slope_outer_cut_half.obj b/mods/moreblocks/models/moreblocks_slope_outer_cut_half.obj new file mode 100644 index 0000000..e4be882 --- /dev/null +++ b/mods/moreblocks/models/moreblocks_slope_outer_cut_half.obj @@ -0,0 +1,20 @@ +# Blender v2.69 (sub 0) OBJ File: 'slope_test_corner_pyramid_short_2_onetexture.blend' +# www.blender.org +mtllib slope_test_corner_pyramid_short_2_onetexture.mtl +o Cube +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 0.500000 +v 0.500000 0.000000 0.500000 +vt 1.000000 0.500000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 0.000000 0.500000 +vt 0.000000 1.000000 +vt 0.500000 1.000000 +usemtl None +s off +f 4/1 1/2 3/3 +f 2/3 4/4 3/2 +f 3/2 1/3 2/5 +f 1/3 4/6 2/2 diff --git a/mods/moreblocks/models/moreblocks_slope_outer_cut_half_raised.obj b/mods/moreblocks/models/moreblocks_slope_outer_cut_half_raised.obj new file mode 100644 index 0000000..65a3b8a --- /dev/null +++ b/mods/moreblocks/models/moreblocks_slope_outer_cut_half_raised.obj @@ -0,0 +1,23 @@ +# Blender v2.69 (sub 0) OBJ File: 'slope_test_corner_pyramid_short_3_onetexture.blend' +# www.blender.org +mtllib slope_test_corner_pyramid_short_3_onetexture.mtl +o Cube_Cube.002 +v -0.500000 -0.000000 0.500000 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +v 0.500000 0.500000 0.500000 +v 0.500000 -0.500000 -0.500000 +v 0.500000 -0.000000 -0.500000 +vt 0.000000 0.500000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 1.000000 0.500000 +usemtl None +s off +f 1/1 2/2 3/3 4/4 +f 4/5 3/2 5/3 6/6 +f 2/5 5/3 3/4 +f 1/2 4/3 6/4 +f 2/3 1/6 6/1 5/2 diff --git a/mods/moreblocks/models/moreblocks_slope_outer_half.obj b/mods/moreblocks/models/moreblocks_slope_outer_half.obj new file mode 100644 index 0000000..0c56e26 --- /dev/null +++ b/mods/moreblocks/models/moreblocks_slope_outer_half.obj @@ -0,0 +1,22 @@ +# Blender v2.69 (sub 0) OBJ File: 'slope_test_corner_pyramid_short_1_onetexture.blend' +# www.blender.org +mtllib slope_test_corner_pyramid_short_1_onetexture.mtl +o Cube +v -0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 0.500000 +v 0.500000 0.000000 0.500000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 0.500000 +vt 0.000000 0.500000 +usemtl None +s off +f 1/1 2/2 3/3 4/4 +f 5/5 1/3 4/4 +f 3/4 5/6 4/3 +f 2/4 5/2 3/3 +f 1/4 5/1 2/3 diff --git a/mods/moreblocks/models/moreblocks_slope_outer_half_raised.obj b/mods/moreblocks/models/moreblocks_slope_outer_half_raised.obj new file mode 100644 index 0000000..e4fa3d1 --- /dev/null +++ b/mods/moreblocks/models/moreblocks_slope_outer_half_raised.obj @@ -0,0 +1,27 @@ +# Blender v2.69 (sub 0) OBJ File: 'slope_test_corner_pyramid_tall_3_onetexture.blend' +# www.blender.org +mtllib slope_test_corner_pyramid_tall_3_onetexture.mtl +o Cube_Cube.002 +v -0.500000 -0.000000 0.500000 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +v 0.500000 0.500000 0.500000 +v 0.500000 -0.500000 -0.500000 +v 0.500000 -0.000000 -0.500000 +v -0.500000 -0.500000 -0.500000 +v -0.500000 -0.000000 -0.500000 +vt 0.000000 0.500000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 1.000000 0.500000 +usemtl None +s off +f 1/1 2/2 3/3 4/4 +f 4/5 3/2 5/3 6/6 +f 8/3 4/5 6/2 +f 1/6 8/1 7/2 2/3 +f 4/5 8/3 1/4 +f 6/1 5/2 7/3 8/6 +f 5/5 3/2 2/3 7/4 diff --git a/mods/moreblocks/nodes.lua b/mods/moreblocks/nodes.lua new file mode 100644 index 0000000..ad411be --- /dev/null +++ b/mods/moreblocks/nodes.lua @@ -0,0 +1,349 @@ +local S = moreblocks.intllib + +local sound_wood = default.node_sound_wood_defaults() +local sound_stone = default.node_sound_stone_defaults() +local sound_glass = default.node_sound_glass_defaults() +local sound_leaves = default.node_sound_leaves_defaults() + +local function tile_tiles(name) + local tex = "moreblocks_" ..name.. ".png" + return {tex, tex, tex, tex, tex.. "^[transformR90", tex.. "^[transformR90"} +end + +local nodes = { + ["wood_tile"] = { + description = S("Wooden Tile"), + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3}, + tiles = {"default_wood.png^moreblocks_wood_tile.png", + "default_wood.png^moreblocks_wood_tile.png", + "default_wood.png^moreblocks_wood_tile.png", + "default_wood.png^moreblocks_wood_tile.png", + "default_wood.png^moreblocks_wood_tile.png^[transformR90", + "default_wood.png^moreblocks_wood_tile.png^[transformR90"}, + sounds = sound_wood, + }, + ["wood_tile_flipped"] = { + description = S("Wooden Tile"), + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3}, + tiles = {"default_wood.png^moreblocks_wood_tile.png^[transformR90", + "default_wood.png^moreblocks_wood_tile.png^[transformR90", + "default_wood.png^moreblocks_wood_tile.png^[transformR90", + "default_wood.png^moreblocks_wood_tile.png^[transformR90", + "default_wood.png^moreblocks_wood_tile.png^[transformR180", + "default_wood.png^moreblocks_wood_tile.png^[transformR180"}, + sounds = sound_wood, + no_stairs = true, + }, + ["wood_tile_center"] = { + description = S("Centered Wooden Tile"), + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3}, + tiles = {"default_wood.png^moreblocks_wood_tile_center.png"}, + sounds = sound_wood, + }, + ["wood_tile_full"] = { + description = S("Full Wooden Tile"), + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3}, + tiles = tile_tiles("wood_tile_full"), + sounds = sound_wood, + }, + ["wood_tile_up"] = { + description = S("Upwards Wooden Tile"), + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3}, + tiles = {"default_wood.png^moreblocks_wood_tile_up.png"}, + sounds = sound_wood, + no_stairs = true, + }, + ["wood_tile_down"] = { + description = S("Downwards Wooden Tile"), + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3}, + tiles = {"default_wood.png^[transformR180^moreblocks_wood_tile_up.png^[transformR180"}, + sounds = sound_wood, + no_stairs = true, + }, + ["wood_tile_left"] = { + description = S("Leftwards Wooden Tile"), + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3}, + tiles = {"default_wood.png^[transformR270^moreblocks_wood_tile_up.png^[transformR270"}, + sounds = sound_wood, + no_stairs = true, + }, + ["wood_tile_right"] = { + description = S("Rightwards Wooden Tile"), + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3}, + tiles = {"default_wood.png^[transformR90^moreblocks_wood_tile_up.png^[transformR90"}, + sounds = sound_wood, + no_stairs = true, + }, + ["circle_stone_bricks"] = { + description = S("Circle Stone Bricks"), + groups = {cracky = 3}, + sounds = sound_stone, + }, + ["grey_bricks"] = { + description = S("Stone Bricks"), + groups = {cracky = 3}, + sounds = sound_stone, + }, + ["coal_stone_bricks"] = { + description = S("Coal Stone Bricks"), + groups = {cracky = 3}, + sounds = sound_stone, + }, + ["iron_stone_bricks"] = { + description = S("Iron Stone Bricks"), + groups = {cracky = 3}, + sounds = sound_stone, + }, + ["stone_tile"] = { + description = S("Stone Tile"), + groups = {cracky = 3}, + sounds = sound_stone, + }, + ["split_stone_tile"] = { + description = S("Split Stone Tile"), + tiles = {"moreblocks_split_stone_tile_top.png", + "moreblocks_split_stone_tile.png"}, + groups = {cracky = 3}, + sounds = sound_stone, + }, + ["split_stone_tile_alt"] = { + description = S("Checkered Stone Tile"), + groups = {cracky = 3}, + sounds = sound_stone, + }, + ["tar"] = { + description = S("Tar"), + groups = {cracky = 2}, + sounds = sound_stone, + }, + ["cobble_compressed"] = { + description = S("Compressed Cobblestone"), + groups = {cracky = 1}, + sounds = sound_stone, + }, + ["plankstone"] = { + description = S("Plankstone"), + groups = {cracky = 3}, + tiles = tile_tiles("plankstone"), + sounds = sound_stone, + }, + ["iron_glass"] = { + description = S("Iron Glass"), + drawtype = "glasslike_framed", + paramtype = "light", + sunlight_propagates = true, + groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, + sounds = sound_glass, + }, + ["coal_glass"] = { + description = S("Coal Glass"), + drawtype = "glasslike_framed", + paramtype = "light", + sunlight_propagates = true, + groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, + sounds = sound_glass, + }, + ["clean_glass"] = { + description = S("Clean Glass"), + drawtype = "glasslike_framed", + paramtype = "light", + sunlight_propagates = true, + groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, + sounds = sound_glass, + }, + ["cactus_brick"] = { + description = S("Cactus Brick"), + groups = {cracky = 3}, + sounds = sound_stone, + }, + ["cactus_checker"] = { + description = S("Cactus Checker"), + groups = {cracky = 3}, + tiles = {"default_stone.png^moreblocks_cactus_checker.png", + "default_stone.png^moreblocks_cactus_checker.png", + "default_stone.png^moreblocks_cactus_checker.png", + "default_stone.png^moreblocks_cactus_checker.png", + "default_stone.png^moreblocks_cactus_checker.png^[transformR90", + "default_stone.png^moreblocks_cactus_checker.png^[transformR90"}, + sounds = sound_stone, + }, + ["empty_bookshelf"] = { + description = S("Empty Bookshelf"), + tiles = {"default_wood.png", "default_wood.png", + "moreblocks_empty_bookshelf.png"}, + groups = {snappy = 2, choppy = 3, oddly_breakable_by_hand = 2, flammable = 3}, + sounds = sound_wood, + no_stairs = true, + }, + ["coal_stone"] = { + description = S("Coal Stone"), + groups = {cracky = 3}, + sounds = sound_stone, + }, + ["iron_stone"] = { + description = S("Iron Stone"), + groups = {cracky = 3}, + sounds = sound_stone, + }, + ["coal_checker"] = { + description = S("Coal Checker"), + tiles = {"default_stone.png^moreblocks_coal_checker.png", + "default_stone.png^moreblocks_coal_checker.png", + "default_stone.png^moreblocks_coal_checker.png", + "default_stone.png^moreblocks_coal_checker.png", + "default_stone.png^moreblocks_coal_checker.png^[transformR90", + "default_stone.png^moreblocks_coal_checker.png^[transformR90"}, + groups = {cracky = 3}, + sounds = sound_stone, + }, + ["iron_checker"] = { + description = S("Iron Checker"), + tiles = {"default_stone.png^moreblocks_iron_checker.png", + "default_stone.png^moreblocks_iron_checker.png", + "default_stone.png^moreblocks_iron_checker.png", + "default_stone.png^moreblocks_iron_checker.png", + "default_stone.png^moreblocks_iron_checker.png^[transformR90", + "default_stone.png^moreblocks_iron_checker.png^[transformR90"}, + groups = {cracky = 3}, + sounds = sound_stone, + }, + ["trap_stone"] = { + description = S("Trap Stone"), + walkable = false, + groups = {cracky = 3}, + sounds = sound_stone, + no_stairs = true, + }, + ["trap_glass"] = { + description = S("Trap Glass"), + drawtype = "glasslike_framed", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, + sounds = sound_glass, + no_stairs = true, + }, + ["fence_jungle_wood"] = { + description = S("Jungle Wood Fence"), + drawtype = "fencelike", + tiles = {"default_junglewood.png"}, + inventory_image = "default_fence_overlay.png^default_junglewood.png^default_fence_overlay.png^[makealpha:255,126,126", + wield_image = "default_fence_overlay.png^default_junglewood.png^default_fence_overlay.png^[makealpha:255,126,126", + paramtype = "light", + selection_box = { + type = "fixed", + fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7}, + }, + groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2}, + sounds = sound_wood, + no_stairs = true, + }, + ["all_faces_tree"] = { + description = S("All-faces Tree"), + tiles = {"default_tree_top.png"}, + groups = {tree = 1,snappy = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2}, + sounds = sound_wood, + furnace_burntime = 30, + }, + ["all_faces_jungle_tree"] = { + description = S("All-faces Jungle Tree"), + tiles = {"default_jungletree_top.png"}, + groups = {tree = 1,snappy = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2}, + sounds = sound_wood, + furnace_burntime = 30, + }, + ["glow_glass"] = { + description = S("Glow Glass"), + drawtype = "glasslike_framed", + paramtype = "light", + sunlight_propagates = true, + light_source = 11, + groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, + sounds = sound_glass, + }, + ["trap_glow_glass"] = { + description = S("Trap Glow Glass"), + drawtype = "glasslike_framed", + paramtype = "light", + sunlight_propagates = true, + light_source = 11, + walkable = false, + groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, + sounds = sound_glass, + no_stairs = true, + }, + ["super_glow_glass"] = { + description = S("Super Glow Glass"), + drawtype = "glasslike_framed", + paramtype = "light", + sunlight_propagates = true, + light_source = 15, + groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, + sounds = sound_glass, + }, + ["trap_super_glow_glass"] = { + description = S("Trap Super Glow Glass"), + drawtype = "glasslike_framed", + paramtype = "light", + sunlight_propagates = true, + light_source = 15, + walkable = false, + groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, + sounds = sound_glass, + no_stairs = true, + }, + ["rope"] = { + description = S("Rope"), + drawtype = "signlike", + inventory_image = "moreblocks_rope.png", + wield_image = "moreblocks_rope.png", + paramtype = "light", + sunlight_propagates = true, + paramtype2 = "wallmounted", + walkable = false, + climbable = true, + selection_box = {type = "wallmounted",}, + groups = {snappy = 3, flammable = 2}, + sounds = sound_leaves, + no_stairs = true, + }, +} + +for name, def in pairs(nodes) do + def.tiles = def.tiles or {"moreblocks_" ..name.. ".png"} + minetest.register_node("moreblocks:" ..name, def) + minetest.register_alias(name, "moreblocks:" ..name) + if not def.no_stairs then + local groups = {} + for k, v in pairs(def.groups) do groups[k] = v end + stairsplus:register_all("moreblocks", name, "moreblocks:" ..name, { + description = def.description, + groups = groups, + tiles = def.tiles, + sunlight_propagates = def.sunlight_propagates, + light_source = def.light_source, + sounds = def.sounds, + }) + end +end + + +-- Items + +minetest.register_craftitem("moreblocks:sweeper", { + description = S("Sweeper"), + inventory_image = "moreblocks_sweeper.png", +}) + +minetest.register_craftitem("moreblocks:jungle_stick", { + description = S("Jungle Stick"), + inventory_image = "moreblocks_junglestick.png", + groups = {stick= 1}, +}) + +minetest.register_craftitem("moreblocks:nothing", { + inventory_image = "invisible.png", + on_use = function() end, +}) + diff --git a/mods/moreblocks/ownership.lua b/mods/moreblocks/ownership.lua new file mode 100644 index 0000000..9cd4cb3 --- /dev/null +++ b/mods/moreblocks/ownership.lua @@ -0,0 +1,35 @@ + +local S = moreblocks.gettext + +function moreblocks.node_is_owned(pos, placer) + local ownername = false + if type(IsPlayerNodeOwner) == "function" then -- node_ownership mod + if HasOwner(pos, placer) then -- returns true if the node is owned + if not IsPlayerNodeOwner(pos, placer:get_player_name()) then + if type(getLastOwner) == "function" then -- ...is an old version + ownername = getLastOwner(pos) + elseif type(GetNodeOwnerName) == "function" then -- ...is a recent version + ownername = GetNodeOwnerName(pos) + else + ownername = S("someone") + end + end + end + + elseif type(isprotect)=="function" then -- glomie's protection mod + if not isprotect(5, pos, placer) then + ownername = S("someone") + end + elseif type(protector)=="table" and type(protector.can_dig)=="function" then -- Zeg9's protection mod + if not protector.can_dig(5, pos, placer) then + ownername = S("someone") + end + end + + if ownername ~= false then + minetest.chat_send_player( placer:get_player_name(), S("Sorry, %s owns that spot."):format(ownername) ) + return true + else + return false + end +end diff --git a/mods/moreblocks/redefinitions.lua b/mods/moreblocks/redefinitions.lua new file mode 100644 index 0000000..d97f7d1 --- /dev/null +++ b/mods/moreblocks/redefinitions.lua @@ -0,0 +1,101 @@ +-- Redefinitions of some default crafting recipes: + +minetest.register_craft({ + output = "default:sign_wall 4", + recipe = { + {"default:wood", "default:wood", "default:wood"}, + {"default:wood", "default:wood", "default:wood"}, + {"", "default:stick", ""}, + } +}) + +minetest.register_craft({ + output = "default:ladder 4", + recipe = { + {"default:stick", "", "default:stick"}, + {"default:stick", "default:stick", "default:stick"}, + {"default:stick", "", "default:stick"}, + } +}) + +minetest.register_craft({ + output = "default:paper 4", + recipe = { + {"default:papyrus", "default:papyrus", "default:papyrus"}, + } +}) + +minetest.register_craft({ + output = "default:rail 16", + recipe = { + {"default:steel_ingot", "", "default:steel_ingot"}, + {"default:steel_ingot", "default:stick", "default:steel_ingot"}, + {"default:steel_ingot", "", "default:steel_ingot"}, + } +}) + +minetest.register_craft({ + type = "toolrepair", + additional_wear = -0.15, -- Tool repair buff (15% bonus instead of 2%). +}) + +-- Redefinitions of some default nodes: + +-- Make glass and obsidian glass framed, like the More Blocks glasses: +minetest.override_item("default:glass", { + drawtype = "glasslike_framed", +}) + +minetest.override_item("default:obsidian_glass", { + drawtype = "glasslike_framed", +}) + +-- Let there be light. This makes some nodes let light pass through: +minetest.override_item("default:ladder", { + paramtype = "light", + sunlight_propagates = true, +}) + +minetest.override_item("default:sapling", { + paramtype = "light", + sunlight_propagates = true, +}) + +minetest.override_item("default:dry_shrub", { + paramtype = "light", + sunlight_propagates = true, +}) + +minetest.override_item("default:papyrus", { + paramtype = "light", + sunlight_propagates = true, +}) + +minetest.override_item("default:fence_wood", { + paramtype = "light", + sunlight_propagates = true, +}) + +minetest.override_item("default:junglegrass", { + paramtype = "light", + sunlight_propagates = true, +}) + +minetest.override_item("default:junglesapling", { + paramtype = "light", + sunlight_propagates = true, +}) + +minetest.override_item("default:grass_1", { + inventory_image = "default_grass_3.png", -- Use a bigger inventory image. + wield_image = "default_grass_3.png", + paramtype = "light", + sunlight_propagates = true, +}) + +for i = 2, 5 do + minetest.override_item("default:grass_" ..i, { + paramtype = "light", + sunlight_propagates = true, + }) +end diff --git a/mods/moreblocks/stairsplus/API.md b/mods/moreblocks/stairsplus/API.md new file mode 100644 index 0000000..a98ec81 --- /dev/null +++ b/mods/moreblocks/stairsplus/API.md @@ -0,0 +1,25 @@ +API documentation for Stairs+ +================================ +- - - - - - - - - - - - - - - - + +* `stairsplus:register_all(modname, subname, recipeitem, fields)` + Registers a stair, slab, panel, microblock, and any other types of + nodes to be added in the future. + This also registers the node with the circular saw. + Example: + ```lua + stairsplus:register_all("moreblocks", "wood", "defaut:wood", { + description = "Wooden", + tiles = {"default_wood.png"}, + groups = {oddly_breakabe_by_hand=1}, + sounds = default.node_sound_wood_defaults(), + }) + ``` +The following register only a particular type of microblock. +You will probably never want to use them directly: + +* `stairsplus:register_stair(modname, subname, recipeitem, fields)` +* `stairsplus:register_slab(modname, subname, recipeitem, fields)` +* `stairsplus:register_panel(modname, subname, recipeitem, fields)` +* `stairsplus:register_micro(modname, subname, recipeitem, fields)` + diff --git a/mods/moreblocks/stairsplus/aliases.lua b/mods/moreblocks/stairsplus/aliases.lua new file mode 100644 index 0000000..c92df48 --- /dev/null +++ b/mods/moreblocks/stairsplus/aliases.lua @@ -0,0 +1,62 @@ + +local function register_stairsplus_alias(modname, origname, newname) + minetest.register_alias(modname.. ":slab_" ..origname, "moreblocks:slab_" ..newname) + minetest.register_alias(modname.. ":slab_" ..origname.. "_inverted", "moreblocks:slab_" ..newname.. "_inverted") + minetest.register_alias(modname.. ":slab_" ..origname.. "_wall", "moreblocks:slab_" ..newname.. "_wall") + minetest.register_alias(modname.. ":slab_" ..origname.. "_quarter", "moreblocks:slab_" ..newname.. "_quarter") + minetest.register_alias(modname.. ":slab_" ..origname.. "_quarter_inverted", "moreblocks:slab_" ..newname.. "_quarter_inverted") + minetest.register_alias(modname.. ":slab_" ..origname.. "_quarter_wall", "moreblocks:slab_" ..newname.. "_quarter_wall") + minetest.register_alias(modname.. ":slab_" ..origname.. "_three_quarter", "moreblocks:slab_" ..newname.. "_three_quarter") + minetest.register_alias(modname.. ":slab_" ..origname.. "_three_quarter_inverted", "moreblocks:slab_" ..newname.. "_three_quarter_inverted") + minetest.register_alias(modname.. ":slab_" ..origname.. "_three_quarter_wall", "moreblocks:slab_" ..newname.. "_three_quarter_wall") + minetest.register_alias(modname.. ":stair_" ..origname, "moreblocks:stair_" ..newname) + minetest.register_alias(modname.. ":stair_" ..origname.. "_inverted", "moreblocks:stair_" ..newname.. "_inverted") + minetest.register_alias(modname.. ":stair_" ..origname.. "_wall", "moreblocks:stair_" ..newname.. "_wall") + minetest.register_alias(modname.. ":stair_" ..origname.. "_wall_half", "moreblocks:stair_" ..newname.. "_wall_half") + minetest.register_alias(modname.. ":stair_" ..origname.. "_wall_half_inverted", "moreblocks:stair_" ..newname.. "_wall_half_inverted") + minetest.register_alias(modname.. ":stair_" ..origname.. "_half", "moreblocks:stair_" ..newname.. "_half") + minetest.register_alias(modname.. ":stair_" ..origname.. "_half_inverted", "moreblocks:stair_" ..newname.. "_half_inverted") + minetest.register_alias(modname.. ":stair_" ..origname.. "_right_half", "moreblocks:stair_" ..newname.. "_right_half") + minetest.register_alias(modname.. ":stair_" ..origname.. "_right_half_inverted", "moreblocks:stair_" ..newname.. "_right_half_inverted") + minetest.register_alias(modname.. ":stair_" ..origname.. "_wall_half", "moreblocks:stair_" ..newname.. "_wall_half") + minetest.register_alias(modname.. ":stair_" ..origname.. "_wall_half_inverted", "moreblocks:stair_" ..newname.. "_wall_half_inverted") + minetest.register_alias(modname.. ":stair_" ..origname.. "_inner", "moreblocks:stair_" ..newname.. "_inner") + minetest.register_alias(modname.. ":stair_" ..origname.. "_inner_inverted", "moreblocks:stair_" ..newname.. "_inner_inverted") + minetest.register_alias(modname.. ":stair_" ..origname.. "_outer", "moreblocks:stair_" ..newname.. "_outer") + minetest.register_alias(modname.. ":stair_" ..origname.. "_outer_inverted", "moreblocks:stair_" ..newname.. "_outer_inverted") + minetest.register_alias(modname.. ":panel_" ..origname.. "_bottom", "moreblocks:panel_" ..newname.. "_bottom") + minetest.register_alias(modname.. ":panel_" ..origname.. "_top", "moreblocks:panel_" ..newname.. "_top") + minetest.register_alias(modname.. ":panel_" ..origname.. "_vertical", "moreblocks:panel_" ..newname.. "_vertical") + minetest.register_alias(modname.. ":micro_" ..origname.. "_bottom", "moreblocks:micro_" ..newname.. "_bottom") + minetest.register_alias(modname.. ":micro_" ..origname.. "_top", "moreblocks:micro_" ..newname.. "_top") +end + +register_stairsplus_alias("stairsplus", "stone", "stone") +register_stairsplus_alias("stairsplus", "wood", "wood") +register_stairsplus_alias("stairsplus", "cobble", "cobble") +register_stairsplus_alias("stairsplus", "brick", "brick") +register_stairsplus_alias("stairsplus", "sandstone", "sandstone") +register_stairsplus_alias("stairsplus", "glass", "glass") +register_stairsplus_alias("stairsplus", "tree", "tree") +register_stairsplus_alias("stairsplus", "jungletree", "jungletree") +register_stairsplus_alias("stairsplus", "desert_stone", "desert_stone") +register_stairsplus_alias("stairsplus", "steelblock", "steelblock") +register_stairsplus_alias("stairsplus", "mossycobble", "mossycobble") + +register_stairsplus_alias("moreblocks", "coalstone", "coal_stone") +register_stairsplus_alias("moreblocks", "junglewood", "jungle_wood") +register_stairsplus_alias("moreblocks", "circlestonebrick", "circle_stone_bricks") +register_stairsplus_alias("moreblocks", "ironstone", "iron_stone") +register_stairsplus_alias("moreblocks", "coalglass", "coal_glass") +register_stairsplus_alias("moreblocks", "ironglass", "iron_glass") +register_stairsplus_alias("moreblocks", "glowglass", "glow_glass") +register_stairsplus_alias("moreblocks", "superglowglass", "super_glow_glass") +register_stairsplus_alias("moreblocks", "coalchecker", "coal_checker") +register_stairsplus_alias("moreblocks", "ironchecker", "iron_checker") +register_stairsplus_alias("moreblocks", "cactuschecker", "cactus_checker") +register_stairsplus_alias("moreblocks", "ironstonebrick", "iron_stone_bricks") +register_stairsplus_alias("moreblocks", "stonesquare", "stone_tile") +register_stairsplus_alias("moreblocks", "splitstonesquare", "split_stone_tile") +register_stairsplus_alias("moreblocks", "woodtile", "wood_tile") +register_stairsplus_alias("moreblocks", "woodtile_centered", "wood_tile_centered") +register_stairsplus_alias("moreblocks", "woodtile_full", "wood_tile_full") diff --git a/mods/moreblocks/stairsplus/conversion.lua b/mods/moreblocks/stairsplus/conversion.lua new file mode 100644 index 0000000..fda30c7 --- /dev/null +++ b/mods/moreblocks/stairsplus/conversion.lua @@ -0,0 +1,132 @@ +-- Function to convert all stairs/slabs/etc nodes from +-- inverted, wall, etc to regular + 6d facedir + +local dirs1 = {21, 20, 23, 22, 21} +local dirs2 = {15, 8, 17, 6, 15} +local dirs3 = {14, 11, 16, 5, 14} + +function stairsplus:register_6dfacedir_conversion(modname, material) + --print("Register stairsplus 6d facedir conversion") + --print('ABM for '..modname..' "'..material..'"') + + local objects_list1 = { + modname.. ":slab_" ..material.. "_inverted", + modname.. ":slab_" ..material.. "_quarter_inverted", + modname.. ":slab_" ..material.. "_three_quarter_inverted", + modname.. ":stair_" ..material.. "_inverted", + modname.. ":stair_" ..material.. "_wall", + modname.. ":stair_" ..material.. "_wall_half", + modname.. ":stair_" ..material.. "_wall_half_inverted", + modname.. ":stair_" ..material.. "_half_inverted", + modname.. ":stair_" ..material.. "_right_half_inverted", + modname.. ":panel_" ..material.. "_vertical", + modname.. ":panel_" ..material.. "_top", + } + + local objects_list2 = { + modname.. ":slab_" ..material.. "_wall", + modname.. ":slab_" ..material.. "_quarter_wall", + modname.. ":slab_" ..material.. "_three_quarter_wall", + modname.. ":stair_" ..material.. "_inner_inverted", + modname.. ":stair_" ..material.. "_outer_inverted", + modname.. ":micro_" ..material.. "_top" + } + + for _, object in pairs(objects_list1) do + local flip_upside_down = false + local flip_to_wall = false + + local dest_object = object + + if string.find(dest_object, "_inverted") then + flip_upside_down = true + dest_object = string.gsub(dest_object, "_inverted", "") + end + + if string.find(object, "_top") then + flip_upside_down = true + dest_object = string.gsub(dest_object, "_top", "") + end + + if string.find(dest_object, "_wall") then + flip_to_wall = true + dest_object = string.gsub(dest_object, "_wall", "") + end + + if string.find(dest_object, "_vertical") then + flip_to_wall = true + dest_object = string.gsub(dest_object, "_vertical", "") + end + + if string.find(dest_object, "_half") and not string.find(dest_object, "_right_half") then + dest_object = string.gsub(dest_object, "_half", "_right_half") + elseif string.find(dest_object, "_right_half") then + dest_object = string.gsub(dest_object, "_right_half", "_half") + end + + --print(" +---> convert " ..object) + --print(" | to " ..dest_object) + + minetest.register_abm({ + nodenames = {object}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local fdir = node.param2 or 0 + + if flip_upside_down and not flip_to_wall then + nfdir = dirs1[fdir + 2] + elseif flip_to_wall and not flip_upside_down then + nfdir = dirs2[fdir + 1] + elseif flip_to_wall and flip_upside_down then + nfdir = dirs3[fdir + 2] + end + minetest.set_node(pos, {name = dest_object, param2 = nfdir}) + end + }) + end + + for _, object in pairs(objects_list2) do + local flip_upside_down = false + local flip_to_wall = false + + local dest_object = object + + if string.find(dest_object, "_inverted") then + flip_upside_down = true + dest_object = string.gsub(dest_object, "_inverted", "") + end + + if string.find(dest_object, "_top") then + flip_upside_down = true + dest_object = string.gsub(dest_object, "_top", "") + end + + if string.find(dest_object, "_wall") then + flip_to_wall = true + dest_object = string.gsub(dest_object, "_wall", "") + end + + --print(" +---> convert " ..object) + --print(" | to " ..dest_object) + + minetest.register_abm({ + nodenames = {object}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local fdir = node.param2 + local nfdir = 20 + + if flip_upside_down and not flip_to_wall then + nfdir = dirs1[fdir + 1] + elseif flip_to_wall and not flip_upside_down then + nfdir = dirs2[fdir + 2] + + end + minetest.set_node(pos, {name = dest_object, param2 = nfdir}) + end + }) + end +end + diff --git a/mods/moreblocks/stairsplus/init.lua b/mods/moreblocks/stairsplus/init.lua new file mode 100644 index 0000000..9717039 --- /dev/null +++ b/mods/moreblocks/stairsplus/init.lua @@ -0,0 +1,45 @@ +-- Nodes will be called :{stair,slab,panel,micro}_ + +local modpath = minetest.get_modpath("moreblocks").. "/stairsplus" + +stairsplus = {} +stairsplus.expect_infinite_stacks = false + +if not minetest.get_modpath("unified_inventory") +and minetest.setting_getbool("creative_mode") then + stairsplus.expect_infinite_stacks = true +end + +function stairsplus:register_all(modname, subname, recipeitem, fields) + fields = fields or {} + fields.groups = fields.groups or {} + if not moreblocks.config.stairsplus_in_creative_inventory then + fields.groups.not_in_creative_inventory = 1 + end + self:register_stair(modname, subname, recipeitem, fields) + self:register_slab (modname, subname, recipeitem, fields) + self:register_slope(modname, subname, recipeitem, fields) + self:register_panel(modname, subname, recipeitem, fields) + self:register_micro(modname, subname, recipeitem, fields) + -- self:register_6dfacedir_conversion(modname, subname) -- Not needed as of Q3 2013, uncomment to fix old maps. + circular_saw.known_nodes[recipeitem] = {modname, subname} +end + +function register_stair_slab_panel_micro(modname, subname, recipeitem, groups, images, description, drop, light) + stairsplus:register_all(modname, subname, recipeitem, { + groups = groups, + tiles = images, + description = description, + drop = drop, + light_source = light + }) +end + +-- dofile(modpath.. "/aliases.lua") -- Not needed as of Q2 2013, uncomment to fix old maps. +-- dofile(modpath.. "/conversion.lua") -- Not needed as of Q2 2013, uncomment to fix old maps. +dofile(modpath .. "/stairs.lua") +dofile(modpath .. "/slabs.lua") +dofile(modpath .. "/slopes.lua") +dofile(modpath .. "/panels.lua") +dofile(modpath .. "/microblocks.lua") +dofile(modpath .. "/registrations.lua") diff --git a/mods/moreblocks/stairsplus/microblocks.lua b/mods/moreblocks/stairsplus/microblocks.lua new file mode 100644 index 0000000..aac69ee --- /dev/null +++ b/mods/moreblocks/stairsplus/microblocks.lua @@ -0,0 +1,122 @@ +local S -- Load translation library if intllib is installed: +if intllib then + S = intllib.Getter(minetest.get_current_modname()) +else + S = function(s) return s end +end + +-- Node will be called :micro_ + +function register_micro(modname, subname, recipeitem, groups, images, description, drop, light) + return stairsplus:register_micro(modname, subname, recipeitem, { + groups = groups, + tiles = images, + description = description, + drop = drop, + light_source = light, + sounds = default.node_sound_stone_defaults(), + }) +end + +function stairsplus:register_micro(modname, subname, recipeitem, fields) + local defs = { + [""] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0, 0, 0.5}, + }, + }, + ["_1"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0, -0.4375, 0.5}, + }, + }, + ["_2"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0, -0.375, 0.5}, + }, + }, + ["_4"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0, -0.25, 0.5}, + }, + }, + ["_12"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0, 0.25, 0.5}, + }, + }, + ["_14"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0, 0.375, 0.5}, + }, + }, + ["_15"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0, 0.4375, 0.5}, + }, + } + } + + local desc = S("%s Microblock"):format(fields.description) + for alternate, def in pairs(defs) do + def.drawtype = "nodebox" + def.paramtype = "light" + def.paramtype2 = "facedir" + def.on_place = minetest.rotate_node + for k, v in pairs(fields) do + def[k] = v + end + def.description = desc + if fields.drop then + def.drop = modname.. ":micro_" ..fields.drop..alternate + end + minetest.register_node(":" ..modname.. ":micro_" ..subname..alternate, def) + end + + minetest.register_alias(modname.. ":micro_" ..subname.. "_bottom", modname.. ":micro_" ..subname) + + -- Some saw-less recipes: + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":micro_" .. subname .. " 7", + recipe = {modname .. ":stair_" .. subname .. "_inner"}, + }) + + minetest.register_craft({ + output = modname .. ":micro_" .. subname .. " 6", + type = "shapeless", + recipe = {modname .. ":stair_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":micro_" .. subname .. " 5", + recipe = {modname .. ":stair_" .. subname .. "_outer"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":micro_" .. subname .. " 4", + recipe = {modname .. ":slab_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":micro_" .. subname .. " 2", + recipe = {modname .. ":panel_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = recipeitem, + recipe = {modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname}, + }) +end diff --git a/mods/moreblocks/stairsplus/panels.lua b/mods/moreblocks/stairsplus/panels.lua new file mode 100644 index 0000000..f93f1cf --- /dev/null +++ b/mods/moreblocks/stairsplus/panels.lua @@ -0,0 +1,113 @@ +local S -- Load translation library if intllib is installed: +if intllib then + S = intllib.Getter(minetest.get_current_modname()) +else + S = function(s) return s end +end + +-- Node will be called :panel_ + +function register_panel(modname, subname, recipeitem, groups, images, description, drop, light) + return stairsplus:register_panel(modname, subname, recipeitem, { + groups = groups, + tiles = images, + description = description, + drop = drop, + light_source = light, + sounds = default.node_sound_stone_defaults(), + }) +end + +function stairsplus:register_panel(modname, subname, recipeitem, fields) + local defs = { + [""] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0.5, 0, 0.5}, + }, + }, + ["_1"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0.5, -0.4375, 0.5}, + }, + }, + ["_2"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0.5, -0.375, 0.5}, + }, + }, + ["_4"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0.5, -0.25, 0.5}, + }, + }, + ["_12"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0.5, 0.25, 0.5}, + }, + }, + ["_14"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0.5, 0.375, 0.5}, + }, + }, + ["_15"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0.5, 0.4375, 0.5}, + }, + } + } + + local desc = S("%s Panel"):format(fields.description) + for alternate, def in pairs(defs) do + def.drawtype = "nodebox" + def.paramtype = "light" + def.paramtype2 = "facedir" + def.on_place = minetest.rotate_node + for k, v in pairs(fields) do + def[k] = v + end + def.description = desc + if fields.drop then + def.drop = modname.. ":panel_" ..fields.drop..alternate + end + minetest.register_node(":" ..modname.. ":panel_" ..subname..alternate, def) + end + minetest.register_alias(modname.. ":panel_" ..subname.. "_bottom", modname.. ":panel_" ..subname) + + -- Some saw-less recipes: + + minetest.register_craft({ + output = modname .. ":panel_" .. subname .. " 12", + recipe = { + {recipeitem, ""}, + {recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + output = modname .. ":panel_" .. subname .. " 12", + recipe = { + {"", recipeitem}, + {recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":panel_" .. subname, + recipe = {modname .. ":micro_" .. subname, modname .. ":micro_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = recipeitem, + recipe = {modname .. ":panel_" .. subname, modname .. ":panel_" .. subname, modname .. ":panel_" .. subname, modname .. ":panel_" .. subname}, + }) +end diff --git a/mods/moreblocks/stairsplus/registrations.lua b/mods/moreblocks/stairsplus/registrations.lua new file mode 100644 index 0000000..69f4e2f --- /dev/null +++ b/mods/moreblocks/stairsplus/registrations.lua @@ -0,0 +1,49 @@ +local default_nodes = { -- Default stairs/slabs/panels/microblocks: + "stone", + "cobble", + "mossycobble", + "brick", + "sandstone", + "steelblock", + "goldblock", + "copperblock", + "bronzeblock", + "diamondblock", + "desert_stone", + "desert_cobble", + "glass", + "tree", + "wood", + "jungletree", + "junglewood", + "obsidian", + "obsidian_glass", + "stonebrick", + "desert_stonebrick", + "sandstonebrick", +} + +for _, name in pairs(default_nodes) do + local nodename = "default:" .. name + local ndef = minetest.registered_nodes[nodename] + local groups = {} + for k, v in pairs(ndef.groups) + -- Ignore wood and stone groups to not make them usable in crafting: + do if k ~= "wood" and k ~= "stone" then + groups[k] = v + end + end + local drop + if type(ndef.drop) == "string" then + drop = ndef.drop:sub(9) + end + stairsplus:register_all("moreblocks", name, nodename, { + description = ndef.description, + drop = drop, + groups = groups, + sounds = ndef.sounds, + tiles = ndef.tiles, + sunlight_propagates = true, + }) +end + diff --git a/mods/moreblocks/stairsplus/slabs.lua b/mods/moreblocks/stairsplus/slabs.lua new file mode 100644 index 0000000..034df52 --- /dev/null +++ b/mods/moreblocks/stairsplus/slabs.lua @@ -0,0 +1,120 @@ +local S -- Load translation library if intllib is installed: +if intllib then + S = intllib.Getter(minetest.get_current_modname()) +else + S = function(s) return s end +end + +-- Node will be called :slab_ + +function register_slab(modname, subname, recipeitem, groups, images, description, drop, light) + return stairsplus:register_slab(modname, subname, recipeitem, { + groups = groups, + tiles = images, + description = description, + drop = drop, + light_source = light, + sounds = default.node_sound_stone_defaults(), + }) +end + +function stairsplus:register_slab(modname, subname, recipeitem, fields) + local defs = { + [""] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + }, + }, + ["_quarter"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5}, + }, + }, + ["_three_quarter"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0.25, 0.5}, + }, + }, + ["_1"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5}, + }, + }, + ["_2"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5}, + }, + }, + ["_14"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0.375, 0.5}, + }, + }, + ["_15"] = { + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0.4375, 0.5}, + }, + }, + } + local desc = S("%s Slab"):format(fields.description) + for alternate, def in pairs(defs) do + def.drawtype = "nodebox" + def.paramtype = "light" + def.paramtype2 = "facedir" + def.on_place = minetest.rotate_node + for k, v in pairs(fields) do + def[k] = v + end + def.description = desc + if fields.drop then + def.drop = modname.. ":slab_" .. fields.drop .. alternate + end + minetest.register_node(":" .. modname .. ":slab_" .. subname .. alternate, def) + end + minetest.register_alias("stairs:slab_" .. subname, modname .. ":slab_" .. subname) + + -- Some saw-less recipes: + + minetest.register_craft({ + output = modname .. ":slab_" .. subname .. " 6", + recipe = {{recipeitem, recipeitem, recipeitem}}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":slab_" .. subname, + recipe = {modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname}, + }) + + minetest.register_craft({ + output = modname .. ":slab_" .. subname, + recipe = {{modname .. ":panel_" .. subname, modname .. ":panel_" .. subname}}, + }) + + minetest.register_craft({ + output = modname .. ":slab_" .. subname, + recipe = { + {modname .. ":panel_" .. subname}, + {modname .. ":panel_" .. subname}, + }, + }) + + minetest.register_craft({ + type = "shapeless", + output = recipeitem, + recipe = {modname .. ":slab_" .. subname, modname .. ":slab_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":slab_" .. subname .. " 3", + recipe = {modname .. ":stair_" .. subname, modname .. ":stair_" .. subname}, + }) +end diff --git a/mods/moreblocks/stairsplus/slopes.lua b/mods/moreblocks/stairsplus/slopes.lua new file mode 100644 index 0000000..4ba7a2d --- /dev/null +++ b/mods/moreblocks/stairsplus/slopes.lua @@ -0,0 +1,457 @@ +local S -- Load translation library if intllib is installed: +if intllib then + S = intllib.Getter(minetest.get_current_modname()) +else + S = function(s) return s end +end + +local box_slope = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5}, + {-0.5, -0.25, -0.25, 0.5, 0, 0.5}, + {-0.5, 0, 0, 0.5, 0.25, 0.5}, + {-0.5, 0.25, 0.25, 0.5, 0.5, 0.5} + } +} + +local box_slope_half = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5}, + {-0.5, -0.375, -0.25, 0.5, -0.25, 0.5}, + {-0.5, -0.25, 0, 0.5, -0.125, 0.5}, + {-0.5, -0.125, 0.25, 0.5, 0, 0.5}, + } +} + +local box_slope_half_raised = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0.125, 0.5}, + {-0.5, 0.125, -0.25, 0.5, 0.25, 0.5}, + {-0.5, 0.25, 0, 0.5, 0.375, 0.5}, + {-0.5, 0.375, 0.25, 0.5, 0.5, 0.5}, + } +} + +--============================================================== + +local box_slope_inner = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5}, + {-0.5, -0.5, -0.25, 0.5, 0, 0.5}, + {-0.5, -0.5, -0.5, 0.25, 0, 0.5}, + {-0.5, 0, -0.5, 0, 0.25, 0.5}, + {-0.5, 0, 0, 0.5, 0.25, 0.5}, + {-0.5, 0.25, 0.25, 0.5, 0.5, 0.5}, + {-0.5, 0.25, -0.5, -0.25, 0.5, 0.5}, + } +} + +local box_slope_inner_half = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5}, + {-0.5, -0.375, -0.25, 0.5, -0.25, 0.5}, + {-0.5, -0.375, -0.5, 0.25, -0.25, 0.5}, + {-0.5, -0.25, -0.5, 0, -0.125, 0.5}, + {-0.5, -0.25, 0, 0.5, -0.125, 0.5}, + {-0.5, -0.125, 0.25, 0.5, 0, 0.5}, + {-0.5, -0.125, -0.5, -0.25, 0, 0.5}, + } +} + +local box_slope_inner_half_raised = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0.125, 0.5}, + {-0.5, 0.125, -0.25, 0.5, 0.25, 0.5}, + {-0.5, 0.125, -0.5, 0.25, 0.25, 0.5}, + {-0.5, 0.25, -0.5, 0, 0.375, 0.5}, + {-0.5, 0.25, 0, 0.5, 0.375, 0.5}, + {-0.5, 0.375, 0.25, 0.5, 0.5, 0.5}, + {-0.5, 0.375, -0.5, -0.25, 0.5, 0.5}, + } +} + +--============================================================== + +local box_slope_outer = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5}, + {-0.5, -0.25, -0.25, 0.25, 0, 0.5}, + {-0.5, 0, 0, 0, 0.25, 0.5}, + {-0.5, 0.25, 0.25, -0.25, 0.5, 0.5} + } +} + +local box_slope_outer_half = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5}, + {-0.5, -0.375, -0.25, 0.25, -0.25, 0.5}, + {-0.5, -0.25, 0, 0, -0.125, 0.5}, + {-0.5, -0.125, 0.25, -0.25, 0, 0.5} + } +} + +local box_slope_outer_half_raised = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0.125, 0.5}, + {-0.5, 0.125, -0.25, 0.25, 0.25, 0.5}, + {-0.5, 0.25, 0, 0, 0.375, 0.5}, + {-0.5, 0.375, 0.25, -0.25, 0.5, 0.5} + } +} + +-- Node will be called :slope_ + +function register_slope(modname, subname, recipeitem, groups, images, description, drop, light) + return stairsplus:register_slope(modname, subname, recipeitem, { + groups = groups, + tiles = images, + description = description, + drop = drop, + light_source = light, + sounds = default.node_sound_stone_defaults(), + }) +end + +function stairsplus:register_slope(modname, subname, recipeitem, fields) + local defs = { + [""] = { + mesh = "moreblocks_slope.obj", + collision_box = box_slope, + selection_box = box_slope, + + }, + ["_half"] = { + mesh = "moreblocks_slope_half.obj", + collision_box = box_slope_half, + selection_box = box_slope_half, + }, + ["_half_raised"] = { + mesh = "moreblocks_slope_half_raised.obj", + collision_box = box_slope_half_raised, + selection_box = box_slope_half_raised, + }, + +--============================================================== + + ["_inner"] = { + mesh = "moreblocks_slope_inner.obj", + collision_box = box_slope_inner, + selection_box = box_slope_inner, + }, + ["_inner_half"] = { + mesh = "moreblocks_slope_inner_half.obj", + collision_box = box_slope_inner_half, + selection_box = box_slope_inner_half, + }, + ["_inner_half_raised"] = { + mesh = "moreblocks_slope_inner_half_raised.obj", + collision_box = box_slope_inner_half_raised, + selection_box = box_slope_inner_half_raised, + }, + +--============================================================== + + ["_outer"] = { + mesh = "moreblocks_slope_outer.obj", + collision_box = box_slope_outer, + selection_box = box_slope_outer, + }, + ["_outer_half"] = { + mesh = "moreblocks_slope_outer_half.obj", + collision_box = box_slope_outer_half, + selection_box = box_slope_outer_half, + }, + ["_outer_half_raised"] = { + mesh = "moreblocks_slope_outer_half_raised.obj", + collision_box = box_slope_outer_half_raised, + selection_box = box_slope_outer_half_raised, + }, + +--============================================================== + + ["_outer_cut"] = { + mesh = "moreblocks_slope_outer_cut.obj", + collision_box = box_slope_outer, + selection_box = box_slope_outer, + }, + ["_outer_cut_half"] = { + mesh = "moreblocks_slope_outer_cut_half.obj", + collision_box = box_slope_outer_half, + selection_box = box_slope_outer_half, + }, + ["_outer_cut_half_raised"] = { + mesh = "moreblocks_slope_outer_cut_half_raised.obj", + collision_box = box_slope_outer_half_raised, + selection_box = box_slope_outer_half_raised, + }, + } + + local desc = S("%s Slope"):format(fields.description) + for alternate, def in pairs(defs) do + def.drawtype = "mesh" + def.paramtype = "light" + def.paramtype2 = "facedir" + def.on_place = minetest.rotate_node + for k, v in pairs(fields) do + def[k] = v + end + def.description = desc + if fields.drop then + def.drop = modname.. ":slope_" ..fields.drop..alternate + end + minetest.register_node(":" ..modname.. ":slope_" ..subname..alternate, def) + end + + -- Some saw-less recipes: + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. " 7", + recipe = { + {modname .. ":panel_" .. subname, "", ""}, + {recipeitem, modname .. ":panel_" .. subname, ""}, + {recipeitem, recipeitem, modname .. ":panel_" .. subname}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. " 7", + recipe = { + {"", "", modname .. ":panel_" .. subname}, + {"", modname .. ":panel_" .. subname, recipeitem}, + {modname .. ":panel_" .. subname, recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_half 10", + recipe = { + {modname .. ":panel_" .. subname, "", ""}, + {recipeitem, recipeitem, modname .. ":panel_" .. subname}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_half 10", + recipe = { + {"", "", modname .. ":panel_" .. subname}, + {modname .. ":panel_" .. subname, recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_half_raised 7", + recipe = { + {modname .. ":panel_" .. subname, "", ""}, + {recipeitem, recipeitem, modname .. ":panel_" .. subname}, + {recipeitem, recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_half_raised 7", + recipe = { + {"", "", modname .. ":panel_" .. subname}, + {modname .. ":panel_" .. subname, recipeitem, recipeitem}, + {recipeitem, recipeitem, recipeitem}, + }, + }) + +--===================================================== Inner == + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_inner 7", + recipe = { + {modname .. ":stair_" .. subname .. "_half", "", ""}, + {recipeitem, modname .. ":stair_" .. subname .. "_half", ""}, + {recipeitem, recipeitem, modname .. ":stair_" .. subname .. "_half"}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_inner 7", + recipe = { + {"", "", modname .. ":stair_" .. subname .. "_half"}, + {"", modname .. ":stair_" .. subname .. "_half", recipeitem}, + {modname .. ":stair_" .. subname .. "_half", recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_inner_half 10", + recipe = { + {modname .. ":stair_" .. subname .. "_half", "", ""}, + {recipeitem, recipeitem, modname .. ":stair_" .. subname .. "_half"}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_inner_half 10", + recipe = { + {"", "", modname .. ":stair_" .. subname .. "_half"}, + {modname .. ":stair_" .. subname .. "_half", recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_inner_half_raised 7", + recipe = { + {modname .. ":stair_" .. subname .. "_half", "", ""}, + {recipeitem, recipeitem, modname .. ":stair_" .. subname .. "_half"}, + {recipeitem, recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_inner_half_raised 7", + recipe = { + {"", "", modname .. ":stair_" .. subname .. "_half"}, + {modname .. ":stair_" .. subname .. "_half", recipeitem, recipeitem}, + {recipeitem, recipeitem, recipeitem}, + }, + }) + +--===================================================== Outer == + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_outer 7", + recipe = { + {modname .. ":micro_" .. subname, "", ""}, + {recipeitem, modname .. ":micro_" .. subname, ""}, + {recipeitem, recipeitem, modname .. ":micro_" .. subname}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_outer 7", + recipe = { + {"", "", modname .. ":micro_" .. subname}, + {"", modname .. ":micro_" .. subname, recipeitem}, + {modname .. ":micro_" .. subname, recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_outer_half 10", + recipe = { + {modname .. ":micro_" .. subname, "", ""}, + {recipeitem, recipeitem, modname .. ":micro_" .. subname}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_outer_half 10", + recipe = { + {"", "", modname .. ":micro_" .. subname}, + {modname .. ":micro_" .. subname, recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_outer_half_raised 7", + recipe = { + {modname .. ":micro_" .. subname, "", ""}, + {recipeitem, recipeitem, modname .. ":micro_" .. subname}, + {recipeitem, recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + output = modname .. ":slope_" .. subname .. "_outer_half_raised 7", + recipe = { + {"", "", modname .. ":micro_" .. subname}, + {modname .. ":micro_" .. subname, recipeitem, recipeitem}, + {recipeitem, recipeitem, recipeitem}, + }, + }) + +--================================================= Shapeless == + + minetest.register_craft({ + type = "shapeless", + output = recipeitem, + recipe = {modname .. ":slope_" .. subname, modname .. ":slope_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = recipeitem, + recipe = {modname .. ":slope_" .. subname .. "_outer_cut", modname .. ":slope_" .. subname .. "_outer_cut"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = recipeitem, + recipe = {modname .. ":slope_" .. subname .. "_half", modname .. ":slope_" .. subname .. "_half_raised"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = recipeitem, + recipe = {modname .. ":slope_" .. subname .. "_half", modname .. ":slope_" .. subname .. "_half", + modname .. ":slope_" .. subname .. "_half", modname .. ":slope_" .. subname .. "_half"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":slab_" .. subname, + recipe = {modname .. ":slope_" .. subname .. "_half", modname .. ":slope_" .. subname .. "_half"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":slope_" .. subname .. "_half_raised", + recipe = {modname .. ":slope_" .. subname .. "_half", modname .. ":slope_" .. subname .. "_half", + modname .. ":slope_" .. subname .. "_half"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":slope_" .. subname .. "_half_raised", + recipe = {modname .. ":slab_" .. subname, modname .. ":slope_" .. subname .. "_half"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":slope_" .. subname .. "_inner_half_raised", + recipe = {modname .. ":slab_" .. subname, modname .. ":slope_" .. subname .. "_inner_half"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":slope_" .. subname .. "_outer_half_raised", + recipe = {modname .. ":slab_" .. subname, modname .. ":slope_" .. subname .. "_outer_half"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":slope_" .. subname .. "_outer_cut_half_raised", + recipe = {modname .. ":slab_" .. subname, modname .. ":slope_" .. subname .. "_outer_cut_half"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":slope_" .. subname .. "_outer_cut", + recipe = {modname .. ":slope_" .. subname .. "_outer"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":slope_" .. subname .. "_outer_cut_half", + recipe = {modname .. ":slope_" .. subname .. "_outer_half"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":slope_" .. subname .. "_outer_cut_half_raised", + recipe = {modname .. ":slope_" .. subname .. "_outer_half_raised"}, + }) +end diff --git a/mods/moreblocks/stairsplus/stairs.lua b/mods/moreblocks/stairsplus/stairs.lua new file mode 100644 index 0000000..1690d85 --- /dev/null +++ b/mods/moreblocks/stairsplus/stairs.lua @@ -0,0 +1,225 @@ +local S -- Load translation library if intllib is installed: +if intllib then + S = intllib.Getter(minetest.get_current_modname()) +else + S = function(s) return s end +end + +-- Node will be called :stair_ + +function register_stair(modname, subname, recipeitem, groups, images, description, drop, light) + return stairsplus:register_stair(modname, subname, recipeitem, { + groups = groups, + tiles = images, + description = description, + drop = drop, + light_source = light, + sounds = default.node_sound_stone_defaults(), + }) +end + +function stairsplus:register_stair(modname, subname, recipeitem, fields) + local defs = { + [""] = { + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + {-0.5, 0, 0, 0.5, 0.5, 0.5}, + }, + }, + }, + ["_half"] = { + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0, 0, 0.5}, + {-0.5, 0, 0, 0, 0.5, 0.5}, + }, + }, + }, + ["_right_half" ]= { + node_box = { + type = "fixed", + fixed = { + {0, -0.5, -0.5, 0.5, 0, 0.5}, + {0, 0, 0, 0.5, 0.5, 0.5}, + }, + }, + }, + ["_inner"] = { + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + {-0.5, 0, 0, 0.5, 0.5, 0.5}, + {-0.5, 0, -0.5, 0, 0.5, 0}, + }, + }, + }, + ["_outer"] = { + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + {-0.5, 0, 0, 0, 0.5, 0.5}, + }, + }, + }, + ["_alt"] = { + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0}, + {-0.5, 0, 0, 0.5, 0.5, 0.5}, + }, + }, + }, + ["_alt_1"] = { + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.0625, -0.5, 0.5, 0, 0}, + {-0.5, 0.4375, 0, 0.5, 0.5, 0.5}, + }, + }, + }, + ["_alt_2"] = { + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.125, -0.5, 0.5, 0, 0}, + {-0.5, 0.375, 0, 0.5, 0.5, 0.5}, + }, + }, + }, + ["_alt_4"] = { + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.25, -0.5, 0.5, 0, 0}, + {-0.5, 0.25, 0, 0.5, 0.5, 0.5}, + }, + }, + }, + } + + local desc = S("%s Stairs"):format(fields.description) + for alternate, def in pairs(defs) do + def.drawtype = "nodebox" + def.paramtype = "light" + def.paramtype2 = "facedir" + def.on_place = minetest.rotate_node + for k, v in pairs(fields) do + def[k] = v + end + def.description = desc + if fields.drop then + def.drop = modname .. ":stair_" .. fields.drop .. alternate + end + minetest.register_node(":" .. modname .. ":stair_" .. subname .. alternate, def) + end + minetest.register_alias("stairs:stair_" .. subname, modname .. ":stair_" .. subname) + + -- Some saw-less recipes: + + minetest.register_craft({ + output = modname .. ":stair_" .. subname .. " 8", + recipe = { + {recipeitem, "", ""}, + {recipeitem, recipeitem, ""}, + {recipeitem, recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + output = modname .. ":stair_" .. subname .. " 8", + recipe = { + {"", "", recipeitem}, + {"", recipeitem, recipeitem}, + {recipeitem, recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":stair_" .. subname, + recipe = {modname .. ":panel_" .. subname, modname .. ":slab_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":stair_" .. subname, + recipe = {modname .. ":panel_" .. subname, modname .. ":panel_" .. subname, modname .. ":panel_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":stair_" .. subname .. "_outer", + recipe = {modname .. ":micro_" .. subname, modname .. ":slab_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":stair_" .. subname .. "_half", + recipe = {modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":stair_" .. subname .. "_half", + recipe = {modname .. ":panel_" .. subname, modname .. ":micro_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":stair_" .. subname .. "_right_half", + recipe = {modname .. ":stair_" .. subname .. "_half"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":stair_" .. subname .. "_half", + recipe = {modname .. ":stair_" .. subname .. "_right_half"}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":stair_" .. subname, + recipe = {modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":stair_" .. subname .. "_inner", + recipe = {modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":stair_" .. subname .. "_outer", + recipe = {modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = modname .. ":stair_" .. subname, + recipe = {modname .. ":panel_" .. subname, modname .. ":panel_" .. subname, modname .. ":panel_" .. subname}, + }) + + minetest.register_craft({ -- See mirrored variation of the recipe below. + output = modname .. ":stair_" .. subname .. "_alt", + recipe = { + {modname .. ":panel_" .. subname, ""}, + {"" , modname .. ":panel_" .. subname}, + }, + }) + + minetest.register_craft({ -- Mirrored variation of the recipe above. + output = modname .. ":stair_" .. subname .. "_alt", + recipe = { + {"" , modname .. ":panel_" .. subname}, + {modname .. ":panel_" .. subname, ""}, + }, + }) +end diff --git a/mods/moreblocks/textures/default_brick.png b/mods/moreblocks/textures/default_brick.png new file mode 100644 index 0000000..9c76033 Binary files /dev/null and b/mods/moreblocks/textures/default_brick.png differ diff --git a/mods/moreblocks/textures/default_fence_overlay.png b/mods/moreblocks/textures/default_fence_overlay.png new file mode 100644 index 0000000..780e736 Binary files /dev/null and b/mods/moreblocks/textures/default_fence_overlay.png differ diff --git a/mods/moreblocks/textures/invisible.png b/mods/moreblocks/textures/invisible.png new file mode 100644 index 0000000..4b5b302 Binary files /dev/null and b/mods/moreblocks/textures/invisible.png differ diff --git a/mods/moreblocks/textures/moreblocks_cactus_brick.png b/mods/moreblocks/textures/moreblocks_cactus_brick.png new file mode 100644 index 0000000..0e8c2c9 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_cactus_brick.png differ diff --git a/mods/moreblocks/textures/moreblocks_cactus_checker.png b/mods/moreblocks/textures/moreblocks_cactus_checker.png new file mode 100644 index 0000000..99c2677 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_cactus_checker.png differ diff --git a/mods/moreblocks/textures/moreblocks_circle_stone_bricks.png b/mods/moreblocks/textures/moreblocks_circle_stone_bricks.png new file mode 100644 index 0000000..4ca0134 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_circle_stone_bricks.png differ diff --git a/mods/moreblocks/textures/moreblocks_circular_saw_bottom.png b/mods/moreblocks/textures/moreblocks_circular_saw_bottom.png new file mode 100644 index 0000000..1522829 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_circular_saw_bottom.png differ diff --git a/mods/moreblocks/textures/moreblocks_circular_saw_side.png b/mods/moreblocks/textures/moreblocks_circular_saw_side.png new file mode 100644 index 0000000..ce9e16f Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_circular_saw_side.png differ diff --git a/mods/moreblocks/textures/moreblocks_circular_saw_top.png b/mods/moreblocks/textures/moreblocks_circular_saw_top.png new file mode 100644 index 0000000..96f3350 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_circular_saw_top.png differ diff --git a/mods/moreblocks/textures/moreblocks_clean_glass.png b/mods/moreblocks/textures/moreblocks_clean_glass.png new file mode 100644 index 0000000..140ee2b Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_clean_glass.png differ diff --git a/mods/moreblocks/textures/moreblocks_coal_checker.png b/mods/moreblocks/textures/moreblocks_coal_checker.png new file mode 100644 index 0000000..3df90c3 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_coal_checker.png differ diff --git a/mods/moreblocks/textures/moreblocks_coal_glass.png b/mods/moreblocks/textures/moreblocks_coal_glass.png new file mode 100644 index 0000000..5cb7227 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_coal_glass.png differ diff --git a/mods/moreblocks/textures/moreblocks_coal_glass_stairsplus.png b/mods/moreblocks/textures/moreblocks_coal_glass_stairsplus.png new file mode 100644 index 0000000..8086a28 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_coal_glass_stairsplus.png differ diff --git a/mods/moreblocks/textures/moreblocks_coal_stone.png b/mods/moreblocks/textures/moreblocks_coal_stone.png new file mode 100644 index 0000000..1e514ed Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_coal_stone.png differ diff --git a/mods/moreblocks/textures/moreblocks_coal_stone_bricks.png b/mods/moreblocks/textures/moreblocks_coal_stone_bricks.png new file mode 100644 index 0000000..366e445 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_coal_stone_bricks.png differ diff --git a/mods/moreblocks/textures/moreblocks_cobble_compressed.png b/mods/moreblocks/textures/moreblocks_cobble_compressed.png new file mode 100644 index 0000000..94d02b5 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_cobble_compressed.png differ diff --git a/mods/moreblocks/textures/moreblocks_empty_bookshelf.png b/mods/moreblocks/textures/moreblocks_empty_bookshelf.png new file mode 100644 index 0000000..b49fd2e Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_empty_bookshelf.png differ diff --git a/mods/moreblocks/textures/moreblocks_fence_jungle_wood.png b/mods/moreblocks/textures/moreblocks_fence_jungle_wood.png new file mode 100644 index 0000000..b59db10 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_fence_jungle_wood.png differ diff --git a/mods/moreblocks/textures/moreblocks_fence_wood.png b/mods/moreblocks/textures/moreblocks_fence_wood.png new file mode 100644 index 0000000..e3510c5 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_fence_wood.png differ diff --git a/mods/moreblocks/textures/moreblocks_glass.png b/mods/moreblocks/textures/moreblocks_glass.png new file mode 100644 index 0000000..912b029 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_glass.png differ diff --git a/mods/moreblocks/textures/moreblocks_glass_stairsplus.png b/mods/moreblocks/textures/moreblocks_glass_stairsplus.png new file mode 100644 index 0000000..b879ec3 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_glass_stairsplus.png differ diff --git a/mods/moreblocks/textures/moreblocks_glow_glass.png b/mods/moreblocks/textures/moreblocks_glow_glass.png new file mode 100644 index 0000000..843bebf Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_glow_glass.png differ diff --git a/mods/moreblocks/textures/moreblocks_glow_glass_stairsplus.png b/mods/moreblocks/textures/moreblocks_glow_glass_stairsplus.png new file mode 100644 index 0000000..cdb8044 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_glow_glass_stairsplus.png differ diff --git a/mods/moreblocks/textures/moreblocks_grey_bricks.png b/mods/moreblocks/textures/moreblocks_grey_bricks.png new file mode 100644 index 0000000..9839ca2 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_grey_bricks.png differ diff --git a/mods/moreblocks/textures/moreblocks_iron_checker.png b/mods/moreblocks/textures/moreblocks_iron_checker.png new file mode 100644 index 0000000..d27f4df Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_iron_checker.png differ diff --git a/mods/moreblocks/textures/moreblocks_iron_glass.png b/mods/moreblocks/textures/moreblocks_iron_glass.png new file mode 100644 index 0000000..51be0d6 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_iron_glass.png differ diff --git a/mods/moreblocks/textures/moreblocks_iron_glass_stairsplus.png b/mods/moreblocks/textures/moreblocks_iron_glass_stairsplus.png new file mode 100644 index 0000000..52e3bf3 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_iron_glass_stairsplus.png differ diff --git a/mods/moreblocks/textures/moreblocks_iron_stone.png b/mods/moreblocks/textures/moreblocks_iron_stone.png new file mode 100644 index 0000000..20c42f3 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_iron_stone.png differ diff --git a/mods/moreblocks/textures/moreblocks_iron_stone_bricks.png b/mods/moreblocks/textures/moreblocks_iron_stone_bricks.png new file mode 100644 index 0000000..1f817f8 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_iron_stone_bricks.png differ diff --git a/mods/moreblocks/textures/moreblocks_junglestick.png b/mods/moreblocks/textures/moreblocks_junglestick.png new file mode 100644 index 0000000..7c6c462 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_junglestick.png differ diff --git a/mods/moreblocks/textures/moreblocks_obsidian_glass_stairsplus.png b/mods/moreblocks/textures/moreblocks_obsidian_glass_stairsplus.png new file mode 100644 index 0000000..3eb22d0 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_obsidian_glass_stairsplus.png differ diff --git a/mods/moreblocks/textures/moreblocks_plankstone.png b/mods/moreblocks/textures/moreblocks_plankstone.png new file mode 100644 index 0000000..b1a65c5 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_plankstone.png differ diff --git a/mods/moreblocks/textures/moreblocks_plankstone_2.png b/mods/moreblocks/textures/moreblocks_plankstone_2.png new file mode 100644 index 0000000..953c2f5 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_plankstone_2.png differ diff --git a/mods/moreblocks/textures/moreblocks_rope.png b/mods/moreblocks/textures/moreblocks_rope.png new file mode 100644 index 0000000..19787fe Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_rope.png differ diff --git a/mods/moreblocks/textures/moreblocks_split_stone_tile.png b/mods/moreblocks/textures/moreblocks_split_stone_tile.png new file mode 100644 index 0000000..d7d69af Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_split_stone_tile.png differ diff --git a/mods/moreblocks/textures/moreblocks_split_stone_tile_alt.png b/mods/moreblocks/textures/moreblocks_split_stone_tile_alt.png new file mode 100644 index 0000000..9d11b4f Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_split_stone_tile_alt.png differ diff --git a/mods/moreblocks/textures/moreblocks_split_stone_tile_top.png b/mods/moreblocks/textures/moreblocks_split_stone_tile_top.png new file mode 100644 index 0000000..3c8eb6d Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_split_stone_tile_top.png differ diff --git a/mods/moreblocks/textures/moreblocks_stone_tile.png b/mods/moreblocks/textures/moreblocks_stone_tile.png new file mode 100644 index 0000000..c2083ea Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_stone_tile.png differ diff --git a/mods/moreblocks/textures/moreblocks_super_glow_glass.png b/mods/moreblocks/textures/moreblocks_super_glow_glass.png new file mode 100644 index 0000000..a9d4c5f Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_super_glow_glass.png differ diff --git a/mods/moreblocks/textures/moreblocks_super_glow_glass_stairsplus.png b/mods/moreblocks/textures/moreblocks_super_glow_glass_stairsplus.png new file mode 100644 index 0000000..9118c78 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_super_glow_glass_stairsplus.png differ diff --git a/mods/moreblocks/textures/moreblocks_sweeper.png b/mods/moreblocks/textures/moreblocks_sweeper.png new file mode 100644 index 0000000..34f1cde Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_sweeper.png differ diff --git a/mods/moreblocks/textures/moreblocks_tar.png b/mods/moreblocks/textures/moreblocks_tar.png new file mode 100644 index 0000000..e1eb427 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_tar.png differ diff --git a/mods/moreblocks/textures/moreblocks_trap_glass.png b/mods/moreblocks/textures/moreblocks_trap_glass.png new file mode 100644 index 0000000..25c3387 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_trap_glass.png differ diff --git a/mods/moreblocks/textures/moreblocks_trap_glow_glass.png b/mods/moreblocks/textures/moreblocks_trap_glow_glass.png new file mode 100644 index 0000000..1096dd7 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_trap_glow_glass.png differ diff --git a/mods/moreblocks/textures/moreblocks_trap_stone.png b/mods/moreblocks/textures/moreblocks_trap_stone.png new file mode 100644 index 0000000..764aa81 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_trap_stone.png differ diff --git a/mods/moreblocks/textures/moreblocks_trap_super_glow_glass.png b/mods/moreblocks/textures/moreblocks_trap_super_glow_glass.png new file mode 100644 index 0000000..fef974b Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_trap_super_glow_glass.png differ diff --git a/mods/moreblocks/textures/moreblocks_tree_stairsplus.png b/mods/moreblocks/textures/moreblocks_tree_stairsplus.png new file mode 100644 index 0000000..60100c9 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_tree_stairsplus.png differ diff --git a/mods/moreblocks/textures/moreblocks_wood_tile.png b/mods/moreblocks/textures/moreblocks_wood_tile.png new file mode 100644 index 0000000..d0faa3d Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_wood_tile.png differ diff --git a/mods/moreblocks/textures/moreblocks_wood_tile_center.png b/mods/moreblocks/textures/moreblocks_wood_tile_center.png new file mode 100644 index 0000000..02b0f84 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_wood_tile_center.png differ diff --git a/mods/moreblocks/textures/moreblocks_wood_tile_full.png b/mods/moreblocks/textures/moreblocks_wood_tile_full.png new file mode 100644 index 0000000..7ec7f05 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_wood_tile_full.png differ diff --git a/mods/moreblocks/textures/moreblocks_wood_tile_up.png b/mods/moreblocks/textures/moreblocks_wood_tile_up.png new file mode 100644 index 0000000..3f6a2f2 Binary files /dev/null and b/mods/moreblocks/textures/moreblocks_wood_tile_up.png differ diff --git a/mods/moreores/LICENSE.txt b/mods/moreores/LICENSE.txt new file mode 100644 index 0000000..2499ee9 --- /dev/null +++ b/mods/moreores/LICENSE.txt @@ -0,0 +1,17 @@ ++---- GNU GPL v3 ----+ + +More Ores -- a Minetest mod that adds ores. +Copyright (C) 2013 Calinou + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . diff --git a/mods/moreores/README.txt b/mods/moreores/README.txt new file mode 100644 index 0000000..4c15581 --- /dev/null +++ b/mods/moreores/README.txt @@ -0,0 +1,22 @@ +Calinou's Minetest Mods +===================== + +Calinou's Mods for Minetest [http://minetest.net], a free and opensource Minecraft-like game. + +This Git repository is mostly made for servers; it allows easy updating. + +To install, just clone this repository somewhere, then copy the "calinou_mods" folder in the "mods/minetest" folder of Minetest's installation folder. + + + +Misc stuff +===================== + +All these mods' source codes, except More Ores are under the zlib/libpng license. More Ores is under the GNU GPLv3; the mods' textures are under the CC BY-SA 3.0 Unported. + +Mods' forum threads: +More Blocks: http://minetest.net/forum/viewtopic.php?id=509 +More Ores: http://minetest.net/forum/viewtopic.php?id=549 +Map Tools: http://minetest.net/forum/viewtopic.php?id=1882 +Doors+: http://minetest.net/forum/viewtopic.php?id=2059 +Stairs+: http://minetest.net/forum/viewtopic.php?id=2092 diff --git a/mods/moreores/_config.txt b/mods/moreores/_config.txt new file mode 100644 index 0000000..68c6658 --- /dev/null +++ b/mods/moreores/_config.txt @@ -0,0 +1,35 @@ +------------------------------------------------------------------------------ +------------------------------ CONFIGURATION --------------------------------- +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-------- Change settings by changing the values after the "=". --------------- +------------------------------------------------------------------------------ + +-- Chunk sizes for ore generation (bigger = ore deposits are more scattered around) +moreores_copper_chunk_size = 8 +moreores_tin_chunk_size = 7 +moreores_silver_chunk_size = 11 +moreores_gold_chunk_size = 14 +moreores_mithril_chunk_size = 11 + +-- Amount of ore per chunk (higher = bigger ore deposits) +moreores_copper_ore_per_chunk = 8 +moreores_tin_ore_per_chunk = 3 +moreores_silver_ore_per_chunk = 4 +moreores_gold_ore_per_chunk = 4 +moreores_mithril_ore_per_chunk = 1 + +-- Minimal depths of ore generation (Y coordinate, 0 being sea level by default) +moreores_copper_min_depth = -31000 +moreores_tin_min_depth = -31000 +moreores_silver_min_depth = -31000 +moreores_gold_min_depth = -31000 +moreores_mithril_min_depth = -31000 + +-- Maximal depths of ore generation (Y coordinate, 0 being sea level by default) +moreores_copper_max_depth = 64 +moreores_tin_max_depth = 8 +moreores_silver_max_depth = -2 +moreores_gold_max_depth = -64 +moreores_mithril_max_depth = -512 diff --git a/mods/moreores/depends.txt b/mods/moreores/depends.txt new file mode 100644 index 0000000..0219052 --- /dev/null +++ b/mods/moreores/depends.txt @@ -0,0 +1,2 @@ +default +mg? diff --git a/mods/moreores/init.lua b/mods/moreores/init.lua new file mode 100644 index 0000000..2eccbf7 --- /dev/null +++ b/mods/moreores/init.lua @@ -0,0 +1,365 @@ +-- Load translation library if intllib is installed + +local S +if (minetest.get_modpath("intllib")) then + dofile(minetest.get_modpath("intllib").."/intllib.lua") + S = intllib.Getter(minetest.get_current_modname()) + else + S = function ( s ) return s end +end + +moreores_modpath = minetest.get_modpath("moreores") +dofile(moreores_modpath .. "/_config.txt") + +--[[ +**** +More Ores +by Calinou +with the help of Nore/Novatux +Licensed under the CC0 +**** +--]] + +-- Utility functions + +local default_stone_sounds = default.node_sound_stone_defaults() + +local function hoe_on_use(itemstack, user, pointed_thing, uses) + local pt = pointed_thing + -- check if pointing at a node + if not pt then + return + end + if pt.type ~= "node" then + return + end + + local under = minetest.get_node(pt.under) + local pos = {x = pt.under.x, y = pt.under.y + 1, z = pt.under.z} + local above = minetest.get_node(pos) + + -- Return if any of the nodes is not registered: + if not minetest.registered_nodes[under.name] then return end + if not minetest.registered_nodes[above.name] then return end + + -- Check if the node above the pointed thing is air: + if above.name ~= "air" then return end + + -- Check if pointing at dirt: + if minetest.get_item_group(under.name, "soil") ~= 1 then return end + + -- Turn the node into soil, wear out item and play sound: + minetest.set_node(pt.under, {name ="farming:soil"}) + minetest.sound_play("default_dig_crumbly", {pos = pt.under, gain = 0.5}) + itemstack:add_wear(65535 / (uses - 1)) + return itemstack +end + +local function get_recipe(c, name) + if name == "sword" then + return {{c}, {c}, {"group:stick"}} + end + if name == "shovel" then + return {{c}, {"group:stick"}, {"group:stick"}} + end + if name == "axe" then + return {{c, c}, {c, "group:stick"}, {"", "group:stick"}} + end + if name == "pick" then + return {{c, c, c}, {"", "group:stick", ""}, {"", "group:stick", ""}} + end + if name == "hoe" then + return {{c, c}, {"", "group:stick"}, {"", "group:stick"}} + end + if name == "block" then + return {{c, c, c}, {c, c, c}, {c, c, c}} + end + if name == "lockedchest" then + return {{"group:wood", "group:wood", "group:wood"}, {"group:wood", c, "group:wood"}, {"group:wood", "group:wood", "group:wood"}} + end +end + +local function add_ore(modname, description, mineral_name, oredef) + local img_base = modname .. "_" .. mineral_name + local toolimg_base = modname .. "_tool_"..mineral_name + local tool_base = modname .. ":" + local tool_post = "_" .. mineral_name + local item_base = tool_base .. mineral_name + local ingot = item_base .. "_ingot" + local lumpitem = item_base .. "_lump" + local ingotcraft = ingot + + if oredef.makes.ore then + minetest.register_node(modname .. ":mineral_"..mineral_name, { + description = S("%s Ore"):format(S(description)), + tiles = {"default_stone.png^"..modname.."_mineral_"..mineral_name..".png"}, + groups = {cracky = 3}, + sounds = default_stone_sounds, + drop = lumpitem + }) + end + + if oredef.makes.block then + local blockitem = item_base .. "_block" + minetest.register_node(blockitem, { + description = S("%s Block"):format(S(description)), + tiles = { img_base .. "_block.png" }, + groups = {snappy = 1,bendy = 2, cracky = 1,melty = 2,level= 2}, + sounds = default_stone_sounds + }) + minetest.register_alias(mineral_name.."_block", blockitem) + if oredef.makes.ingot then + minetest.register_craft( { + output = blockitem, + recipe = get_recipe(ingot, "block") + }) + minetest.register_craft( { + output = ingot .. " 9", + recipe = { + { blockitem } + } + }) + end + end + + if oredef.makes.lump then + minetest.register_craftitem(lumpitem, { + description = S("%s Lump"):format(S(description)), + inventory_image = img_base .. "_lump.png", + }) + minetest.register_alias(mineral_name .. "_lump", lumpitem) + if oredef.makes.ingot then + minetest.register_craft({ + type = "cooking", + output = ingot, + recipe = lumpitem + }) + end + end + + if oredef.makes.ingot then + minetest.register_craftitem(ingot, { + description = S("%s Ingot"):format(S(description)), + inventory_image = img_base .. "_ingot.png", + }) + minetest.register_alias(mineral_name .. "_ingot", ingot) + end + + if oredef.makes.chest then + minetest.register_craft( { + output = "default:chest_locked", + recipe = { + {ingot}, + {"default:chest"} + } + }) + minetest.register_craft( { + output = "default:chest_locked", + recipe = get_recipe(ingot, "lockedchest") + }) + end + + oredef.oredef.ore_type = "scatter" + oredef.oredef.ore = modname .. ":mineral_" .. mineral_name + oredef.oredef.wherein = "default:stone" + + minetest.register_ore(oredef.oredef) + + for toolname, tooldef in pairs(oredef.tools) do + local tdef = { + description = "", + inventory_image = toolimg_base .. toolname .. ".png", + tool_capabilities = { + max_drop_level = 3, + groupcaps = tooldef + } + } + + if toolname == "sword" then + tdef.tool_capabilities.full_punch_interval = oredef.full_punch_interval + tdef.tool_capabilities.damage_groups = oredef.damage_groups + tdef.description = S("%s Sword"):format(S(description)) + end + + if toolname == "pick" then + tdef.tool_capabilities.full_punch_interval = oredef.full_punch_interval + tdef.tool_capabilities.damage_groups = oredef.damage_groups + tdef.description = S("%s Pickaxe"):format(S(description)) + end + + if toolname == "axe" then + tdef.tool_capabilities.full_punch_interval = oredef.full_punch_interval + tdef.tool_capabilities.damage_groups = oredef.damage_groups + tdef.description = S("%s Axe"):format(S(description)) + end + + if toolname == "shovel" then + tdef.full_punch_interval = oredef.full_punch_interval + tdef.tool_capabilities.damage_groups = oredef.damage_groups + tdef.description = S("%s Shovel"):format(S(description)) + end + + if toolname == "hoe" then + tdef.description = S("%s Hoe"):format(S(description)) + local uses = tooldef.uses + tooldef.uses = nil + tdef.on_use = function(itemstack, user, pointed_thing) + return hoe_on_use(itemstack, user, pointed_thing, uses) + end + end + + local fulltoolname = tool_base .. toolname .. tool_post + minetest.register_tool(fulltoolname, tdef) + minetest.register_alias(toolname .. tool_post, fulltoolname) + if oredef.makes.ingot then + minetest.register_craft({ + output = fulltoolname, + recipe = get_recipe(ingot, toolname) + }) + end + end +end + +-- Add everything: +local modname = "moreores" + +local oredefs = { + silver = { + desc = "Silver", + makes = {ore = true, block = true, lump = true, ingot = true, chest = true}, + oredef = {clust_scarcity = moreores_silver_chunk_size * moreores_silver_chunk_size * moreores_silver_chunk_size, + clust_num_ores = moreores_silver_ore_per_chunk, + clust_size = moreores_silver_chunk_size, + height_min = moreores_silver_min_depth, + height_max = moreores_silver_max_depth + }, + tools = { + pick = { + cracky = {times = {[1] = 2.60, [2] = 1.00, [3] = 0.60}, uses = 100, maxlevel= 1} + }, + hoe = { + uses = 300 + }, + shovel = { + crumbly = {times = {[1] = 1.10, [2] = 0.40, [3] = 0.25}, uses = 100, maxlevel= 1} + }, + axe = { + choppy = {times = {[1] = 2.50, [2] = 0.80, [3] = 0.50}, uses = 100, maxlevel= 1}, + fleshy = {times = {[2] = 1.10, [3] = 0.60}, uses = 100, maxlevel= 1} + }, + sword = { + fleshy = {times = {[2] = 0.70, [3] = 0.30}, uses = 1500, maxlevel= 1}, + snappy = {times = {[2] = 0.70, [3] = 0.30}, uses = 1500, maxlevel= 1}, + choppy = {times = {[3] = 0.80}, uses = 100, maxlevel= 0} + } + }, + full_punch_interval = 1.0, + damage_groups = {fleshy = 10}, + }, + tin = { + desc = "Tin", + makes = {ore = true, block = true, lump = true, ingot = true, chest = false}, + oredef = {clust_scarcity = moreores_tin_chunk_size * moreores_tin_chunk_size * moreores_tin_chunk_size, + clust_num_ores = moreores_tin_ore_per_chunk, + clust_size = moreores_tin_chunk_size, + height_min = moreores_tin_min_depth, + height_max = moreores_tin_max_depth + }, + tools = {} + }, + mithril = { + desc = "Mithril", + makes = {ore = true, block = true, lump = true, ingot = true, chest = false}, + oredef = {clust_scarcity = moreores_mithril_chunk_size * moreores_mithril_chunk_size * moreores_mithril_chunk_size, + clust_num_ores = moreores_mithril_ore_per_chunk, + clust_size = moreores_mithril_chunk_size, + height_min = moreores_mithril_min_depth, + height_max = moreores_mithril_max_depth + }, + tools = { + pick = { + cracky = {times = {[1] = 2.25, [2] = 0.55, [3] = 0.35}, uses = 200, maxlevel= 4} + }, + hoe = { + uses = 1000 + }, + shovel = { + crumbly = {times = {[1] = 0.70, [2] = 0.35, [3] = 0.20}, uses = 1000, maxlevel= 4} + }, + axe = { + choppy = {times = {[1] = 1.75, [2] = 0.45, [3] = 0.45}, uses = 2000, maxlevel= 4}, + fleshy = {times = {[2] = 0.95, [3] = 0.30}, uses = 2000, maxlevel= 1} + }, + sword = { + fleshy = {times = {[2] = 0.65, [3] = 0.25}, uses = 5000, maxlevel= 1}, + snappy = {times = {[2] = 0.70, [3] = 0.25}, uses = 5000, maxlevel= 1}, + choppy = {times = {[3] = 0.65}, uses = 5000, maxlevel= 4} + } + }, + full_punch_interval = 0.45, + damage_groups = {fleshy = 30}, + } +} + +for orename,def in pairs(oredefs) do + add_ore(modname, def.desc, orename, def) +end + +-- Copper rail (special node) + +minetest.register_craft({ + output = "moreores:copper_rail 16", + recipe = { + {"default:copper_ingot", "", "default:copper_ingot"}, + {"default:copper_ingot", "group:stick", "default:copper_ingot"}, + {"default:copper_ingot", "", "default:copper_ingot"} + } +}) + +-- Bronze has some special cases, because it is made from copper and tin: +minetest.register_craft( { + type = "shapeless", + output = "default:bronze_ingot 3", + recipe = { + "moreores:tin_ingot", + "default:copper_ingot", + "default:copper_ingot", + } +}) + +-- Unique node: +minetest.register_node("moreores:copper_rail", { + description = S("Copper Rail"), + drawtype = "raillike", + tiles = {"moreores_copper_rail.png", "moreores_copper_rail_curved.png", "moreores_copper_rail_t_junction.png", "moreores_copper_rail_crossing.png"}, + inventory_image = "moreores_copper_rail.png", + wield_image = "moreores_copper_rail.png", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + selection_box = { + type = "fixed", + fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, + }, + groups = {bendy = 2,snappy = 1,dig_immediate = 2,rail= 1, connect_to_raillike = 1}, + mesecons = { + effector = { + action_on = function(pos, node) + minetest.get_meta(pos):set_string("cart_acceleration", "0.5") + end, + + action_off = function(pos, node) + minetest.get_meta(pos):set_string("cart_acceleration", "0") + end, + }, + }, +}) + +-- mg support: +if minetest.get_modpath("mg") then + dofile(moreores_modpath.."/mg.lua") +end + +if minetest.setting_getbool("log_mods") then + print(S("[moreores] loaded.")) +end diff --git a/mods/moreores/locale/de.txt b/mods/moreores/locale/de.txt new file mode 100644 index 0000000..2eb6075 --- /dev/null +++ b/mods/moreores/locale/de.txt @@ -0,0 +1,22 @@ +# Translation by Xanthin + +[moreores] loaded. = [moreores] geladen. + +%s Ore = %serz +%s Lump = %sklumpen +%s Ingot = %sbarren +%s Block = %sblock +%s Pickaxe = %sspitzhacke +%s Shovel = %sschaufel +%s Axe = %saxt +%s Sword = %sschwert +%s Hoe = %shacke + +Copper = Kupfer +Tin = Zinn +Bronze = Bronze +Silver = Silber +Gold = Gold +Mithril = Mithril + +Copper Rail = Kupferschiene diff --git a/mods/moreores/locale/es.txt b/mods/moreores/locale/es.txt new file mode 100644 index 0000000..1344a5a --- /dev/null +++ b/mods/moreores/locale/es.txt @@ -0,0 +1,21 @@ +# Translation by kaeza + +[moreores] loaded. = [moreores] cargado. + +%s Ore = Mineral de %s +%s Lump = Pepita de %s +%s Ingot = Lingote de %s +%s Block = Bloque de %s +%s Pickaxe = Pico de %s +%s Shovel = Pala de %s +%s Axe = Hacha de %s +%s Sword = Espada de %s + +Copper = cobre +Tin = estaño +Bronze = bronce +Silver = plata +Gold = oro +Mithril = mitrilo + +Copper Rail = Riel de Cobre diff --git a/mods/moreores/locale/fr.txt b/mods/moreores/locale/fr.txt new file mode 100644 index 0000000..65687fa --- /dev/null +++ b/mods/moreores/locale/fr.txt @@ -0,0 +1,21 @@ +# Translation by Calinou + +[moreores] loaded. = [moreores] a été chargé. + +%s Ore = Minerai en %s +%s Lump = Roche en %s +%s Ingot = Lingot en %s +%s Block = Bloc en %s +%s Pickaxe = Pioche en %s +%s Shovel = Pelle en %s +%s Axe = Hache en %s +%s Sword = Épée en %s + +Copper = cuivre +Tin = étain +Bronze = bronze +Silver = argent +Gold = or +Mithril = mithril + +Copper Rail = Rail en cuivre diff --git a/mods/moreores/locale/it.txt b/mods/moreores/locale/it.txt new file mode 100644 index 0000000..dcd8c52 --- /dev/null +++ b/mods/moreores/locale/it.txt @@ -0,0 +1,21 @@ +# Translation by Pagliaccio + +[moreores] loaded. = [moreores] caricato. + +%s Ore = Minerale di %s +%s Lump = %s grezzo +%s Ingot = Lingotto di %s +%s Block = Blocco di %s +%s Pickaxe = Piccone di %s +%s Shovel = Badile di %s +%s Axe = Ascia di %s +%s Sword = Spada di %s + +Copper = Rame +Tin = Stagno +Bronze = Bronzo +Silver = Argento +Gold = Oro +Mithril = Mithril + +Copper Rail = Binario di rame \ No newline at end of file diff --git a/mods/moreores/mg.lua b/mods/moreores/mg.lua new file mode 100644 index 0000000..c950a4b --- /dev/null +++ b/mods/moreores/mg.lua @@ -0,0 +1,46 @@ +mg.register_ore({ + name = "moreores:mineral_tin", + wherein = "default:stone", + seeddiff = 8, + maxvdistance = 10.5, + maxheight = 8, + seglenghtn = 15, + seglenghtdev = 6, + segincln = 0, + segincldev = 0.6, + turnangle = 57, + forkturnangle = 57, + numperblock = 2 +}) + +mg.register_ore({ + name = "moreores:mineral_silver", + wherein = "default:stone", + seeddiff = 9, + maxvdistance = 10.5, + maxheight = -2, + seglenghtn = 15, + seglenghtdev = 6, + sizen = 60, + sizedev = 30, + segincln = 0, + segincldev = 0.6, + turnangle = 57, + forkturnangle = 57, + numperblock = 2 +}) + +mg.register_ore({ + name = "moreores:mineral_mithril", + wherein = "default:stone", + seeddiff = 10, + maxvdistance = 10.5, + maxheight = -512, + seglenghtn = 2, + seglenghtdev = 4, + sizen = 12, + sizedev = 5, + segincln = 0, + segincldev = 0.6, + turnangle = 57, +}) diff --git a/mods/moreores/old_init.lua b/mods/moreores/old_init.lua new file mode 100644 index 0000000..03be6bc --- /dev/null +++ b/mods/moreores/old_init.lua @@ -0,0 +1,745 @@ +--[[ +**** +More Ores +by Calinou +Old and "inefficient" version; use if the new version does not work for some reason. Outdated. +Licensed under the zlib/libpng license, see LICENSE.txt for info. +**** +--]] + +-- Blocks + +minetest.register_node( "moreores:mineral_gold", { + description = "Gold Ore", + tile_images = { "default_stone.png^moreores_mineral_gold.png" }, + is_ground_content = true, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), + drop = 'craft "moreores:gold_lump" 1', +}) + +minetest.register_node( "moreores:gold_block", { + description = "Gold Block", + tile_images = { "moreores_gold_block.png" }, + is_ground_content = true, + groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node( "moreores:mineral_silver", { + description = "Silver Ore", + tile_images = { "default_stone.png^moreores_mineral_silver.png" }, + is_ground_content = true, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), + drop = 'craft "moreores:silver_lump" 1', +}) + +minetest.register_node( "moreores:silver_block", { + description = "Silver Block", + tile_images = { "moreores_silver_block.png" }, + is_ground_content = true, + groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node( "moreores:mineral_copper", { + description = "Copper Ore", + tile_images = { "default_stone.png^moreores_mineral_copper.png" }, + is_ground_content = true, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), + drop = 'craft "moreores:copper_lump" 1', +}) + +minetest.register_node( "moreores:mineral_tin", { + description = "Tin Ore", + tile_images = { "default_stone.png^moreores_mineral_tin.png" }, + is_ground_content = true, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), + drop = 'craft "moreores:tin_lump" 1', +}) + +minetest.register_node( "moreores:bronze_block", { + description = "Bronze Block", + tile_images = { "moreores_bronze_block.png" }, + is_ground_content = true, + groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node( "moreores:mineral_mithril", { + description = "Mithril Ore", + tile_images = { "default_stone.png^moreores_mineral_mithril.png" }, + is_ground_content = true, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), + drop = 'craft "moreores:mithril_lump" 1', +}) + +minetest.register_node( "moreores:mithril_block", { + description = "Mithril Block", + tile_images = { "moreores_mithril_block.png" }, + is_ground_content = true, + groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("moreores:copper_rail", { + description = "Copper Rail", + drawtype = "raillike", + tile_images = {"moreores_copper_rail.png", "moreores_copper_rail_curved.png", "moreores_copper_rail_t_junction.png", "moreores_copper_rail_crossing.png"}, + inventory_image = "moreores_copper_rail.png", + wield_image = "moreores_copper_rail.png", + paramtype = "light", + is_ground_content = true, + walkable = false, + selection_box = { + type = "fixed", + --fixed = + }, + groups = {bendy=2,snappy=1,dig_immediate=2}, +}) + +-- Items + +minetest.register_craftitem( "moreores:gold_lump", { + description = "Gold Lump", + inventory_image = "moreores_gold_lump.png", + on_place_on_ground = minetest.craftitem_place_item, +}) + +minetest.register_craftitem( "moreores:gold_ingot", { + description = "Gold Ingot", + inventory_image = "moreores_gold_ingot.png", + on_place_on_ground = minetest.craftitem_place_item, +}) + +minetest.register_craftitem( "moreores:silver_lump", { + description = "Silver Lump", + inventory_image = "moreores_silver_lump.png", + on_place_on_ground = minetest.craftitem_place_item, +}) + +minetest.register_craftitem( "moreores:silver_ingot", { + description = "Silver Ingot", + inventory_image = "moreores_silver_ingot.png", + on_place_on_ground = minetest.craftitem_place_item, +}) + +minetest.register_craftitem( "moreores:copper_lump", { + description = "Copper Lump", + inventory_image = "moreores_copper_lump.png", + on_place_on_ground = minetest.craftitem_place_item, +}) + +minetest.register_craftitem( "moreores:copper_ingot", { + description = "Copper Ingot", + inventory_image = "moreores_copper_ingot.png", + on_place_on_ground = minetest.craftitem_place_item, +}) + +minetest.register_craftitem( "moreores:tin_lump", { + description = "Tin Lump", + inventory_image = "moreores_tin_lump.png", + on_place_on_ground = minetest.craftitem_place_item, +}) + +minetest.register_craftitem( "moreores:tin_ingot", { + description = "Tin Ingot", + inventory_image = "moreores_tin_ingot.png", + on_place_on_ground = minetest.craftitem_place_item, +}) + +minetest.register_craftitem( "moreores:bronze_ingot", { + description = "Bronze Ingot", + inventory_image = "moreores_bronze_ingot.png", + on_place_on_ground = minetest.craftitem_place_item, +}) + +minetest.register_craftitem( "moreores:mithril_lump", { + description = "Mithril Lump", + inventory_image = "moreores_mithril_lump.png", + on_place_on_ground = minetest.craftitem_place_item, + on_use = minetest.item_eat(2), +}) + +minetest.register_craftitem( "moreores:mithril_ingot", { + description = "Mithril Ingot", + inventory_image = "moreores_mithril_ingot.png", + on_place_on_ground = minetest.craftitem_place_item, +}) + +-- Tools + +minetest.register_tool("moreores:pick_bronze", { + description = "Bronze Pickaxe", + inventory_image = "moreores_tool_bronzepick.png", + tool_capabilities = { + max_drop_level=3, + groupcaps={ + cracky={times={[1]=3.00, [2]=1.20, [3]=0.80}, uses=160, maxlevel=1} + } + }, +}) + +minetest.register_tool("moreores:shovel_bronze", { + description = "Bronze Shovel", + inventory_image = "moreores_tool_bronzeshovel.png", + tool_capabilities = { + max_drop_level=3, + groupcaps={ + crumbly={times={[1]=1.50, [2]=0.50, [3]=0.30}, uses=160, maxlevel=1} + } + }, +}) + +minetest.register_tool("moreores:axe_bronze", { + description = "Bronze Axe", + inventory_image = "moreores_tool_bronzeaxe.png", + tool_capabilities = { + max_drop_level=3, + groupcaps={ + choppy={times={[1]=3.00, [2]=1.00, [3]=0.60}, uses=160, maxlevel=1}, + fleshy={times={[2]=1.30, [3]=0.70}, uses=160, maxlevel=1} + } + }, +}) + +minetest.register_tool("moreores:sword_bronze", { + description = "Bronze Sword", + inventory_image = "moreores_tool_bronzesword.png", + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=3, + groupcaps={ + fleshy={times={[2]=0.80, [3]=0.40}, uses=160, maxlevel=1}, + snappy={times={[2]=0.80, [3]=0.40}, uses=160, maxlevel=1}, + choppy={times={[3]=0.90}, uses=160, maxlevel=0} + } + } +}) + +minetest.register_tool("moreores:pick_silver", { + description = "Silver Pickaxe", + inventory_image = "moreores_tool_silverpick.png", + tool_capabilities = { + max_drop_level=3, + groupcaps={ + cracky={times={[1]=2.60, [2]=1.00, [3]=0.60}, uses=100, maxlevel=1} + } + }, +}) + +minetest.register_tool("moreores:shovel_silver", { + description = "Silver Shovel", + inventory_image = "moreores_tool_silvershovel.png", + tool_capabilities = { + max_drop_level=3, + groupcaps={ + crumbly={times={[1]=1.10, [2]=0.40, [3]=0.25}, uses=100, maxlevel=1} + } + }, +}) + +minetest.register_tool("moreores:axe_silver", { + description = "Silver Axe", + inventory_image = "moreores_tool_silveraxe.png", + tool_capabilities = { + max_drop_level=3, + groupcaps={ + choppy={times={[1]=2.50, [2]=0.80, [3]=0.50}, uses=100, maxlevel=1}, + fleshy={times={[2]=1.10, [3]=0.60}, uses=100, maxlevel=1} + } + }, +}) + +minetest.register_tool("moreores:sword_silver", { + description = "Silver Sword", + inventory_image = "moreores_tool_silversword.png", + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=3, + groupcaps={ + fleshy={times={[2]=0.70, [3]=0.30}, uses=100, maxlevel=1}, + snappy={times={[2]=0.70, [3]=0.30}, uses=100, maxlevel=1}, + choppy={times={[3]=0.80}, uses=100, maxlevel=0} + } + } +}) + +minetest.register_tool("moreores:pick_gold", { + description = "Golden Pickaxe", + inventory_image = "moreores_tool_goldpick.png", + tool_capabilities = { + max_drop_level=3, + groupcaps={ + cracky={times={[1]=2.00, [2]=0.50, [3]=0.30}, uses=70, maxlevel=1} + } + }, +}) + +minetest.register_tool("moreores:shovel_gold", { + description = "Golden Shovel", + inventory_image = "moreores_tool_goldshovel.png", + tool_capabilities = { + max_drop_level=3, + groupcaps={ + crumbly={times={[1]=0.60, [2]=0.25, [3]=0.15}, uses=70, maxlevel=1} + } + }, +}) + +minetest.register_tool("moreores:axe_gold", { + description = "Golden Axe", + inventory_image = "moreores_tool_goldaxe.png", + tool_capabilities = { + max_drop_level=3, + groupcaps={ + choppy={times={[1]=1.70, [2]=0.40, [3]=0.35}, uses=70, maxlevel=1}, + fleshy={times={[2]=0.90, [3]=0.30}, uses=70, maxlevel=1} + } + }, +}) + +minetest.register_tool("moreores:sword_gold", { + description = "Golden Sword", + inventory_image = "moreores_tool_goldsword.png", + tool_capabilities = { + full_punch_interval = 0.85, + max_drop_level=3, + groupcaps={ + fleshy={times={[2]=0.60, [3]=0.20}, uses=70, maxlevel=1}, + snappy={times={[2]=0.60, [3]=0.20}, uses=70, maxlevel=1}, + choppy={times={[3]=0.65}, uses=70, maxlevel=0} + } + } +}) + +minetest.register_tool("moreores:pick_mithril", { + description = "Mithril Pickaxe", + inventory_image = "moreores_tool_mithrilpick.png", + tool_capabilities = { + max_drop_level=3, + groupcaps={ + cracky={times={[1]=2.25, [2]=0.55, [3]=0.35}, uses=200, maxlevel=1} + } + }, +}) + +minetest.register_tool("moreores:shovel_mithril", { + description = "Mithril Shovel", + inventory_image = "moreores_tool_mithrilshovel.png", + tool_capabilities = { + max_drop_level=3, + groupcaps={ + crumbly={times={[1]=0.70, [2]=0.35, [3]=0.20}, uses=200, maxlevel=1} + } + }, +}) + +minetest.register_tool("moreores:axe_mithril", { + description = "Mithril Axe", + inventory_image = "moreores_tool_mithrilaxe.png", + tool_capabilities = { + max_drop_level=3, + groupcaps={ + choppy={times={[1]=1.75, [2]=0.45, [3]=0.45}, uses=200, maxlevel=1}, + fleshy={times={[2]=0.95, [3]=0.30}, uses=200, maxlevel=1} + } + }, +}) + +minetest.register_tool("moreores:sword_mithril", { + description = "Mithril Sword", + inventory_image = "moreores_tool_mithrilsword.png", + tool_capabilities = { + full_punch_interval = 0.45, + max_drop_level=3, + groupcaps={ + fleshy={times={[2]=0.65, [3]=0.25}, uses=200, maxlevel=1}, + snappy={times={[2]=0.70, [3]=0.25}, uses=200, maxlevel=1}, + choppy={times={[3]=0.65}, uses=200, maxlevel=0} + } + } +}) + +-- Crafting + +minetest.register_craft({ + output = 'moreores:copper_rail 15', + recipe = { + {'moreores:copper_ingot', '', 'moreores:copper_ingot'}, + {'moreores:copper_ingot', 'default:stick', 'moreores:copper_ingot'}, + {'moreores:copper_ingot', '', 'moreores:copper_ingot'}, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:pick_bronze" 1', + recipe = { + { 'craft "moreores:bronze_ingot"', 'craft "moreores:bronze_ingot"', 'craft "moreores:bronze_ingot"' }, + { '', 'craft "Stick"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:shovel_bronze" 1', + recipe = { + { '', 'craft "moreores:bronze_ingot"', '' }, + { '', 'craft "Stick"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:axe_bronze" 1', + recipe = { + { 'craft "moreores:bronze_ingot"', 'craft "moreores:bronze_ingot"', '' }, + { 'craft "moreores:bronze_ingot"', 'craft "Stick"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:sword_bronze" 1', + recipe = { + { '', 'craft "moreores:bronze_ingot"', '' }, + { '', 'craft "moreores:bronze_ingot"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:pick_silver" 1', + recipe = { + { 'craft "moreores:silver_ingot"', 'craft "moreores:silver_ingot"', 'craft "moreores:silver_ingot"' }, + { '', 'craft "Stick"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:shovel_silver" 1', + recipe = { + { '', 'craft "moreores:silver_ingot"', '' }, + { '', 'craft "Stick"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:axe_silver" 1', + recipe = { + { 'craft "moreores:silver_ingot"', 'craft "moreores:silver_ingot"', '' }, + { 'craft "moreores:silver_ingot"', 'craft "Stick"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:sword_silver" 1', + recipe = { + { '', 'craft "moreores:silver_ingot"', '' }, + { '', 'craft "moreores:silver_ingot"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:pick_gold" 1', + recipe = { + { 'craft "moreores:gold_ingot"', 'craft "moreores:gold_ingot"', 'craft "moreores:gold_ingot"' }, + { '', 'craft "Stick"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:shovel_gold" 1', + recipe = { + { '', 'craft "moreores:gold_ingot"', '' }, + { '', 'craft "Stick"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:axe_gold" 1', + recipe = { + { 'craft "moreores:gold_ingot"', 'craft "moreores:gold_ingot"', '' }, + { 'craft "moreores:gold_ingot"', 'craft "Stick"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:sword_gold" 1', + recipe = { + { '', 'craft "moreores:gold_ingot"', '' }, + { '', 'craft "moreores:gold_ingot"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:pick_mithril" 1', + recipe = { + { 'craft "moreores:mithril_ingot"', 'craft "moreores:mithril_ingot"', 'craft "moreores:mithril_ingot"' }, + { '', 'craft "Stick"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:shovel_mithril" 1', + recipe = { + { '', 'craft "moreores:mithril_ingot"', '' }, + { '', 'craft "Stick"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:axe_mithril" 1', + recipe = { + { 'craft "moreores:mithril_ingot"', 'craft "moreores:mithril_ingot"', '' }, + { 'craft "moreores:mithril_ingot"', 'craft "Stick"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:sword_mithril" 1', + recipe = { + { '', 'craft "moreores:mithril_ingot"', '' }, + { '', 'craft "moreores:mithril_ingot"', '' }, + { '', 'craft "Stick"', '' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:bronze_ingot"', + recipe = { + { 'craft "moreores:tin_ingot"'}, + { 'craft "moreores:copper_ingot"'}, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:bronze_ingot"', + recipe = { + { 'craft "moreores:copper_ingot"'}, + { 'craft "moreores:tin_ingot"'}, + } +}) + +minetest.register_craft( { + output = 'node "moreores:gold_block" 1', + recipe = { + { 'craft "moreores:gold_ingot"', 'craft "moreores:gold_ingot"', 'craft "moreores:gold_ingot"' }, + { 'craft "moreores:gold_ingot"', 'craft "moreores:gold_ingot"', 'craft "moreores:gold_ingot"' }, + { 'craft "moreores:gold_ingot"', 'craft "moreores:gold_ingot"', 'craft "moreores:gold_ingot"' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:gold_ingot" 9', + recipe = { + { 'node "moreores:gold_block"' }, + } +}) + +minetest.register_craft( { + output = 'node "moreores:silver_block" 1', + recipe = { + { 'craft "moreores:silver_ingot"', 'craft "moreores:silver_ingot"', 'craft "moreores:silver_ingot"' }, + { 'craft "moreores:silver_ingot"', 'craft "moreores:silver_ingot"', 'craft "moreores:silver_ingot"' }, + { 'craft "moreores:silver_ingot"', 'craft "moreores:silver_ingot"', 'craft "moreores:silver_ingot"' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:silver_ingot" 9', + recipe = { + { 'node "moreores:silver_block"' }, + } +}) + +minetest.register_craft( { + output = 'node "moreores:bronze_block" 1', + recipe = { + { 'craft "moreores:bronze_ingot"', 'craft "moreores:bronze_ingot"', 'craft "moreores:bronze_ingot"' }, + { 'craft "moreores:bronze_ingot"', 'craft "moreores:bronze_ingot"', 'craft "moreores:bronze_ingot"' }, + { 'craft "moreores:bronze_ingot"', 'craft "moreores:bronze_ingot"', 'craft "moreores:bronze_ingot"' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:bronze_ingot" 9', + recipe = { + { 'node "moreores:bronze_block"' }, + } +}) + +minetest.register_craft( { + output = 'node "moreores:mithril_block" 1', + recipe = { + { 'craft "moreores:mithril_ingot"', 'craft "moreores:mithril_ingot"', 'craft "moreores:mithril_ingot"' }, + { 'craft "moreores:mithril_ingot"', 'craft "moreores:mithril_ingot"', 'craft "moreores:mithril_ingot"' }, + { 'craft "moreores:mithril_ingot"', 'craft "moreores:mithril_ingot"', 'craft "moreores:mithril_ingot"' }, + } +}) + +minetest.register_craft( { + output = 'craft "moreores:mithril_ingot" 9', + recipe = { + { 'node "moreores:mithril_block"' }, + } +}) + +-- Smelting + +minetest.register_craft({ + type = "cooking", + output = "moreores:gold_ingot", + recipe = "moreores:gold_lump", +}) + +minetest.register_craft({ + type = "cooking", + output = "moreores:silver_ingot", + recipe = "moreores:silver_lump", +}) + +minetest.register_craft({ + type = "cooking", + output = "moreores:tin_ingot", + recipe = "moreores:tin_lump", +}) + +minetest.register_craft({ + type = "cooking", + output = "moreores:copper_ingot", + recipe = "moreores:copper_lump", +}) + +minetest.register_craft({ + type = "cooking", + output = "moreores:mithril_ingot", + recipe = "moreores:mithril_lump", +}) + +minetest.register_craft( { + output = 'node "default:chest_locked" 1', + recipe = { + { 'craft "moreores:bronze_ingot"' }, + { 'node "default:chest"' }, + } +}) + +minetest.register_craft( { + output = 'node "default:chest_locked" 1', + recipe = { + { 'craft "moreores:silver_ingot"' }, + { 'node "default:chest"' }, + } +}) + +minetest.register_craft( { + output = 'node "default:chest_locked" 1', + recipe = { + { 'craft "moreores:gold_ingot"' }, + { 'node "default:chest"' }, + } +}) + +minetest.register_craft( { + output = 'node "default:chest_locked" 1', + recipe = { + { 'node "default:wood"', 'node "default:wood"', 'node "default:wood"' }, + { 'node "default:wood"', 'craft "moreores:bronze_ingot"', 'node "default:wood"' }, + { 'node "default:wood"', 'node "default:wood"', 'node "default:wood"' }, + } +}) + +minetest.register_craft( { + output = 'node "default:chest_locked" 1', + recipe = { + { 'node "default:wood"', 'node "default:wood"', 'node "default:wood"' }, + { 'node "default:wood"', 'craft "moreores:bronze_ingot"', 'node "default:wood"' }, + { 'node "default:wood"', 'node "default:wood"', 'node "default:wood"' }, + } +}) + +minetest.register_craft( { + output = 'node "default:chest_locked" 1', + recipe = { + { 'node "default:wood"', 'node "default:wood"', 'node "default:wood"' }, + { 'node "default:wood"', 'craft "moreores:silver_ingot"', 'node "default:wood"' }, + { 'node "default:wood"', 'node "default:wood"', 'node "default:wood"' }, + } +}) + +minetest.register_craft( { + output = 'node "default:chest_locked" 1', + recipe = { + { 'node "default:wood"', 'node "default:wood"', 'node "default:wood"' }, + { 'node "default:wood"', 'craft "moreores:gold_ingot"', 'node "default:wood"' }, + { 'node "default:wood"', 'node "default:wood"', 'node "default:wood"' }, + } +}) + +-- Ore generation + +local function generate_ore(name, wherein, minp, maxp, seed, chunks_per_volume, ore_per_chunk, height_min, height_max) + if maxp.y < height_min or minp.y > height_max then + return + end + local y_min = math.max(minp.y, height_min) + local y_max = math.min(maxp.y, height_max) + local volume = (maxp.x-minp.x+1)*(y_max-y_min+1)*(maxp.z-minp.z+1) + local pr = PseudoRandom(seed) + local num_chunks = math.floor(chunks_per_volume * volume) + local chunk_size = 3 + if ore_per_chunk <= 4 then + chunk_size = 2 + end + local inverse_chance = math.floor(chunk_size*chunk_size*chunk_size / ore_per_chunk) + --print("generate_ore num_chunks: "..dump(num_chunks)) + for i=1,num_chunks do + if (y_max-chunk_size+1 <= y_min) then return end + local y0 = pr:next(y_min, y_max-chunk_size+1) + if y0 >= height_min and y0 <= height_max then + local x0 = pr:next(minp.x, maxp.x-chunk_size+1) + local z0 = pr:next(minp.z, maxp.z-chunk_size+1) + local p0 = {x=x0, y=y0, z=z0} + for x1=0,chunk_size-1 do + for y1=0,chunk_size-1 do + for z1=0,chunk_size-1 do + if pr:next(1,inverse_chance) == 1 then + local x2 = x0+x1 + local y2 = y0+y1 + local z2 = z0+z1 + local p2 = {x=x2, y=y2, z=z2} + if minetest.env:get_node(p2).name == wherein then + minetest.env:set_node(p2, {name=name}) + end + end + end + end + end + end + end + --print("generate_ore done") +end + +minetest.register_on_generated(function(minp, maxp, seed) +generate_ore("moreores:mineral_copper", "default:stone", minp, maxp, seed+16, 1/11/11/11, 8, -31000, 64) +generate_ore("moreores:mineral_tin", "default:stone", minp, maxp, seed+17, 1/8/8/8, 2, -31000, 8) +generate_ore("moreores:mineral_silver", "default:stone", minp, maxp, seed+18, 1/10/10/10, 5, -31000, 2) +generate_ore("moreores:mineral_gold", "default:stone", minp, maxp, seed+19, 1/12/12/12, 5, -31000, -64) +generate_ore("moreores:mineral_mithril", "default:stone", minp, maxp, seed+20, 1/6/6/6, 1, -31000, -512) +end) \ No newline at end of file diff --git a/mods/moreores/textures/moreores_bronze_block.png b/mods/moreores/textures/moreores_bronze_block.png new file mode 100644 index 0000000..3f714df Binary files /dev/null and b/mods/moreores/textures/moreores_bronze_block.png differ diff --git a/mods/moreores/textures/moreores_bronze_ingot.png b/mods/moreores/textures/moreores_bronze_ingot.png new file mode 100644 index 0000000..99b3f02 Binary files /dev/null and b/mods/moreores/textures/moreores_bronze_ingot.png differ diff --git a/mods/moreores/textures/moreores_copper_block.png b/mods/moreores/textures/moreores_copper_block.png new file mode 100644 index 0000000..9a164af Binary files /dev/null and b/mods/moreores/textures/moreores_copper_block.png differ diff --git a/mods/moreores/textures/moreores_copper_ingot.png b/mods/moreores/textures/moreores_copper_ingot.png new file mode 100644 index 0000000..1a4e4e1 Binary files /dev/null and b/mods/moreores/textures/moreores_copper_ingot.png differ diff --git a/mods/moreores/textures/moreores_copper_lump.png b/mods/moreores/textures/moreores_copper_lump.png new file mode 100644 index 0000000..45702a9 Binary files /dev/null and b/mods/moreores/textures/moreores_copper_lump.png differ diff --git a/mods/moreores/textures/moreores_copper_rail.png b/mods/moreores/textures/moreores_copper_rail.png new file mode 100644 index 0000000..73963f6 Binary files /dev/null and b/mods/moreores/textures/moreores_copper_rail.png differ diff --git a/mods/moreores/textures/moreores_copper_rail_crossing.png b/mods/moreores/textures/moreores_copper_rail_crossing.png new file mode 100644 index 0000000..6ff1153 Binary files /dev/null and b/mods/moreores/textures/moreores_copper_rail_crossing.png differ diff --git a/mods/moreores/textures/moreores_copper_rail_curved.png b/mods/moreores/textures/moreores_copper_rail_curved.png new file mode 100644 index 0000000..6cfc8c2 Binary files /dev/null and b/mods/moreores/textures/moreores_copper_rail_curved.png differ diff --git a/mods/moreores/textures/moreores_copper_rail_t_junction.png b/mods/moreores/textures/moreores_copper_rail_t_junction.png new file mode 100644 index 0000000..5775919 Binary files /dev/null and b/mods/moreores/textures/moreores_copper_rail_t_junction.png differ diff --git a/mods/moreores/textures/moreores_gold_block.png b/mods/moreores/textures/moreores_gold_block.png new file mode 100644 index 0000000..2f54afd Binary files /dev/null and b/mods/moreores/textures/moreores_gold_block.png differ diff --git a/mods/moreores/textures/moreores_gold_ingot.png b/mods/moreores/textures/moreores_gold_ingot.png new file mode 100644 index 0000000..b8dbcf8 Binary files /dev/null and b/mods/moreores/textures/moreores_gold_ingot.png differ diff --git a/mods/moreores/textures/moreores_gold_lump.png b/mods/moreores/textures/moreores_gold_lump.png new file mode 100644 index 0000000..9f79149 Binary files /dev/null and b/mods/moreores/textures/moreores_gold_lump.png differ diff --git a/mods/moreores/textures/moreores_mineral_copper.png b/mods/moreores/textures/moreores_mineral_copper.png new file mode 100644 index 0000000..bc3d9c1 Binary files /dev/null and b/mods/moreores/textures/moreores_mineral_copper.png differ diff --git a/mods/moreores/textures/moreores_mineral_gold.png b/mods/moreores/textures/moreores_mineral_gold.png new file mode 100644 index 0000000..c8aede3 Binary files /dev/null and b/mods/moreores/textures/moreores_mineral_gold.png differ diff --git a/mods/moreores/textures/moreores_mineral_mithril.png b/mods/moreores/textures/moreores_mineral_mithril.png new file mode 100644 index 0000000..126daea Binary files /dev/null and b/mods/moreores/textures/moreores_mineral_mithril.png differ diff --git a/mods/moreores/textures/moreores_mineral_silver.png b/mods/moreores/textures/moreores_mineral_silver.png new file mode 100644 index 0000000..6b57c62 Binary files /dev/null and b/mods/moreores/textures/moreores_mineral_silver.png differ diff --git a/mods/moreores/textures/moreores_mineral_tin.png b/mods/moreores/textures/moreores_mineral_tin.png new file mode 100644 index 0000000..fc71837 Binary files /dev/null and b/mods/moreores/textures/moreores_mineral_tin.png differ diff --git a/mods/moreores/textures/moreores_mithril_block.png b/mods/moreores/textures/moreores_mithril_block.png new file mode 100644 index 0000000..1b3398f Binary files /dev/null and b/mods/moreores/textures/moreores_mithril_block.png differ diff --git a/mods/moreores/textures/moreores_mithril_ingot.png b/mods/moreores/textures/moreores_mithril_ingot.png new file mode 100644 index 0000000..6f178d0 Binary files /dev/null and b/mods/moreores/textures/moreores_mithril_ingot.png differ diff --git a/mods/moreores/textures/moreores_mithril_lump.png b/mods/moreores/textures/moreores_mithril_lump.png new file mode 100644 index 0000000..3aa7255 Binary files /dev/null and b/mods/moreores/textures/moreores_mithril_lump.png differ diff --git a/mods/moreores/textures/moreores_silver_block.png b/mods/moreores/textures/moreores_silver_block.png new file mode 100644 index 0000000..556af1c Binary files /dev/null and b/mods/moreores/textures/moreores_silver_block.png differ diff --git a/mods/moreores/textures/moreores_silver_ingot.png b/mods/moreores/textures/moreores_silver_ingot.png new file mode 100644 index 0000000..1357a71 Binary files /dev/null and b/mods/moreores/textures/moreores_silver_ingot.png differ diff --git a/mods/moreores/textures/moreores_silver_lump.png b/mods/moreores/textures/moreores_silver_lump.png new file mode 100644 index 0000000..f71f5e3 Binary files /dev/null and b/mods/moreores/textures/moreores_silver_lump.png differ diff --git a/mods/moreores/textures/moreores_tin_block.png b/mods/moreores/textures/moreores_tin_block.png new file mode 100644 index 0000000..9dd053c Binary files /dev/null and b/mods/moreores/textures/moreores_tin_block.png differ diff --git a/mods/moreores/textures/moreores_tin_ingot.png b/mods/moreores/textures/moreores_tin_ingot.png new file mode 100644 index 0000000..4481928 Binary files /dev/null and b/mods/moreores/textures/moreores_tin_ingot.png differ diff --git a/mods/moreores/textures/moreores_tin_lump.png b/mods/moreores/textures/moreores_tin_lump.png new file mode 100644 index 0000000..5114985 Binary files /dev/null and b/mods/moreores/textures/moreores_tin_lump.png differ diff --git a/mods/moreores/textures/moreores_tool_bronzeaxe.png b/mods/moreores/textures/moreores_tool_bronzeaxe.png new file mode 100644 index 0000000..cea9f35 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_bronzeaxe.png differ diff --git a/mods/moreores/textures/moreores_tool_bronzepick.png b/mods/moreores/textures/moreores_tool_bronzepick.png new file mode 100644 index 0000000..e9d3ca7 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_bronzepick.png differ diff --git a/mods/moreores/textures/moreores_tool_bronzeshovel.png b/mods/moreores/textures/moreores_tool_bronzeshovel.png new file mode 100644 index 0000000..cdc7384 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_bronzeshovel.png differ diff --git a/mods/moreores/textures/moreores_tool_bronzesword.png b/mods/moreores/textures/moreores_tool_bronzesword.png new file mode 100644 index 0000000..aa6adc3 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_bronzesword.png differ diff --git a/mods/moreores/textures/moreores_tool_goldaxe.png b/mods/moreores/textures/moreores_tool_goldaxe.png new file mode 100644 index 0000000..0290f3f Binary files /dev/null and b/mods/moreores/textures/moreores_tool_goldaxe.png differ diff --git a/mods/moreores/textures/moreores_tool_goldpick.png b/mods/moreores/textures/moreores_tool_goldpick.png new file mode 100644 index 0000000..129e449 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_goldpick.png differ diff --git a/mods/moreores/textures/moreores_tool_goldshovel.png b/mods/moreores/textures/moreores_tool_goldshovel.png new file mode 100644 index 0000000..1d07af8 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_goldshovel.png differ diff --git a/mods/moreores/textures/moreores_tool_goldsword.png b/mods/moreores/textures/moreores_tool_goldsword.png new file mode 100644 index 0000000..e94ec05 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_goldsword.png differ diff --git a/mods/moreores/textures/moreores_tool_mithrilaxe.png b/mods/moreores/textures/moreores_tool_mithrilaxe.png new file mode 100644 index 0000000..f243a29 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_mithrilaxe.png differ diff --git a/mods/moreores/textures/moreores_tool_mithrilhoe.png b/mods/moreores/textures/moreores_tool_mithrilhoe.png new file mode 100644 index 0000000..9d226f7 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_mithrilhoe.png differ diff --git a/mods/moreores/textures/moreores_tool_mithrilpick.png b/mods/moreores/textures/moreores_tool_mithrilpick.png new file mode 100644 index 0000000..ff1ed7c Binary files /dev/null and b/mods/moreores/textures/moreores_tool_mithrilpick.png differ diff --git a/mods/moreores/textures/moreores_tool_mithrilshovel.png b/mods/moreores/textures/moreores_tool_mithrilshovel.png new file mode 100644 index 0000000..18a7de0 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_mithrilshovel.png differ diff --git a/mods/moreores/textures/moreores_tool_mithrilsword.png b/mods/moreores/textures/moreores_tool_mithrilsword.png new file mode 100644 index 0000000..09a030c Binary files /dev/null and b/mods/moreores/textures/moreores_tool_mithrilsword.png differ diff --git a/mods/moreores/textures/moreores_tool_silveraxe.png b/mods/moreores/textures/moreores_tool_silveraxe.png new file mode 100644 index 0000000..d33edd5 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_silveraxe.png differ diff --git a/mods/moreores/textures/moreores_tool_silverhoe.png b/mods/moreores/textures/moreores_tool_silverhoe.png new file mode 100644 index 0000000..066b908 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_silverhoe.png differ diff --git a/mods/moreores/textures/moreores_tool_silverpick.png b/mods/moreores/textures/moreores_tool_silverpick.png new file mode 100644 index 0000000..69de097 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_silverpick.png differ diff --git a/mods/moreores/textures/moreores_tool_silvershovel.png b/mods/moreores/textures/moreores_tool_silvershovel.png new file mode 100644 index 0000000..d55185b Binary files /dev/null and b/mods/moreores/textures/moreores_tool_silvershovel.png differ diff --git a/mods/moreores/textures/moreores_tool_silversword.png b/mods/moreores/textures/moreores_tool_silversword.png new file mode 100644 index 0000000..220ba2b Binary files /dev/null and b/mods/moreores/textures/moreores_tool_silversword.png differ diff --git a/mods/mymod/depends.txt b/mods/mymod/depends.txt new file mode 100644 index 0000000..2daad19 --- /dev/null +++ b/mods/mymod/depends.txt @@ -0,0 +1 @@ +craft_guide \ No newline at end of file diff --git a/mods/mymod/init.lua b/mods/mymod/init.lua new file mode 100644 index 0000000..6145b71 --- /dev/null +++ b/mods/mymod/init.lua @@ -0,0 +1,399 @@ +-- give playes stuff +minetest.register_on_newplayer( +function(player) + minetest.log("action", "Giving initial stuff to player "..player:get_player_name()) + player:get_inventory():add_item('main', 'default:pick_stone') + player:get_inventory():add_item('main', 'default:torch 1') + player:get_inventory():add_item('main', 'default:sword_wood') + + minetest.log("action", "Moving to spawn location : "..player:get_player_name()) + local static_spawnpoint = core.setting_get_pos("static_spawnpoint") + player:setpos(static_spawnpoint) +end) + + + + + +minetest.register_chatcommand("spawn", { + description = "Teleport you to spawn", + privs = {}, + func = function(name) + local player = minetest.env:get_player_by_name(name) + + if player == nil then + -- just a check to prevent the server crashing + return false + end + + local pos=player:getpos() + local static_spawnpoint = core.setting_get_pos("static_spawnpoint") + if math.abs(pos.x-static_spawnpoint.x)<20 and math.abs(pos.y-static_spawnpoint.y)<20 and math.abs(pos.z-static_spawnpoint.z) < 20 then + minetest.chat_send_player(name, "can only teleport to spawn outside spawn area!") + return + false end -- no goto spawn inside spawn area + + player:setpos(static_spawnpoint) + minetest.chat_send_player(name, "Teleported to spawn") +end, +}) + + +minetest.register_chatcommand("kill", { + description = "Suicide, only works inside jail", + privs = {}, + func = function(name) + local player = minetest.env:get_player_by_name(name) + + if player == nil then + -- just a check to prevent the server crashing + return false + end + + local pos=player:getpos() + local static_spawnpoint = core.setting_get_pos("static_spawnpoint") + if math.abs(pos.x-static_spawnpoint.x)<20 and pos.ystatic_spawnpoint.y-20 and math.abs(pos.z-static_spawnpoint.z) < 20 then + player:set_hp(0) + else minetest.chat_send_player(name, "kill only works inside jail");return false + end -- no goto spawn inside spawn area + + +end, +}) + + + + +-- ICE/WATER + +-- rnd freezing still water to snow if not bright enough + +minetest.register_abm({ -- water freeze + nodenames = {"default:water_source"}, + neighbors = {""}, + interval = 20, + chance = 5, + action = function(pos, node, active_object_count, active_object_count_wider) + local p = {x=pos.x, y=pos.y+1, z=pos.z} + local above = minetest.get_node(p) + if above.name == "air" and minetest.get_node_light(p)<=LIGHT_MAX*0.7 then -- check if above air and if not too bright + minetest.set_node(pos, {name="default:ice"}) + end + end, +}) + + +minetest.register_abm({ + nodenames = {"default:ice"}, + neighbors = {""}, + interval = 20, + chance = 5, + action = function(pos, node, active_object_count, active_object_count_wider) + local p = {x=pos.x, y=pos.y+1, z=pos.z} + local above = minetest.get_node(p) + if above.name =="air" and minetest.get_node_light(p)>LIGHT_MAX*0.7 then -- snow melts -- minetest.get_node_light(p)>LIGHT_MAX-3 + minetest.set_node(pos, {name="default:water_source"}) + end + end, +}) + + +minetest.register_abm({ -- lava destroyes bones (every?) after 5 minutes + nodenames = {"bones:bones"}, + neighbors = {"default:lava_flowing","default:lava_source"}, + interval = 300, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + minetest.set_node(pos, {name="default:lava_source"}) + end, +}) + + + +-- rnd : CRAFTING DIRT FROM BONES + +minetest.register_craft({ + output = "default:dirt", + recipe = { + {"bones:bones", "bones:bones","bones:bones"}, + {"bones:bones", "bones:bones","bones:bones"}, + {"bones:bones", "bones:bones","bones:bones"} + } +}) + +minetest.register_craft({ + output = "default:sand", + recipe = { + {"bones:bones", "bones:bones"}, + {"bones:bones", "bones:bones"} + } +}) + +minetest.register_craft({ + output = "bones:bones", + recipe = { + {"default:stone", "default:tree","default:stone"}, + } +}) + +minetest.register_craft({ + output = "default:desert_cobble", + recipe = { + {"default:stone", "default:sandstone","default:stone"}, + } +}) + +minetest.register_craft({ + output = "default:clay", + recipe = { + {"bones:bones 4"}, + } +}) + + + +minetest.register_craft({ + output = "default:sapling", + recipe = { + {"default:dirt", "bones:bones"} + } +}) + + +minetest.register_craft({ + output = "default:papyrus", + recipe = { + {"default:dirt","default:leaves"}, + } +}) + +minetest.register_craft({ + output = "default:cactus", + recipe = { + {"default:sand","default:leaves"}, + } +}) + + +minetest.register_craft({ + output = "farming:seed_wheat", + recipe = { + {"default:dirt", "papyrus"} + } +}) + +minetest.register_craft({ + output = "farming:seed_cotton", + recipe = { + {"default:dirt", "farming:seed_wheat"} + } +}) + +minetest.register_craft({ + output = "default:gravel", + recipe = { + {"default:stone"}, + } +}) + +minetest.register_craft({ + output = "default:pine_sapling", + recipe = { + {"default:dirt","default:cactus"}, + } +}) + +minetest.register_craft({ + output = "default:junglesapling", + recipe = { + {"default:dirt","default:pine_sapling"}, + } +}) + +--flowers +minetest.register_craft({ + output = "flowers:dandelion_white", + recipe = { + {"default:dirt","default:dirt","default:dirt"}, + {"default:dirt","default:diamond","default:dirt"}, + {"default:dirt","default:dirt","default:dirt"}, + } +}) + +minetest.register_craft({ + output = "flowers:dandelion_yellow", + recipe = { + {"default:dirt","flowers:dandelion_white","default:gold_ingot"}, + } +}) + +minetest.register_craft({ + output = "flowers:geranium", + recipe = { + {"default:dirt","flowers:dandelion_white","moreores:mithril_ingot"}, + } +}) + + +minetest.register_craft({ + output = "flowers:flower_rose", + recipe = { + {"default:dirt","flowers:dandelion_white","default:brick"}, + } +}) + +minetest.register_craft({ + output = "flowers:tulip", + recipe = { + {"default:dirt","flowers:dandelion_yellow","flowers:flower_rose"}, + } +}) + + +minetest.register_craft({ + output = "flowers:tulip", + recipe = { + {"default:dirt","flowers:geranium","flowers: rose"}, + } +}) + + +-- here various player stats are saved +local playerdata = {}; + +-- players walk slower away from spawn +local time = 0 +MYMOD_UPDATE_TIME = 1 + +minetest.register_globalstep(function(dtime) + time = time + dtime + local spawnpoint = core.setting_get_pos("static_spawnpoint") + local mult + local pos + local player + local t + if time > MYMOD_UPDATE_TIME then + for _,player in ipairs(minetest.get_connected_players()) do + -- check whether speed was already affected + if playerdata[player:get_player_name()]==nil or playerdata[player:get_player_name()] == false then + + pos = player:getpos() + -- SPEED ADJUSTMENT + mult = math.sqrt((pos.x-spawnpoint.x)^2+(pos.z-spawnpoint.z)^2) + if mult>200 and pos.y> 0 then -- only on "surface" + mult = (7./5)/(mult/500.+1.) -- starts linearly falling from 200 + else + mult = 1. + end + player:set_physics_override({speed = mult}); + --minetest.chat_send_player(player:get_player_name(), "speed factor "..mult) --debug only + + --GRAVITY ADJUSTMENT above y = 50 + + if pos.y > 50 then mult = 2/((pos.y/50)^2+1.) + else + mult = 1. + end + player:set_physics_override({gravity = mult}); + + end + time = 0 + + + end + + end +end) + + + +-- cripple land mine, activated by mese + +LANDMINE_RANGE = 4 + +minetest.register_abm( + {nodenames = {"mymod:landmine_on"}, + interval = 1.0, + chance = 1, + action = function(pos) + + local objects = minetest.get_objects_inside_radius(pos, LANDMINE_RANGE) -- radius + for _,obj in ipairs(objects) do + if (obj:is_player()) then + local obj_pos = obj:getpos() + local dist = vector.distance(obj_pos, pos) + local damage = 1 + if dist > 0 and obj:get_hp()>1 then -- no damage if hp<=1 + obj:set_physics_override({speed = 0.1}); + playerdata[obj:get_player_name()] = {speed = true}; -- remember that speed was changed + obj:punch(obj, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy=damage}, + }) + + end + end + end + end, +}) + + + +minetest.register_node("mymod:landmine_on", { + description = "landmine on", + inventory_image = "side_on.png", + wield_image = "side_on.png", + wield_scale = {x=0.8,y=2.5,z=1.3}, + tiles = {"side_on.png","side_on.png","side_on.png"}, + stack_max = 1, + groups = {oddly_breakable_by_hand=1,mesecon_effector_on = 1}, + mesecons = {effector = { + action_off = function (pos, node) + minetest.swap_node(pos, {name = "mymod:landmine_off"}) + end + }} + } +) + + + +minetest.register_node("mymod:landmine_off", { + description = "landmine off", + inventory_image = "side_off.png", + wield_image = "side_off.png", + wield_scale = {x=0.8,y=2.5,z=1.3}, + tiles = {"side_off.png","side_off.png","side_off.png"}, + stack_max = 1, + groups = {oddly_breakable_by_hand=1,mesecon_effector_on = 1}, + mesecons = {effector = { + action_on = function (pos, node) + minetest.swap_node(pos, {name = "mymod:landmine_on"}) + local objects = minetest.get_objects_inside_radius(pos, LANDMINE_RANGE) -- radius + for _,obj in ipairs(objects) do + if (obj:is_player()) then + local obj_pos = obj:getpos() + local dist = vector.distance(obj_pos, pos) + if dist > 0 then -- restore movement speed, whatever.... + obj:set_physics_override({speed = 0.1}); + end + end + end + end + }} + } +) + + + minetest.register_on_dieplayer(function(player) -- restore ill effects with death + player:set_physics_override({speed = 1.0}) + playerdata[player:get_player_name()] = {speed = false}; + end) + + + minetest.register_craft({ + output = "mymod:landmine_off", + recipe = { + {"","default:mese_crystal",""}, + {"default:steel_ingot","default:steel_ingot","default:steel_ingot"}, + } +}) \ No newline at end of file diff --git a/mods/mymod/textures/side_off.png b/mods/mymod/textures/side_off.png new file mode 100644 index 0000000..2ad9acc Binary files /dev/null and b/mods/mymod/textures/side_off.png differ diff --git a/mods/mymod/textures/side_on.png b/mods/mymod/textures/side_on.png new file mode 100644 index 0000000..46140da Binary files /dev/null and b/mods/mymod/textures/side_on.png differ diff --git a/mods/pipeworks/LICENSE b/mods/pipeworks/LICENSE new file mode 100644 index 0000000..eb930e9 --- /dev/null +++ b/mods/pipeworks/LICENSE @@ -0,0 +1,17 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. + +---------- + +This license is commonly known as "WTFPL". diff --git a/mods/pipeworks/README b/mods/pipeworks/README new file mode 100644 index 0000000..b9c68f9 --- /dev/null +++ b/mods/pipeworks/README @@ -0,0 +1,22 @@ +This mod uses nodeboxes to supply a complete set of 3D pipes and tubes, +along devices that work with them. + +See http://vanessae.github.io/pipeworks/ for detailed information about usage of this mod. + +Unlike the previous version of this mod, these pipes are rounded, and when +placed, they'll automatically join together as needed. Pipes can go vertically +or horizontally, and there are enough nodes defined to allow for all possible +connections. Valves and pumps can only be placed horizontally, and will +automatically rotate and join with neighboring pipes as objects are added, as +well as joining with each other under certain circumstances. + +Pipes come in two variants: one type bears one or more dark windows on each +pipe, suggesting they're empty, while the other type bears green-tinted +windows, as if full (the two colors should also be easy to select if you want +to change them in a paint program). These windows only appear on straight +lengths and on certain junctions. + +This mod is a work in progress. + +Please note that owing to the nature of this mod, I have opted to use 64px +textures. Anything less just looks terrible. diff --git a/mods/pipeworks/autocrafter.lua b/mods/pipeworks/autocrafter.lua new file mode 100644 index 0000000..b2e50c1 --- /dev/null +++ b/mods/pipeworks/autocrafter.lua @@ -0,0 +1,131 @@ +local autocrafterCache = {} -- caches some recipe data to avoid to call the slow function minetest.get_craft_result() every second + +local function make_inventory_cache(invlist) + local l = {} + for _, stack in ipairs(invlist) do + l[stack:get_name()] = (l[stack:get_name()] or 0) + stack:get_count() + end + return l +end + +local function autocraft(inventory, pos) + local recipe = inventory:get_list("recipe") + local recipe_last + local result + local new + + if autocrafterCache[minetest.hash_node_position(pos)] == nil then + recipe_last = {} + for i = 1, 9 do + recipe_last[i] = recipe[i] + recipe[i] = ItemStack({name = recipe[i]:get_name(), count = 1}) + end + result, new = minetest.get_craft_result({method = "normal", width = 3, items = recipe}) + autocrafterCache[minetest.hash_node_position(pos)] = {["recipe"] = recipe, ["result"] = result, ["new"] = new} + else + local autocrafterCacheEntry = autocrafterCache[minetest.hash_node_position(pos)] + recipe_last = autocrafterCacheEntry["recipe"] + result = autocrafterCacheEntry["result"] + new = autocrafterCacheEntry["new"] + local recipeUnchanged = true + for i = 1, 9 do + if recipe[i]:get_name() ~= recipe_last[i]:get_name() then + recipeUnchanged = false + break + end + if recipe[i]:get_count() ~= recipe_last[i]:get_count() then + recipeUnchanged = false + break + end + end + if recipeUnchanged then + else + for i = 1, 9 do + recipe_last[i] = recipe[i] + recipe[i] = ItemStack({name = recipe[i]:get_name(), count = 1}) + end + result, new = minetest.get_craft_result({method = "normal", width = 3, items = recipe}) + autocrafterCache[minetest.hash_node_position(pos)] = {["recipe"] = recipe, ["result"] = result, ["new"] = new} + end + end + + if result.item:is_empty() then return end + result = result.item + if not inventory:room_for_item("dst", result) then return end + local to_use = {} + for _, item in ipairs(recipe) do + if item~= nil and not item:is_empty() then + if to_use[item:get_name()] == nil then + to_use[item:get_name()] = 1 + else + to_use[item:get_name()] = to_use[item:get_name()]+1 + end + end + end + local invcache = make_inventory_cache(inventory:get_list("src")) + for itemname, number in pairs(to_use) do + if (not invcache[itemname]) or invcache[itemname] < number then return end + end + for itemname, number in pairs(to_use) do + for i = 1, number do -- We have to do that since remove_item does not work if count > stack_max + inventory:remove_item("src", ItemStack(itemname)) + end + end + inventory:add_item("dst", result) + for i = 1, 9 do + inventory:add_item("dst", new.items[i]) + end +end + +minetest.register_node("pipeworks:autocrafter", { + description = "Autocrafter", + drawtype = "normal", + tiles = {"pipeworks_autocrafter.png"}, + groups = {snappy = 3, tubedevice = 1, tubedevice_receiver = 1}, + tube = {insert_object = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:add_item("src", stack) + end, + can_insert = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:room_for_item("src", stack) + end, + input_inventory = "dst", + connect_sides = {left = 1, right = 1, front = 1, back = 1, top = 1, bottom = 1}}, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", + "size[8,11]".. + "list[current_name;recipe;0,0;3,3;]".. + "list[current_name;src;0,3.5;8,3;]".. + "list[current_name;dst;4,0;4,3;]".. + "list[current_player;main;0,7;8,4;]") + meta:set_string("infotext", "Autocrafter") + local inv = meta:get_inventory() + inv:set_size("src", 3*8) + inv:set_size("recipe", 3*3) + inv:set_size("dst", 4*3) + end, + can_dig = function(pos, player) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + return (inv:is_empty("src") and inv:is_empty("recipe") and inv:is_empty("dst")) + end, + after_place_node = function(pos) + pipeworks.scan_for_tube_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_tube_objects(pos) + autocrafterCache[minetest.hash_node_position(pos)] = nil + end +}) + +minetest.register_abm({nodenames = {"pipeworks:autocrafter"}, interval = 1, chance = 1, + action = function(pos, node) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + autocraft(inv, pos) + end +}) diff --git a/mods/pipeworks/autoplace_pipes.lua b/mods/pipeworks/autoplace_pipes.lua new file mode 100644 index 0000000..69bd90e --- /dev/null +++ b/mods/pipeworks/autoplace_pipes.lua @@ -0,0 +1,200 @@ +-- autorouting for pipes +local tube_table = {[0] = 1, 2, 2, 4, 2, 4, 4, 5, 2, 3, 4, 6, 4, 6, 5, 7, 2, 4, 3, 6, 4, 5, 6, 7, 4, 6, 6, 8, 5, 7, 7, 9, 2, 4, 4, 5, 3, 6, 6, 7, 4, 6, 5, 7, 6, 8, 7, 9, 4, 5, 6, 7, 6, 7, 8, 9, 5, 7, 7, 9, 7, 9, 9, 10} +local tube_table_facedirs = {[0] = 0, 0, 5, 0, 3, 4, 3, 0, 2, 0, 2, 0, 6, 4, 3, 0, 7, 12, 5, 12, 7, 4, 5, 5, 18, 20, 16, 0, 7, 4, 7, 0, 1, 8, 1, 1, 1, 13, 1, 1, 10, 8, 2, 2, 17, 4, 3, 6, 9, 9, 9, 9, 21, 13, 1, 1, 10, 10, 11, 2, 19, 4, 3, 0} +local function autoroute_pipes(pos) + local nctr = minetest.get_node(pos) + local state = "_empty" + if (string.find(nctr.name, "pipeworks:pipe_") == nil) then return end + if (string.find(nctr.name, "_loaded") ~= nil) then state = "_loaded" end + local nsurround = pipeworks.scan_pipe_surroundings(pos) + + if nsurround == 0 then nsurround = 9 end + minetest.add_node(pos, {name = "pipeworks:pipe_"..tube_table[nsurround]..state, + param2 = tube_table_facedirs[nsurround]}) +end + +function pipeworks.scan_for_pipe_objects(pos) + autoroute_pipes({ x=pos.x-1, y=pos.y , z=pos.z }) + autoroute_pipes({ x=pos.x+1, y=pos.y , z=pos.z }) + autoroute_pipes({ x=pos.x , y=pos.y-1, z=pos.z }) + autoroute_pipes({ x=pos.x , y=pos.y+1, z=pos.z }) + autoroute_pipes({ x=pos.x , y=pos.y , z=pos.z-1 }) + autoroute_pipes({ x=pos.x , y=pos.y , z=pos.z+1 }) + autoroute_pipes(pos) +end + +-- auto-rotation code for various devices the tubes attach to + +function pipeworks.scan_pipe_surroundings(pos) + local pxm=0 + local pxp=0 + local pym=0 + local pyp=0 + local pzm=0 + local pzp=0 + + local nxm = minetest.get_node({ x=pos.x-1, y=pos.y , z=pos.z }) + local nxp = minetest.get_node({ x=pos.x+1, y=pos.y , z=pos.z }) + local nym = minetest.get_node({ x=pos.x , y=pos.y-1, z=pos.z }) + local nyp = minetest.get_node({ x=pos.x , y=pos.y+1, z=pos.z }) + local nzm = minetest.get_node({ x=pos.x , y=pos.y , z=pos.z-1 }) + local nzp = minetest.get_node({ x=pos.x , y=pos.y , z=pos.z+1 }) + + if (string.find(nxm.name, "pipeworks:pipe_") ~= nil) then pxm=1 end + if (string.find(nxp.name, "pipeworks:pipe_") ~= nil) then pxp=1 end + if (string.find(nym.name, "pipeworks:pipe_") ~= nil) then pym=1 end + if (string.find(nyp.name, "pipeworks:pipe_") ~= nil) then pyp=1 end + if (string.find(nzm.name, "pipeworks:pipe_") ~= nil) then pzm=1 end + if (string.find(nzp.name, "pipeworks:pipe_") ~= nil) then pzp=1 end + +-- Special handling for valves... + + if (string.find(nxm.name, "pipeworks:valve") ~= nil) + and (nxm.param2 == 0 or nxm.param2 == 2) then + pxm=1 + end + + if (string.find(nxp.name, "pipeworks:valve") ~= nil) + and (nxp.param2 == 0 or nxp.param2 == 2) then + pxp=1 + end + + if (string.find(nzm.name, "pipeworks:valve") ~= nil) + and (nzm.param2 == 1 or nzm.param2 == 3) then + pzm=1 + end + + if (string.find(nzp.name, "pipeworks:valve") ~= nil) + and (nzp.param2 == 1 or nzp.param2 == 3) then + pzp=1 + end + +-- ...flow sensors... + + if (string.find(nxm.name, "pipeworks:flow_sensor") ~= nil) + and (nxm.param2 == 0 or nxm.param2 == 2) then + pxm=1 + end + + if (string.find(nxp.name, "pipeworks:flow_sensor") ~= nil) + and (nxp.param2 == 0 or nxp.param2 == 2) then + pxp=1 + end + + if (string.find(nzm.name, "pipeworks:flow_sensor") ~= nil) + and (nzm.param2 == 1 or nzm.param2 == 3) then + pzm=1 + end + + if (string.find(nzp.name, "pipeworks:flow_sensor") ~= nil) + and (nzp.param2 == 1 or nzp.param2 == 3) then + pzp=1 + end + +-- ...spigots... + + if (string.find(nxm.name, "pipeworks:spigot") ~= nil) + and nxm.param2 == 1 then + pxm=1 + end + + if (string.find(nxp.name, "pipeworks:spigot") ~= nil) + and nxp.param2 == 3 then + pxp=1 + end + + if (string.find(nzm.name, "pipeworks:spigot") ~= nil) + and nzm.param2 == 0 then + pzm=1 + end + + if (string.find(nzp.name, "pipeworks:spigot") ~= nil) + and nzp.param2 == 2 then + pzp=1 + end + +-- ...sealed pipe entry/exit... + + if (string.find(nxm.name, "pipeworks:entry_panel") ~= nil) + and (nxm.param2 == 1 or nxm.param2 == 3) then + pxm=1 + end + + if (string.find(nxp.name, "pipeworks:entry_panel") ~= nil) + and (nxp.param2 == 1 or nxp.param2 == 3) then + pxp=1 + end + + if (string.find(nzm.name, "pipeworks:entry_panel") ~= nil) + and (nzm.param2 == 0 or nzm.param2 == 2) then + pzm=1 + end + + if (string.find(nzp.name, "pipeworks:entry_panel") ~= nil) + and (nzp.param2 == 0 or nzp.param2 == 2) then + pzp=1 + end + + if (string.find(nym.name, "pipeworks:entry_panel") ~= nil) + and nym.param2 == 13 then + pym=1 + end + + if (string.find(nyp.name, "pipeworks:entry_panel") ~= nil) + and nyp.param2 == 13 then + pyp=1 + end + + +-- ...pumps, grates... + + if (string.find(nym.name, "pipeworks:grating") ~= nil) or + (string.find(nym.name, "pipeworks:pump") ~= nil) then + pym=1 + end + +-- ...fountainheads... + + if (string.find(nyp.name, "pipeworks:fountainhead") ~= nil) then + pyp=1 + end + +-- ... and storage tanks. + + if (string.find(nym.name, "pipeworks:storage_tank_") ~= nil) then + pym=1 + end + + if (string.find(nyp.name, "pipeworks:storage_tank_") ~= nil) then + pyp=1 + end + +-- ...extra devices specified via the function's parameters +-- ...except that this part is not implemented yet +-- +-- xxx = nxm, nxp, nym, nyp, nzm, or nzp depending on the direction to check +-- yyy = pxm, pxp, pym, pyp, pzm, or pzp accordingly. +-- +-- if string.find(xxx.name, "modname:nodename") ~= nil then +-- yyy = 1 +-- end +-- +-- for example: +-- +-- if string.find(nym.name, "aero:outlet") ~= nil then +-- pym = 1 +-- end +-- + + return pxm+8*pxp+2*pym+16*pyp+4*pzm+32*pzp +end + +function pipeworks.look_for_stackable_tanks(pos) + local tym = minetest.get_node({ x=pos.x , y=pos.y-1, z=pos.z }) + + if string.find(tym.name, "pipeworks:storage_tank_") ~= nil or + string.find(tym.name, "pipeworks:expansion_tank_") ~= nil then + minetest.add_node(pos, { name = "pipeworks:expansion_tank_0", param2 = tym.param2}) + end +end + diff --git a/mods/pipeworks/autoplace_tubes.lua b/mods/pipeworks/autoplace_tubes.lua new file mode 100644 index 0000000..42cf98b --- /dev/null +++ b/mods/pipeworks/autoplace_tubes.lua @@ -0,0 +1,130 @@ +-- autorouting for pneumatic tubes + +local function is_tube(nodename) + return table.contains(pipeworks.tubenodes, nodename) +end + +--a function for determining which side of the node we are on +local function nodeside(node, tubedir) + if node.param2 < 0 or node.param2 > 23 then + node.param2 = 0 + end + + local backdir = minetest.facedir_to_dir(node.param2) + local back = vector.dot(backdir, tubedir) + if back == 1 then + return "back" + elseif back == -1 then + return "front" + end + + local topdir = minetest.facedir_to_top_dir(node.param2) + local top = vector.dot(topdir, tubedir) + if top == 1 then + return "top" + elseif top == -1 then + return "bottom" + end + + local rightdir = minetest.facedir_to_right_dir(node.param2) + local right = vector.dot(rightdir, tubedir) + if right == 1 then + return "right" + else + return "left" + end +end + +local vts = {0, 3, 1, 4, 2, 5} +local tube_table = {[0] = 1, 2, 2, 4, 2, 4, 4, 5, 2, 3, 4, 6, 4, 6, 5, 7, 2, 4, 3, 6, 4, 5, 6, 7, 4, 6, 6, 8, 5, 7, 7, 9, 2, 4, 4, 5, 3, 6, 6, 7, 4, 6, 5, 7, 6, 8, 7, 9, 4, 5, 6, 7, 6, 7, 8, 9, 5, 7, 7, 9, 7, 9, 9, 10} +local tube_table_facedirs = {[0] = 0, 0, 5, 0, 3, 4, 3, 0, 2, 0, 2, 0, 6, 4, 3, 0, 7, 12, 5, 12, 7, 4, 5, 5, 18, 20, 16, 0, 7, 4, 7, 0, 1, 8, 1, 1, 1, 13, 1, 1, 10, 8, 2, 2, 17, 4, 3, 6, 9, 9, 9, 9, 21, 13, 1, 1, 10, 10, 11, 2, 19, 4, 3, 0} +local function tube_autoroute(pos) + local active = {0, 0, 0, 0, 0, 0} + local nctr = minetest.get_node(pos) + if not is_tube(nctr.name) then return end + + local adjustments = { + {x = -1, y = 0, z = 0}, + {x = 1, y = 0, z = 0}, + {x = 0, y = -1, z = 0}, + {x = 0, y = 1, z = 0}, + {x = 0, y = 0, z = -1}, + {x = 0, y = 0, z = 1} + } + -- xm = 1, xp = 2, ym = 3, yp = 4, zm = 5, zp = 6 + + local positions = {} + local nodes = {} + for i, adj in ipairs(adjustments) do + positions[i] = vector.add(pos, adj) + nodes[i] = minetest.get_node(positions[i]) + end + + for i, node in ipairs(nodes) do + local idef = minetest.registered_nodes[node.name] + -- handle the tubes themselves + if is_tube(node.name) then + active[i] = 1 + -- handle new style connectors + elseif idef and idef.tube and idef.tube.connect_sides then + local dir = adjustments[i] + if idef.tube.connect_sides[nodeside(node, vector.multiply(dir, -1))] then + active[i] = 1 + end + end + end + + -- all sides checked, now figure which tube to use. + + local nodedef = minetest.registered_nodes[nctr.name] + local basename = nodedef.basename + if nodedef.style == "old" then + local nsurround = "" + for i, n in ipairs(active) do + nsurround = nsurround..n + end + nctr.name = basename.."_"..nsurround + elseif nodedef.style == "6d" then + local s = 0 + for i, n in ipairs(active) do + if n == 1 then + s = s + 2^vts[i] + end + end + nctr.name = basename.."_"..tube_table[s] + nctr.param2 = tube_table_facedirs[s] + end + minetest.swap_node(pos, nctr) +end + +function pipeworks.scan_for_tube_objects(pos) + for side = 0, 6 do + tube_autoroute(vector.add(pos, directions.side_to_dir(side))) + end +end + +minetest.register_on_placenode(function(pos, newnode, placer, oldnode, itemstack) + if minetest.registered_items[newnode.name] + and minetest.registered_items[newnode.name].tube + and minetest.registered_items[newnode.name].tube.connect_sides then + pipeworks.scan_for_tube_objects(pos) + end +end) + +minetest.register_on_dignode(function(pos, oldnode, digger) + if minetest.registered_items[oldnode.name] + and minetest.registered_items[oldnode.name].tube + and minetest.registered_items[oldnode.name].tube.connect_sides then + pipeworks.scan_for_tube_objects(pos) + end +end) + +if minetest.get_modpath("mesecons_mvps") then + mesecon:register_on_mvps_move(function(moved_nodes) + for _, n in ipairs(moved_nodes) do + pipeworks.scan_for_tube_objects(n.pos) + pipeworks.scan_for_tube_objects(n.oldpos) + end + end) +end + diff --git a/mods/pipeworks/changelog.txt b/mods/pipeworks/changelog.txt new file mode 100644 index 0000000..251df29 --- /dev/null +++ b/mods/pipeworks/changelog.txt @@ -0,0 +1,93 @@ +Changelog +--------- + +2013-01-13: Tubes can transport items now! Namely, I added Novatux/Nore's item +transport mod as a default part of this mod, to make tubes do something useful! +Thanks to Nore and RealBadAngel for the code contributions! + +2013-01-05: made storage tanks connect from top/bottom, made storage tank and +pipe textures use the ^ combine operator so they can show the actual liquid +going through the pipes/tanks. + +2013-01-04 (a bit later): Made pipes able to carry water! It was just a minor +logic error resulting from moving the water flowing code into it's own file +when I originally imported it. Many thanks to Mauvebic for writing it! + +2013-01-04: First stage of integrating Mauvebic's water flowing code. This is +experimental and doesn't move water yet - but at least it doesn't break +anything :-) + +2013-01-01: Various minor tweaks to textures, facedir settings, some other +stuff. Changed crafting recipes to account for revamped pumps, valves, etc. +Now requires the moreores mod and most recent git (for mese crystal fragments) +to craft a pump. Added a "sealed" entry/exit panel (really just a horizontal +pipe with a metal panel overlayed into the middle). Also, tweaked pipes to +always drop the empty ones. Revamped pumps so that now they should sit in/on +liquid and be connected only from the top, relegated grates to decorational- +only, added outlet spigot. Got rid of a few obsolete textures. Got rid of +that whole _x and _z naming thing - now all directional devices (pumps, valves, +spigots, tanks) use facedir. Valves, spigots no longer auto-rotate to find +nearby pipes. + +2012-09-17: Added test object for pneumatic tube autorouting code, made tubes +connect to it and any object that bears groups={tubedevice=1} (connects to any +side) + +2012-09-05: All recipes doubled except for junglegrass -> plastic sheet (since +that is derived from home decor) + +2012-09-02: Fixed plastic sheeting recipe. Added crafting recipes for various +objects, with options: If homedecor is installed, use the plastic sheeting +therein. If not, we define it manually. If the Technic mod is installed, +don't define any recipes at all. Also removed the extra "loaded!" messages and +tweaked the default pipe alias to point to something that is actually visible +:-) + +2012-09-01: flattened wielded pipe segment. + +2012-08-24: Added square-ish pneumatic tubes with their own autoplace code +(does not connect to steel pipes or pipe-oriented devices), then revised their +textures shortly after. Fixed a recursion bug that sometimes caused a stack +overflow. Old pipes were overriding the pipeworks:pipe defintion that belongs +with the new pipes. + +2012-08-22: Added outlet grate, made it participate in autoplace algorithm. +Extended storage tank to show fill level in 10% steps (0% to 100%). Added +"expansion tank" that appears if the user stacks tanks upwards. (Downwards is +not checked). + +2012-08-21: Made storage tank participate in autoplace algorithm. Tuned API a +little to allow for more flexible placement. Re-organized code a bit to allow +for some upcoming rules changes. Made storage tanks' upper/lower fittins and +intake grate participate in autoplace algorithm. + +2012-08-20: Added temporary nodes for storage tank and intake grating, but +without autoplace. + +2012-08-19: Pumps and valves now fully participate in the +auto-rotate/auto-place algorithm. + +2012-08-18: Total rewrite again. All pipes are now nice and round-looking, and +they auto-connect! Also added temporary nodes for pump and valve (each with an +on/off setting - punch to change). No crafting recipes yet and the pipes still +don't do anything useful yet. Soon. + +2012-08-06: Moved this changelog off the forum post and into a separate file. + +2012-08-05 (multiple updates): Rewrote pipeworks to use loops and tables to +create the nodes. Requires far less code now. Added -X, +X, -Y, +Y, -Z, +Z +capped stubs and a short centered horizontal segment. Changed node definitions +so that the aforementioned "short centered" segment is given on dig/drop. +Renamed it to just "pipeworks:pipe" (and pipe_loaded). Added empty/loaded +indicator images to the capped ends, removed some redundant comments. Made the +empty/loaded indication at the capped end more prominent. + +2012-07-21: Added screenshot showing pipes as they look now that nodebox +texture rotation is fixed. + +2012-07-18: Changed the mod name and all internals to 'pipeworks' instead of +'pipes'... after a couple of mistakes :-) + +2012-07-12: moved project to github. + +2012-06-23: Initial release, followed by reworking the textures a bit. diff --git a/mods/pipeworks/common.lua b/mods/pipeworks/common.lua new file mode 100644 index 0000000..b50b733 --- /dev/null +++ b/mods/pipeworks/common.lua @@ -0,0 +1,146 @@ +---------------------- +-- Vector functions -- +---------------------- + +function vector.cross(a, b) + return { + x = a.y * b.z - a.z * b.y, + y = a.z * b.x - a.x * b.z, + z = a.x * b.y - a.y * b.x + } +end + +function vector.dot(a, b) + return a.x * b.x + a.y * b.y + a.z * b.z +end + +----------------------- +-- Facedir functions -- +----------------------- + +function minetest.facedir_to_top_dir(facedir) + return ({[0] = {x = 0, y = 1, z = 0}, + {x = 0, y = 0, z = 1}, + {x = 0, y = 0, z = -1}, + {x = 1, y = 0, z = 0}, + {x = -1, y = 0, z = 0}, + {x = 0, y = -1, z = 0}}) + [math.floor(facedir / 4)] +end + +function minetest.facedir_to_right_dir(facedir) + return vector.cross( + minetest.facedir_to_top_dir(facedir), + minetest.facedir_to_dir(facedir) + ) +end + +directions = {} +function directions.side_to_dir(side) + return ({[0] = vector.new(), + vector.new( 0, 1, 0), + vector.new( 0, -1, 0), + vector.new( 1, 0, 0), + vector.new(-1, 0, 0), + vector.new( 0, 0, 1), + vector.new( 0, 0, -1) + })[side] +end + +function directions.dir_to_side(dir) + local c = vector.dot(dir, vector.new(1, 2, 3)) + 4 + return ({6, 2, 4, 0, 3, 1, 5})[c] +end + +---------------------- +-- String functions -- +---------------------- + +--[[function string.split(str, sep) + local fields = {} + local index = 1 + local expr = "([^"..sep.."])+" + string.gsub(str, expr, function(substring) + fields[index] = substring + index = index + 1 + end) + return fields +end]] + +function string.startswith(str, substr) + return str:sub(1, substr:len()) == substr +end + +--------------------- +-- Table functions -- +--------------------- + +function table.contains(tbl, element) + for _, elt in pairs(tbl) do + if elt == element then + return true + end + end + return false +end + +function table.extend(tbl, tbl2) + local index = #tbl + 1 + for _, elt in ipairs(tbl2) do + tbl[index] = elt + index = index + 1 + end +end + +function table.recursive_replace(tbl, pattern, replace_with) + if type(tbl) == "table" then + local tbl2 = {} + for key, value in pairs(tbl) do + tbl2[key] = table.recursive_replace(value, pattern, replace_with) + end + return tbl2 + elseif type(tbl) == "string" then + return tbl:gsub(pattern, replace_with) + else + return tbl + end +end + +------------------------ +-- Formspec functions -- +------------------------ + +fs_helpers = {} +function fs_helpers.on_receive_fields(pos, fields) + local meta = minetest.get_meta(pos) + for field, value in pairs(fields) do + if field:startswith("fs_helpers_cycling:") then + local l = field:split(":") + local new_value = tonumber(l[2]) + local meta_name = l[3] + meta:set_int(meta_name, new_value) + end + end +end + +function fs_helpers.cycling_button(meta, base, meta_name, values) + local current_value = meta:get_int(meta_name) + local new_value = (current_value + 1) % (#values) + local text = values[current_value + 1] + local field = "fs_helpers_cycling:"..new_value..":"..meta_name + return base..";"..field..";"..minetest.formspec_escape(text).."]" +end + +--------- +-- Env -- +--------- + +function minetest.load_position(pos) + if pos.x < -30912 or pos.y < -30912 or pos.z < -30912 or + pos.x > 30927 or pos.y > 30927 or pos.z > 30927 then return end + if minetest.get_node_or_nil(pos) then + return + end + local vm = minetest.get_voxel_manip() + vm:read_from_map(pos, pos) +end diff --git a/mods/pipeworks/compat.lua b/mods/pipeworks/compat.lua new file mode 100644 index 0000000..a1c1d45 --- /dev/null +++ b/mods/pipeworks/compat.lua @@ -0,0 +1,130 @@ +-- this bit of code modifies the default chests and furnaces to be compatible +-- with pipeworks. + +minetest.override_item("default:furnace", { + tiles = { + "default_furnace_top.png^pipeworks_tube_connection_stony.png", + "default_furnace_bottom.png^pipeworks_tube_connection_stony.png", + "default_furnace_side.png^pipeworks_tube_connection_stony.png", + "default_furnace_side.png^pipeworks_tube_connection_stony.png", + "default_furnace_side.png^pipeworks_tube_connection_stony.png", + "default_furnace_front.png" + }, + groups = {cracky = 2, tubedevice = 1, tubedevice_receiver = 1}, + tube = { + insert_object = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 1 then + return inv:add_item("fuel",stack) + else + return inv:add_item("src",stack) + end + end, + can_insert = function(pos,node,stack,direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 1 then + return inv:room_for_item("fuel", stack) + else + return inv:room_for_item("src", stack) + end + end, + input_inventory = "dst", + connect_sides = {left = 1, right = 1, back = 1, front = 1, bottom = 1, top = 1} + }, +}) + +minetest.override_item("default:furnace_active", { + tiles = { + "default_furnace_top.png^pipeworks_tube_connection_stony.png", + "default_furnace_bottom.png^pipeworks_tube_connection_stony.png", + "default_furnace_side.png^pipeworks_tube_connection_stony.png", + "default_furnace_side.png^pipeworks_tube_connection_stony.png", + "default_furnace_side.png^pipeworks_tube_connection_stony.png", + { + image = "default_furnace_front_active.png", + backface_culling = false, + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 1.5 + }, + } + }, + groups = {cracky = 2, tubedevice = 1, tubedevice_receiver = 1, not_in_creative_inventory = 1}, + tube = { + insert_object = function(pos,node,stack,direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 1 then + return inv:add_item("fuel", stack) + else + return inv:add_item("src", stack) + end + end, + can_insert = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 1 then + return inv:room_for_item("fuel", stack) + else + return inv:room_for_item("src", stack) + end + end, + input_inventory = "dst", + connect_sides = {left = 1, right = 1, back = 1, front = 1, bottom = 1, top = 1} + }, +}) + +minetest.override_item("default:chest", { + tiles = { + "default_chest_top.png^pipeworks_tube_connection_wooden.png", + "default_chest_top.png^pipeworks_tube_connection_wooden.png", + "default_chest_side.png^pipeworks_tube_connection_wooden.png", + "default_chest_side.png^pipeworks_tube_connection_wooden.png", + "default_chest_side.png^pipeworks_tube_connection_wooden.png", + "default_chest_front.png" + }, + groups = {choppy = 2, oddly_breakable_by_hand = 2, tubedevice = 1, tubedevice_receiver = 1}, + tube = { + insert_object = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:add_item("main", stack) + end, + can_insert = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:room_for_item("main", stack) + end, + input_inventory = "main", + connect_sides = {left = 1, right = 1, back = 1, front = 1, bottom = 1, top = 1} + }, +}) + +minetest.override_item("default:chest_locked", { + tiles = { + "default_chest_top.png^pipeworks_tube_connection_wooden.png", + "default_chest_top.png^pipeworks_tube_connection_wooden.png", + "default_chest_side.png^pipeworks_tube_connection_wooden.png", + "default_chest_side.png^pipeworks_tube_connection_wooden.png", + "default_chest_side.png^pipeworks_tube_connection_wooden.png", + "default_chest_lock.png" + }, + groups = {choppy = 2, oddly_breakable_by_hand = 2, tubedevice = 1, tubedevice_receiver = 1}, + tube = { + insert_object = function(pos, node, stack, direction) + local meta = minetest.env:get_meta(pos) + local inv = meta:get_inventory() + return inv:add_item("main", stack) + end, + can_insert = function(pos, node, stack, direction) + local meta = minetest.env:get_meta(pos) + local inv = meta:get_inventory() + return inv:room_for_item("main", stack) + end, + connect_sides = {left = 1, right = 1, back = 1, front = 1, bottom = 1, top = 1} + }, +}) diff --git a/mods/pipeworks/crafts.lua b/mods/pipeworks/crafts.lua new file mode 100644 index 0000000..e83718f --- /dev/null +++ b/mods/pipeworks/crafts.lua @@ -0,0 +1,321 @@ +-- Crafting recipes for pipes + +minetest.register_craft( { + output = "pipeworks:pipe_1_empty 12", + recipe = { + { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }, + { "", "", "" }, + { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:spigot 3", + recipe = { + { "pipeworks:pipe_1_empty", "" }, + { "", "pipeworks:pipe_1_empty" }, + }, +}) + +minetest.register_craft( { + output = "pipeworks:entry_panel_empty 2", + recipe = { + { "", "default:steel_ingot", "" }, + { "", "pipeworks:pipe_1_empty", "" }, + { "", "default:steel_ingot", "" }, + }, +}) + +-- Various ancillary pipe devices + +minetest.register_craft( { + output = "pipeworks:pump_off 2", + recipe = { + { "default:stone", "default:steel_ingot", "default:stone" }, + { "default:copper_ingot", "default:mese_crystal_fragment", "default:copper_ingot" }, + { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:valve_off_empty 2", + recipe = { + { "", "group:stick", "" }, + { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }, + { "", "default:steel_ingot", "" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:storage_tank_0 2", + recipe = { + { "", "default:steel_ingot", "default:steel_ingot" }, + { "default:steel_ingot", "default:glass", "default:steel_ingot" }, + { "default:steel_ingot", "default:steel_ingot", "" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:grating 2", + recipe = { + { "default:steel_ingot", "", "default:steel_ingot" }, + { "", "pipeworks:pipe_1_empty", "" }, + { "default:steel_ingot", "", "default:steel_ingot" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:flow_sensor_empty 2", + recipe = { + { "pipeworks:pipe_1_empty", "mesecons:mesecon", "pipeworks:pipe_1_empty" }, + }, +}) + +minetest.register_craft( { + output = "pipeworks:fountainhead 2", + recipe = { + { "pipeworks:pipe_1_empty" }, + { "pipeworks:pipe_1_empty" } + }, +}) + + +-- Crafting recipes for pneumatic tubes + +-- If homedecor is not installed, we need to register its crafting chain for +-- plastic sheeting so that pipeworks remains compatible with it. + +if minetest.get_modpath("homedecor") == nil then + + minetest.register_craftitem(":homedecor:oil_extract", { + description = "Oil extract", + inventory_image = "homedecor_oil_extract.png", + }) + + minetest.register_craftitem(":homedecor:paraffin", { + description = "Unprocessed paraffin", + inventory_image = "homedecor_paraffin.png", + }) + + minetest.register_alias("homedecor:plastic_base", "homedecor:paraffin") + + minetest.register_craftitem(":homedecor:plastic_sheeting", { + description = "Plastic sheet", + inventory_image = "homedecor_plastic_sheeting.png", + }) + + minetest.register_craft({ + type = "shapeless", + output = "homedecor:oil_extract 4", + recipe = { + "group:leaves", + "group:leaves", + "group:leaves", + "group:leaves", + "group:leaves", + "group:leaves" + } + }) + + minetest.register_craft({ + type = "cooking", + output = "homedecor:paraffin", + recipe = "homedecor:oil_extract", + }) + + minetest.register_craft({ + type = "cooking", + output = "homedecor:plastic_sheeting", + recipe = "homedecor:paraffin", + }) + + minetest.register_craft({ + type = "fuel", + recipe = "homedecor:oil_extract", + burntime = 30, + }) + + minetest.register_craft({ + type = "fuel", + recipe = "homedecor:paraffin", + burntime = 30, + }) + + minetest.register_craft({ + type = "fuel", + recipe = "homedecor:plastic_sheeting", + burntime = 30, + }) +end + +minetest.register_craft( { + output = "pipeworks:one_way_tube 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "group:stick", "default:mese_crystal", "homedecor:plastic_sheeting" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + + +minetest.register_craft( { + output = "pipeworks:tube_1 6", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "", "", "" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:mese_tube_1 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "", "default:mese_crystal", "" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + +minetest.register_craft( { + type = "shapeless", + output = "pipeworks:mese_tube_000000", + recipe = { + "pipeworks:tube_1", + "default:mese_crystal_fragment", + "default:mese_crystal_fragment", + "default:mese_crystal_fragment", + "default:mese_crystal_fragment" + }, +}) + +minetest.register_craft( { + output = "pipeworks:conductor_tube_off_1 6", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "mesecons:mesecon", "mesecons:mesecon", "mesecons:mesecon" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:detector_tube_off_1 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "mesecons:mesecon", "mesecons_materials:silicon", "mesecons:mesecon" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:accelerator_tube_1 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "default:mese_crystal_fragment", "default:steel_ingot", "default:mese_crystal_fragment" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:teleport_tube_1 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "default:desert_stone", "default:mese_block", "default:desert_stone" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:sand_tube_1 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "default:sand", "default:sand", "default:sand" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:sand_tube_1 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "default:desert_sand", "default:desert_sand", "default:desert_sand" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:sand_tube_1", + recipe = { + { "default:desert_sand", "pipeworks:tube_1", "default:desert_sand" }, + }, +}) + +minetest.register_craft( { + output = "pipeworks:mese_sand_tube_1 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "default:sand", "default:mese_crystal", "default:sand" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:mese_sand_tube_1 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "default:desert_sand", "default:mese_crystal", "default:desert_sand" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:crossing_tube_1 5", + recipe = { + { "", "pipeworks:tube_1", "" }, + { "pipeworks:tube_1", "pipeworks:tube_1", "pipeworks:tube_1" }, + { "", "pipeworks:tube_1", "" } + }, +}) + + +minetest.register_craft( { + type = "shapeless", + output = "pipeworks:mese_sand_tube_1", + recipe = { + "pipeworks:sand_tube_1", + "default:mese_crystal_fragment", + "default:mese_crystal_fragment", + "default:mese_crystal_fragment", + "default:mese_crystal_fragment" + }, +}) + +-- Various ancillary tube devices + +minetest.register_craft( { + output = "pipeworks:filter 2", + recipe = { + { "default:steel_ingot", "default:steel_ingot", "homedecor:plastic_sheeting" }, + { "group:stick", "default:mese_crystal", "homedecor:plastic_sheeting" }, + { "default:steel_ingot", "default:steel_ingot", "homedecor:plastic_sheeting" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:mese_filter 2", + recipe = { + { "default:steel_ingot", "default:steel_ingot", "homedecor:plastic_sheeting" }, + { "group:stick", "default:mese", "homedecor:plastic_sheeting" }, + { "default:steel_ingot", "default:steel_ingot", "homedecor:plastic_sheeting" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:autocrafter 2", + recipe = { + { "default:steel_ingot", "default:mese_crystal", "default:steel_ingot" }, + { "homedecor:plastic_sheeting", "default:steel_ingot", "homedecor:plastic_sheeting" }, + { "default:steel_ingot", "default:mese_crystal", "default:steel_ingot" } + }, +}) + + diff --git a/mods/pipeworks/default_settings.txt b/mods/pipeworks/default_settings.txt new file mode 100644 index 0000000..4aa4150 --- /dev/null +++ b/mods/pipeworks/default_settings.txt @@ -0,0 +1,19 @@ +-- Various settings + +pipeworks.enable_pipes = true +pipeworks.enable_autocrafter = true +pipeworks.enable_deployer = true +pipeworks.enable_dispenser = true +pipeworks.enable_node_breaker = true +pipeworks.enable_teleport_tube = true +pipeworks.enable_pipe_devices = true +pipeworks.enable_redefines = true +pipeworks.enable_mese_tube = true +pipeworks.enable_detector_tube = true +pipeworks.enable_conductor_tube = true +pipeworks.enable_accelerator_tube = true +pipeworks.enable_crossing_tube = true +pipeworks.enable_sand_tube = true +pipeworks.enable_mese_sand_tube = true +pipeworks.enable_one_way_tube = true +pipeworks.enable_cyclic_mode = true diff --git a/mods/pipeworks/depends.txt b/mods/pipeworks/depends.txt new file mode 100644 index 0000000..02a542c --- /dev/null +++ b/mods/pipeworks/depends.txt @@ -0,0 +1,3 @@ +default +mesecons? +mesecons_mvps? diff --git a/mods/pipeworks/devices.lua b/mods/pipeworks/devices.lua new file mode 100644 index 0000000..b7571d3 --- /dev/null +++ b/mods/pipeworks/devices.lua @@ -0,0 +1,702 @@ +-- List of devices that should participate in the autoplace algorithm + +local pipereceptor_on = nil +local pipereceptor_off = nil + +if mesecon then + pipereceptor_on = { + receptor = { + state = mesecon.state.on, + rules = pipeworks.mesecons_rules + } + } + + pipereceptor_off = { + receptor = { + state = mesecon.state.off, + rules = pipeworks.mesecons_rules + } + } +end + +local pipes_devicelist = { + "pump", + "valve", + "storage_tank_0", + "storage_tank_1", + "storage_tank_2", + "storage_tank_3", + "storage_tank_4", + "storage_tank_5", + "storage_tank_6", + "storage_tank_7", + "storage_tank_8", + "storage_tank_9", + "storage_tank_10" +} + +-- Now define the nodes. + +local states = { "on", "off" } +local dgroups = "" +local pumpboxes = {} + +for s in ipairs(states) do + + if states[s] == "off" then + dgroups = {snappy=3, pipe=1} + else + dgroups = {snappy=3, pipe=1, not_in_creative_inventory=1} + end + + pumpboxes = {} + + pipeworks.add_node_box(pumpboxes, pipeworks.pipe_pumpbody) + pipeworks.add_node_box(pumpboxes, pipeworks.pipe_topstub) + + minetest.register_node("pipeworks:pump_"..states[s], { + description = "Pump/Intake Module", + drawtype = "nodebox", + tiles = { + "pipeworks_pump_top.png", + "pipeworks_pump_bottom.png", + "pipeworks_pump_sides.png", + "pipeworks_pump_sides.png", + "pipeworks_pump_sides.png", + "pipeworks_pump_"..states[s]..".png" + }, + paramtype = "light", + paramtype2 = "facedir", + selection_box = { + type = "fixed", + fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 } + }, + node_box = { + type = "fixed", + fixed = pumpboxes + }, + groups = dgroups, + sounds = default.node_sound_wood_defaults(), + walkable = true, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + drop = "pipeworks:pump_off", + mesecons = {effector = { + action_on = function (pos, node) + minetest.add_node(pos,{name="pipeworks:pump_on", param2 = node.param2}) + end, + action_off = function (pos, node) + minetest.add_node(pos,{name="pipeworks:pump_off", param2 = node.param2}) + end + }}, + on_punch = function(pos, node, puncher) + local fdir = minetest.get_node(pos).param2 + minetest.add_node(pos, { name = "pipeworks:pump_"..states[3-s], param2 = fdir }) + end + }) + + local valveboxes = {} + pipeworks.add_node_box(valveboxes, pipeworks.pipe_leftstub) + pipeworks.add_node_box(valveboxes, pipeworks.pipe_valvebody) + if states[s] == "off" then + pipeworks.add_node_box(valveboxes, pipeworks.pipe_valvehandle_off) + else + pipeworks.add_node_box(valveboxes, pipeworks.pipe_valvehandle_on) + end + pipeworks.add_node_box(valveboxes, pipeworks.pipe_rightstub) + local tilex = "pipeworks_valvebody_ends.png" + local tilez = "pipeworks_valvebody_sides.png" + + minetest.register_node("pipeworks:valve_"..states[s].."_empty", { + description = "Valve", + drawtype = "nodebox", + tiles = { + "pipeworks_valvebody_top_"..states[s]..".png", + "pipeworks_valvebody_bottom.png", + tilex, + tilex, + tilez, + tilez, + }, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + selection_box = { + type = "fixed", + fixed = { -8/16, -4/16, -5/16, 8/16, 5/16, 5/16 } + }, + node_box = { + type = "fixed", + fixed = valveboxes + }, + groups = dgroups, + sounds = default.node_sound_wood_defaults(), + walkable = true, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + drop = "pipeworks:valve_off_empty", + mesecons = {effector = { + action_on = function (pos, node) + minetest.add_node(pos,{name="pipeworks:valve_on_empty", param2 = node.param2}) + end, + action_off = function (pos, node) + minetest.add_node(pos,{name="pipeworks:valve_off_empty", param2 = node.param2}) + end + }}, + on_punch = function(pos, node, puncher) + local fdir = minetest.get_node(pos).param2 + minetest.add_node(pos, { name = "pipeworks:valve_"..states[3-s].."_empty", param2 = fdir }) + end + }) +end + +local valveboxes = {} +pipeworks.add_node_box(valveboxes, pipeworks.pipe_leftstub) +pipeworks.add_node_box(valveboxes, pipeworks.pipe_valvebody) +pipeworks.add_node_box(valveboxes, pipeworks.pipe_rightstub) +pipeworks.add_node_box(valveboxes, pipeworks.pipe_valvehandle_on) + +minetest.register_node("pipeworks:valve_on_loaded", { + description = "Valve", + drawtype = "nodebox", + tiles = { + "pipeworks_valvebody_top_on.png", + "pipeworks_valvebody_bottom.png", + "pipeworks_valvebody_ends.png", + "pipeworks_valvebody_ends.png", + "pipeworks_valvebody_sides.png", + "pipeworks_valvebody_sides.png", + }, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + selection_box = { + type = "fixed", + fixed = { -8/16, -4/16, -5/16, 8/16, 5/16, 5/16 } + }, + node_box = { + type = "fixed", + fixed = valveboxes + }, + groups = {snappy=3, pipe=1, not_in_creative_inventory=1}, + sounds = default.node_sound_wood_defaults(), + walkable = true, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + drop = "pipeworks:valve_off_empty", + mesecons = {effector = { + action_on = function (pos, node) + minetest.add_node(pos,{name="pipeworks:valve_on_empty", param2 = node.param2}) + end, + action_off = function (pos, node) + minetest.add_node(pos,{name="pipeworks:valve_off_empty", param2 = node.param2}) + end + }}, + on_punch = function(pos, node, puncher) + local fdir = minetest.get_node(pos).param2 + minetest.add_node(pos, { name = "pipeworks:valve_off_empty", param2 = fdir }) + end +}) + +-- grating + +minetest.register_node("pipeworks:grating", { + description = "Decorative grating", + tiles = { + "pipeworks_grating_top.png", + "pipeworks_grating_sides.png", + "pipeworks_grating_sides.png", + "pipeworks_grating_sides.png", + "pipeworks_grating_sides.png", + "pipeworks_grating_sides.png" + }, + sunlight_propagates = true, + paramtype = "light", + groups = {snappy=3, pipe=1}, + sounds = default.node_sound_wood_defaults(), + walkable = true, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, +}) + +-- outlet spigot + + local spigotboxes = {} + pipeworks.add_node_box(spigotboxes, pipeworks.pipe_backstub) + pipeworks.add_node_box(spigotboxes, pipeworks.spigot_bottomstub) + pipeworks.add_node_box(spigotboxes, pipeworks.pipe_bendsphere) + + local spigotboxes_pouring = {} + pipeworks.add_node_box(spigotboxes_pouring, pipeworks.spigot_stream) + pipeworks.add_node_box(spigotboxes_pouring, pipeworks.pipe_backstub) + pipeworks.add_node_box(spigotboxes_pouring, pipeworks.spigot_bottomstub) + pipeworks.add_node_box(spigotboxes_pouring, pipeworks.pipe_bendsphere) + +minetest.register_node("pipeworks:spigot", { + description = "Spigot outlet", + drawtype = "nodebox", + tiles = { + "pipeworks_spigot_sides.png", + "pipeworks_pipe_end_empty.png", + "pipeworks_spigot_sides.png", + "pipeworks_spigot_sides.png", + "pipeworks_pipe_end_empty.png", + "pipeworks_spigot_sides.png" + }, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1}, + sounds = default.node_sound_wood_defaults(), + walkable = true, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + node_box = { + type = "fixed", + fixed = spigotboxes, + }, + selection_box = { + type = "fixed", + fixed = { -2/16, -6/16, -2/16, 2/16, 2/16, 8/16 } + } +}) + +minetest.register_node("pipeworks:spigot_pouring", { + description = "Spigot outlet", + drawtype = "nodebox", + tiles = { + "pipeworks_spigot_sides.png", + "default_water.png^pipeworks_spigot_bottom2.png", + { name = "default_water_flowing_animated.png^pipeworks_spigot_sides2.png", + animation = { + type = "vertical_frames", + aspect_w=16, + aspect_h=16, + length=0.8 + } + }, + { name = "default_water_flowing_animated.png^pipeworks_spigot_sides2.png", + animation = { + type = "vertical_frames", + aspect_w=16, + aspect_h=16, + length=0.8 + } + }, + { name = "default_water_flowing_animated.png^pipeworks_spigot_sides2.png", + animation = { + type = "vertical_frames", + aspect_w=16, + aspect_h=16, + length=0.8 + } + }, + { name = "default_water_flowing_animated.png^pipeworks_spigot_sides2.png", + animation = { + type = "vertical_frames", + aspect_w=16, + aspect_h=16, + length=0.8 + } + }, + }, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1, not_in_creative_inventory=1}, + sounds = default.node_sound_wood_defaults(), + walkable = true, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + node_box = { + type = "fixed", + fixed = spigotboxes_pouring, + }, + selection_box = { + type = "fixed", + fixed = { -2/16, -6/16, -2/16, 2/16, 2/16, 8/16 } + }, + drop = "pipeworks:spigot", +}) + +-- sealed pipe entry/exit (horizontal pipe passing through a metal +-- wall, for use in places where walls should look like they're airtight) + +local airtightboxes = {} +pipeworks.add_node_box(airtightboxes, pipeworks.pipe_frontstub) +pipeworks.add_node_box(airtightboxes, pipeworks.pipe_backstub) +pipeworks.add_node_box(airtightboxes, pipeworks.entry_panel) + +minetest.register_node("pipeworks:entry_panel_empty", { + description = "Airtight Pipe entry/exit", + drawtype = "nodebox", + tiles = { + "pipeworks_plain.png", + "pipeworks_plain.png", + "pipeworks_plain.png", + "pipeworks_plain.png", + "pipeworks_pipe_end_empty.png", + "pipeworks_pipe_end_empty.png" + }, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1}, + sounds = default.node_sound_wood_defaults(), + walkable = true, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + node_box = { + type = "fixed", + fixed = airtightboxes, + }, + selection_box = { + type = "fixed", + fixed = { + { -2/16, -2/16, -8/16, 2/16, 2/16, 8/16 }, + { -8/16, -8/16, -1/16, 8/16, 8/16, 1/16 } + } + }, + on_place = function(itemstack, placer, pointed_thing) + if not pipeworks.node_is_owned(pointed_thing.under, placer) + and not pipeworks.node_is_owned(pointed_thing.above, placer) then + local node = minetest.get_node(pointed_thing.under) + + if not minetest.registered_nodes[node.name] + or not minetest.registered_nodes[node.name].on_rightclick then + local pitch = placer:get_look_pitch() + local above = pointed_thing.above + local under = pointed_thing.under + local fdir = minetest.dir_to_facedir(placer:get_look_dir()) + local undernode = minetest.get_node(under) + local abovenode = minetest.get_node(above) + local uname = undernode.name + local aname = abovenode.name + local isabove = (above.x == under.x) and (above.z == under.z) and (pitch > 0) + local pos1 = above + + if above.x == under.x + and above.z == under.z + and ( string.find(uname, "pipeworks:pipe_") + or string.find(uname, "pipeworks:storage_") + or string.find(uname, "pipeworks:expansion_") + or ( string.find(uname, "pipeworks:grating") and not isabove ) + or ( string.find(uname, "pipeworks:pump_") and not isabove ) + or ( string.find(uname, "pipeworks:entry_panel") + and undernode.param2 == 13 ) + ) + then + fdir = 13 + end + + if minetest.registered_nodes[uname]["buildable_to"] then + pos1 = under + end + + if not minetest.registered_nodes[minetest.get_node(pos1).name]["buildable_to"] then return end + + minetest.add_node(pos1, {name = "pipeworks:entry_panel_empty", param2 = fdir }) + pipeworks.scan_for_pipe_objects(pos1) + + if not pipeworks.expect_infinite_stacks then + itemstack:take_item() + end + + else + minetest.registered_nodes[node.name].on_rightclick(pointed_thing.under, node, placer, itemstack) + end + end + return itemstack + end +}) + +minetest.register_node("pipeworks:entry_panel_loaded", { + description = "Airtight Pipe entry/exit", + drawtype = "nodebox", + tiles = { + "pipeworks_plain.png", + "pipeworks_plain.png", + "pipeworks_plain.png", + "pipeworks_plain.png", + "pipeworks_pipe_end_empty.png", + "pipeworks_pipe_end_empty.png" + }, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1, not_in_creative_inventory=1}, + sounds = default.node_sound_wood_defaults(), + walkable = true, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + node_box = { + type = "fixed", + fixed = airtightboxes, + }, + selection_box = { + type = "fixed", + fixed = { + { -2/16, -2/16, -8/16, 2/16, 2/16, 8/16 }, + { -8/16, -8/16, -1/16, 8/16, 8/16, 1/16 } + } + }, + drop = "pipeworks:entry_panel_empty" +}) + +local sensorboxes = {} +pipeworks.add_node_box(sensorboxes, pipeworks.pipe_leftstub) +pipeworks.add_node_box(sensorboxes, pipeworks.pipe_sensorbody) +pipeworks.add_node_box(sensorboxes, pipeworks.pipe_rightstub) + +minetest.register_node("pipeworks:flow_sensor_empty", { + description = "Flow Sensor", + drawtype = "nodebox", + tiles = { + "pipeworks_plain.png", + "pipeworks_plain.png", + "pipeworks_plain.png", + "pipeworks_plain.png", + "pipeworks_windowed_empty.png", + "pipeworks_windowed_empty.png" + }, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1}, + sounds = default.node_sound_wood_defaults(), + walkable = true, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_construct = function(pos) + if mesecon then + mesecon:receptor_off(pos, rules) + end + end, + node_box = { + type = "fixed", + fixed = sensorboxes, + }, + selection_box = { + type = "fixed", + fixed = { + { -8/16, -2/16, -2/16, 8/16, 2/16, 2/16 }, + } + }, + mesecons = pipereceptor_off +}) + +minetest.register_node("pipeworks:flow_sensor_loaded", { + description = "Flow sensor (on)", + drawtype = "nodebox", + tiles = { + "pipeworks_plain.png", + "pipeworks_plain.png", + "pipeworks_plain.png", + "pipeworks_plain.png", + "pipeworks_sensor_sides_on.png", + "pipeworks_sensor_sides_on.png" + }, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1, not_in_creative_inventory=1}, + sounds = default.node_sound_wood_defaults(), + walkable = true, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_construct = function(pos) + if mesecon then + mesecon:receptor_on(pos, rules) + end + end, + node_box = { + type = "fixed", + fixed = sensorboxes, + }, + selection_box = { + type = "fixed", + fixed = { + { -8/16, -2/16, -2/16, 8/16, 2/16, 2/16 }, + } + }, + drop = "pipeworks:flow_sensor_empty", + mesecons = pipereceptor_on +}) + +-- tanks + +for fill = 0, 10 do + local filldesc="empty" + local sgroups = {snappy=3, pipe=1, tankfill=fill+1} + local image = nil + + if fill ~= 0 then + filldesc=fill.."0% full" + sgroups = {snappy=3, pipe=1, tankfill=fill+1, not_in_creative_inventory=1} + image = "pipeworks_storage_tank_fittings.png" + end + + minetest.register_node("pipeworks:expansion_tank_"..fill, { + description = "Expansion Tank ("..filldesc..")... You hacker, you.", + tiles = { + "pipeworks_storage_tank_fittings.png", + "pipeworks_storage_tank_fittings.png", + "pipeworks_storage_tank_back.png", + "pipeworks_storage_tank_back.png", + "pipeworks_storage_tank_back.png", + pipeworks.liquid_texture.."^pipeworks_storage_tank_front_"..fill..".png" + }, + inventory_image = image, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1, tankfill=fill+1, not_in_creative_inventory=1}, + sounds = default.node_sound_wood_defaults(), + walkable = true, + drop = "pipeworks:storage_tank_0", + after_place_node = function(pos) + pipeworks.look_for_stackable_tanks(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + }) + + minetest.register_node("pipeworks:storage_tank_"..fill, { + description = "Fluid Storage Tank ("..filldesc..")", + tiles = { + "pipeworks_storage_tank_fittings.png", + "pipeworks_storage_tank_fittings.png", + "pipeworks_storage_tank_back.png", + "pipeworks_storage_tank_back.png", + "pipeworks_storage_tank_back.png", + pipeworks.liquid_texture.."^pipeworks_storage_tank_front_"..fill..".png" + }, + inventory_image = image, + paramtype = "light", + paramtype2 = "facedir", + groups = sgroups, + sounds = default.node_sound_wood_defaults(), + walkable = true, + drop = "pipeworks:storage_tank_0", + after_place_node = function(pos) + pipeworks.look_for_stackable_tanks(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + }) +end + +-- fountainhead + +minetest.register_node("pipeworks:fountainhead", { + description = "Fountainhead", + drawtype = "nodebox", + tiles = { + "pipeworks_fountainhead_top.png", + "pipeworks_pipe_end.png", + "pipeworks_plain.png", + }, + sunlight_propagates = true, + paramtype = "light", + groups = {snappy=3, pipe=1}, + sounds = default.node_sound_wood_defaults(), + walkable = true, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_construct = function(pos) + if mesecon then + mesecon:receptor_on(pos, rules) + end + end, + node_box = { + type = "fixed", + fixed = pipeworks.fountainhead_model , + }, + selection_box = { + type = "fixed", + fixed = { -2/16, -8/16, -2/16, 2/16, 8/16, 2/16 } + }, +}) + +minetest.register_node("pipeworks:fountainhead_pouring", { + description = "Fountainhead", + drawtype = "nodebox", + tiles = { + "pipeworks_fountainhead_top.png", + "pipeworks_pipe_end.png", + "pipeworks_plain.png", + }, + sunlight_propagates = true, + paramtype = "light", + groups = {snappy=3, pipe=1, not_in_creative_inventory=1}, + sounds = default.node_sound_wood_defaults(), + walkable = true, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_construct = function(pos) + if mesecon then + mesecon:receptor_on(pos, rules) + end + end, + node_box = { + type = "fixed", + fixed = pipeworks.fountainhead_model, + }, + selection_box = { + type = "fixed", + fixed = { -2/16, -8/16, -2/16, 2/16, 8/16, 2/16 }, + }, + drop = "pipeworks:fountainhead" +}) + +minetest.register_alias("pipeworks:valve_off_loaded", "pipeworks:valve_off_empty") + diff --git a/mods/pipeworks/flowing_logic.lua b/mods/pipeworks/flowing_logic.lua new file mode 100644 index 0000000..e0a6236 --- /dev/null +++ b/mods/pipeworks/flowing_logic.lua @@ -0,0 +1,121 @@ +-- This file provides the actual flow and pathfinding logic that makes water +-- move through the pipes. +-- +-- Contributed by mauvebic, 2013-01-03, rewritten a bit by Vanessa Ezekowitz +-- + +local finitewater = minetest.setting_getbool("liquid_finite") + +pipeworks.check_for_liquids = function(pos) + local coords = { + {x=pos.x,y=pos.y-1,z=pos.z}, + {x=pos.x,y=pos.y+1,z=pos.z}, + {x=pos.x-1,y=pos.y,z=pos.z}, + {x=pos.x+1,y=pos.y,z=pos.z}, + {x=pos.x,y=pos.y,z=pos.z-1}, + {x=pos.x,y=pos.y,z=pos.z+1}, } + for i =1,6 do + local name = minetest.get_node(coords[i]).name + if name and string.find(name,"water") then + if finitewater then minetest.remove_node(coords[i]) end + return true + end + end + return false +end + +pipeworks.check_for_inflows = function(pos,node) + local coords = { + {x=pos.x,y=pos.y-1,z=pos.z}, + {x=pos.x,y=pos.y+1,z=pos.z}, + {x=pos.x-1,y=pos.y,z=pos.z}, + {x=pos.x+1,y=pos.y,z=pos.z}, + {x=pos.x,y=pos.y,z=pos.z-1}, + {x=pos.x,y=pos.y,z=pos.z+1}, } + local newnode = false + local source = false + for i =1,6 do + if newnode then break end + local name = minetest.get_node(coords[i]).name + if name and (name == "pipeworks:pump_on" and pipeworks.check_for_liquids(coords[i])) or string.find(name,"_loaded") then + if string.find(name,"_loaded") then + source = minetest.get_meta(coords[i]):get_string("source") + if source == minetest.pos_to_string(pos) then break end + end + newnode = string.gsub(node.name,"empty","loaded") + source = {x=coords[i].x,y=coords[i].y,z=coords[i].z} + end + end + if newnode then + minetest.add_node(pos,{name=newnode, param2 = node.param2}) + minetest.get_meta(pos):set_string("source",minetest.pos_to_string(source)) + end +end + +pipeworks.check_sources = function(pos,node) + local sourcepos = minetest.string_to_pos(minetest.get_meta(pos):get_string("source")) + if not sourcepos then return end + local source = minetest.get_node(sourcepos).name + local newnode = false + if source and not ((source == "pipeworks:pump_on" and pipeworks.check_for_liquids(sourcepos)) or string.find(source,"_loaded") or source == "ignore" ) then + newnode = string.gsub(node.name,"loaded","empty") + end + + if newnode then + minetest.add_node(pos,{name=newnode, param2 = node.param2}) + minetest.get_meta(pos):set_string("source","") + end +end + +pipeworks.spigot_check = function(pos, node) + local belowname = minetest.get_node({x=pos.x,y=pos.y-1,z=pos.z}).name + if belowname and (belowname == "air" or belowname == "default:water_flowing" or belowname == "default:water_source") then + local spigotname = minetest.get_node(pos).name + local fdir=node.param2 + local check = { + {x=pos.x,y=pos.y,z=pos.z+1}, + {x=pos.x+1,y=pos.y,z=pos.z}, + {x=pos.x,y=pos.y,z=pos.z-1}, + {x=pos.x-1,y=pos.y,z=pos.z} + } + local near_node = minetest.get_node(check[fdir+1]) + if near_node and string.find(near_node.name, "_loaded") then + if spigotname and spigotname == "pipeworks:spigot" then + minetest.add_node(pos,{name = "pipeworks:spigot_pouring", param2 = fdir}) + if finitewater or belowname ~= "default:water_source" then + minetest.add_node({x=pos.x,y=pos.y-1,z=pos.z},{name = "default:water_source"}) + end + end + else + if spigotname == "pipeworks:spigot_pouring" then + minetest.add_node({x=pos.x,y=pos.y,z=pos.z},{name = "pipeworks:spigot", param2 = fdir}) + if belowname == "default:water_source" and not finitewater then + minetest.remove_node({x=pos.x,y=pos.y-1,z=pos.z}) + end + end + end + end +end + +pipeworks.fountainhead_check = function(pos, node) + local abovename = minetest.get_node({x=pos.x,y=pos.y+1,z=pos.z}).name + if abovename and (abovename == "air" or abovename == "default:water_flowing" or abovename == "default:water_source") then + local fountainhead_name = minetest.get_node(pos).name + local near_node = minetest.get_node({x=pos.x,y=pos.y-1,z=pos.z}) + if near_node and string.find(near_node.name, "_loaded") then + if fountainhead_name and fountainhead_name == "pipeworks:fountainhead" then + minetest.add_node(pos,{name = "pipeworks:fountainhead_pouring"}) + if finitewater or abovename ~= "default:water_source" then + minetest.add_node({x=pos.x,y=pos.y+1,z=pos.z},{name = "default:water_source"}) + end + end + else + if fountainhead_name == "pipeworks:fountainhead_pouring" then + minetest.add_node({x=pos.x,y=pos.y,z=pos.z},{name = "pipeworks:fountainhead"}) + if abovename == "default:water_source" and not finitewater then + minetest.remove_node({x=pos.x,y=pos.y+1,z=pos.z}) + end + end + end + end +end diff --git a/mods/pipeworks/init.lua b/mods/pipeworks/init.lua new file mode 100644 index 0000000..b6c91d6 --- /dev/null +++ b/mods/pipeworks/init.lua @@ -0,0 +1,130 @@ +-- Pipeworks mod by Vanessa Ezekowitz - 2013-07-13 +-- +-- This mod supplies various steel pipes and plastic pneumatic tubes +-- and devices that they can connect to. +-- +-- License: WTFPL +-- + +pipeworks = {} + +local DEBUG = false + +pipeworks.worldpath = minetest.get_worldpath() +pipeworks.modpath = minetest.get_modpath("pipeworks") + +dofile(pipeworks.modpath.."/default_settings.txt") + +-- Read the external config file if it exists. +if io.open(pipeworks.worldpath.."/pipeworks_settings.txt","r") then + dofile(pipeworks.worldpath.."/pipeworks_settings.txt") + io.close() +end + +-- Random variables + +pipeworks.expect_infinite_stacks = true +if minetest.get_modpath("unified_inventory") or not minetest.setting_getbool("creative_mode") then + pipeworks.expect_infinite_stacks = false +end + +pipeworks.meseadjlist={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=0,y=1,z=0},{x=0,y=-1,z=0},{x=1,y=0,z=0},{x=-1,y=0,z=0}} + +pipeworks.rules_all = {{x=0, y=0, z=1},{x=0, y=0, z=-1},{x=1, y=0, z=0},{x=-1, y=0, z=0}, + {x=0, y=1, z=1},{x=0, y=1, z=-1},{x=1, y=1, z=0},{x=-1, y=1, z=0}, + {x=0, y=-1, z=1},{x=0, y=-1, z=-1},{x=1, y=-1, z=0},{x=-1, y=-1, z=0}, + {x=0, y=1, z=0}, {x=0, y=-1, z=0}} + +pipeworks.mesecons_rules={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=1,y=0,z=0},{x=-1,y=0,z=0},{x=0,y=1,z=0},{x=0,y=-1,z=0}} + +pipeworks.liquid_texture = "default_water.png" + +-- Helper functions + +function pipeworks.fix_image_names(table, replacement) + local outtable={} + for i in ipairs(table) do + outtable[i]=string.gsub(table[i], "_XXXXX", replacement) + end + + return outtable +end + +function pipeworks.add_node_box(t, b) + for i in ipairs(b) + do table.insert(t, b[i]) + end +end + +function pipeworks.node_is_owned(pos, placer) + local ownername = false + if type(IsPlayerNodeOwner) == "function" then -- node_ownership mod + if HasOwner(pos, placer) then -- returns true if the node is owned + if not IsPlayerNodeOwner(pos, placer:get_player_name()) then + if type(getLastOwner) == "function" then -- ...is an old version + ownername = getLastOwner(pos) + elseif type(GetNodeOwnerName) == "function" then -- ...is a recent version + ownername = GetNodeOwnerName(pos) + else + ownername = S("someone") + end + end + end + + elseif type(isprotect)=="function" then -- glomie's protection mod + if not isprotect(5, pos, placer) then + ownername = S("someone") + end + elseif type(protector)=="table" and type(protector.can_dig)=="function" then -- Zeg9's protection mod + if not protector.can_dig(5, pos, placer) then + ownername = S("someone") + end + end + + if ownername ~= false then + minetest.chat_send_player( placer:get_player_name(), S("Sorry, %s owns that spot."):format(ownername) ) + return true + else + return false + end +end + +function pipeworks.replace_name(tbl,tr,name) + local ntbl={} + for key,i in pairs(tbl) do + if type(i)=="string" then + ntbl[key]=string.gsub(i,tr,name) + elseif type(i)=="table" then + ntbl[key]=pipeworks.replace_name(i,tr,name) + else + ntbl[key]=i + end + end + return ntbl +end + +------------------------------------------- +-- Load the various other parts of the mod + +dofile(pipeworks.modpath.."/common.lua") +dofile(pipeworks.modpath.."/models.lua") +dofile(pipeworks.modpath.."/autoplace_pipes.lua") +dofile(pipeworks.modpath.."/autoplace_tubes.lua") +dofile(pipeworks.modpath.."/luaentity.lua") +dofile(pipeworks.modpath.."/item_transport.lua") +dofile(pipeworks.modpath.."/flowing_logic.lua") +dofile(pipeworks.modpath.."/crafts.lua") +dofile(pipeworks.modpath.."/tubes.lua") +dofile(pipeworks.modpath.."/trashcan.lua") +dofile(pipeworks.modpath.."/wielder.lua") + +if pipeworks.enable_pipes then dofile(pipeworks.modpath.."/pipes.lua") end +if pipeworks.enable_teleport_tube then dofile(pipeworks.modpath.."/teleport_tube.lua") end +if pipeworks.enable_pipe_devices then dofile(pipeworks.modpath.."/devices.lua") end +if pipeworks.enable_redefines then dofile(pipeworks.modpath.."/compat.lua") end +if pipeworks.enable_autocrafter then dofile(pipeworks.modpath.."/autocrafter.lua") end + +minetest.register_alias("pipeworks:pipe", "pipeworks:pipe_110000_empty") + +print("Pipeworks loaded!") + diff --git a/mods/pipeworks/item_transport.lua b/mods/pipeworks/item_transport.lua new file mode 100644 index 0000000..c378d6e --- /dev/null +++ b/mods/pipeworks/item_transport.lua @@ -0,0 +1,482 @@ +local fakePlayer = { + get_player_name = function() return ":pipeworks" end, + -- any other player functions called by allow_metadata_inventory_take anywhere... + -- perhaps a custom metaclass that errors specially when fakePlayer. is not found? +} + +function pipeworks.tube_item(pos, item) + error("obsolete pipeworks.tube_item() called; change caller to use pipeworks.tube_inject_item() instead") +end + +function pipeworks.tube_inject_item(pos, start_pos, velocity, item) + -- Take item in any format + local stack = ItemStack(item) + local obj = luaentity.add_entity(pos, "pipeworks:tubed_item") + obj:set_item(stack:to_string()) + obj.start_pos = vector.new(start_pos) + obj:setvelocity(velocity) + --obj:set_color("red") -- todo: this is test-only code + return obj +end + +-- adding two tube functions +-- can_remove(pos,node,stack,dir) returns the maximum number of items of that stack that can be removed +-- remove_items(pos,node,stack,dir,count) removes count items and returns them +-- both optional w/ sensible defaults and fallback to normal allow_* function +-- XXX: possibly change insert_object to insert_item + +local function set_filter_infotext(data, meta) + local infotext = data.wise_desc.." Filter-Injector" + if meta:get_int("slotseq_mode") == 2 then + infotext = infotext .. " (slot #"..meta:get_int("slotseq_index").." next)" + end + meta:set_string("infotext", infotext) +end + +local function set_filter_formspec(data, meta) + local itemname = data.wise_desc.." Filter-Injector" + local formspec = "size[8,8.5]".. + "item_image[0,0;1,1;pipeworks:"..data.name.."]".. + "label[1,0;"..minetest.formspec_escape(itemname).."]".. + "label[0,1;Prefer item types:]".. + "list[current_name;main;0,1.5;8,2;]".. + fs_helpers.cycling_button(meta, "button[0,3.5;4,1", "slotseq_mode", + {"Sequence slots by Priority", + "Sequence slots Randomly", + "Sequence slots by Rotation"}).. + "list[current_player;main;0,4.5;8,4;]" + meta:set_string("formspec", formspec) +end + +-- todo SOON: this function has *way too many* parameters +local function grabAndFire(data,slotseq_mode,filtmeta,frominv,frominvname,frompos,fromnode,filtername,fromtube,fromdef,dir,all) + local sposes = {} + for spos,stack in ipairs(frominv:get_list(frominvname)) do + local matches + if filtername == "" then + matches = stack:get_name() ~= "" + else + matches = stack:get_name() == filtername + end + if matches then table.insert(sposes, spos) end + end + if #sposes == 0 then return false end + if slotseq_mode == 1 then + for i = #sposes, 2, -1 do + local j = math.random(i) + local t = sposes[j] + sposes[j] = sposes[i] + sposes[i] = t + end + elseif slotseq_mode == 2 then + local headpos = filtmeta:get_int("slotseq_index") + table.sort(sposes, function (a, b) + if a >= headpos then + if b < headpos then return true end + else + if b >= headpos then return false end + end + return a < b + end) + end + for _, spos in ipairs(sposes) do + local stack = frominv:get_stack(frominvname, spos) + local doRemove = stack:get_count() + if fromtube.can_remove then + doRemove = fromtube.can_remove(frompos, fromnode, stack, dir) + elseif fromdef.allow_metadata_inventory_take then + doRemove = fromdef.allow_metadata_inventory_take(frompos, frominvname,spos, stack, fakePlayer) + end + -- stupid lack of continue statements grumble + if doRemove > 0 then + if slotseq_mode == 2 then + local nextpos = spos + 1 + if nextpos > frominv:get_size(frominvname) then + nextpos = 1 + end + filtmeta:set_int("slotseq_index", nextpos) + set_filter_infotext(data, filtmeta) + end + local item + local count + if all then + count = math.min(stack:get_count(), doRemove) + else + count = 1 + end + if fromtube.remove_items then + -- it could be the entire stack... + item = fromtube.remove_items(frompos, fromnode, stack, dir, count) + else + item = stack:take_item(count) + frominv:set_stack(frominvname, spos, stack) + if fromdef.on_metadata_inventory_take then + fromdef.on_metadata_inventory_take(frompos, frominvname, spos, item, fakePlayer) + end + end + local pos = vector.add(frompos, vector.multiply(dir, 1.4)) + local start_pos = vector.add(frompos, dir) + local item1 = pipeworks.tube_inject_item(pos, start_pos, dir, item) + return true-- only fire one item, please + end + end + return false +end + +local function punch_filter(data, filtpos, filtnode) + local filtmeta = minetest.get_meta(filtpos) + local filtinv = filtmeta:get_inventory() + local dir = minetest.facedir_to_right_dir(filtnode.param2) + local frompos = vector.subtract(filtpos, dir) + local fromnode = minetest.get_node(frompos) + if not fromnode then return end + local fromdef = minetest.registered_nodes[fromnode.name] + if not fromdef then return end + local fromtube = fromdef.tube + if not (fromtube and fromtube.input_inventory) then return end + local filters = {} + for _, filterstack in ipairs(filtinv:get_list("main")) do + local filtername = filterstack:get_name() + if filtername ~= "" then table.insert(filters, filtername) end + end + if #filters == 0 then table.insert(filters, "") end + local slotseq_mode = filtmeta:get_int("slotseq_mode") + local frommeta = minetest.get_meta(frompos) + local frominv = frommeta:get_inventory() + if fromtube.before_filter then fromtube.before_filter(frompos) end + for _, frominvname in ipairs(type(fromtube.input_inventory) == "table" and fromtube.input_inventory or {fromtube.input_inventory}) do + local done = false + for _, filtername in ipairs(filters) do + if grabAndFire(data, slotseq_mode, filtmeta, frominv, frominvname, frompos, fromnode, filtername, fromtube, fromdef, dir, data.stackwise) then + done = true + break + end + end + if done then break end + end + if fromtube.after_filter then fromtube.after_filter(frompos) end +end + +for _, data in ipairs({ + { + name = "filter", + wise_desc = "Itemwise", + stackwise = false, + }, + { + name = "mese_filter", + wise_desc = "Stackwise", + stackwise = true, + }, +}) do + minetest.register_node("pipeworks:"..data.name, { + description = data.wise_desc.." Filter-Injector", + tiles = { + "pipeworks_"..data.name.."_top.png", + "pipeworks_"..data.name.."_top.png", + "pipeworks_"..data.name.."_output.png", + "pipeworks_"..data.name.."_input.png", + "pipeworks_"..data.name.."_side.png", + "pipeworks_"..data.name.."_top.png", + }, + paramtype2 = "facedir", + groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, mesecon = 2}, + legacy_facedir_simple = true, + sounds = default.node_sound_wood_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + set_filter_formspec(data, meta) + set_filter_infotext(data, meta) + local inv = meta:get_inventory() + inv:set_size("main", 8*2) + end, + on_receive_fields = function(pos, formname, fields, sender) + fs_helpers.on_receive_fields(pos, fields) + local meta = minetest.get_meta(pos) + meta:set_int("slotseq_index", 1) + set_filter_formspec(data, meta) + set_filter_infotext(data, meta) + end, + can_dig = function(pos, player) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:is_empty("main") + end, + mesecons = { + effector = { + action_on = function(pos, node) + punch_filter(data, pos, node) + end, + }, + }, + tube = {connect_sides = {right = 1}}, + on_punch = function (pos, node, puncher) + punch_filter(data, pos, node) + end, + }) +end + +local adjlist={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=0,y=1,z=0},{x=0,y=-1,z=0},{x=1,y=0,z=0},{x=-1,y=0,z=0}} + +function pipeworks.notvel(tbl, vel) + local tbl2={} + for _,val in ipairs(tbl) do + if val.x ~= -vel.x or val.y ~= -vel.y or val.z ~= -vel.z then table.insert(tbl2, val) end + end + return tbl2 +end + +local function go_next(pos, velocity, stack) + local next_positions = {} + local max_priority = 0 + local cnode = minetest.get_node(pos) + local cmeta = minetest.get_meta(pos) + local can_go + local speed = math.abs(velocity.x + velocity.y + velocity.z) + if speed == 0 then + speed = 1 + end + local vel = {x = velocity.x/speed, y = velocity.y/speed, z = velocity.z/speed,speed=speed} + if speed >= 4.1 then + speed = 4 + elseif speed >= 1.1 then + speed = speed - 0.1 + else + speed = 1 + end + vel.speed = speed + if minetest.registered_nodes[cnode.name] and minetest.registered_nodes[cnode.name].tube and minetest.registered_nodes[cnode.name].tube.can_go then + can_go = minetest.registered_nodes[cnode.name].tube.can_go(pos, cnode, vel, stack) + else + can_go = pipeworks.notvel(adjlist, vel) + end + for _, vect in ipairs(can_go) do + local npos = vector.add(pos, vect) + local node = minetest.get_node(npos) + local reg_node = minetest.registered_nodes[node.name] + if reg_node then + local tube_def = reg_node.tube + local tubedevice = minetest.get_item_group(node.name, "tubedevice") + local tube_priority = (tube_def and tube_def.priority) or 100 + if tubedevice > 0 and tube_priority >= max_priority then + if not tube_def or not tube_def.can_insert or + tube_def.can_insert(npos, node, stack, vect) then + if tube_priority > max_priority then + max_priority = tube_priority + next_positions = {} + end + next_positions[#next_positions + 1] = {pos = npos, vect = vect} + end + end + end + end + + if not next_positions[1] then + return false, nil + end + + local n = (cmeta:get_int("tubedir") % (#next_positions)) + 1 + if pipeworks.enable_cyclic_mode then + cmeta:set_int("tubedir", n) + end + local new_velocity = vector.multiply(next_positions[n].vect, vel.speed) + return true, new_velocity +end + +minetest.register_entity("pipeworks:tubed_item", { + initial_properties = { + hp_max = 1, + physical = false, + collisionbox = {0.1, 0.1, 0.1, 0.1, 0.1, 0.1}, + visual = "wielditem", + visual_size = {x = 0.15, y = 0.15}, + textures = {""}, + spritediv = {x = 1, y = 1}, + initial_sprite_basepos = {x = 0, y = 0}, + is_visible = false, + }, + + physical_state = false, + + from_data = function(self, itemstring) + local stack = ItemStack(itemstring) + local itemtable = stack:to_table() + local itemname = nil + if itemtable then + itemname = stack:to_table().name + end + local item_texture = nil + local item_type = "" + if minetest.registered_items[itemname] then + item_texture = minetest.registered_items[itemname].inventory_image + item_type = minetest.registered_items[itemname].type + end + self.object:set_properties({ + is_visible = true, + textures = {stack:get_name()} + }) + local def = stack:get_definition() + self.object:setyaw((def and def.type == "node") and 0 or math.pi * 0.25) + end, + + get_staticdata = luaentity.get_staticdata, + on_activate = function(self, staticdata) -- Legacy code, should be replaced later by luaentity.on_activate + if staticdata == "" or staticdata == nil then + return + end + if staticdata == "toremove" then + self.object:remove() + return + end + local item = minetest.deserialize(staticdata) + pipeworks.tube_inject_item(self.object:getpos(), item.start_pos, item.velocity, item.itemstring) + self.object:remove() + end, +}) + +minetest.register_entity("pipeworks:color_entity", { + initial_properties = { + hp_max = 1, + physical = false, + collisionbox = {0.1, 0.1, 0.1, 0.1, 0.1, 0.1}, + visual = "cube", + visual_size = {x = 3.5, y = 3.5, z = 3.5}, -- todo: find correct size + textures = {""}, + is_visible = false, + }, + + physical_state = false, + + from_data = function(self, color) + local t = "pipeworks_color_"..color..".png" + local prop = { + is_visible = true, + visual = "cube", + textures = {t, t, t, t, t, t} -- todo: textures + } + self.object:set_properties(prop) + end, + + get_staticdata = luaentity.get_staticdata, + on_activate = luaentity.on_activate, +}) + +luaentity.register_entity("pipeworks:tubed_item", { + itemstring = '', + item_entity = nil, + color_entity = nil, + color = nil, + start_pos = nil, + + set_item = function(self, item) + local itemstring = ItemStack(item):to_string() -- Accept any input format + if self.itemstring == itemstring then + return + end + if self.item_entity then + self:remove_attached_entity(self.item_entity) + end + self.itemstring = itemstring + self.item_entity = self:add_attached_entity("pipeworks:tubed_item", itemstring) + end, + + set_color = function(self, color) + if self.color == color then + return + end + self.color = color + if self.color_entity then + self:remove_attached_entity(self.color_entity) + end + if color then + self.color_entity = self:add_attached_entity("pipeworks:color_entity", color) + else + self.color_entity = nil + end + end, + + on_step = function(self, dtime) + if self.start_pos == nil then + local pos = self:getpos() + self.start_pos = vector.round(pos) + self:setpos(pos) + end + + local pos = self:getpos() + local stack = ItemStack(self.itemstring) + local drop_pos + + local velocity = self:getvelocity() + + local moved = false + local speed = math.abs(velocity.x + velocity.y + velocity.z) + if speed == 0 then + speed = 1 + moved = true + end + local vel = {x = velocity.x / speed, y = velocity.y / speed, z = velocity.z / speed, speed = speed} + + if vector.distance(pos, self.start_pos) >= 1 then + self.start_pos = vector.add(self.start_pos, vel) + moved = true + end + + minetest.load_position(self.start_pos) + local node = minetest.get_node(self.start_pos) + if moved and minetest.get_item_group(node.name, "tubedevice_receiver") == 1 then + local leftover + if minetest.registered_nodes[node.name].tube and minetest.registered_nodes[node.name].tube.insert_object then + leftover = minetest.registered_nodes[node.name].tube.insert_object(self.start_pos, node, stack, vel) + else + leftover = stack + end + if leftover:is_empty() then + self:remove() + return + end + velocity = vector.multiply(velocity, -1) + self:setvelocity(velocity) + self:set_item(leftover:to_string()) + return + end + + if moved then + local found_next, new_velocity = go_next(self.start_pos, velocity, stack) -- todo: color + if not found_next then + drop_pos = minetest.find_node_near(vector.add(self.start_pos, velocity), 1, "air") + if drop_pos then + minetest.item_drop(stack, "", drop_pos) + self:remove() + return + end + end + + if new_velocity and not vector.equals(velocity, new_velocity) then + self:setpos(self.start_pos) + self:setvelocity(new_velocity) + end + end + end +}) + +if minetest.get_modpath("mesecons_mvps") then + mesecon:register_mvps_unmov("pipeworks:tubed_item") + mesecon:register_mvps_unmov("pipeworks:color_entity") + mesecon:register_on_mvps_move(function(moved_nodes) + local moved = {} + for _, n in ipairs(moved_nodes) do + moved[minetest.hash_node_position(n.oldpos)] = vector.subtract(n.pos, n.oldpos) + end + for id, entity in pairs(luaentity.entities) do + if entity.name == "pipeworks:tubed_item" then + local pos = entity:getpos() + local rpos = vector.round(pos) + local dir = moved[minetest.hash_node_position(rpos)] + if dir then + entity:setpos(vector.add(pos, dir)) + entity.start_pos = vector.add(entity.start_pos, dir) + end + end + end + end) +end diff --git a/mods/pipeworks/legacy.lua b/mods/pipeworks/legacy.lua new file mode 100644 index 0000000..84ae31d --- /dev/null +++ b/mods/pipeworks/legacy.lua @@ -0,0 +1,60 @@ + +if not minetest.get_modpath("auto_tree_tap") and + minetest.get_modpath("technic") then + + minetest.register_abm({ + nodenames = { "auto_tree_tap:off", "auto_tree_tap:on" }, + chance = 1, + interval = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local fdir = node.param2 + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + inv:set_size("pick", 1) + inv:set_size("ghost_pick", 1) + inv:set_size("main", 100) + minetest.set_node(pos, {name = "pipeworks:nodebreaker_off", param2 = fdir}) + minetest.registered_nodes["pipeworks:nodebreaker_off"].on_punch(pos, node) + inv:set_stack("pick", 1, ItemStack("technic:treetap")) + end + }) + + minetest.register_node(":auto_tree_tap:off", { + description = "Auto-Tap", + tiles = {"pipeworks_nodebreaker_top_off.png","pipeworks_nodebreaker_bottom_off.png","pipeworks_nodebreaker_side2_off.png","pipeworks_nodebreaker_side1_off.png", + "pipeworks_nodebreaker_back.png","pipeworks_nodebreaker_front_off.png"}, + is_ground_content = true, + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2, mesecon = 2,tubedevice=1, not_in_creative_inventory=1 }, + mesecons= {effector={rules=pipeworks.rules_all,action_on=node_breaker_on, action_off=node_breaker_off}}, + sounds = default.node_sound_stone_defaults(), + tube = {connect_sides={back=1}}, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + inv:set_size("pick", 1) + inv:set_stack("pick", 1, ItemStack("default:pick_mese")) + end, + after_place_node = function (pos, placer) + pipeworks.scan_for_tube_objects(pos, placer) + local placer_pos = placer:getpos() + + --correct for the player's height + if placer:is_player() then placer_pos.y = placer_pos.y + 1.5 end + + --correct for 6d facedir + if placer_pos then + local dir = { + x = pos.x - placer_pos.x, + y = pos.y - placer_pos.y, + z = pos.z - placer_pos.z + } + local node = minetest.get_node(pos) + node.param2 = minetest.dir_to_facedir(dir, true) + minetest.set_node(pos, node) + minetest.log("action", "real (6d) facedir: " .. node.param2) + end + end, + after_dig_node = pipeworks.scan_for_tube_objects, + }) +end diff --git a/mods/pipeworks/luaentity.lua b/mods/pipeworks/luaentity.lua new file mode 100644 index 0000000..241da14 --- /dev/null +++ b/mods/pipeworks/luaentity.lua @@ -0,0 +1,334 @@ +local max_entity_id = 1000000000000 -- If you need more, there's a problem with your code + +luaentity = {} + +luaentity.registered_entities = {} + +local filename = minetest.get_worldpath().."/luaentities" +local function read_file() + local f = io.open(filename, "r") + if f == nil then return {} end + local t = f:read("*all") + f:close() + if t == "" or t == nil then return {} end + return minetest.deserialize(t) +end + +local function write_file(tbl) + local f = io.open(filename, "w") + f:write(minetest.serialize(tbl)) + f:close() +end + +local function read_entities() + local t = read_file() + for _, entity in pairs(t) do + setmetatable(entity, luaentity.registered_entities[entity.name]) + end + return t +end + +local function write_entities() + for _, entity in pairs(luaentity.entities) do + setmetatable(entity, nil) + for _, attached in pairs(entity._attached_entities) do + if attached.entity then + attached.entity:remove() + attached.entity = nil + end + end + entity._attached_entities_master = nil + end + write_file(luaentity.entities) +end + +minetest.register_on_shutdown(write_entities) +luaentity.entities_index = 0 + +local function get_blockpos(pos) + return {x = math.floor(pos.x / 16), + y = math.floor(pos.y / 16), + z = math.floor(pos.z / 16)} +end + +local active_blocks = {} -- These only contain active blocks near players (i.e., not forceloaded ones) +local handle_active_blocks_step = 2 +local handle_active_blocks_timer = 0 +minetest.register_globalstep(function(dtime) + handle_active_blocks_timer = handle_active_blocks_timer + dtime + if handle_active_blocks_timer >= handle_active_blocks_step then + handle_active_blocks_timer = handle_active_blocks_timer - handle_active_blocks_step + local active_block_range = tonumber(minetest.setting_get("active_block_range")) or 2 + local new_active_blocks = {} + for _, player in ipairs(minetest.get_connected_players()) do + local blockpos = get_blockpos(player:getpos()) + local minp = vector.subtract(blockpos, active_block_range) + local maxp = vector.add(blockpos, active_block_range) + + for x = minp.x, maxp.x do + for y = minp.y, maxp.y do + for z = minp.z, maxp.z do + local pos = {x = x, y = y, z = z} + new_active_blocks[minetest.hash_node_position(pos)] = pos + end + end + end + end + active_blocks = new_active_blocks + -- todo: callbacks on block load/unload + end +end) + +local function is_active(pos) + return active_blocks[minetest.hash_node_position(get_blockpos(pos))] ~= nil +end + +local entitydef_default = { + _attach = function(self, attached, attach_to) + local attached_def = self._attached_entities[attached] + local attach_to_def = self._attached_entities[attach_to] + attached_def.entity:set_attach( + attach_to_def.entity, "", + vector.subtract(attached_def.offset, attach_to_def.offset), -- todo: Does not work because is object space + vector.new(0, 0, 0) + ) + end, + _set_master = function(self, index) + self._attached_entities_master = index + if not index then + return + end + local def = self._attached_entities[index] + if not def.entity then + return + end + def.entity:setpos(vector.add(self._pos, def.offset)) + def.entity:setvelocity(self._velocity) + def.entity:setacceleration(self._acceleration) + end, + _attach_all = function(self) + local master = self._attached_entities_master + if not master then + return + end + for id, entity in pairs(self._attached_entities) do + if id ~= master and entity.entity then + self:_attach(id, master) + end + end + end, + _detach_all = function(self) + local master = self._attached_entities_master + for id, entity in pairs(self._attached_entities) do + if id ~= master and entity.entity then + entity.entity:set_detach() + end + end + end, + _add_attached = function(self, index) + local entity = self._attached_entities[index] + if entity.entity then + return + end + local entity_pos = vector.add(self._pos, entity.offset) + if not is_active(entity_pos) then + return + end + local ent = minetest.add_entity(entity_pos, entity.name):get_luaentity() + ent:from_data(entity.data) + ent.parent_id = self._id + ent.attached_id = index + entity.entity = ent.object + local master = self._attached_entities_master + if master then + self:_attach(index, master) + else + self:_set_master(index) + end + end, + _remove_attached = function(self, index) + local master = self._attached_entities_master + local entity = self._attached_entities[index] + local ent = entity.entity + entity.entity = nil + if index == master then + self:_detach_all() + local newmaster + for id, attached in pairs(self._attached_entities) do + if id ~= master and attached.entity then + newmaster = id + break + end + end + self:_set_master(newmaster) + self:_attach_all() + elseif master and ent then + ent:set_detach() + end + if ent then + ent:remove() + end + end, + _add_loaded = function(self) + for id, _ in pairs(self._attached_entities) do + self:_add_attached(id) + end + end, + getid = function(self) + return self._id + end, + getpos = function(self) + return vector.new(self._pos) + end, + setpos = function(self, pos) + self._pos = vector.new(pos) + --for _, entity in pairs(self._attached_entities) do + -- if entity.entity then + -- entity.entity:setpos(vector.add(self._pos, entity.offset)) + -- end + --end + local master = self._attached_entities_master + if master then + local master_def = self._attached_entities[master] + master_def.entity:setpos(vector.add(self._pos, master_def.offset)) + end + end, + getvelocity = function(self) + return vector.new(self._velocity) + end, + setvelocity = function(self, velocity) + self._velocity = vector.new(velocity) + local master = self._attached_entities_master + if master then + self._attached_entities[master].entity:setvelocity(self._velocity) + end + end, + getacceleration = function(self) + return vector.new(self._acceleration) + end, + setacceleration = function(self, acceleration) + self._acceleration = vector.new(acceleration) + local master = self._attached_entities_master + if master then + self._attached_entities[master].entity:setacceleration(self._acceleration) + end + end, + remove = function(self) + self:_detach_all() + for _, entity in pairs(self._attached_entities) do + if entity.entity then + entity.entity:remove() + end + end + luaentity.entities[self._id] = nil + end, + add_attached_entity = function(self, name, data, offset) + local index = #self._attached_entities + 1 + self._attached_entities[index] = { + name = name, + data = data, + offset = vector.new(offset), + } + self:_add_attached(index) + return index + end, + remove_attached_entity = function(self, index) + self:_remove_attached(index) + self._attached_entities[index] = nil + end, +} + +function luaentity.register_entity(name, prototype) + -- name = check_modname_prefix(name) + prototype.name = name + setmetatable(prototype, {__index = entitydef_default}) + prototype.__index = prototype -- Make it possible to use it as metatable + luaentity.registered_entities[name] = prototype +end + +-- function luaentity.get_entity_definition(entity) +-- return luaentity.registered_entities[entity.name] +-- end + +function luaentity.add_entity(pos, name) + local index = luaentity.entities_index + while luaentity.entities[index] do + index = index + 1 + if index >= max_entity_id then + index = 0 + end + end + luaentity.entities_index = index + + local entity = { + name = name, + _id = index, + _pos = vector.new(pos), + _velocity = {x = 0, y = 0, z = 0}, + _acceleration = {x = 0, y = 0, z = 0}, + _attached_entities = {}, + } + + local prototype = luaentity.registered_entities[name] + setmetatable(entity, prototype) -- Default to prototype for other methods + luaentity.entities[index] = entity + + if entity.on_activate then + entity:on_activate() + end + return entity +end + +-- todo: check if remove in get_staticdata works +function luaentity.get_staticdata(self) + local parent = luaentity.entities[self.parent_id] + if parent and parent._remove_attached then + parent:_remove_attached(self.attached_id) + end + return "toremove" +end + +function luaentity.on_activate(self, staticdata) + if staticdata == "toremove" then + self.object:remove() + end +end + +function luaentity.get_objects_inside_radius(pos, radius) + local objects = {} + local index = 1 + for id, entity in pairs(luaentity.entities) do + if vector.distance(pos, entity:getpos()) <= radius then + objects[index] = entity + index = index + 1 + end + end +end + +minetest.register_globalstep(function(dtime) + if not luaentity.entities then + luaentity.entities = read_entities() + end + for id, entity in pairs(luaentity.entities) do + local master = entity._attached_entities_master + if master then + local master_def = entity._attached_entities[master] + local master_entity = master_def.entity + entity._pos = vector.subtract(master_entity:getpos(), master_def.offset) + entity._velocity = master_entity:getvelocity() + entity._acceleration = master_entity:getacceleration() + else + entity._pos = vector.add(vector.add( + entity._pos, + vector.multiply(entity._velocity, dtime)), + vector.multiply(entity._acceleration, 0.5 * dtime * dtime)) + entity._velocity = vector.add( + entity._velocity, + vector.multiply(entity._acceleration, dtime)) + end + entity:_add_loaded() + if entity.on_step then + entity:on_step(dtime) + end + end +end) diff --git a/mods/pipeworks/models.lua b/mods/pipeworks/models.lua new file mode 100644 index 0000000..6a841d3 --- /dev/null +++ b/mods/pipeworks/models.lua @@ -0,0 +1,202 @@ +--------------------- +-- The various models + +-- Pipe models + +pipeworks.pipe_leftstub = { + { -32/64, -2/64, -6/64, 1/64, 2/64, 6/64 }, -- pipe segment against -X face + { -32/64, -4/64, -5/64, 1/64, 4/64, 5/64 }, + { -32/64, -5/64, -4/64, 1/64, 5/64, 4/64 }, + { -32/64, -6/64, -2/64, 1/64, 6/64, 2/64 }, + + { -32/64, -3/64, -8/64, -30/64, 3/64, 8/64 }, -- (the flange for it) + { -32/64, -5/64, -7/64, -30/64, 5/64, 7/64 }, + { -32/64, -6/64, -6/64, -30/64, 6/64, 6/64 }, + { -32/64, -7/64, -5/64, -30/64, 7/64, 5/64 }, + { -32/64, -8/64, -3/64, -30/64, 8/64, 3/64 } +} + +pipeworks.pipe_rightstub = { + { -1/64, -2/64, -6/64, 32/64, 2/64, 6/64 }, -- pipe segment against +X face + { -1/64, -4/64, -5/64, 32/64, 4/64, 5/64 }, + { -1/64, -5/64, -4/64, 32/64, 5/64, 4/64 }, + { -1/64, -6/64, -2/64, 32/64, 6/64, 2/64 }, + + { 30/64, -3/64, -8/64, 32/64, 3/64, 8/64 }, -- (the flange for it) + { 30/64, -5/64, -7/64, 32/64, 5/64, 7/64 }, + { 30/64, -6/64, -6/64, 32/64, 6/64, 6/64 }, + { 30/64, -7/64, -5/64, 32/64, 7/64, 5/64 }, + { 30/64, -8/64, -3/64, 32/64, 8/64, 3/64 } +} + +pipeworks.pipe_bottomstub = { + { -2/64, -32/64, -6/64, 2/64, 1/64, 6/64 }, -- pipe segment against -Y face + { -4/64, -32/64, -5/64, 4/64, 1/64, 5/64 }, + { -5/64, -32/64, -4/64, 5/64, 1/64, 4/64 }, + { -6/64, -32/64, -2/64, 6/64, 1/64, 2/64 }, + + { -3/64, -32/64, -8/64, 3/64, -30/64, 8/64 }, -- (the flange for it) + { -5/64, -32/64, -7/64, 5/64, -30/64, 7/64 }, + { -6/64, -32/64, -6/64, 6/64, -30/64, 6/64 }, + { -7/64, -32/64, -5/64, 7/64, -30/64, 5/64 }, + { -8/64, -32/64, -3/64, 8/64, -30/64, 3/64 } +} + +pipeworks.pipe_topstub = { + { -2/64, -1/64, -6/64, 2/64, 32/64, 6/64 }, -- pipe segment against +Y face + { -4/64, -1/64, -5/64, 4/64, 32/64, 5/64 }, + { -5/64, -1/64, -4/64, 5/64, 32/64, 4/64 }, + { -6/64, -1/64, -2/64, 6/64, 32/64, 2/64 }, + + { -3/64, 30/64, -8/64, 3/64, 32/64, 8/64 }, -- (the flange for it) + { -5/64, 30/64, -7/64, 5/64, 32/64, 7/64 }, + { -6/64, 30/64, -6/64, 6/64, 32/64, 6/64 }, + { -7/64, 30/64, -5/64, 7/64, 32/64, 5/64 }, + { -8/64, 30/64, -3/64, 8/64, 32/64, 3/64 } +} + +pipeworks.pipe_frontstub = { + { -6/64, -2/64, -32/64, 6/64, 2/64, 1/64 }, -- pipe segment against -Z face + { -5/64, -4/64, -32/64, 5/64, 4/64, 1/64 }, + { -4/64, -5/64, -32/64, 4/64, 5/64, 1/64 }, + { -2/64, -6/64, -32/64, 2/64, 6/64, 1/64 }, + + { -8/64, -3/64, -32/64, 8/64, 3/64, -30/64 }, -- (the flange for it) + { -7/64, -5/64, -32/64, 7/64, 5/64, -30/64 }, + { -6/64, -6/64, -32/64, 6/64, 6/64, -30/64 }, + { -5/64, -7/64, -32/64, 5/64, 7/64, -30/64 }, + { -3/64, -8/64, -32/64, 3/64, 8/64, -30/64 } +} + +pipeworks.pipe_backstub = { + { -6/64, -2/64, -1/64, 6/64, 2/64, 32/64 }, -- pipe segment against -Z face + { -5/64, -4/64, -1/64, 5/64, 4/64, 32/64 }, + { -4/64, -5/64, -1/64, 4/64, 5/64, 32/64 }, + { -2/64, -6/64, -1/64, 2/64, 6/64, 32/64 }, + + { -8/64, -3/64, 30/64, 8/64, 3/64, 32/64 }, -- (the flange for it) + { -7/64, -5/64, 30/64, 7/64, 5/64, 32/64 }, + { -6/64, -6/64, 30/64, 6/64, 6/64, 32/64 }, + { -5/64, -7/64, 30/64, 5/64, 7/64, 32/64 }, + { -3/64, -8/64, 30/64, 3/64, 8/64, 32/64 } +} + +pipeworks.pipe_boxes = {pipeworks.pipe_leftstub, pipeworks.pipe_rightstub, pipeworks.pipe_bottomstub, pipeworks.pipe_topstub, pipeworks.pipe_frontstub, pipeworks.pipe_backstub} + +pipeworks.pipe_selectboxes = { + { -32/64, -8/64, -8/64, 8/64, 8/64, 8/64 }, + { -8/64 , -8/64, -8/64, 32/64, 8/64, 8/64 }, + { -8/64 , -32/64, -8/64, 8/64, 8/64, 8/64 }, + { -8/64 , -8/64, -8/64, 8/64, 32/64, 8/64 }, + { -8/64 , -8/64, -32/64, 8/64, 8/64, 8/64 }, + { -8/64 , -8/64, -8/64, 8/64, 8/64, 32/64 } +} + +pipeworks.pipe_bendsphere = { + { -4/64, -4/64, -4/64, 4/64, 4/64, 4/64 }, + { -5/64, -3/64, -3/64, 5/64, 3/64, 3/64 }, + { -3/64, -5/64, -3/64, 3/64, 5/64, 3/64 }, + { -3/64, -3/64, -5/64, 3/64, 3/64, 5/64 } +} + +-- Tube models + +pipeworks.tube_leftstub = { + { -32/64, -9/64, -9/64, 9/64, 9/64, 9/64 }, -- tube segment against -X face +} + +pipeworks.tube_rightstub = { + { -9/64, -9/64, -9/64, 32/64, 9/64, 9/64 }, -- tube segment against +X face +} + +pipeworks.tube_bottomstub = { + { -9/64, -32/64, -9/64, 9/64, 9/64, 9/64 }, -- tube segment against -Y face +} + +pipeworks.tube_topstub = { + { -9/64, -9/64, -9/64, 9/64, 32/64, 9/64 }, -- tube segment against +Y face +} + +pipeworks.tube_frontstub = { + { -9/64, -9/64, -32/64, 9/64, 9/64, 9/64 }, -- tube segment against -Z face +} + +pipeworks.tube_backstub = { + { -9/64, -9/64, -9/64, 9/64, 9/64, 32/64 }, -- tube segment against -Z face +} + +pipeworks.tube_boxes = {pipeworks.tube_leftstub, pipeworks.tube_rightstub, pipeworks.tube_bottomstub, pipeworks.tube_topstub, pipeworks.tube_frontstub, pipeworks.tube_backstub} + +pipeworks.tube_selectboxes = { + { -32/64, -10/64, -10/64, 10/64, 10/64, 10/64 }, + { -10/64 , -10/64, -10/64, 32/64, 10/64, 10/64 }, + { -10/64 , -32/64, -10/64, 10/64, 10/64, 10/64 }, + { -10/64 , -10/64, -10/64, 10/64, 32/64, 10/64 }, + { -10/64 , -10/64, -32/64, 10/64, 10/64, 10/64 }, + { -10/64 , -10/64, -10/64, 10/64, 10/64, 32/64 } +} + +-- Device models + +pipeworks.pipe_pumpbody = { + { -7/16, -6/16, -7/16, 7/16, 5/16, 7/16 }, + { -8/16, -8/16, -8/16, 8/16, -6/16, 8/16 } +} + +pipeworks.pipe_valvebody = { + { -4/16, -4/16, -4/16, 4/16, 4/16, 4/16 } +} + +pipeworks.pipe_valvehandle_on = { + { -5/16, 4/16, -1/16, 0, 5/16, 1/16 } +} + +pipeworks.pipe_valvehandle_off = { + { -1/16, 4/16, -5/16, 1/16, 5/16, 0 } +} + +pipeworks.pipe_sensorbody = { + { -3/16, -2/16, -2/16, 3/16, 2/16, 2/16 } +} + +pipeworks.spigot_bottomstub = { + { -2/64, -16/64, -6/64, 2/64, 1/64, 6/64 }, -- pipe segment against -Y face + { -4/64, -16/64, -5/64, 4/64, 1/64, 5/64 }, + { -5/64, -16/64, -4/64, 5/64, 1/64, 4/64 }, + { -6/64, -16/64, -2/64, 6/64, 1/64, 2/64 }, + + { -3/64, -16/64, -8/64, 3/64, -14/64, 8/64 }, -- (the flange for it) + { -5/64, -16/64, -7/64, 5/64, -14/64, 7/64 }, + { -6/64, -16/64, -6/64, 6/64, -14/64, 6/64 }, + { -7/64, -16/64, -5/64, 7/64, -14/64, 5/64 }, + { -8/64, -16/64, -3/64, 8/64, -14/64, 3/64 } +} + +pipeworks.spigot_stream = { + { -3/64, (-41/64)-0.01, -5/64, 3/64, -16/64, 5/64 }, + { -4/64, (-41/64)-0.01, -4/64, 4/64, -16/64, 4/64 }, + { -5/64, (-41/64)-0.01, -3/64, 5/64, -16/64, 3/64 } +} + +pipeworks.entry_panel = { + { -8/16, -8/16, -1/16, 8/16, 8/16, 1/16 } +} + +pipeworks.fountainhead_model = { + { -2/64, -32/64, -6/64, 2/64, 21/64, 6/64 }, -- main segment + { -4/64, -32/64, -5/64, 4/64, 21/64, 5/64 }, + { -5/64, -32/64, -4/64, 5/64, 21/64, 4/64 }, + { -6/64, -32/64, -2/64, 6/64, 21/64, 2/64 }, + + { -3/64, -32/64, -8/64, 3/64, -30/64, 8/64 }, -- bottom flange + { -5/64, -32/64, -7/64, 5/64, -30/64, 7/64 }, + { -6/64, -32/64, -6/64, 6/64, -30/64, 6/64 }, + { -7/64, -32/64, -5/64, 7/64, -30/64, 5/64 }, + { -8/64, -32/64, -3/64, 8/64, -30/64, 3/64 }, + + { -3/64, 20/64, -8/64, 3/64, 32/64, 8/64 }, -- top flange/outlet + { -5/64, 20/64, -7/64, 5/64, 32/64, 7/64 }, + { -6/64, 20/64, -6/64, 6/64, 32/64, 6/64 }, + { -7/64, 20/64, -5/64, 7/64, 32/64, 5/64 }, + { -8/64, 20/64, -3/64, 8/64, 32/64, 3/64 } +} diff --git a/mods/pipeworks/pipes.lua b/mods/pipeworks/pipes.lua new file mode 100644 index 0000000..ad79a3e --- /dev/null +++ b/mods/pipeworks/pipes.lua @@ -0,0 +1,226 @@ +-- This file supplies the steel pipes + +local REGISTER_COMPATIBILITY = true + +local pipes_empty_nodenames = {} +local pipes_full_nodenames = {} + +local vti = {4, 3, 2, 1, 6, 5} +local cconnects = {{}, {1}, {1, 2}, {1, 3}, {1, 3, 5}, {1, 2, 3}, {1, 2, 3, 5}, {1, 2, 3, 4}, {1, 2, 3, 4, 5}, {1, 2, 3, 4, 5, 6}} +for index, connects in ipairs(cconnects) do + local outboxes = {} + local outsel = {} + local outimgs = {} + + for i = 1, 6 do + outimgs[vti[i]] = "pipeworks_plain.png" + end + + local jx = 0 + local jy = 0 + local jz = 0 + for _, v in ipairs(connects) do + if v == 1 or v == 2 then + jx = jx + 1 + elseif v == 3 or v == 4 then + jy = jy + 1 + else + jz = jz + 1 + end + pipeworks.add_node_box(outboxes, pipeworks.pipe_boxes[v]) + table.insert(outsel, pipeworks.pipe_selectboxes[v]) + outimgs[vti[v]] = "pipeworks_pipe_end.png" + end + + if #connects == 1 then + local v = connects[1] + v = v-1 + 2*(v%2) -- Opposite side + outimgs[vti[v]] = "^pipeworks_plain.png" + end + + if #connects >= 2 then + pipeworks.add_node_box(outboxes, pipeworks.pipe_bendsphere) + end + + if jx == 2 and jy ~= 2 and jz ~= 2 then + outimgs[5] = pipeworks.liquid_texture.."^pipeworks_windowed_XXXXX.png" + outimgs[6] = outimgs[5] + end + + local pgroups = {snappy = 3, pipe = 1, not_in_creative_inventory = 1} + local pipedesc = "Pipe segement".." "..dump(connects).."... You hacker, you." + local image = nil + + if #connects == 0 then + pgroups = {snappy = 3, tube = 1} + pipedesc = "Pipe segment" + image = "pipeworks_pipe_inv.png" + end + + --table.insert(pipeworks.tubenodes, name.."_"..tname) + + minetest.register_node("pipeworks:pipe_"..index.."_empty", { + description = pipedesc, + drawtype = "nodebox", + tiles = pipeworks.fix_image_names(outimgs, "_empty"), + sunlight_propagates = true, + inventory_image = image, + wield_image = image, + paramtype = "light", + paramtype2 = "facedir", + selection_box = { + type = "fixed", + fixed = outsel + }, + node_box = { + type = "fixed", + fixed = outboxes + }, + groups = pgroups, + sounds = default.node_sound_wood_defaults(), + walkable = true, + drop = "pipeworks:pipe_1_empty", + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end + }) + + local pgroups = {snappy = 3, pipe = 1, not_in_creative_inventory = 1} + + minetest.register_node("pipeworks:pipe_"..index.."_loaded", { + description = pipedesc, + drawtype = "nodebox", + tiles = pipeworks.fix_image_names(outimgs, "_loaded"), + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + selection_box = { + type = "fixed", + fixed = outsel + }, + node_box = { + type = "fixed", + fixed = outboxes + }, + groups = pgroups, + sounds = default.node_sound_wood_defaults(), + walkable = true, + drop = "pipeworks:pipe_1_empty", + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end + }) + + table.insert(pipes_empty_nodenames, "pipeworks:pipe_"..index.."_empty") + table.insert(pipes_full_nodenames, "pipeworks:pipe_"..index.."_loaded") +end + + + +if REGISTER_COMPATIBILITY then + local cempty = "pipeworks:pipe_compatibility_empty" + local cloaded = "pipeworks:pipe_compatibility_loaded" + minetest.register_node(cempty, { + drawtype = "airlike", + sunlight_propagates = true, + paramtype = "light", + inventory_image = "pipeworks_pipe_inv.png", + wield_image = "pipeworks_pipe_inv.png", + description = "Pipe Segment (legacy)", + groups = {not_in_creative_inventory = 1, pipe_to_update = 1}, + drop = "pipeworks:pipe_1_empty", + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + }) + minetest.register_node(cloaded, { + drawtype = "airlike", + sunlight_propagates = true, + paramtype = "light", + inventory_image = "pipeworks_pipe_inv.png", + groups = {not_in_creative_inventory = 1, pipe_to_update = 1}, + drop = "pipeworks:pipe_1_empty", + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + }) + for xm = 0, 1 do + for xp = 0, 1 do + for ym = 0, 1 do + for yp = 0, 1 do + for zm = 0, 1 do + for zp = 0, 1 do + local pname = xm..xp..ym..yp..zm..zp + minetest.register_alias("pipeworks:pipe_"..pname.."_empty", cempty) + minetest.register_alias("pipeworks:pipe_"..pname.."_loaded", cloaded) + end + end + end + end + end + end + minetest.register_abm({ + nodenames = {"group:pipe_to_update"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local minp = {x = pos.x-1, y = pos.y-1, z = pos.z-1} + local maxp = {x = pos.x+1, y = pos.y+1, z = pos.z+1} + if table.getn(minetest.find_nodes_in_area(minp, maxp, "ignore")) == 0 then + pipeworks.scan_for_pipe_objects(pos) + end + end + }) +end + +table.insert(pipes_empty_nodenames,"pipeworks:valve_on_empty") +table.insert(pipes_empty_nodenames,"pipeworks:valve_off_empty") +table.insert(pipes_empty_nodenames,"pipeworks:entry_panel_empty") +table.insert(pipes_empty_nodenames,"pipeworks:flow_sensor_empty") + +table.insert(pipes_full_nodenames,"pipeworks:valve_on_loaded") +table.insert(pipes_full_nodenames,"pipeworks:entry_panel_loaded") +table.insert(pipes_full_nodenames,"pipeworks:flow_sensor_loaded") + +minetest.register_abm({ + nodenames = pipes_empty_nodenames, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + pipeworks.check_for_inflows(pos,node) + end +}) + +minetest.register_abm({ + nodenames = pipes_full_nodenames, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + pipeworks.check_sources(pos,node) + end +}) + +minetest.register_abm({ + nodenames = {"pipeworks:spigot","pipeworks:spigot_pouring"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + pipeworks.spigot_check(pos,node) + end +}) + +minetest.register_abm({ + nodenames = {"pipeworks:fountainhead","pipeworks:fountainhead_pouring"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + pipeworks.fountainhead_check(pos,node) + end +}) + diff --git a/mods/pipeworks/teleport_tube.lua b/mods/pipeworks/teleport_tube.lua new file mode 100644 index 0000000..16985e2 --- /dev/null +++ b/mods/pipeworks/teleport_tube.lua @@ -0,0 +1,181 @@ + +local filename=minetest.get_worldpath() .. "/teleport_tubes" + +local function read_file() + local f = io.open(filename, "r") + if f == nil then return {} end + local t = f:read("*all") + f:close() + if t == "" or t == nil then return {} end + return minetest.deserialize(t) +end + +local function write_file(tbl) + local f = io.open(filename, "w") + f:write(minetest.serialize(tbl)) + f:close() +end + +local function update_pos_in_file(pos) + local tbl=read_file() + for _, val in ipairs(tbl) do + if val.x == pos.x and val.y == pos.y and val.z == pos.z then + local meta = minetest.get_meta(val) + val.channel = meta:get_string("channel") + val.cr = meta:get_int("can_receive") + end + end + write_file(tbl) +end + +local function add_tube_in_file(pos,channel, cr) + local tbl=read_file() + for _,val in ipairs(tbl) do + if val.x==pos.x and val.y==pos.y and val.z==pos.z then + return + end + end + table.insert(tbl,{x=pos.x,y=pos.y,z=pos.z,channel=channel,cr=cr}) + write_file(tbl) +end + +local function remove_tube_in_file(pos) + local tbl = read_file() + local newtbl = {} + for _, val in ipairs(tbl) do + if val.x ~= pos.x or val.y ~= pos.y or val.z ~= pos.z then + table.insert(newtbl, val) + end + end + write_file(newtbl) +end + +local function read_node_with_vm(pos) + local vm = VoxelManip() + local MinEdge, MaxEdge = vm:read_from_map(pos, pos) + local data = vm:get_data() + local area = VoxelArea:new({MinEdge = MinEdge, MaxEdge = MaxEdge}) + return minetest.get_name_from_content_id(data[area:index(pos.x, pos.y, pos.z)]) +end + +local function get_tubes_in_file(pos,channel) + local tbl = read_file() + local newtbl = {} + local changed = false + for _, val in ipairs(tbl) do + local meta = minetest.get_meta(val) + local name = read_node_with_vm(val) + local is_loaded = (minetest.get_node_or_nil(val) ~= nil) + local is_teleport_tube = minetest.registered_nodes[name] and minetest.registered_nodes[name].is_teleport_tube + if is_teleport_tube then + if is_loaded and (val.channel ~= meta:get_string("channel") or val.cr ~= meta:get_int("can_receive")) then + val.channel = meta:get_string("channel") + val.cr = meta:get_int("can_receive") + changed = true + end + if val.cr == 1 and val.channel == channel and (val.x ~= pos.x or val.y ~= pos.y or val.z ~= pos.z) then + table.insert(newtbl, val) + end + else + val.to_remove = true + changed = true + end + end + if changed then + local updated = {} + for _, val in ipairs(tbl) do + if not val.to_remove then + table.insert(updated, val) + end + end + write_file(updated) + end + return newtbl +end + +local teleport_noctr_textures={"pipeworks_teleport_tube_noctr.png","pipeworks_teleport_tube_noctr.png","pipeworks_teleport_tube_noctr.png", + "pipeworks_teleport_tube_noctr.png","pipeworks_teleport_tube_noctr.png","pipeworks_teleport_tube_noctr.png"} +local teleport_plain_textures={"pipeworks_teleport_tube_plain.png","pipeworks_teleport_tube_plain.png","pipeworks_teleport_tube_plain.png", + "pipeworks_teleport_tube_plain.png","pipeworks_teleport_tube_plain.png","pipeworks_teleport_tube_plain.png"} +local teleport_end_textures={"pipeworks_teleport_tube_end.png","pipeworks_teleport_tube_end.png","pipeworks_teleport_tube_end.png", + "pipeworks_teleport_tube_end.png","pipeworks_teleport_tube_end.png","pipeworks_teleport_tube_end.png"} +local teleport_short_texture="pipeworks_teleport_tube_short.png" +local teleport_inv_texture="pipeworks_teleport_tube_inv.png" + +local function set_teleport_tube_formspec(meta) + local cr = meta:get_int("can_receive") ~= 0 + meta:set_string("formspec","size[10.5,1;]".. + "field[0,0.5;7,1;channel;Channel:;${channel}]".. + "button[8,0;2.5,1;"..(cr and "cr0" or "cr1")..";".. + (cr and "Send and Receive" or "Send only").."]") +end + +pipeworks.register_tube("pipeworks:teleport_tube","Teleporting Pneumatic Tube Segment",teleport_plain_textures, + teleport_noctr_textures,teleport_end_textures,teleport_short_texture,teleport_inv_texture, { + is_teleport_tube = true, + tube = { + can_go = function(pos,node,velocity,stack) + velocity.x = 0 + velocity.y = 0 + velocity.z = 0 + local meta = minetest.get_meta(pos) + local channel = meta:get_string("channel") + local target = get_tubes_in_file(pos,channel) + if target[1] == nil then return {} end + local d = math.random(1,#target) + pos.x = target[d].x + pos.y = target[d].y + pos.z = target[d].z + return pipeworks.meseadjlist + end + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("channel","") + meta:set_int("can_receive",1) + add_tube_in_file(pos,"") + set_teleport_tube_formspec(meta) + end, + on_receive_fields = function(pos,formname,fields,sender) + local meta = minetest.get_meta(pos) + + --check for private channels + if fields.channel ~= nil then + local name, mode = fields.channel:match("^([^:;]+)([:;])") + if name and mode and name ~= sender:get_player_name() then + + --channels starting with '[name]:' can only be used by the named player + if mode == ":" then + minetest.chat_send_player(sender:get_player_name(), "Sorry, channel '"..fields.channel.."' is reserved for exclusive use by "..name) + return + + --channels starting with '[name];' can be used by other players, but cannot be received from + elseif mode == ";" and (fields.cr1 or (meta:get_int("can_receive") ~= 0 and not fields.cr0)) then + minetest.chat_send_player(sender:get_player_name(), "Sorry, receiving from channel '"..fields.channel.."' is reserved for "..name) + return + end + end + end + + if fields.channel==nil then fields.channel=meta:get_string("channel") end + meta:set_string("channel",fields.channel) + remove_tube_in_file(pos) + if fields.cr0 then meta:set_int("can_receive", 0) end + if fields.cr1 then meta:set_int("can_receive", 1) end + local cr = meta:get_int("can_receive") + add_tube_in_file(pos, fields.channel, meta:get_int("can_receive")) + set_teleport_tube_formspec(meta) + end, + on_destruct = function(pos) + remove_tube_in_file(pos) + end}) + +if minetest.get_modpath("mesecons_mvps") ~= nil then + mesecon:register_on_mvps_move(function(moved_nodes) + for _, n in ipairs(moved_nodes) do + if string.find(n.node.name, "pipeworks:teleport_tube") ~= nil then + update_pos_in_file(n.pos) + end + end + end) +end diff --git a/mods/pipeworks/textures/homedecor_oil_extract.png b/mods/pipeworks/textures/homedecor_oil_extract.png new file mode 100644 index 0000000..ef0f896 Binary files /dev/null and b/mods/pipeworks/textures/homedecor_oil_extract.png differ diff --git a/mods/pipeworks/textures/homedecor_paraffin.png b/mods/pipeworks/textures/homedecor_paraffin.png new file mode 100644 index 0000000..5f98300 Binary files /dev/null and b/mods/pipeworks/textures/homedecor_paraffin.png differ diff --git a/mods/pipeworks/textures/homedecor_plastic_sheeting.png b/mods/pipeworks/textures/homedecor_plastic_sheeting.png new file mode 100644 index 0000000..fea8773 Binary files /dev/null and b/mods/pipeworks/textures/homedecor_plastic_sheeting.png differ diff --git a/mods/pipeworks/textures/pipeworks_accelerator_tube_end.png b/mods/pipeworks/textures/pipeworks_accelerator_tube_end.png new file mode 100644 index 0000000..a3dd09a Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_accelerator_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_accelerator_tube_inv.png b/mods/pipeworks/textures/pipeworks_accelerator_tube_inv.png new file mode 100644 index 0000000..6cc2937 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_accelerator_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_accelerator_tube_noctr.png b/mods/pipeworks/textures/pipeworks_accelerator_tube_noctr.png new file mode 100644 index 0000000..61a46a3 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_accelerator_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_accelerator_tube_plain.png b/mods/pipeworks/textures/pipeworks_accelerator_tube_plain.png new file mode 100644 index 0000000..0baa541 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_accelerator_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_accelerator_tube_short.png b/mods/pipeworks/textures/pipeworks_accelerator_tube_short.png new file mode 100644 index 0000000..4f389d9 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_accelerator_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_autocrafter.png b/mods/pipeworks/textures/pipeworks_autocrafter.png new file mode 100644 index 0000000..6c7c84d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_autocrafter.png differ diff --git a/mods/pipeworks/textures/pipeworks_black.png b/mods/pipeworks/textures/pipeworks_black.png new file mode 100644 index 0000000..ada83a4 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_black.png differ diff --git a/mods/pipeworks/textures/pipeworks_blue.png b/mods/pipeworks/textures/pipeworks_blue.png new file mode 100644 index 0000000..c063ae1 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_blue.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_end.png b/mods/pipeworks/textures/pipeworks_conductor_tube_end.png new file mode 100644 index 0000000..a0d6915 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_inv.png b/mods/pipeworks/textures/pipeworks_conductor_tube_inv.png new file mode 100644 index 0000000..5db1153 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_noctr.png b/mods/pipeworks/textures/pipeworks_conductor_tube_noctr.png new file mode 100644 index 0000000..cc03245 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_on_end.png b/mods/pipeworks/textures/pipeworks_conductor_tube_on_end.png new file mode 100644 index 0000000..a70d988 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_on_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_on_noctr.png b/mods/pipeworks/textures/pipeworks_conductor_tube_on_noctr.png new file mode 100644 index 0000000..30edb60 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_on_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_on_plain.png b/mods/pipeworks/textures/pipeworks_conductor_tube_on_plain.png new file mode 100644 index 0000000..1aaa15b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_on_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_plain.png b/mods/pipeworks/textures/pipeworks_conductor_tube_plain.png new file mode 100644 index 0000000..b432dc4 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_short.png b/mods/pipeworks/textures/pipeworks_conductor_tube_short.png new file mode 100644 index 0000000..0c4b1d2 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_crossing_tube_end.png b/mods/pipeworks/textures/pipeworks_crossing_tube_end.png new file mode 100644 index 0000000..f708b05 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_crossing_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_crossing_tube_inv.png b/mods/pipeworks/textures/pipeworks_crossing_tube_inv.png new file mode 100644 index 0000000..8f24d1a Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_crossing_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_crossing_tube_noctr.png b/mods/pipeworks/textures/pipeworks_crossing_tube_noctr.png new file mode 100644 index 0000000..f4a75c9 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_crossing_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_crossing_tube_plain.png b/mods/pipeworks/textures/pipeworks_crossing_tube_plain.png new file mode 100644 index 0000000..68d1fc8 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_crossing_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_crossing_tube_short.png b/mods/pipeworks/textures/pipeworks_crossing_tube_short.png new file mode 100644 index 0000000..1c5e39f Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_crossing_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_back.png b/mods/pipeworks/textures/pipeworks_deployer_back.png new file mode 100644 index 0000000..2bac175 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_back.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_bottom.png b/mods/pipeworks/textures/pipeworks_deployer_bottom.png new file mode 100644 index 0000000..763a7bd Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_bottom.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_front_off.png b/mods/pipeworks/textures/pipeworks_deployer_front_off.png new file mode 100644 index 0000000..323cdaa Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_front_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_front_on.png b/mods/pipeworks/textures/pipeworks_deployer_front_on.png new file mode 100644 index 0000000..38caed6 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_front_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_side.png b/mods/pipeworks/textures/pipeworks_deployer_side.png new file mode 100644 index 0000000..f3ede41 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_side.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_side1.png b/mods/pipeworks/textures/pipeworks_deployer_side1.png new file mode 100644 index 0000000..f3ede41 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_side1.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_side2.png b/mods/pipeworks/textures/pipeworks_deployer_side2.png new file mode 100644 index 0000000..0b31eec Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_side2.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_top.png b/mods/pipeworks/textures/pipeworks_deployer_top.png new file mode 100644 index 0000000..1a78cc9 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_detector_tube_end.png b/mods/pipeworks/textures/pipeworks_detector_tube_end.png new file mode 100644 index 0000000..ef0d5fe Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_detector_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_detector_tube_inv.png b/mods/pipeworks/textures/pipeworks_detector_tube_inv.png new file mode 100644 index 0000000..b6cadb9 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_detector_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_detector_tube_noctr.png b/mods/pipeworks/textures/pipeworks_detector_tube_noctr.png new file mode 100644 index 0000000..c415d77 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_detector_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_detector_tube_plain.png b/mods/pipeworks/textures/pipeworks_detector_tube_plain.png new file mode 100644 index 0000000..d99cddc Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_detector_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_detector_tube_short.png b/mods/pipeworks/textures/pipeworks_detector_tube_short.png new file mode 100644 index 0000000..ad5e034 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_detector_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_back.png b/mods/pipeworks/textures/pipeworks_dispenser_back.png new file mode 100644 index 0000000..f4fade2 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_back.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_bottom.png b/mods/pipeworks/textures/pipeworks_dispenser_bottom.png new file mode 100644 index 0000000..35416de Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_bottom.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_front_off.png b/mods/pipeworks/textures/pipeworks_dispenser_front_off.png new file mode 100644 index 0000000..4fc0017 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_front_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_front_on.png b/mods/pipeworks/textures/pipeworks_dispenser_front_on.png new file mode 100644 index 0000000..36f7f0b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_front_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_side1.png b/mods/pipeworks/textures/pipeworks_dispenser_side1.png new file mode 100644 index 0000000..56e8973 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_side1.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_side2.png b/mods/pipeworks/textures/pipeworks_dispenser_side2.png new file mode 100644 index 0000000..8f306b2 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_side2.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_top.png b/mods/pipeworks/textures/pipeworks_dispenser_top.png new file mode 100644 index 0000000..8d6f9d0 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_filter_input.png b/mods/pipeworks/textures/pipeworks_filter_input.png new file mode 100644 index 0000000..e57a5ec Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_filter_input.png differ diff --git a/mods/pipeworks/textures/pipeworks_filter_output.png b/mods/pipeworks/textures/pipeworks_filter_output.png new file mode 100644 index 0000000..e0ae622 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_filter_output.png differ diff --git a/mods/pipeworks/textures/pipeworks_filter_side.png b/mods/pipeworks/textures/pipeworks_filter_side.png new file mode 100644 index 0000000..6645948 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_filter_side.png differ diff --git a/mods/pipeworks/textures/pipeworks_filter_top.png b/mods/pipeworks/textures/pipeworks_filter_top.png new file mode 100644 index 0000000..c1c130c Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_filter_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_fountainhead_top.png b/mods/pipeworks/textures/pipeworks_fountainhead_top.png new file mode 100644 index 0000000..503d051 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_fountainhead_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_grating_sides.png b/mods/pipeworks/textures/pipeworks_grating_sides.png new file mode 100644 index 0000000..615965b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_grating_sides.png differ diff --git a/mods/pipeworks/textures/pipeworks_grating_top.png b/mods/pipeworks/textures/pipeworks_grating_top.png new file mode 100644 index 0000000..7219861 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_grating_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_green.png b/mods/pipeworks/textures/pipeworks_green.png new file mode 100644 index 0000000..2e4939d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_green.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_filter_input.png b/mods/pipeworks/textures/pipeworks_mese_filter_input.png new file mode 100644 index 0000000..d0353a7 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_filter_input.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_filter_output.png b/mods/pipeworks/textures/pipeworks_mese_filter_output.png new file mode 100644 index 0000000..35db0fe Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_filter_output.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_filter_side.png b/mods/pipeworks/textures/pipeworks_mese_filter_side.png new file mode 100644 index 0000000..f2793b1 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_filter_side.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_filter_top.png b/mods/pipeworks/textures/pipeworks_mese_filter_top.png new file mode 100644 index 0000000..7b8e2b1 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_filter_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_sand_tube_end.png b/mods/pipeworks/textures/pipeworks_mese_sand_tube_end.png new file mode 100644 index 0000000..b044d73 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_sand_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_sand_tube_inv.png b/mods/pipeworks/textures/pipeworks_mese_sand_tube_inv.png new file mode 100644 index 0000000..8829422 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_sand_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_sand_tube_noctr.png b/mods/pipeworks/textures/pipeworks_mese_sand_tube_noctr.png new file mode 100644 index 0000000..9e41bc8 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_sand_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_sand_tube_plain.png b/mods/pipeworks/textures/pipeworks_mese_sand_tube_plain.png new file mode 100644 index 0000000..ff0a107 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_sand_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_sand_tube_short.png b/mods/pipeworks/textures/pipeworks_mese_sand_tube_short.png new file mode 100644 index 0000000..2defd5d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_sand_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_end.png b/mods/pipeworks/textures/pipeworks_mese_tube_end.png new file mode 100644 index 0000000..e4b677d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_inv.png b/mods/pipeworks/textures/pipeworks_mese_tube_inv.png new file mode 100644 index 0000000..123d9f7 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_noctr_1.png b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_1.png new file mode 100644 index 0000000..da29b06 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_1.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_noctr_2.png b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_2.png new file mode 100644 index 0000000..1f37163 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_2.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_noctr_3.png b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_3.png new file mode 100644 index 0000000..1371ce7 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_3.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_noctr_4.png b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_4.png new file mode 100644 index 0000000..bca7439 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_4.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_noctr_5.png b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_5.png new file mode 100644 index 0000000..2cc44d4 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_5.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_noctr_6.png b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_6.png new file mode 100644 index 0000000..d93213d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_6.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_plain_1.png b/mods/pipeworks/textures/pipeworks_mese_tube_plain_1.png new file mode 100644 index 0000000..517f5a4 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_plain_1.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_plain_2.png b/mods/pipeworks/textures/pipeworks_mese_tube_plain_2.png new file mode 100644 index 0000000..6323492 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_plain_2.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_plain_3.png b/mods/pipeworks/textures/pipeworks_mese_tube_plain_3.png new file mode 100644 index 0000000..c7af0cf Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_plain_3.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_plain_4.png b/mods/pipeworks/textures/pipeworks_mese_tube_plain_4.png new file mode 100644 index 0000000..bc19da2 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_plain_4.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_plain_5.png b/mods/pipeworks/textures/pipeworks_mese_tube_plain_5.png new file mode 100644 index 0000000..f781787 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_plain_5.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_plain_6.png b/mods/pipeworks/textures/pipeworks_mese_tube_plain_6.png new file mode 100644 index 0000000..efd85a5 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_plain_6.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_short.png b/mods/pipeworks/textures/pipeworks_mese_tube_short.png new file mode 100644 index 0000000..fae64c4 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_back.png b/mods/pipeworks/textures/pipeworks_nodebreaker_back.png new file mode 100644 index 0000000..6337d40 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_back.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_bottom_off.png b/mods/pipeworks/textures/pipeworks_nodebreaker_bottom_off.png new file mode 100644 index 0000000..133be48 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_bottom_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_bottom_on.png b/mods/pipeworks/textures/pipeworks_nodebreaker_bottom_on.png new file mode 100644 index 0000000..b21c261 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_bottom_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_front_off.png b/mods/pipeworks/textures/pipeworks_nodebreaker_front_off.png new file mode 100644 index 0000000..cab8bf9 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_front_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_front_on.png b/mods/pipeworks/textures/pipeworks_nodebreaker_front_on.png new file mode 100644 index 0000000..82ebd3a Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_front_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_side1_off.png b/mods/pipeworks/textures/pipeworks_nodebreaker_side1_off.png new file mode 100644 index 0000000..ec0a00f Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_side1_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_side1_on.png b/mods/pipeworks/textures/pipeworks_nodebreaker_side1_on.png new file mode 100644 index 0000000..9dace63 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_side1_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_side2_off.png b/mods/pipeworks/textures/pipeworks_nodebreaker_side2_off.png new file mode 100644 index 0000000..8320646 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_side2_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_side2_on.png b/mods/pipeworks/textures/pipeworks_nodebreaker_side2_on.png new file mode 100644 index 0000000..467a1fc Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_side2_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_top_off.png b/mods/pipeworks/textures/pipeworks_nodebreaker_top_off.png new file mode 100644 index 0000000..8e5a1cd Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_top_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_top_on.png b/mods/pipeworks/textures/pipeworks_nodebreaker_top_on.png new file mode 100644 index 0000000..8fca471 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_top_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_one_way_tube_input.png b/mods/pipeworks/textures/pipeworks_one_way_tube_input.png new file mode 100644 index 0000000..3968c0d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_one_way_tube_input.png differ diff --git a/mods/pipeworks/textures/pipeworks_one_way_tube_output.png b/mods/pipeworks/textures/pipeworks_one_way_tube_output.png new file mode 100644 index 0000000..7dc5910 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_one_way_tube_output.png differ diff --git a/mods/pipeworks/textures/pipeworks_one_way_tube_side.png b/mods/pipeworks/textures/pipeworks_one_way_tube_side.png new file mode 100644 index 0000000..044e4f4 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_one_way_tube_side.png differ diff --git a/mods/pipeworks/textures/pipeworks_one_way_tube_top.png b/mods/pipeworks/textures/pipeworks_one_way_tube_top.png new file mode 100644 index 0000000..bb54e45 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_one_way_tube_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_pipe_end.png b/mods/pipeworks/textures/pipeworks_pipe_end.png new file mode 100644 index 0000000..3b64478 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pipe_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_pipe_end_empty.png b/mods/pipeworks/textures/pipeworks_pipe_end_empty.png new file mode 100644 index 0000000..0e647be Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pipe_end_empty.png differ diff --git a/mods/pipeworks/textures/pipeworks_pipe_end_loaded.png b/mods/pipeworks/textures/pipeworks_pipe_end_loaded.png new file mode 100644 index 0000000..0a5bece Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pipe_end_loaded.png differ diff --git a/mods/pipeworks/textures/pipeworks_pipe_inv.png b/mods/pipeworks/textures/pipeworks_pipe_inv.png new file mode 100644 index 0000000..567b771 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pipe_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_plain.png b/mods/pipeworks/textures/pipeworks_plain.png new file mode 100644 index 0000000..48af08f Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_plastic_sheeting.png b/mods/pipeworks/textures/pipeworks_plastic_sheeting.png new file mode 100644 index 0000000..1386b19 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_plastic_sheeting.png differ diff --git a/mods/pipeworks/textures/pipeworks_pump_bottom.png b/mods/pipeworks/textures/pipeworks_pump_bottom.png new file mode 100644 index 0000000..615965b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pump_bottom.png differ diff --git a/mods/pipeworks/textures/pipeworks_pump_off.png b/mods/pipeworks/textures/pipeworks_pump_off.png new file mode 100644 index 0000000..0b640c9 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pump_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_pump_on.png b/mods/pipeworks/textures/pipeworks_pump_on.png new file mode 100644 index 0000000..5cdca6b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pump_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_pump_sides.png b/mods/pipeworks/textures/pipeworks_pump_sides.png new file mode 100644 index 0000000..11b6c64 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pump_sides.png differ diff --git a/mods/pipeworks/textures/pipeworks_pump_top.png b/mods/pipeworks/textures/pipeworks_pump_top.png new file mode 100644 index 0000000..0271e8f Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pump_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_red.png b/mods/pipeworks/textures/pipeworks_red.png new file mode 100644 index 0000000..05ccc05 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_red.png differ diff --git a/mods/pipeworks/textures/pipeworks_sand_tube_end.png b/mods/pipeworks/textures/pipeworks_sand_tube_end.png new file mode 100644 index 0000000..3c4db02 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_sand_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_sand_tube_inv.png b/mods/pipeworks/textures/pipeworks_sand_tube_inv.png new file mode 100644 index 0000000..e1c46b9 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_sand_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_sand_tube_noctr.png b/mods/pipeworks/textures/pipeworks_sand_tube_noctr.png new file mode 100644 index 0000000..cbb3a09 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_sand_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_sand_tube_plain.png b/mods/pipeworks/textures/pipeworks_sand_tube_plain.png new file mode 100644 index 0000000..71deecc Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_sand_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_sand_tube_short.png b/mods/pipeworks/textures/pipeworks_sand_tube_short.png new file mode 100644 index 0000000..9cfc124 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_sand_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_sensor_sides_on.png b/mods/pipeworks/textures/pipeworks_sensor_sides_on.png new file mode 100644 index 0000000..3551191 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_sensor_sides_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_spigot_bottom2.png b/mods/pipeworks/textures/pipeworks_spigot_bottom2.png new file mode 100644 index 0000000..86b9696 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_spigot_bottom2.png differ diff --git a/mods/pipeworks/textures/pipeworks_spigot_sides.png b/mods/pipeworks/textures/pipeworks_spigot_sides.png new file mode 100644 index 0000000..f9898e6 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_spigot_sides.png differ diff --git a/mods/pipeworks/textures/pipeworks_spigot_sides2.png b/mods/pipeworks/textures/pipeworks_spigot_sides2.png new file mode 100644 index 0000000..e385700 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_spigot_sides2.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_back.png b/mods/pipeworks/textures/pipeworks_storage_tank_back.png new file mode 100644 index 0000000..cf7f245 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_back.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_fittings.png b/mods/pipeworks/textures/pipeworks_storage_tank_fittings.png new file mode 100644 index 0000000..d694fad Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_fittings.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_0.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_0.png new file mode 100644 index 0000000..c91466f Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_0.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_1.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_1.png new file mode 100644 index 0000000..6656834 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_1.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_10.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_10.png new file mode 100644 index 0000000..6456afe Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_10.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_2.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_2.png new file mode 100644 index 0000000..89a4412 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_2.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_3.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_3.png new file mode 100644 index 0000000..d237dd5 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_3.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_4.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_4.png new file mode 100644 index 0000000..25e43d3 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_4.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_5.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_5.png new file mode 100644 index 0000000..f51d113 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_5.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_6.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_6.png new file mode 100644 index 0000000..c21115e Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_6.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_7.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_7.png new file mode 100644 index 0000000..aa7c665 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_7.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_8.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_8.png new file mode 100644 index 0000000..5598e59 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_8.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_9.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_9.png new file mode 100644 index 0000000..b0f750d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_9.png differ diff --git a/mods/pipeworks/textures/pipeworks_teleport_tube_end.png b/mods/pipeworks/textures/pipeworks_teleport_tube_end.png new file mode 100644 index 0000000..d3df799 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_teleport_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_teleport_tube_inv.png b/mods/pipeworks/textures/pipeworks_teleport_tube_inv.png new file mode 100644 index 0000000..653afbb Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_teleport_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_teleport_tube_noctr.png b/mods/pipeworks/textures/pipeworks_teleport_tube_noctr.png new file mode 100644 index 0000000..3d10b41 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_teleport_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_teleport_tube_plain.png b/mods/pipeworks/textures/pipeworks_teleport_tube_plain.png new file mode 100644 index 0000000..23a793d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_teleport_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_teleport_tube_short.png b/mods/pipeworks/textures/pipeworks_teleport_tube_short.png new file mode 100644 index 0000000..e0a15b9 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_teleport_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_testobject.png b/mods/pipeworks/textures/pipeworks_testobject.png new file mode 100644 index 0000000..2c67561 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_testobject.png differ diff --git a/mods/pipeworks/textures/pipeworks_trashcan_bottom.png b/mods/pipeworks/textures/pipeworks_trashcan_bottom.png new file mode 100644 index 0000000..a50c789 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_trashcan_bottom.png differ diff --git a/mods/pipeworks/textures/pipeworks_trashcan_side.png b/mods/pipeworks/textures/pipeworks_trashcan_side.png new file mode 100644 index 0000000..7b081bf Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_trashcan_side.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_connection_metallic.png b/mods/pipeworks/textures/pipeworks_tube_connection_metallic.png new file mode 100644 index 0000000..86a74c6 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_connection_metallic.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_connection_stony.png b/mods/pipeworks/textures/pipeworks_tube_connection_stony.png new file mode 100644 index 0000000..1e72d81 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_connection_stony.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_connection_wooden.png b/mods/pipeworks/textures/pipeworks_tube_connection_wooden.png new file mode 100644 index 0000000..c20cd7d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_connection_wooden.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_end.png b/mods/pipeworks/textures/pipeworks_tube_end.png new file mode 100644 index 0000000..ef0d5fe Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_inv.png b/mods/pipeworks/textures/pipeworks_tube_inv.png new file mode 100644 index 0000000..d24d61c Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_noctr.png b/mods/pipeworks/textures/pipeworks_tube_noctr.png new file mode 100644 index 0000000..c415d77 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_plain.png b/mods/pipeworks/textures/pipeworks_tube_plain.png new file mode 100644 index 0000000..a5022d8 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_short.png b/mods/pipeworks/textures/pipeworks_tube_short.png new file mode 100644 index 0000000..ad5e034 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_transparent.png b/mods/pipeworks/textures/pipeworks_tube_transparent.png new file mode 100644 index 0000000..10e8907 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_transparent.png differ diff --git a/mods/pipeworks/textures/pipeworks_valvebody_bottom.png b/mods/pipeworks/textures/pipeworks_valvebody_bottom.png new file mode 100644 index 0000000..43d30d5 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_valvebody_bottom.png differ diff --git a/mods/pipeworks/textures/pipeworks_valvebody_ends.png b/mods/pipeworks/textures/pipeworks_valvebody_ends.png new file mode 100644 index 0000000..69a615f Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_valvebody_ends.png differ diff --git a/mods/pipeworks/textures/pipeworks_valvebody_sides.png b/mods/pipeworks/textures/pipeworks_valvebody_sides.png new file mode 100644 index 0000000..47e80ea Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_valvebody_sides.png differ diff --git a/mods/pipeworks/textures/pipeworks_valvebody_top_off.png b/mods/pipeworks/textures/pipeworks_valvebody_top_off.png new file mode 100644 index 0000000..0587e79 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_valvebody_top_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_valvebody_top_on.png b/mods/pipeworks/textures/pipeworks_valvebody_top_on.png new file mode 100644 index 0000000..320c7e4 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_valvebody_top_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_white.png b/mods/pipeworks/textures/pipeworks_white.png new file mode 100644 index 0000000..64386eb Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_white.png differ diff --git a/mods/pipeworks/textures/pipeworks_windowed_empty.png b/mods/pipeworks/textures/pipeworks_windowed_empty.png new file mode 100644 index 0000000..3b64478 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_windowed_empty.png differ diff --git a/mods/pipeworks/textures/pipeworks_windowed_loaded.png b/mods/pipeworks/textures/pipeworks_windowed_loaded.png new file mode 100644 index 0000000..0a5bece Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_windowed_loaded.png differ diff --git a/mods/pipeworks/textures/pipeworks_yellow.png b/mods/pipeworks/textures/pipeworks_yellow.png new file mode 100644 index 0000000..44ea445 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_yellow.png differ diff --git a/mods/pipeworks/trashcan.lua b/mods/pipeworks/trashcan.lua new file mode 100644 index 0000000..fdec79f --- /dev/null +++ b/mods/pipeworks/trashcan.lua @@ -0,0 +1,49 @@ +minetest.register_node("pipeworks:trashcan", { + description = "Trash Can", + drawtype = "normal", + tiles = { + "pipeworks_trashcan_bottom.png", + "pipeworks_trashcan_bottom.png", + "pipeworks_trashcan_side.png", + "pipeworks_trashcan_side.png", + "pipeworks_trashcan_side.png", + "pipeworks_trashcan_side.png", + }, + groups = {snappy = 3, tubedevice = 1, tubedevice_receiver = 1}, + tube = { + insert_object = function(pos, node, stack, direction) + return ItemStack("") + end, + connect_sides = {left = 1, right = 1, front = 1, back = 1, top = 1, bottom = 1}, + priority = 1, -- Lower than anything else + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", + "size[8,7]".. + "item_image[0,0;1,1;pipeworks:trashcan]".. + "label[1,0;Trash Can]".. + "list[current_name;trash;3.5,1;1,1;]".. + "list[current_player;main;0,3;8,4;]") + meta:set_string("infotext", "Trash Can") + meta:get_inventory():set_size("trash", 1) + end, + after_place_node = function(pos) + pipeworks.scan_for_tube_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_tube_objects(pos) + end, + on_metadata_inventory_put = function(pos, listname, index, stack, player) + minetest.get_meta(pos):get_inventory():set_stack(listname, index, ItemStack("")) + end, +}) + +minetest.register_craft({ + output = "pipeworks:trashcan", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "default:steel_ingot", "", "default:steel_ingot" }, + { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }, + }, +}) diff --git a/mods/pipeworks/tubes.lua b/mods/pipeworks/tubes.lua new file mode 100644 index 0000000..2822a10 --- /dev/null +++ b/mods/pipeworks/tubes.lua @@ -0,0 +1,594 @@ +-- This file supplies the various kinds of pneumatic tubes + +pipeworks.tubenodes = {} + +minetest.register_alias("pipeworks:tube", "pipeworks:tube_000000") + +-- now, a function to define the tubes + +local REGISTER_COMPATIBILITY = true + +local vti = {4, 3, 2, 1, 6, 5} + +local register_one_tube = function(name, tname, dropname, desc, plain, noctrs, ends, short, inv, special, connects, style) + local outboxes = {} + local outsel = {} + local outimgs = {} + + for i = 1, 6 do + outimgs[vti[i]] = plain[i] + end + + for _, v in ipairs(connects) do + table.extend(outboxes, pipeworks.tube_boxes[v]) + table.insert(outsel, pipeworks.tube_selectboxes[v]) + outimgs[vti[v]] = noctrs[v] + end + + if #connects == 1 then + local v = connects[1] + v = v-1 + 2*(v%2) -- Opposite side + outimgs[vti[v]] = ends[v] + end + + local tgroups = {snappy = 3, tube = 1, tubedevice = 1, not_in_creative_inventory = 1} + local tubedesc = desc.." "..dump(connects).."... You hacker, you." + local iimg = plain[1] + local wscale = {x = 1, y = 1, z = 1} + + if #connects == 0 then + tgroups = {snappy = 3, tube = 1, tubedevice = 1} + tubedesc = desc + iimg=inv + outimgs = { + short, short, + ends[3],ends[4], + short, short + } + outboxes = { -24/64, -9/64, -9/64, 24/64, 9/64, 9/64 } + outsel = { -24/64, -10/64, -10/64, 24/64, 10/64, 10/64 } + wscale = {x = 1, y = 1, z = 0.01} + end + + local rname = name.."_"..tname + table.insert(pipeworks.tubenodes, rname) + + local nodedef = { + description = tubedesc, + drawtype = "nodebox", + tiles = outimgs, + sunlight_propagates = true, + inventory_image = iimg, + wield_image = iimg, + wield_scale = wscale, + paramtype = "light", + selection_box = { + type = "fixed", + fixed = outsel + }, + node_box = { + type = "fixed", + fixed = outboxes + }, + groups = tgroups, + sounds = default.node_sound_wood_defaults(), + walkable = true, + stack_max = 99, + basename = name, + style = style, + drop = name.."_"..dropname, + tubelike = 1, + tube = { + connect_sides = {front = 1, back = 1, left = 1, right = 1, top = 1, bottom = 1}, + priority = 50 + }, + --[[after_place_node = function(pos) + pipeworks.scan_for_tube_objects(pos) + if minetest.registered_nodes[rname].after_place_node_ then + minetest.registered_nodes[rname].after_place_node_(pos) + end + end, + after_dig_node = function(pos) + pipeworks.scan_for_tube_objects(pos) + if minetest.registered_nodes[rname].after_dig_node_ then + minetest.registered_nodes[rname].after_dig_node_(pos) + end + end]] + } + if style == "6d" then + nodedef.paramtype2 = "facedir" + end + + if special == nil then special = {} end + + for key, value in pairs(special) do + --if key == "after_dig_node" or key == "after_place_node" then + -- nodedef[key.."_"] = value + if key == "groups" then + for group, val in pairs(value) do + nodedef.groups[group] = val + end + elseif key == "tube" then + for key, val in pairs(value) do + nodedef.tube[key] = val + end + else + nodedef[key] = table.recursive_replace(value, "#id", tname) + end + end + + minetest.register_node(rname, nodedef) +end + +pipeworks.register_tube = function(name, desc, plain, noctrs, ends, short, inv, special, old_registration) + if old_registration then + for xm = 0, 1 do + for xp = 0, 1 do + for ym = 0, 1 do + for yp = 0, 1 do + for zm = 0, 1 do + for zp = 0, 1 do + local connects = {} + if xm == 1 then + connects[#connects+1] = 1 + end + if xp == 1 then + connects[#connects+1] = 2 + end + if ym == 1 then + connects[#connects+1] = 3 + end + if yp == 1 then + connects[#connects+1] = 4 + end + if zm == 1 then + connects[#connects+1] = 5 + end + if zp == 1 then + connects[#connects+1] = 6 + end + local tname = xm..xp..ym..yp..zm..zp + register_one_tube(name, tname, "000000", desc, plain, noctrs, ends, short, inv, special, connects, "old") + end + end + end + end + end + end + else + -- 6d tubes: uses only 10 nodes instead of 64, but the textures must be rotated + local cconnects = {{}, {1}, {1, 2}, {1, 3}, {1, 3, 5}, {1, 2, 3}, {1, 2, 3, 5}, {1, 2, 3, 4}, {1, 2, 3, 4, 5}, {1, 2, 3, 4, 5, 6}} + for index, connects in ipairs(cconnects) do + register_one_tube(name, tostring(index), "1", desc, plain, noctrs, ends, short, inv, special, connects, "6d") + end + if REGISTER_COMPATIBILITY then + local cname = name.."_compatibility" + minetest.register_node(cname, { + drawtype = "airlike", + style = "6d", + basename = name, + inventory_image = inv, + wield_image = inv, + paramtype = "light", + sunlight_propagates = true, + description = "Pneumatic tube segment (legacy)", + --[[after_place_node = function(pos) + pipeworks.scan_for_tube_objects(pos) + if minetest.registered_nodes[name.."_1"].after_place_node_ then + minetest.registered_nodes[name.."_1"].after_place_node_(pos) + end + end,]] + groups = {not_in_creative_inventory = 1, tube_to_update = 1, tube = 1}, + tube = {connect_sides = {front = 1, back = 1, left = 1, right = 1, top = 1, bottom = 1}}, + drop = name.."_1", + }) + table.insert(pipeworks.tubenodes, cname) + for xm = 0, 1 do + for xp = 0, 1 do + for ym = 0, 1 do + for yp = 0, 1 do + for zm = 0, 1 do + for zp = 0, 1 do + local tname = xm..xp..ym..yp..zm..zp + minetest.register_alias(name.."_"..tname, cname) + end + end + end + end + end + end + end + end +end + +if REGISTER_COMPATIBILITY then + minetest.register_abm({ + nodenames = {"group:tube_to_update"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local minp = vector.subtract(pos, 1) + local maxp = vector.add(pos, 1) + if table.getn(minetest.find_nodes_in_area(minp, maxp, "ignore")) == 0 then + pipeworks.scan_for_tube_objects(pos) + end + end + }) +end + +-- now let's actually call that function to get the real work done! + +local noctr_textures = {"pipeworks_tube_noctr.png", "pipeworks_tube_noctr.png", "pipeworks_tube_noctr.png", + "pipeworks_tube_noctr.png", "pipeworks_tube_noctr.png", "pipeworks_tube_noctr.png"} +local plain_textures = {"pipeworks_tube_plain.png", "pipeworks_tube_plain.png", "pipeworks_tube_plain.png", + "pipeworks_tube_plain.png", "pipeworks_tube_plain.png", "pipeworks_tube_plain.png"} +local end_textures = {"pipeworks_tube_end.png", "pipeworks_tube_end.png", "pipeworks_tube_end.png", + "pipeworks_tube_end.png", "pipeworks_tube_end.png", "pipeworks_tube_end.png"} +local short_texture = "pipeworks_tube_short.png" +local inv_texture = "pipeworks_tube_inv.png" + +pipeworks.register_tube("pipeworks:tube", "Pneumatic tube segment", plain_textures, noctr_textures, end_textures, short_texture, inv_texture) + +if pipeworks.enable_mese_tube then + local mese_noctr_textures = {"pipeworks_mese_tube_noctr_1.png", "pipeworks_mese_tube_noctr_2.png", "pipeworks_mese_tube_noctr_3.png", + "pipeworks_mese_tube_noctr_4.png", "pipeworks_mese_tube_noctr_5.png", "pipeworks_mese_tube_noctr_6.png"} + local mese_plain_textures = {"pipeworks_mese_tube_plain_1.png", "pipeworks_mese_tube_plain_2.png", "pipeworks_mese_tube_plain_3.png", + "pipeworks_mese_tube_plain_4.png", "pipeworks_mese_tube_plain_5.png", "pipeworks_mese_tube_plain_6.png"} + local mese_end_textures = {"pipeworks_mese_tube_end.png", "pipeworks_mese_tube_end.png", "pipeworks_mese_tube_end.png", + "pipeworks_mese_tube_end.png", "pipeworks_mese_tube_end.png", "pipeworks_mese_tube_end.png"} + local mese_short_texture = "pipeworks_mese_tube_short.png" + local mese_inv_texture = "pipeworks_mese_tube_inv.png" + local function update_formspec(pos) + local meta = minetest.get_meta(pos) + local old_formspec = meta:get_string("formspec") + if string.find(old_formspec, "button1") then -- Old version + local inv = meta:get_inventory() + for i = 1, 6 do + for _, stack in ipairs(inv:get_list("line"..i)) do + minetest.item_drop(stack, "", pos) + end + end + end + meta:set_string("formspec", + "size[8,11]".. + "list[current_name;line1;1,0;6,1;]".. + "list[current_name;line2;1,1;6,1;]".. + "list[current_name;line3;1,2;6,1;]".. + "list[current_name;line4;1,3;6,1;]".. + "list[current_name;line5;1,4;6,1;]".. + "list[current_name;line6;1,5;6,1;]".. + "image[0,0;1,1;pipeworks_white.png]".. + "image[0,1;1,1;pipeworks_black.png]".. + "image[0,2;1,1;pipeworks_green.png]".. + "image[0,3;1,1;pipeworks_yellow.png]".. + "image[0,4;1,1;pipeworks_blue.png]".. + "image[0,5;1,1;pipeworks_red.png]".. + fs_helpers.cycling_button(meta, "button[7,0;1,1", "l1s", {"Off", "On"}).. + fs_helpers.cycling_button(meta, "button[7,1;1,1", "l2s", {"Off", "On"}).. + fs_helpers.cycling_button(meta, "button[7,2;1,1", "l3s", {"Off", "On"}).. + fs_helpers.cycling_button(meta, "button[7,3;1,1", "l4s", {"Off", "On"}).. + fs_helpers.cycling_button(meta, "button[7,4;1,1", "l5s", {"Off", "On"}).. + fs_helpers.cycling_button(meta, "button[7,5;1,1", "l6s", {"Off", "On"}).. + "list[current_player;main;0,7;8,4;]") + end + pipeworks.register_tube("pipeworks:mese_tube", "Sorting Pneumatic Tube Segment", mese_plain_textures, mese_noctr_textures, + mese_end_textures, mese_short_texture, mese_inv_texture, + {tube = {can_go = function(pos, node, velocity, stack) + local tbl = {} + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local found = false + local name = stack:get_name() + for i, vect in ipairs(pipeworks.meseadjlist) do + if meta:get_int("l"..tostring(i).."s") == 1 then + for _, st in ipairs(inv:get_list("line"..tostring(i))) do + if st:get_name() == name then + found = true + table.insert(tbl, vect) + break + end + end + end + end + if found == false then + for i, vect in ipairs(pipeworks.meseadjlist) do + if meta:get_int("l"..tostring(i).."s") == 1 then + if inv:is_empty("line"..tostring(i)) then + table.insert(tbl, vect) + end + end + end + end + return tbl + end}, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + for i = 1, 6 do + meta:set_int("l"..tostring(i).."s", 1) + inv:set_size("line"..tostring(i), 6*1) + end + update_formspec(pos) + meta:set_string("infotext", "Mese pneumatic tube") + end, + on_punch = update_formspec, + on_receive_fields = function(pos, formname, fields, sender) + fs_helpers.on_receive_fields(pos, fields) + update_formspec(pos) + end, + can_dig = function(pos, player) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return (inv:is_empty("line1") and inv:is_empty("line2") and inv:is_empty("line3") and + inv:is_empty("line4") and inv:is_empty("line5") and inv:is_empty("line6")) + end, + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + update_formspec(pos) -- For old tubes + local inv = minetest.get_meta(pos):get_inventory() + local stack_copy = ItemStack(stack) + stack_copy:set_count(1) + inv:set_stack(listname, index, stack_copy) + return 0 + end, + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + update_formspec(pos) -- For old tubes + local inv = minetest.get_meta(pos):get_inventory() + inv:set_stack(listname, index, ItemStack("")) + return 0 + end, + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + update_formspec(pos) -- For old tubes + local inv = minetest.get_meta(pos):get_inventory() + inv:set_stack(from_list, from_index, ItemStack("")) + return 0 + end, + }, true) -- Must use old tubes, since the textures are rotated with 6d ones +end + +if pipeworks.enable_detector_tube then + local detector_plain_textures = {"pipeworks_detector_tube_plain.png", "pipeworks_detector_tube_plain.png", "pipeworks_detector_tube_plain.png", + "pipeworks_detector_tube_plain.png", "pipeworks_detector_tube_plain.png", "pipeworks_detector_tube_plain.png"} + local detector_inv_texture = "pipeworks_detector_tube_inv.png" + local detector_tube_step = 2 * tonumber(minetest.setting_get("dedicated_server_step")) + pipeworks.register_tube("pipeworks:detector_tube_on", "Detecting Pneumatic Tube Segment on (you hacker you)", detector_plain_textures, noctr_textures, + end_textures, short_texture, detector_inv_texture, + {tube = {can_go = function(pos, node, velocity, stack) + local meta = minetest.get_meta(pos) + local name = minetest.get_node(pos).name + local nitems = meta:get_int("nitems")+1 + meta:set_int("nitems", nitems) + local saved_pos = vector.new(pos) + minetest.after(detector_tube_step, minetest.registered_nodes[name].item_exit, saved_pos) + return pipeworks.notvel(pipeworks.meseadjlist,velocity) + end}, + groups = {mesecon = 2, not_in_creative_inventory = 1}, + drop = "pipeworks:detector_tube_off_1", + mesecons = {receptor = {state = "on", + rules = pipeworks.mesecons_rules}}, + item_exit = function(pos) + local meta = minetest.get_meta(pos) + local nitems = meta:get_int("nitems")-1 + local node = minetest.get_node(pos) + local name = node.name + local fdir = node.param2 + if nitems == 0 then + minetest.set_node(pos, {name = string.gsub(name, "on", "off"), param2 = fdir}) + mesecon:receptor_off(pos, pipeworks.mesecons_rules) + else + meta:set_int("nitems", nitems) + end + end, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_int("nitems", 1) + local name = minetest.get_node(pos).name + local saved_pos = vector.new(pos) + minetest.after(detector_tube_step, minetest.registered_nodes[name].item_exit, saved_pos) + + end + }) + pipeworks.register_tube("pipeworks:detector_tube_off", "Detecting Pneumatic Tube Segment", detector_plain_textures, noctr_textures, + end_textures, short_texture, detector_inv_texture, + {tube = {can_go = function(pos, node, velocity, stack) + local node = minetest.get_node(pos) + local name = node.name + local fdir = node.param2 + minetest.set_node(pos,{name = string.gsub(name, "off", "on"), param2 = fdir}) + mesecon:receptor_on(pos, pipeworks.mesecons_rules) + return pipeworks.notvel(pipeworks.meseadjlist, velocity) + end}, + groups = {mesecon = 2}, + mesecons = {receptor = {state = "off", + rules = pipeworks.mesecons_rules}} + }) +end + +if pipeworks.enable_conductor_tube then + local conductor_plain_textures = {"pipeworks_conductor_tube_plain.png", "pipeworks_conductor_tube_plain.png", "pipeworks_conductor_tube_plain.png", + "pipeworks_conductor_tube_plain.png", "pipeworks_conductor_tube_plain.png", "pipeworks_conductor_tube_plain.png"} + local conductor_noctr_textures = {"pipeworks_conductor_tube_noctr.png", "pipeworks_conductor_tube_noctr.png", "pipeworks_conductor_tube_noctr.png", + "pipeworks_conductor_tube_noctr.png", "pipeworks_conductor_tube_noctr.png", "pipeworks_conductor_tube_noctr.png"} + local conductor_end_textures = {"pipeworks_conductor_tube_end.png", "pipeworks_conductor_tube_end.png", "pipeworks_conductor_tube_end.png", + "pipeworks_conductor_tube_end.png", "pipeworks_conductor_tube_end.png", "pipeworks_conductor_tube_end.png"} + local conductor_short_texture = "pipeworks_conductor_tube_short.png" + local conductor_inv_texture = "pipeworks_conductor_tube_inv.png" + + local conductor_on_plain_textures = {"pipeworks_conductor_tube_on_plain.png", "pipeworks_conductor_tube_on_plain.png", "pipeworks_conductor_tube_on_plain.png", + "pipeworks_conductor_tube_on_plain.png", "pipeworks_conductor_tube_on_plain.png", "pipeworks_conductor_tube_on_plain.png"} + local conductor_on_noctr_textures = {"pipeworks_conductor_tube_on_noctr.png", "pipeworks_conductor_tube_on_noctr.png", "pipeworks_conductor_tube_on_noctr.png", + "pipeworks_conductor_tube_on_noctr.png", "pipeworks_conductor_tube_on_noctr.png", "pipeworks_conductor_tube_on_noctr.png"} + local conductor_on_end_textures = {"pipeworks_conductor_tube_on_end.png", "pipeworks_conductor_tube_on_end.png", "pipeworks_conductor_tube_on_end.png", + "pipeworks_conductor_tube_on_end.png", "pipeworks_conductor_tube_on_end.png", "pipeworks_conductor_tube_on_end.png"} + + pipeworks.register_tube("pipeworks:conductor_tube_off", "Conducting Pneumatic Tube Segment", conductor_plain_textures, conductor_noctr_textures, + conductor_end_textures, conductor_short_texture, conductor_inv_texture, + {groups = {mesecon = 2}, + mesecons = {conductor = {state = "off", + rules = pipeworks.mesecons_rules, + onstate = "pipeworks:conductor_tube_on_#id"}} + }) + + pipeworks.register_tube("pipeworks:conductor_tube_on", "Conducting Pneumatic Tube Segment on (you hacker you)", conductor_on_plain_textures, conductor_on_noctr_textures, + conductor_on_end_textures, conductor_short_texture, conductor_inv_texture, + {groups = {mesecon = 2, not_in_creative_inventory = 1}, + drop = "pipeworks:conductor_tube_off_1", + mesecons = {conductor = {state = "on", + rules = pipeworks.mesecons_rules, + offstate = "pipeworks:conductor_tube_off_#id"}} + }) +end + +if pipeworks.enable_accelerator_tube then + local accelerator_noctr_textures = {"pipeworks_accelerator_tube_noctr.png", "pipeworks_accelerator_tube_noctr.png", "pipeworks_accelerator_tube_noctr.png", + "pipeworks_accelerator_tube_noctr.png", "pipeworks_accelerator_tube_noctr.png", "pipeworks_accelerator_tube_noctr.png"} + local accelerator_plain_textures = {"pipeworks_accelerator_tube_plain.png" ,"pipeworks_accelerator_tube_plain.png", "pipeworks_accelerator_tube_plain.png", + "pipeworks_accelerator_tube_plain.png", "pipeworks_accelerator_tube_plain.png", "pipeworks_accelerator_tube_plain.png"} + local accelerator_end_textures = {"pipeworks_accelerator_tube_end.png", "pipeworks_accelerator_tube_end.png", "pipeworks_accelerator_tube_end.png", + "pipeworks_accelerator_tube_end.png", "pipeworks_accelerator_tube_end.png", "pipeworks_accelerator_tube_end.png"} + local accelerator_short_texture = "pipeworks_accelerator_tube_short.png" + local accelerator_inv_texture = "pipeworks_accelerator_tube_inv.png" + + pipeworks.register_tube("pipeworks:accelerator_tube", "Accelerating Pneumatic Tube Segment", accelerator_plain_textures, + accelerator_noctr_textures, accelerator_end_textures, accelerator_short_texture, accelerator_inv_texture, + {tube = {can_go = function(pos, node, velocity, stack) + velocity.speed = velocity.speed+1 + return pipeworks.notvel(pipeworks.meseadjlist, velocity) + end} + }) +end + +if pipeworks.enable_crossing_tube then + local crossing_noctr_textures = {"pipeworks_crossing_tube_noctr.png", "pipeworks_crossing_tube_noctr.png", "pipeworks_crossing_tube_noctr.png", + "pipeworks_crossing_tube_noctr.png", "pipeworks_crossing_tube_noctr.png", "pipeworks_crossing_tube_noctr.png"} + local crossing_plain_textures = {"pipeworks_crossing_tube_plain.png" ,"pipeworks_crossing_tube_plain.png", "pipeworks_crossing_tube_plain.png", + "pipeworks_crossing_tube_plain.png", "pipeworks_crossing_tube_plain.png", "pipeworks_crossing_tube_plain.png"} + local crossing_end_textures = {"pipeworks_crossing_tube_end.png", "pipeworks_crossing_tube_end.png", "pipeworks_crossing_tube_end.png", + "pipeworks_crossing_tube_end.png", "pipeworks_crossing_tube_end.png", "pipeworks_crossing_tube_end.png"} + local crossing_short_texture = "pipeworks_crossing_tube_short.png" + local crossing_inv_texture = "pipeworks_crossing_tube_inv.png" + + pipeworks.register_tube("pipeworks:crossing_tube", "Crossing Pneumatic Tube Segment", crossing_plain_textures, + crossing_noctr_textures, crossing_end_textures, crossing_short_texture, crossing_inv_texture, + {tube = {can_go = function(pos, node, velocity, stack) + return {velocity} + end} + }) +end + +if pipeworks.enable_sand_tube then + local sand_noctr_textures = {"pipeworks_sand_tube_noctr.png", "pipeworks_sand_tube_noctr.png", "pipeworks_sand_tube_noctr.png", + "pipeworks_sand_tube_noctr.png", "pipeworks_sand_tube_noctr.png", "pipeworks_sand_tube_noctr.png"} + local sand_plain_textures = {"pipeworks_sand_tube_plain.png", "pipeworks_sand_tube_plain.png", "pipeworks_sand_tube_plain.png", + "pipeworks_sand_tube_plain.png", "pipeworks_sand_tube_plain.png", "pipeworks_sand_tube_plain.png"} + local sand_end_textures = {"pipeworks_sand_tube_end.png", "pipeworks_sand_tube_end.png", "pipeworks_sand_tube_end.png", + "pipeworks_sand_tube_end.png", "pipeworks_sand_tube_end.png", "pipeworks_sand_tube_end.png"} + local sand_short_texture = "pipeworks_sand_tube_short.png" + local sand_inv_texture = "pipeworks_sand_tube_inv.png" + + pipeworks.register_tube("pipeworks:sand_tube", "Vacuuming Pneumatic Tube Segment", sand_plain_textures, sand_noctr_textures, sand_end_textures, + sand_short_texture, sand_inv_texture, + {groups = {sand_tube = 1}}) + + minetest.register_abm({nodenames = {"group:sand_tube"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + for _, object in ipairs(minetest.get_objects_inside_radius(pos, 2)) do + if not object:is_player() and object:get_luaentity() and object:get_luaentity().name == "__builtin:item" then + if object:get_luaentity().itemstring ~= "" then + pipeworks.tube_inject_item(pos, pos, vector.new(0, 0, 0), object:get_luaentity().itemstring) + end + object:get_luaentity().itemstring = "" + object:remove() + end + end + end + }) +end + +if pipeworks.enable_mese_sand_tube then + local mese_sand_noctr_textures = {"pipeworks_mese_sand_tube_noctr.png", "pipeworks_mese_sand_tube_noctr.png", "pipeworks_mese_sand_tube_noctr.png", + "pipeworks_mese_sand_tube_noctr.png", "pipeworks_mese_sand_tube_noctr.png", "pipeworks_mese_sand_tube_noctr.png"} + local mese_sand_plain_textures = {"pipeworks_mese_sand_tube_plain.png", "pipeworks_mese_sand_tube_plain.png", "pipeworks_mese_sand_tube_plain.png", + "pipeworks_mese_sand_tube_plain.png", "pipeworks_mese_sand_tube_plain.png", "pipeworks_mese_sand_tube_plain.png"} + local mese_sand_end_textures = {"pipeworks_mese_sand_tube_end.png", "pipeworks_mese_sand_tube_end.png", "pipeworks_mese_sand_tube_end.png", + "pipeworks_mese_sand_tube_end.png", "pipeworks_mese_sand_tube_end.png", "pipeworks_mese_sand_tube_end.png"} + local mese_sand_short_texture = "pipeworks_mese_sand_tube_short.png" + local mese_sand_inv_texture = "pipeworks_mese_sand_tube_inv.png" + + pipeworks.register_tube("pipeworks:mese_sand_tube", "Adjustable Vacuuming Pneumatic Tube Segment", mese_sand_plain_textures, mese_sand_noctr_textures, + mese_sand_end_textures, mese_sand_short_texture,mese_sand_inv_texture, + {groups = {mese_sand_tube = 1}, + on_construct = function(pos) + local meta = minetest.env:get_meta(pos) + meta:set_int("dist", 0) + meta:set_string("formspec", + "size[2,1]".. + "field[.5,.5;1.5,1;dist;distance;${dist}]") + meta:set_string("infotext", "Adjustable Vacuuming Pneumatic Tube Segment") + end, + on_receive_fields = function(pos,formname,fields,sender) + local meta = minetest.env:get_meta(pos) + local dist + _, dist = pcall(tonumber, fields.dist) + if dist and 0 <= dist and dist <= 8 then meta:set_int("dist", dist) end + end, + }) + + local function get_objects_with_square_radius(pos, rad) + rad = rad + .5; + local objs = {} + for _,object in ipairs(minetest.env:get_objects_inside_radius(pos, math.sqrt(3)*rad)) do + if not object:is_player() and object:get_luaentity() and object:get_luaentity().name == "__builtin:item" then + local opos = object:getpos() + if pos.x - rad <= opos.x and opos.x <= pos.x + rad and pos.y - rad <= opos.y and opos.y <= pos.y + rad and pos.z - rad <= opos.z and opos.z <= pos.z + rad then + objs[#objs + 1] = object + end + end + end + return objs + end + + minetest.register_abm({nodenames = {"group:mese_sand_tube"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + for _,object in ipairs(get_objects_with_square_radius(pos, minetest.env:get_meta(pos):get_int("dist"))) do + if not object:is_player() and object:get_luaentity() and object:get_luaentity().name == "__builtin:item" then + if object:get_luaentity().itemstring ~= "" then + pipeworks.tube_inject_item(pos, pos, vector.new(0, 0, 0), object:get_luaentity().itemstring) + end + object:get_luaentity().itemstring = "" + object:remove() + end + end + end + }) +end + +if pipeworks.enable_one_way_tube then + minetest.register_node("pipeworks:one_way_tube", { + description = "One way tube", + tiles = {"pipeworks_one_way_tube_top.png", "pipeworks_one_way_tube_top.png", "pipeworks_one_way_tube_output.png", + "pipeworks_one_way_tube_input.png", "pipeworks_one_way_tube_side.png", "pipeworks_one_way_tube_top.png"}, + paramtype2 = "facedir", + drawtype = "nodebox", + paramtype = "light", + node_box = {type = "fixed", + fixed = {{-1/2, -9/64, -9/64, 1/2, 9/64, 9/64}}}, + groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, tubedevice = 1}, + legacy_facedir_simple = true, + sounds = default.node_sound_wood_defaults(), + tube = { + connect_sides = {left = 1, right = 1}, + can_go = function(pos, node, velocity, stack) + return {velocity} + end, + can_insert = function(pos, node, stack, direction) + local dir = minetest.facedir_to_right_dir(node.param2) + return vector.equals(dir, direction) + end, + priority = 75 -- Higher than normal tubes, but lower than receivers + }, + }) +end diff --git a/mods/pipeworks/wielder.lua b/mods/pipeworks/wielder.lua new file mode 100644 index 0000000..fab2709 --- /dev/null +++ b/mods/pipeworks/wielder.lua @@ -0,0 +1,424 @@ +local assumed_eye_pos = vector.new(0, 1.5, 0) + +local function vector_copy(v) + return { x = v.x, y = v.y, z = v.z } +end + +local function delay(x) + return (function() return x end) +end + +local function set_wielder_formspec(data, meta) + meta:set_string("formspec", + "invsize[8,"..(6+data.wield_inv_height)..";]".. + "item_image[0,0;1,1;"..data.name_base.."_off]".. + "label[1,0;"..minetest.formspec_escape(data.description).."]".. + "list[current_name;"..minetest.formspec_escape(data.wield_inv_name)..";"..((8-data.wield_inv_width)*0.5)..",1;"..data.wield_inv_width..","..data.wield_inv_height..";]".. + "list[current_player;main;0,"..(2+data.wield_inv_height)..";8,4;]") + meta:set_string("infotext", data.description) +end + +local function wielder_on(data, wielder_pos, wielder_node) + data.fixup_node(wielder_pos, wielder_node) + if wielder_node.name ~= data.name_base.."_off" then return end + wielder_node.name = data.name_base.."_on" + minetest.swap_node(wielder_pos, wielder_node) + nodeupdate(wielder_pos) + local wielder_meta = minetest.get_meta(wielder_pos) + local inv = wielder_meta:get_inventory() + local wield_inv_name = data.wield_inv_name + local wieldindex, wieldstack + for i, stack in ipairs(inv:get_list(wield_inv_name)) do + if not stack:is_empty() then + wieldindex = i + wieldstack = stack + break + end + end + if not wieldindex then + if not data.ghost_inv_name then return end + wield_inv_name = data.ghost_inv_name + inv:set_stack(wield_inv_name, 1, ItemStack(data.ghost_tool)) + wieldindex = 1 + wieldstack = inv:get_stack(wield_inv_name, 1) + end + local dir = minetest.facedir_to_dir(wielder_node.param2) + local under_pos = vector.subtract(wielder_pos, dir) + local above_pos = vector.subtract(under_pos, dir) + local pitch + local yaw + if dir.z < 0 then + yaw = 0 + pitch = 0 + elseif dir.z > 0 then + yaw = math.pi + pitch = 0 + elseif dir.x < 0 then + yaw = 3*math.pi/2 + pitch = 0 + elseif dir.x > 0 then + yaw = math.pi/2 + pitch = 0 + elseif dir.y > 0 then + yaw = 0 + pitch = -math.pi/2 + else + yaw = 0 + pitch = math.pi/2 + end + local virtplayer = { + get_inventory_formspec = delay(wielder_meta:get_string("formspec")), + get_look_dir = delay(vector.multiply(dir, -1)), + get_look_pitch = delay(pitch), + get_look_yaw = delay(yaw), + get_player_control = delay({ jump=false, right=false, left=false, LMB=false, RMB=false, sneak=data.sneak, aux1=false, down=false, up=false }), + get_player_control_bits = delay(data.sneak and 64 or 0), + get_player_name = delay(data.masquerade_as_owner and wielder_meta:get_string("owner") or ":pipeworks:"..minetest.pos_to_string(wielder_pos)), + is_player = delay(true), + is_fake_player = true, + set_inventory_formspec = delay(), + getpos = delay(vector.subtract(wielder_pos, assumed_eye_pos)), + get_hp = delay(20), + get_inventory = delay(inv), + get_wielded_item = delay(wieldstack), + get_wield_index = delay(wieldindex), + get_wield_list = delay(wield_inv_name), + moveto = delay(), + punch = delay(), + remove = delay(), + right_click = delay(), + setpos = delay(), + set_hp = delay(), + set_properties = delay(), + set_wielded_item = function(self, item) inv:set_stack(wield_inv_name, wieldindex, item) end, + set_animation = delay(), + set_attach = delay(), + set_detach = delay(), + set_bone_position = delay(), + } + local pointed_thing = { type="node", under=under_pos, above=above_pos } + data.act(virtplayer, pointed_thing) + if data.eject_drops then + for i, stack in ipairs(inv:get_list("main")) do + if not stack:is_empty() then + pipeworks.tube_inject_item(wielder_pos, wielder_pos, dir, stack) + inv:set_stack("main", i, ItemStack("")) + end + end + end +end + +local function wielder_off(data, pos, node) + if node.name == data.name_base.."_on" then + node.name = data.name_base.."_off" + minetest.swap_node(pos, node) + nodeupdate(pos) + end +end + +local function register_wielder(data) + data.fixup_node = data.fixup_node or function (pos, node) end + data.fixup_oldmetadata = data.fixup_oldmetadata or function (m) return m end + for _, state in ipairs({ "off", "on" }) do + local groups = { snappy=2, choppy=2, oddly_breakable_by_hand=2, mesecon=2, tubedevice=1, tubedevice_receiver=1 } + if state == "on" then groups.not_in_creative_inventory = 1 end + local tile_images = {} + for _, face in ipairs({ "top", "bottom", "side2", "side1", "back", "front" }) do + table.insert(tile_images, data.texture_base.."_"..face..(data.texture_stateful[face] and "_"..state or "")..".png") + end + minetest.register_node(data.name_base.."_"..state, { + description = data.description, + tile_images = tile_images, + mesecons = { + effector = { + rules = pipeworks.rules_all, + action_on = function (pos, node) + wielder_on(data, pos, node) + end, + action_off = function (pos, node) + wielder_off(data, pos, node) + end, + }, + }, + tube = { + can_insert = function(pos, node, stack, tubedir) + if not data.tube_permit_anteroposterior_insert then + local nodedir = minetest.facedir_to_dir(node.param2) + if vector.equals(tubedir, nodedir) or vector.equals(tubedir, vector.multiply(nodedir, -1)) then + return false + end + end + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:room_for_item(data.wield_inv_name, stack) + end, + insert_object = function(pos, node, stack, tubedir) + if not data.tube_permit_anteroposterior_insert then + local nodedir = minetest.facedir_to_dir(node.param2) + if vector.equals(tubedir, nodedir) or vector.equals(tubedir, vector.multiply(nodedir, -1)) then + return stack + end + end + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:add_item(data.wield_inv_name, stack) + end, + input_inventory = data.wield_inv_name, + connect_sides = data.tube_connect_sides, + can_remove = function(pos, node, stack, tubedir) + return stack:get_count() + end, + }, + is_ground_content = true, + paramtype2 = "facedir", + tubelike = 1, + groups = groups, + sounds = default.node_sound_stone_defaults(), + drop = data.name_base.."_off", + on_construct = function(pos) + local meta = minetest.get_meta(pos) + set_wielder_formspec(data, meta) + local inv = meta:get_inventory() + inv:set_size(data.wield_inv_name, data.wield_inv_width*data.wield_inv_height) + if data.ghost_inv_name then + inv:set_size(data.ghost_inv_name, 1) + end + if data.eject_drops then + inv:set_size("main", 100) + end + end, + after_place_node = function (pos, placer) + pipeworks.scan_for_tube_objects(pos) + local placer_pos = placer:getpos() + if placer_pos and placer:is_player() then placer_pos = vector.add(placer_pos, assumed_eye_pos) end + if placer_pos then + local dir = vector.subtract(pos, placer_pos) + local node = minetest.get_node(pos) + node.param2 = minetest.dir_to_facedir(dir, true) + minetest.set_node(pos, node) + minetest.log("action", "real (6d) facedir: " .. node.param2) + end + minetest.get_meta(pos):set_string("owner", placer:get_player_name()) + end, + can_dig = (data.can_dig_nonempty_wield_inv and delay(true) or function(pos, player) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:is_empty(data.wield_inv_name) + end), + after_dig_node = function(pos, oldnode, oldmetadata, digger) + -- The legacy-node fixup is done here in a + -- different form from the standard fixup, + -- rather than relying on a standard fixup + -- in an on_dig callback, because some + -- non-standard diggers (such as technic's + -- mining drill) don't respect on_dig. + oldmetadata = data.fixup_oldmetadata(oldmetadata) + for _, stack in ipairs(oldmetadata.inventory[data.wield_inv_name] or {}) do + if not stack:is_empty() then + minetest.add_item(pos, stack) + end + end + pipeworks.scan_for_tube_objects(pos) + end, + on_punch = data.fixup_node, + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + local meta = minetest.get_meta(pos) + if player:get_player_name() ~= meta:get_string("owner") and meta:get_string("owner") ~= "" then + return 0 + end + return count + end, + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + if player:get_player_name() ~= meta:get_string("owner") and meta:get_string("owner") ~= "" then + return 0 + end + return stack:get_count() + end, + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + if player:get_player_name() ~= meta:get_string("owner") and meta:get_string("owner") ~= "" then + return 0 + end + return stack:get_count() + end, + }) + end +end + +if pipeworks.enable_node_breaker then + local data + data = { + name_base = "pipeworks:nodebreaker", + description = "Node Breaker", + texture_base = "pipeworks_nodebreaker", + texture_stateful = { top = true, bottom = true, side2 = true, side1 = true, front = true }, + tube_connect_sides = { top=1, bottom=1, left=1, right=1, back=1 }, + tube_permit_anteroposterior_insert = false, + wield_inv_name = "pick", + wield_inv_width = 1, + wield_inv_height = 1, + can_dig_nonempty_wield_inv = true, + ghost_inv_name = "ghost_pick", + ghost_tool = "default:pick_mese", + fixup_node = function (pos, node) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + -- Node breakers predating the visible pick slot + -- may have been partially updated. This code + -- fully updates them. Some have been observed + -- to have no pick slot at all; first add one. + if inv:get_size("pick") ~= 1 then + inv:set_size("pick", 1) + end + -- Originally, they had a ghost pick in a "pick" + -- inventory, no other inventory, and no form. + -- The partial update of early with-form node + -- breaker code gives them "ghost_pick" and "main" + -- inventories, but leaves the old ghost pick in + -- the "pick" inventory, and doesn't add a form. + -- First perform that partial update. + if inv:get_size("ghost_pick") ~= 1 then + inv:set_size("ghost_pick", 1) + inv:set_size("main", 100) + end + -- If the node breaker predates the visible pick + -- slot, which we can detect by it not having a + -- form, then the pick slot needs to be cleared + -- of the old ghost pick. + if (meta:get_string("formspec") or "") == "" then + inv:set_stack("pick", 1, ItemStack("")) + end + -- Finally, unconditionally set the formspec + -- and infotext. This not only makes the + -- pick slot visible for node breakers where + -- it wasn't before; it also updates the form + -- for node breakers that had an older version + -- of the form, and sets infotext where it was + -- missing for early with-form node breakers. + set_wielder_formspec(data, meta) + end, + fixup_oldmetadata = function (oldmetadata) + -- Node breakers predating the visible pick slot, + -- with node form, kept their ghost pick in an + -- inventory named "pick", the same name as the + -- later visible pick slot. The pick must be + -- removed to avoid spilling it. + if not oldmetadata.fields.formspec then + return { inventory = { pick = {} }, fields = oldmetadata.fields } + else + return oldmetadata + end + end, + masquerade_as_owner = true, + sneak = false, + act = function(virtplayer, pointed_thing) + local wieldstack = virtplayer:get_wielded_item() + local oldwieldstack = ItemStack(wieldstack) + local on_use = (minetest.registered_items[wieldstack:get_name()] or {}).on_use + if on_use then + virtplayer:set_wielded_item(on_use(wieldstack, virtplayer, pointed_thing) or wieldstack) + else + local under_node = minetest.get_node(pointed_thing.under) + local on_dig = (minetest.registered_nodes[under_node.name] or {on_dig=minetest.node_dig}).on_dig + on_dig(pointed_thing.under, under_node, virtplayer) + end + wieldstack = virtplayer:get_wielded_item() + local wieldname = wieldstack:get_name() + if wieldname == oldwieldstack:get_name() then + -- don't mechanically wear out tool + if wieldstack:get_count() == oldwieldstack:get_count() and + wieldstack:get_metadata() == oldwieldstack:get_metadata() and + ((minetest.registered_items[wieldstack:get_name()] or {}).wear_represents or "mechanical_wear") == "mechanical_wear" then + virtplayer:set_wielded_item(oldwieldstack) + end + elseif wieldname ~= "" then + -- tool got replaced by something else: + -- treat it as a drop + + virtplayer:get_inventory():add_item("main", wieldstack) -- RND: here it adds item to virtual stack? + virtplayer:set_wielded_item(ItemStack("")) + end + end, + eject_drops = true, + } + register_wielder(data) + minetest.register_craft({ + output = "pipeworks:nodebreaker_off", + recipe = { + { "group:wood", "default:pick_mese", "group:wood" }, + { "default:stone", "mesecons:piston", "default:stone" }, + { "default:stone", "mesecons:mesecon", "default:stone" }, + } + }) + -- aliases for when someone had technic installed, but then uninstalled it but not pipeworks + minetest.register_alias("technic:nodebreaker_off", "pipeworks:nodebreaker_off") + minetest.register_alias("technic:nodebreaker_on", "pipeworks:nodebreaker_on") + minetest.register_alias("technic:node_breaker_off", "pipeworks:nodebreaker_off") + minetest.register_alias("technic:node_breaker_on", "pipeworks:nodebreaker_on") + -- turn legacy auto-tree-taps into node breakers + dofile(pipeworks.modpath.."/legacy.lua") +end + +if pipeworks.enable_deployer then + register_wielder({ + name_base = "pipeworks:deployer", + description = "Deployer", + texture_base = "pipeworks_deployer", + texture_stateful = { front = true }, + tube_connect_sides = { back=1 }, + tube_permit_anteroposterior_insert = true, + wield_inv_name = "main", + wield_inv_width = 3, + wield_inv_height = 3, + can_dig_nonempty_wield_inv = false, + masquerade_as_owner = true, + sneak = false, + act = function(virtplayer, pointed_thing) + local wieldstack = virtplayer:get_wielded_item() + virtplayer:set_wielded_item((minetest.registered_items[wieldstack:get_name()] or {on_place=minetest.item_place}).on_place(wieldstack, virtplayer, pointed_thing) or wieldstack) + end, + eject_drops = false, + }) + minetest.register_craft({ + output = "pipeworks:deployer_off", + recipe = { + { "group:wood", "default:chest", "group:wood" }, + { "default:stone", "mesecons:piston", "default:stone" }, + { "default:stone", "mesecons:mesecon", "default:stone" }, + } + }) + -- aliases for when someone had technic installed, but then uninstalled it but not pipeworks + minetest.register_alias("technic:deployer_off", "pipeworks:deployer_off") + minetest.register_alias("technic:deployer_on", "pipeworks:deployer_on") +end + +if pipeworks.enable_dispenser then + register_wielder({ + name_base = "pipeworks:dispenser", + description = "Dispenser", + texture_base = "pipeworks_dispenser", + texture_stateful = { front = true }, + tube_connect_sides = { back=1 }, + tube_permit_anteroposterior_insert = true, + wield_inv_name = "main", + wield_inv_width = 3, + wield_inv_height = 3, + can_dig_nonempty_wield_inv = false, + masquerade_as_owner = false, + sneak = true, + act = function(virtplayer, pointed_thing) + local wieldstack = virtplayer:get_wielded_item() + virtplayer:set_wielded_item((minetest.registered_items[wieldstack:get_name()] or {on_drop=minetest.item_drop}).on_drop(wieldstack, virtplayer, virtplayer:getpos()) or wieldstack) + end, + eject_drops = false, + }) + minetest.register_craft({ + output = "pipeworks:dispenser_off", + recipe = { + { "default:desert_sand", "default:chest", "default:desert_sand" }, + { "default:stone", "mesecons:piston", "default:stone" }, + { "default:stone", "mesecons:mesecon", "default:stone" }, + } + }) +end diff --git a/mods/shooter/LICENSE.txt b/mods/shooter/LICENSE.txt new file mode 100644 index 0000000..ca3505a --- /dev/null +++ b/mods/shooter/LICENSE.txt @@ -0,0 +1,32 @@ +Minetest Mod - Simple Shooter [shooter] +======================================= + +License Source Code: 2013 Stuart Jones - LGPL v2.1 + +Additional credit for code ideas taken from other mods. + +PilzAdam [throwing] for the throwing physics +ShadowNinja [nuke] for the vm explosion routine + +License Textures: Stuart Jones - WTFPL + +Licence Models: Stuart Jones - CC-BY-SA 3.0 + +License Sounds: freesound.org + + flobert1_20070728.wav by Nonoo - Attribution 3.0 Unported (CC BY 3.0) + + shot.wav by Sergenious - Attribution 3.0 Unported (CC BY 3.0) + + GUNSHOT.WAV by erkanozan - CC0 1.0 Universal (CC0 1.0) + + winchester-rifle-cock-reload.wav by MentalSanityOff - CC0 1.0 Universal (CC0 1.0) + + trigger-with-hammer-fall.wav by Nanashi - CC0 1.0 Universal (CC0 1.0) + + woosh.wav by ReadeOnly - CC0 1.0 Universal (CC0 1.0) + + AGM-114 Hellfire Rocket Missile Launch.flac by qubodup - CC0 1.0 Universal (CC0 1.0) + + Sparkler.aif by Ned Bouhalassa - CC0 1.0 Universal (CC0 1.0) + diff --git a/mods/shooter/README.txt b/mods/shooter/README.txt new file mode 100644 index 0000000..ec4e4a8 --- /dev/null +++ b/mods/shooter/README.txt @@ -0,0 +1,159 @@ +Minetest Mod - Simple Shooter [shooter] +======================================= + +Mod Version: 0.5.2 + +Minetest Version: 0.4.9, 0.4.10 + +Depends: default, wool, tnt + +An experimental first person shooter mod that uses simple vector mathematics +to produce an accurate and server-firendly method of hit detection. + +By default this mod is configured to work only against other players in +multiplayer mode and against Simple Mobs [mobs] in singleplayer mode. + +Default configuration can be customised by adding a shooter.conf file to +the mod's main directory, see shooter.conf.example for more details. + +This is still very much a work in progress which I eventually plan to use +as the base for a 'Spades' style FPS game using the minetest engine. + +Crafting +======== + +W = Wooden Stick [default:stick] +P = Paper [default:paper] +S = Steel Ingot [default:steel_ingot] +B = Bronze Ingot [default:bronze_ingot] +M = Mese Crystal [default:mese_crysytal] +D = Diamond [default:diamond] +R = Red Wool [wool:red] +G = Gun Powder [tnt:gunpowder] + +Crossbow: [shooter:crossbow] + ++---+---+---+ +| W | W | W | ++---+---+---+ +| W | W | | ++---+---+---+ +| W | | B | ++---+---+---+ + +Arrow: [shooter:arrow] + ++---+---+---+ +| S | | | ++---+---+---+ +| | W | P | ++---+---+---+ +| | P | W | ++---+---+---+ + +Pistol: [shooter:pistol] + ++---+---+ +| S | S | ++---+---+ +| | M | ++---+---+ + +Rifle: [shooter:rifle] + ++---+---+---+ +| S | | | ++---+---+---+ +| | B | | ++---+---+---+ +| | M | B | ++---+---+---+ + +Shotgun: [shooter:shotgun] + ++---+---+---+ +| S | | | ++---+---+---+ +| | S | | ++---+---+---+ +| | M | B | ++---+---+---+ + +Sub Machine Gun: [shooter:machine_gun] + ++---+---+---+ +| S | S | S | ++---+---+---+ +| | B | M | ++---+---+---+ +| | B | | ++---+---+---+ + +Ammo Pack: [shooter:ammo] + ++---+---+ +| G | B | ++---+---+ + +Grappling Hook: [shooter:grapple_hook] + ++---+---+---+ +| S | S | D | ++---+---+---+ +| S | S | | ++---+---+---+ +| D | | S | ++---+---+---+ + +Grappling Hook Gun: [shooter:grapple_gun] + ++---+---+ +| S | S | ++---+---+ +| | D | ++---+---+ + +Flare: [shooter:flare] + ++---+---+ +| G | R | ++---+---+ + +Flare Gun: [shooter:flaregun] + ++---+---+---+ +| R | R | R | ++---+---+---+ +| | | S | ++---+---+---+ + +Grenade: [shooter:grenade] + ++---+---+ +| G | S | ++---+---+ + +Flare Gun: [shooter:rocket_gun] + ++---+---+---+ +| B | S | S | ++---+---+---+ +| | | D | ++---+---+---+ + +Rocket: [shooter:rocket] + ++---+---+---+ +| B | G | B | ++---+---+---+ + +Turret: [shooter:turret] + ++---+---+---+ +| B | B | S | ++---+---+---+ +| | B | S | ++---+---+---+ +| | D | | ++---+---+---+ + diff --git a/mods/shooter/crossbow.lua b/mods/shooter/crossbow.lua new file mode 100644 index 0000000..39dc149 --- /dev/null +++ b/mods/shooter/crossbow.lua @@ -0,0 +1,254 @@ +SHOOTER_CROSSBOW_USES = 50 +SHOOTER_ARROW_TOOL_CAPS = {damage_groups={fleshy=2}} +SHOOTER_ARROW_LIFETIME = 180 -- 3 minutes + +local function get_animation_frame(dir) + local angle = math.atan(dir.y) + local frame = 90 - math.floor(angle * 360 / math.pi) + if frame < 1 then + frame = 1 + elseif frame > 180 then + frame = 180 + end + return frame +end + +local function get_target_pos(p1, p2, dir, offset) + local d = vector.distance(p1, p2) - offset + local td = vector.multiply(dir, {x=d, y=d, z=d}) + return vector.add(p1, td) +end + +local function punch_object(puncher, object) + if puncher and shooter:is_valid_object(object) then + if puncher ~= object then + local dir = puncher:get_look_dir() + local p1 = puncher:getpos() + local p2 = object:getpos() + local tpos = get_target_pos(p1, p2, dir, 0) + shooter:spawn_particles(tpos, SHOOTER_EXPLOSION_TEXTURE) + object:punch(puncher, nil, SHOOTER_ARROW_TOOL_CAPS, dir) + end + end +end + +local function stop_arrow(object, pos, stuck) + local acceleration = {x=0, y=-10, z=0} + if stuck == true then + pos = pos or object:getpos() + acceleration = {x=0, y=0, z=0} + object:moveto(pos) + end + object:set_properties({ + physical = true, + collisionbox = {-1/8,-1/8,-1/8, 1/8,1/8,1/8}, + }) + object:setvelocity({x=0, y=0, z=0}) + object:setacceleration(acceleration) +end + +minetest.register_craftitem("shooter:arrow", { + description = "Arrow", + inventory_image = "shooter_arrow_inv.png", +}) + +minetest.register_entity("shooter:arrow_entity", { + physical = false, + visual = "mesh", + mesh = "shooter_arrow.b3d", + visual_size = {x=1, y=1}, + textures = { + "shooter_arrow_uv.png", + }, + timer = 0, + lifetime = SHOOTER_ARROW_LIFETIME, + player = nil, + state = "init", + node_pos = nil, + collisionbox = {0,0,0, 0,0,0}, + on_activate = function(self, staticdata) + self.object:set_armor_groups({immortal=1}) + if staticdata == "expired" then + self.object:remove() + end + end, + on_punch = function(self, puncher) + if puncher then + if puncher:is_player() then + local stack = "shooter:arrow" + local inv = puncher:get_inventory() + if inv:room_for_item("main", stack) then + inv:add_item("main", stack) + self.object:remove() + end + end + end + end, + on_step = function(self, dtime) + if self.state == "init" then + return + end + self.timer = self.timer + dtime + self.lifetime = self.lifetime - dtime + if self.lifetime < 0 then + self.object:remove() + return + elseif self.state == "dropped" then + return + elseif self.state == "stuck" then + if self.timer > 1 then + if self.node_pos then + local node = minetest.get_node(self.node_pos) + if node.name then + local item = minetest.registered_items[node.name] + if item then + if not item.walkable then + self.state = "dropped" + stop_arrow(self.object) + return + end + end + end + end + self.timer = 0 + end + return + end + if self.timer > 0.2 then + local pos = self.object:getpos() + local dir = vector.normalize(self.object:getvelocity()) + local frame = get_animation_frame(dir) + self.object:set_animation({x=frame, y=frame}, 0) + local objects = minetest.get_objects_inside_radius(pos, 5) + for _,obj in ipairs(objects) do + if shooter:is_valid_object(obj) then + local collisionbox = {-0.25,-1.0,-0.25, 0.25,0.8,0.25} + local offset = SHOOTER_PLAYER_OFFSET + if not obj:is_player() then + offset = SHOOTER_ENTITY_OFFSET + local ent = obj:get_luaentity() + if ent then + local def = minetest.registered_entities[ent.name] + collisionbox = def.collisionbox or collisionbox + end + end + local opos = vector.add(obj:getpos(), offset) + local ray = {pos=pos, dir=dir} + local plane = {pos=opos, normal={x=-1, y=0, z=-1}} + local ipos = shooter:get_intersect_pos(ray, plane, collisionbox) + if ipos then + punch_object(self.player, obj) + end + end + end + local p = vector.add(pos, vector.multiply(dir, {x=5, y=5, z=5})) + local _, npos = minetest.line_of_sight(pos, p, 1) + if npos then + local node = minetest.get_node(npos) + local tpos = get_target_pos(pos, npos, dir, 0.66) + self.node_pos = npos + self.state = "stuck" + stop_arrow(self.object, tpos, true) + shooter:play_node_sound(node, npos) + end + self.timer = 0 + end + end, + get_staticdata = function(self) + return "expired" + end, +}) + +minetest.register_tool("shooter:crossbow_loaded", { + description = "Crossbow", + inventory_image = "shooter_crossbow_loaded.png", + groups = {not_in_creative_inventory=1}, + on_use = function(itemstack, user, pointed_thing) + minetest.sound_play("shooter_click", {object=user}) + if not minetest.setting_getbool("creative_mode") then + itemstack:add_wear(65535/SHOOTER_CROSSBOW_USES) + end + itemstack = "shooter:crossbow 1 "..itemstack:get_wear() + local pos = user:getpos() + local dir = user:get_look_dir() + local yaw = user:get_look_yaw() + if pos and dir and yaw then + pos.y = pos.y + 1.5 + local obj = minetest.add_entity(pos, "shooter:arrow_entity") + local ent = nil + if obj then + ent = obj:get_luaentity() + end + if ent then + minetest.sound_play("shooter_throw", {object=obj}) + local frame = get_animation_frame(dir) + obj:setyaw(yaw + math.pi) + obj:set_animation({x=frame, y=frame}, 0) + obj:setvelocity({x=dir.x * 14, y=dir.y * 14, z=dir.z * 14}) + if pointed_thing.type ~= "nothing" then + local ppos = minetest.get_pointed_thing_position(pointed_thing, false) + local _, npos = minetest.line_of_sight(pos, ppos, 1) + if npos then + ppos = npos + pointed_thing.type = "node" + end + if pointed_thing.type == "object" then + punch_object(user, pointed_thing.ref) + elseif pointed_thing.type == "node" then + local node = minetest.get_node(ppos) + local tpos = get_target_pos(pos, ppos, dir, 0.66) + minetest.after(0.2, function(object, pos, npos) + ent.node_pos = npos + ent.state = "stuck" + stop_arrow(object, pos, true) + shooter:play_node_sound(node, npos) + end, obj, tpos, ppos) + return itemstack + end + end + obj:setacceleration({x=dir.x * -3, y=-5, z=dir.z * -3}) + ent.player = ent.player or user + ent.state = "flight" + end + end + return itemstack + end, +}) + +minetest.register_tool("shooter:crossbow", { + description = "Crossbow", + inventory_image = "shooter_crossbow.png", + on_use = function(itemstack, user, pointed_thing) + local inv = user:get_inventory() + if inv:contains_item("main", "shooter:arrow") then + minetest.sound_play("shooter_reload", {object=user}) + if not minetest.setting_getbool("creative_mode") then + inv:remove_item("main", "shooter:arrow 1") + end + itemstack = "shooter:crossbow_loaded 1 "..itemstack:get_wear() + else + minetest.sound_play("shooter_click", {object=user}) + end + return itemstack + end, +}) + +if SHOOTER_ENABLE_CRAFTING == true then + minetest.register_craft({ + output = "shooter:crossbow", + recipe = { + {"default:stick", "default:stick", "default:stick"}, + {"default:stick", "default:stick", ""}, + {"default:stick", "", "default:bronze_ingot"}, + }, + }) + minetest.register_craft({ + output = "shooter:arrow", + recipe = { + {"default:steel_ingot", "", ""}, + {"", "default:stick", "default:paper"}, + {"", "default:paper", "default:stick"}, + }, + }) +end + diff --git a/mods/shooter/depends.txt b/mods/shooter/depends.txt new file mode 100644 index 0000000..558536a --- /dev/null +++ b/mods/shooter/depends.txt @@ -0,0 +1,3 @@ +default +wool +tnt diff --git a/mods/shooter/flaregun.lua b/mods/shooter/flaregun.lua new file mode 100644 index 0000000..6904d3e --- /dev/null +++ b/mods/shooter/flaregun.lua @@ -0,0 +1,147 @@ +minetest.register_craftitem("shooter:flare", { + description = "Flare", + inventory_image = "shooter_flare_inv.png", +}) + +minetest.register_node("shooter:flare_light", { + drawtype = "glasslike", + tiles = {"shooter_flare_light.png"}, + paramtype = "light", + groups = {not_in_creative_inventory=1}, + drop = "", + walkable = false, + buildable_to = true, + sunlight_propagates = true, + light_source = LIGHT_MAX, + pointable = false, +}) + +minetest.register_abm({ + nodenames = "shooter:flare_light", + interval = 5, + chance = 1, + action = function(pos, node) + local time = os.time() + local meta = minetest.get_meta(pos) + local init_time = meta:get_int("init_time") or 0 + if time > init_time + 30 then + local id = meta:get_int("particle_id") + if id then + minetest.delete_particlespawner(id) + end + minetest.remove_node(pos) + end + end, +}) + +minetest.register_entity("shooter:flare_entity", { + physical = true, + timer = 0, + visual = "cube", + visual_size = {x=1/8, y=1/8}, + textures = { + "shooter_flare.png", + "shooter_flare.png", + "shooter_flare.png", + "shooter_flare.png", + "shooter_flare.png", + "shooter_flare.png", + }, + player = nil, + collisionbox = {-1/16,-1/16,-1/16, 1/16,1/16,1/16}, + on_activate = function(self, staticdata) + if staticdata == "expired" then + self.object:remove() + end + end, + on_step = function(self, dtime) + self.timer = self.timer + dtime + if self.timer > 0.2 then + local pos = self.object:getpos() + local below = {x=pos.x, y=pos.y - 1, z=pos.z} + local node = minetest.get_node(below) + if node.name ~= "air" then + self.object:setvelocity({x=0, y=-10, z=0}) + self.object:setacceleration({x=0, y=0, z=0}) + if minetest.get_node(pos).name == "air" and + node.name ~= "default:water_source" and + node.name ~= "default:water_flowing" then + minetest.place_node(pos, {name="shooter:flare_light"}) + local meta = minetest.get_meta(pos) + meta:set_int("particle_id", id) + meta:set_int("init_time", os.time()) + pos.y = pos.y - 0.1 + local id = minetest.add_particlespawner( + 1000, 30, pos, pos, + {x=-1, y=1, z=-1}, {x=1, y=1, z=1}, + {x=2, y=-2, z=-2}, {x=2, y=-2, z=2}, + 0.1, 0.75, 1, 8, false, "shooter_flare_particle.png" + ) + local sound = minetest.sound_play("shooter_flare_burn", { + object = self.player, + loop = true, + }) + minetest.after(30, function(sound) + minetest.sound_stop(sound) + end, sound) + end + self.object:remove() + end + self.timer = 0 + end + end, + get_staticdata = function(self) + return "expired" + end, +}) + +minetest.register_tool("shooter:flaregun", { + description = "Flare Gun", + inventory_image = "shooter_flaregun.png", + on_use = function(itemstack, user, pointed_thing) + local inv = user:get_inventory() + if not inv:contains_item("main", "shooter:flare") then + minetest.sound_play("shooter_click", {object=user}) + return itemstack + end + if not minetest.setting_getbool("creative_mode") then + inv:remove_item("main", "shooter:flare 1") + itemstack:add_wear(65535/100) + end + local pos = user:getpos() + local dir = user:get_look_dir() + local yaw = user:get_look_yaw() + if pos and dir and yaw then + pos.y = pos.y + 1.5 + local obj = minetest.add_entity(pos, "shooter:flare_entity") + if obj then + minetest.sound_play("shooter_flare_fire", {object=obj}) + obj:setvelocity({x=dir.x * 16, y=dir.y * 16, z=dir.z * 16}) + obj:setacceleration({x=dir.x * -3, y=-10, z=dir.z * -3}) + obj:setyaw(yaw + math.pi) + local ent = obj:get_luaentity() + if ent then + ent.player = ent.player or user + end + end + end + return itemstack + end, +}) + +if SHOOTER_ENABLE_CRAFTING == true then + minetest.register_craft({ + output = "shooter:flare", + recipe = { + {"tnt:gunpowder", "wool:red"}, + }, + }) + minetest.register_craft({ + output = "shooter:flaregun", + recipe = { + {"wool:red", "wool:red", "wool:red"}, + {"", "", "default:steel_ingot"} + }, + }) +end + diff --git a/mods/shooter/grapple.lua b/mods/shooter/grapple.lua new file mode 100644 index 0000000..44a60b1 --- /dev/null +++ b/mods/shooter/grapple.lua @@ -0,0 +1,132 @@ +local function throw_hook(itemstack, user, vel) + local inv = user:get_inventory() + local pos = user:getpos() + local dir = user:get_look_dir() + local yaw = user:get_look_yaw() + if pos and dir and yaw then + if not minetest.setting_getbool("creative_mode") then + itemstack:add_wear(65535/100) + end + pos.y = pos.y + 1.5 + local obj = minetest.add_entity(pos, "shooter:hook") + if obj then + minetest.sound_play("shooter_throw", {object=obj}) + obj:setvelocity({x=dir.x * vel, y=dir.y * vel, z=dir.z * vel}) + obj:setacceleration({x=dir.x * -3, y=-10, z=dir.z * -3}) + obj:setyaw(yaw + math.pi) + local ent = obj:get_luaentity() + if ent then + ent.player = ent.player or user + ent.itemstack = itemstack + end + end + end +end + +minetest.register_entity("shooter:hook", { + physical = true, + timer = 0, + visual = "wielditem", + visual_size = {x=1/2, y=1/2}, + textures = {"shooter:grapple_hook"}, + player = nil, + itemstack = "", + collisionbox = {-1/4,-1/4,-1/4, 1/4,1/4,1/4}, + on_activate = function(self, staticdata) + self.object:set_armor_groups({fleshy=0}) + if staticdata == "expired" then + self.object:remove() + end + end, + on_step = function(self, dtime) + if not self.player then + return + end + self.timer = self.timer + dtime + if self.timer > 0.25 then + local pos = self.object:getpos() + local below = {x=pos.x, y=pos.y - 1, z=pos.z} + local node = minetest.get_node(below) + if node.name ~= "air" then + self.object:setvelocity({x=0, y=-10, z=0}) + self.object:setacceleration({x=0, y=0, z=0}) + if minetest.get_item_group(node.name, "liquid") == 0 and + minetest.get_node(pos).name == "air" then + self.player:moveto(pos) + end + if minetest.get_item_group(node.name, "lava") == 0 then + minetest.add_item(pos, self.itemstack) + end + self.object:remove() + end + self.timer = 0 + end + end, + get_staticdata = function(self) + return "expired" + end, +}) + +minetest.register_tool("shooter:grapple_hook", { + description = "Grappling Hook", + inventory_image = "shooter_hook.png", + on_use = function(itemstack, user, pointed_thing) + if pointed_thing.type ~= "nothing" then + return itemstack + end + throw_hook(itemstack, user, 14) + return "" + end, +}) + +minetest.register_tool("shooter:grapple_gun", { + description = "Grappling Gun", + inventory_image = "shooter_hook_gun.png", + on_use = function(itemstack, user, pointed_thing) + local inv = user:get_inventory() + if inv:contains_item("main", "shooter:grapple_hook") and + inv:contains_item("main", "tnt:gunpowder") then + inv:remove_item("main", "tnt:gunpowder") + minetest.sound_play("shooter_reload", {object=user}) + local stack = inv:remove_item("main", "shooter:grapple_hook") + itemstack = "shooter:grapple_gun_loaded 1 "..stack:get_wear() + else + minetest.sound_play("shooter_click", {object=user}) + end + return itemstack + end, +}) + +minetest.register_tool("shooter:grapple_gun_loaded", { + description = "Grappling Gun", + inventory_image = "shooter_hook_gun_loaded.png", + groups = {not_in_creative_inventory=1}, + on_use = function(itemstack, user, pointed_thing) + if pointed_thing.type ~= "nothing" then + return itemstack + end + minetest.sound_play("shooter_pistol", {object=user}) + itemstack = ItemStack("shooter:grapple_hook 1 "..itemstack:get_wear()) + throw_hook(itemstack, user, 20) + return "shooter:grapple_gun" + end, +}) + +if SHOOTER_ENABLE_CRAFTING == true then + minetest.register_craft({ + output = "shooter:grapple_hook", + recipe = { + {"default:steel_ingot", "default:steel_ingot", "default:diamond"}, + {"default:steel_ingot", "default:steel_ingot", ""}, + {"default:diamond", "", "default:steel_ingot"}, + }, + }) + minetest.register_craft({ + output = "shooter:grapple_gun", + recipe = { + {"", "default:steel_ingot", "default:steel_ingot"}, + {"", "", "default:diamond"}, + }, + }) +end + diff --git a/mods/shooter/grenade.lua b/mods/shooter/grenade.lua new file mode 100644 index 0000000..5dac7f8 --- /dev/null +++ b/mods/shooter/grenade.lua @@ -0,0 +1,80 @@ +minetest.register_entity("shooter:grenade_entity", { + physical = false, + timer = 0, + visual = "cube", + visual_size = {x=1/8, y=1/8}, + textures = { + "shooter_grenade.png", + "shooter_grenade.png", + "shooter_grenade.png", + "shooter_grenade.png", + "shooter_grenade.png", + "shooter_grenade.png", + }, + player = nil, + collisionbox = {0,0,0, 0,0,0}, + on_activate = function(self, staticdata) + if staticdata == "expired" then + self.object:remove() + end + end, + on_step = function(self, dtime) + self.timer = self.timer + dtime + if self.timer > 0.2 then + local pos = self.object:getpos() + local below = {x=pos.x, y=pos.y - 1, z=pos.z} + if minetest.get_node(below).name ~= "air" then + self.object:remove() + shooter:blast(pos, 1, 25, 5, self.player) + end + self.timer = 0 + end + end, + get_staticdata = function(self) + return "expired" + end, +}) + +minetest.register_tool("shooter:grenade", { + description = "Grenade", + inventory_image = "shooter_hand_grenade.png", + on_use = function(itemstack, user, pointed_thing) + if not minetest.setting_getbool("creative_mode") then + itemstack = "" + end + if pointed_thing.type ~= "nothing" then + local pointed = minetest.get_pointed_thing_position(pointed_thing) + if vector.distance(user:getpos(), pointed) < 8 then + shooter:blast(pointed, 1, 25, 5) + return + end + end + local pos = user:getpos() + local dir = user:get_look_dir() + local yaw = user:get_look_yaw() + if pos and dir then + pos.y = pos.y + 1.5 + local obj = minetest.add_entity(pos, "shooter:grenade_entity") + if obj then + obj:setvelocity({x=dir.x * 15, y=dir.y * 15, z=dir.z * 15}) + obj:setacceleration({x=dir.x * -3, y=-10, z=dir.z * -3}) + obj:setyaw(yaw + math.pi) + local ent = obj:get_luaentity() + if ent then + ent.player = ent.player or user + end + end + end + return itemstack + end, +}) + +if SHOOTER_ENABLE_CRAFTING == true then + minetest.register_craft({ + output = "shooter:grenade", + recipe = { + {"tnt:gunpowder", "default:steel_ingot"}, + }, + }) +end + diff --git a/mods/shooter/guns.lua b/mods/shooter/guns.lua new file mode 100644 index 0000000..3fd3916 --- /dev/null +++ b/mods/shooter/guns.lua @@ -0,0 +1,127 @@ +shooter:register_weapon("shooter:pistol", { + description = "Pistol", + inventory_image = "shooter_pistol.png", + rounds = 200, + spec = { + range = 100, + step = 20, + tool_caps = {full_punch_interval=0.5, damage_groups={fleshy=15}}, + groups = {snappy=3, fleshy=3, oddly_breakable_by_hand=3}, + sound = "shooter_pistol", + particle = "shooter_cap.png", + }, +}) + +shooter:register_weapon("shooter:rifle", { + description = "Rifle", + inventory_image = "shooter_rifle.png", + rounds = 500, + spec = { + range = 200, + step = 30, + tool_caps = {full_punch_interval=1.0, damage_groups={fleshy=30}}, + groups = {snappy=3, crumbly=3, choppy=3, fleshy=2, oddly_breakable_by_hand=2}, + sound = "shooter_rifle", + particle = "shooter_bullet.png", + }, +}) + +shooter:register_weapon("shooter:shotgun", { + description = "Shotgun", + inventory_image = "shooter_shotgun.png", + rounds = 200, + spec = { + range = 50, + step = 15, + tool_caps = {full_punch_interval=1.5, damage_groups={fleshy=5}}, + groups = {cracky=3, snappy=2, crumbly=2, choppy=2, fleshy=1, oddly_breakable_by_hand=1}, + sound = "shooter_shotgun", + particle = "smoke_puff.png", + }, +}) + +shooter:register_weapon("shooter:ak47", { + description = "AK-47", + inventory_image = "shooter_smgun.png", + rounds = 200, + shots = 4, + spec = { + range = 100, + step = 20, + tool_caps = {full_punch_interval=0.125, damage_groups={fleshy=15}}, + groups = {snappy=3, fleshy=3, oddly_breakable_by_hand=3}, + sound = "shooter_pistol", + particle = "shooter_cap.png", + }, +}) + +minetest.register_craftitem("shooter:ammo", { + description = "Ammo pack", + inventory_image = "shooter_ammo.png", +}) + +if SHOOTER_ENABLE_CRAFTING == true then + minetest.register_craft({ + output = "shooter:pistol 1 0", + recipe = { + {"default:steel_ingot", "default:steel_ingot"}, + {"", "default:mese_crystal"}, + }, + }) + minetest.register_craft({ + output = "shooter:rifle 1 0", + recipe = { + {"default:steel_ingot", "", ""}, + {"", "default:bronze_ingot", ""}, + {"", "default:mese_crystal", "default:bronze_ingot"}, + }, + }) + minetest.register_craft({ + output = "shooter:shotgun 1 0", + recipe = { + {"default:steel_ingot", "", ""}, + {"", "default:steel_ingot", ""}, + {"", "default:mese_crystal", "default:bronze_ingot"}, + }, + }) + minetest.register_craft({ + output = "shooter:ak47 1 0", + recipe = { + {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, + {"", "default:bronze_ingot", "default:mese_crystal"}, + {"", "default:bronze_ingot", ""}, + }, + }) + minetest.register_craft({ + output = "shooter:ammo", + recipe = { + {"tnt:gunpowder", "default:bronze_ingot"}, + }, + }) +end + +local rounds_update_time = 0 + +minetest.register_globalstep(function(dtime) + shooter.time = shooter.time + dtime + if shooter.time - rounds_update_time > SHOOTER_ROUNDS_UPDATE_TIME then + for i, round in ipairs(shooter.rounds) do + if shooter:process_round(round) or round.dist > round.def.range then + table.remove(shooter.rounds, i) + else + local v = vector.multiply(round.ray, round.def.step) + shooter.rounds[i].pos = vector.add(round.pos, v) + shooter.rounds[i].dist = round.dist + round.def.step + end + end + rounds_update_time = shooter.time + end + if shooter.time > 100000 then + shooter.shots = {} + rounds_update_time = 0 + shooter.reload_time = 0 + shooter.update_time = 0 + shooter.time = 0 + end +end) + diff --git a/mods/shooter/init.lua b/mods/shooter/init.lua new file mode 100644 index 0000000..1eceb96 --- /dev/null +++ b/mods/shooter/init.lua @@ -0,0 +1,26 @@ +local modpath = minetest.get_modpath(minetest.get_current_modname()) + +dofile(modpath.."/shooter.lua") + +if SHOOTER_ENABLE_CROSSBOW == true then + dofile(modpath.."/crossbow.lua") +end +if SHOOTER_ENABLE_GUNS == true then + dofile(modpath.."/guns.lua") +end +if SHOOTER_ENABLE_FLARES == true then + dofile(modpath.."/flaregun.lua") +end +if SHOOTER_ENABLE_HOOK == true then + dofile(modpath.."/grapple.lua") +end +if SHOOTER_ENABLE_GRENADES == true then + dofile(modpath.."/grenade.lua") +end +if SHOOTER_ENABLE_ROCKETS == true then + dofile(modpath.."/rocket.lua") +end +if SHOOTER_ENABLE_TURRETS == true then + dofile(modpath.."/turret.lua") +end + diff --git a/mods/shooter/models/shooter_arrow.b3d b/mods/shooter/models/shooter_arrow.b3d new file mode 100644 index 0000000..d24be3c Binary files /dev/null and b/mods/shooter/models/shooter_arrow.b3d differ diff --git a/mods/shooter/models/shooter_arrow.blend b/mods/shooter/models/shooter_arrow.blend new file mode 100644 index 0000000..4cf5f43 Binary files /dev/null and b/mods/shooter/models/shooter_arrow.blend differ diff --git a/mods/shooter/models/shooter_arrow_uv.png b/mods/shooter/models/shooter_arrow_uv.png new file mode 100644 index 0000000..779d2ae Binary files /dev/null and b/mods/shooter/models/shooter_arrow_uv.png differ diff --git a/mods/shooter/models/shooter_turret.b3d b/mods/shooter/models/shooter_turret.b3d new file mode 100644 index 0000000..8aa291c Binary files /dev/null and b/mods/shooter/models/shooter_turret.b3d differ diff --git a/mods/shooter/models/shooter_turret.blend b/mods/shooter/models/shooter_turret.blend new file mode 100644 index 0000000..c9519bd Binary files /dev/null and b/mods/shooter/models/shooter_turret.blend differ diff --git a/mods/shooter/models/shooter_turret_uv.png b/mods/shooter/models/shooter_turret_uv.png new file mode 100644 index 0000000..c6bcde2 Binary files /dev/null and b/mods/shooter/models/shooter_turret_uv.png differ diff --git a/mods/shooter/rocket.lua b/mods/shooter/rocket.lua new file mode 100644 index 0000000..165282d --- /dev/null +++ b/mods/shooter/rocket.lua @@ -0,0 +1,113 @@ +minetest.register_craftitem("shooter:rocket", { + description = "Rocket", + stack_max = 1, + inventory_image = "shooter_rocket_inv.png", +}) + +minetest.register_entity("shooter:rocket_entity", { + physical = false, + timer = 0, + visual = "cube", + visual_size = {x=1/8, y=1/8}, + textures = { + "shooter_bullet.png", + "shooter_bullet.png", + "shooter_bullet.png", + "shooter_bullet.png", + "shooter_bullet.png", + "shooter_bullet.png", + }, + player = nil, + collisionbox = {0,0,0, 0,0,0}, + on_activate = function(self, staticdata) + if staticdata == "expired" then + self.object:remove() + end + end, + on_step = function(self, dtime) + self.timer = self.timer + dtime + if self.timer > 0.2 then + local pos = self.object:getpos() + if minetest.get_node(pos).name ~= "air" then + self.object:remove() + shooter:blast(pos, 2, 50, 7, self.player) + end + self.timer = 0 + end + end, + get_staticdata = function(self) + return "expired" + end, +}) + +minetest.register_tool("shooter:rocket_gun_loaded", { + description = "Rocket Gun", + inventory_image = "shooter_rocket_gun_loaded.png", + groups = {not_in_creative_inventory=1}, + on_use = function(itemstack, user, pointed_thing) + if not minetest.setting_getbool("creative_mode") then + itemstack:add_wear(65535/50) + end + itemstack = "shooter:rocket_gun 1 "..itemstack:get_wear() + if pointed_thing.type ~= "nothing" then + local pointed = minetest.get_pointed_thing_position(pointed_thing) + if vector.distance(user:getpos(), pointed) < 8 then + shooter:blast(pointed, 2, 50, 7) + return itemstack + end + end + local pos = user:getpos() + local dir = user:get_look_dir() + local yaw = user:get_look_yaw() + if pos and dir and yaw then + pos.y = pos.y + 1.5 + local obj = minetest.add_entity(pos, "shooter:rocket_entity") + if obj then + minetest.sound_play("shooter_rocket_fire", {object=obj}) + obj:setvelocity({x=dir.x * 20, y=dir.y * 20, z=dir.z * 20}) + obj:setacceleration({x=dir.x * -3, y=-10, z=dir.z * -3}) + obj:setyaw(yaw + math.pi) + local ent = obj:get_luaentity() + if ent then + ent.player = ent.player or user + end + end + end + return itemstack + end, +}) + +minetest.register_tool("shooter:rocket_gun", { + description = "Rocket Gun", + inventory_image = "shooter_rocket_gun.png", + on_use = function(itemstack, user, pointed_thing) + local inv = user:get_inventory() + if inv:contains_item("main", "shooter:rocket") then + minetest.sound_play("shooter_reload", {object=user}) + if not minetest.setting_getbool("creative_mode") then + inv:remove_item("main", "shooter:rocket 1") + end + itemstack = "shooter:rocket_gun_loaded 1 "..itemstack:get_wear() + else + minetest.sound_play("shooter_click", {object=user}) + end + return itemstack + end, +}) + +if SHOOTER_ENABLE_CRAFTING == true then + minetest.register_craft({ + output = "shooter:rocket_gun", + recipe = { + {"default:bronze_ingot", "default:steel_ingot", "default:steel_ingot"}, + {"", "", "default:diamond"}, + }, + }) + minetest.register_craft({ + output = "shooter:rocket", + recipe = { + {"default:bronze_ingot", "tnt:gunpowder", "default:bronze_ingot"}, + }, + }) +end + diff --git a/mods/shooter/shooter.conf.example b/mods/shooter/shooter.conf.example new file mode 100644 index 0000000..54c6282 --- /dev/null +++ b/mods/shooter/shooter.conf.example @@ -0,0 +1,77 @@ +-- Simple Shooter config example + +-- Global Constants (defaults) + +-- Enable node destruction with explosives +SHOOTER_ENABLE_BLASTING = true + +-- Enable Crossbow +SHOOTER_ENABLE_CROSSBOW = true + +-- Enable basic guns (Pistol, Rifle, Shotgun, Machine Gun) +SHOOTER_ENABLE_GUNS = true + +-- Enable Flare Gun +SHOOTER_ENABLE_FLARES = true + +-- Enable Grappling Hook +SHOOTER_ENABLE_HOOK = true + +-- Enable Grenades +SHOOTER_ENABLE_GRENADES = true + +-- Enable Rocket Gun +SHOOTER_ENABLE_ROCKETS = true + +-- Enable Turrret Gun +SHOOTER_ENABLE_TURRETS = true + +-- Enable Crafting +SHOOTER_ENABLE_CRAFTING = true + +-- Enable particle effects +SHOOTER_ENABLE_PARTICLE_FX = true + +-- Enable protection mod support, requires a protection mod that utilizes +-- minetest.is_protected(), tested with TenPlus1's version of [protector] +SHOOTER_ENABLE_PROTECTION = false + +-- Particle texture used when a player or entity is hit +SHOOTER_EXPLOSION_TEXTURE = "shooter_hit.png" + +-- Allow node destruction +SHOOTER_ALLOW_NODES = true + +-- Allow entities in multiplayer mode +SHOOTER_ALLOW_ENTITIES = false + +-- Allow players in multiplayer mode +SHOOTER_ALLOW_PLAYERS = true + +-- How often objects are fully reloaded +SHOOTER_OBJECT_RELOAD_TIME = 1 + +-- How often object positions are updated +SHOOTER_OBJECT_UPDATE_TIME = 0.25 + +-- How often rounds are processed +SHOOTER_ROUNDS_UPDATE_TIME = 0.4 + +-- Player collision box offset (may require adjustment for some games) +SHOOTER_PLAYER_OFFSET = {x=0, y=1, z=0} + +-- Entity collision box offset (may require adjustment for other mobs) +SHOOTER_ENTITY_OFFSET = {x=0, y=0, z=0} + +-- Shootable entities (default support for Simple Mobs) +SHOOTER_ENTITIES = { + "mobs:dirt_monster", + "mobs:stone_monster", + "mobs:sand_monster", + "mobs:tree_monster", + "mobs:sheep", + "mobs:rat", + "mobs:oerkki", + "mobs:dungeon_master", +} + diff --git a/mods/shooter/shooter.lua b/mods/shooter/shooter.lua new file mode 100644 index 0000000..362f02d --- /dev/null +++ b/mods/shooter/shooter.lua @@ -0,0 +1,436 @@ +shooter = { + time = 0, + objects = {}, + rounds = {}, + shots = {}, + update_time = 0, + reload_time = 0, +} + +SHOOTER_ENABLE_BLASTING = false --false +SHOOTER_ENABLE_CROSSBOW = true +SHOOTER_ENABLE_GUNS = true +SHOOTER_ENABLE_FLARES = true +SHOOTER_ENABLE_HOOK = true +SHOOTER_ENABLE_GRENADES = true +SHOOTER_ENABLE_ROCKETS = true +SHOOTER_ENABLE_TURRETS = true +SHOOTER_ENABLE_CRAFTING = true +SHOOTER_ENABLE_PARTICLE_FX = true +SHOOTER_ENABLE_PROTECTION = false +SHOOTER_EXPLOSION_TEXTURE = "shooter_hit.png" +SHOOTER_ALLOW_NODES = false -- true +SHOOTER_ALLOW_ENTITIES = true -- normally: false +SHOOTER_ALLOW_PLAYERS = true +SHOOTER_OBJECT_RELOAD_TIME = 1 +SHOOTER_OBJECT_UPDATE_TIME = 0.25 +SHOOTER_ROUNDS_UPDATE_TIME = 0.4 +SHOOTER_PLAYER_OFFSET = {x=0, y=1, z=0} +SHOOTER_ENTITY_OFFSET = {x=0, y=0, z=0} +SHOOTER_ENTITIES = { + "mobs:dirt_monster", + "mobs:stone_monster", + "mobs:sand_monster", + "mobs:tree_monster", + "mobs:sheep", + "mobs:rat", + "mobs:oerkki", + "mobs:dungeon_master", + "mobs:spider", + "mobs:dungeon_master", + "mobs:lava_flan", + "mobs:mese_monster", + "mobs:wolf", + "mobs:yeti", + "mobs:cow", +} + +if minetest.is_singleplayer() == true then + SHOOTER_ENABLE_BLASTING = true + SHOOTER_ALLOW_ENTITIES = true + SHOOTER_ALLOW_PLAYERS = false +end + +local allowed_entities = {} +for _,v in ipairs(SHOOTER_ENTITIES) do + allowed_entities[v] = 1 +end + +local modpath = minetest.get_modpath(minetest.get_current_modname()) +local input = io.open(modpath.."/shooter.conf", "r") +if input then + dofile(modpath.."/shooter.conf") + input:close() + input = nil +end + +local function get_dot_product(v1, v2) + return v1.x * v2.x + v1.y * v2.y + v1.z * v2.z +end + +local function get_particle_pos(p, v, d) + return vector.add(p, vector.multiply(v, {x=d, y=d, z=d})) +end + +function shooter:spawn_particles(pos, texture) + if SHOOTER_ENABLE_PARTICLE_FX == true then + if type(texture) ~= "string" then + texture = SHOOTER_EXPLOSION_TEXTURE + end + local spread = {x=0.1, y=0.1, z=0.1} + minetest.add_particlespawner(15, 0.3, + vector.subtract(pos, spread), vector.add(pos, spread), + {x=-1, y=1, z=-1}, {x=1, y=2, z=1}, + {x=-2, y=-2, z=-2}, {x=2, y=-2, z=2}, + 0.1, 0.75, 1, 2, false, texture + ) + end +end + +function shooter:play_node_sound(node, pos) + local item = minetest.registered_items[node.name] + if item then + if item.sounds then + local spec = item.sounds.dug + if spec then + spec.pos = pos + minetest.sound_play(spec.name, spec) + end + end + end +end + +function shooter:punch_node(pos, def) + local node = minetest.get_node(pos) + if not node then + return + end + local item = minetest.registered_items[node.name] + if not item then + return + end + if SHOOTER_ENABLE_PROTECTION then + if minetest.is_protected(pos, def.name) then + return + end + end + if item.groups then + for k, v in pairs(def.groups) do + local level = item.groups[k] or 0 + if level >= v then + minetest.remove_node(pos) + shooter:play_node_sound(node, pos) + if item.tiles then + if item.tiles[1] then + shooter:spawn_particles(pos, item.tiles[1]) + end + end + break + end + end + end +end + +function shooter:is_valid_object(object) + if object then + if object:is_player() == true then + return SHOOTER_ALLOW_PLAYERS + end + if SHOOTER_ALLOW_ENTITIES == true then + local luaentity = object:get_luaentity() + if luaentity then + if luaentity.name then + if allowed_entities[luaentity.name] then + return true + end + end + end + end + end +end + +function shooter:get_intersect_pos(ray, plane, collisionbox) + local v = vector.subtract(ray.pos, plane.pos) + local r1 = get_dot_product(v, plane.normal) + local r2 = get_dot_product(ray.dir, plane.normal) + if r2 ~= 0 then + local t = -(r1 / r2) + local td = vector.multiply(ray.dir, {x=t, y=t, z=t}) + local pt = vector.add(ray.pos, td) + local pd = vector.subtract(pt, plane.pos) + if math.abs(pd.x) < collisionbox[4] and + math.abs(pd.y) < collisionbox[5] and + math.abs(pd.z) < collisionbox[6] then + return pt + end + end +end + +function shooter:process_round(round) + local target = {object=nil, distance=10000} + local p1 = round.pos + local v1 = round.ray + for _,ref in ipairs(shooter.objects) do + local p2 = vector.add(ref.pos, ref.offset) + if p1 and p2 and ref.name ~= round.name then + local d = vector.distance(p1, p2) + if d < round.def.step and d < target.distance then + local ray = {pos=p1, dir=v1} + local plane = {pos=p2, normal={x=-1, y=0, z=-1}} + local pos = shooter:get_intersect_pos(ray, plane, ref.collisionbox) + if pos then + target.object = ref.object + target.pos = pos + target.distance = d + end + end + end + end + if target.object and target.pos then + local success, pos = minetest.line_of_sight(p1, target.pos, 1) + if success then + local user = minetest.get_player_by_name(round.name) + if user then + target.object:punch(user, nil, round.def.tool_caps, v1) + shooter:spawn_particles(target.pos, SHOOTER_EXPLOSION_TEXTURE) + end + return 1 + elseif pos and SHOOTER_ALLOW_NODES == true then + shooter:punch_node(pos, round.def) + return 1 + end + elseif SHOOTER_ALLOW_NODES == true then + local d = round.def.step + local p2 = vector.add(p1, vector.multiply(v1, {x=d, y=d, z=d})) + local success, pos = minetest.line_of_sight(p1, p2, 1) + if pos then + shooter:punch_node(pos, round.def) + return 1 + end + end +end + +function shooter:register_weapon(name, def) + local shots = def.shots or 1 + local wear = math.ceil(65534 / def.rounds) + local max_wear = (def.rounds - 1) * wear + minetest.register_tool(name, { + description = def.description, + inventory_image = def.inventory_image, + on_use = function(itemstack, user, pointed_thing) + if itemstack:get_wear() < max_wear then + def.spec.name = user:get_player_name() + if shots > 1 then + local step = def.spec.tool_caps.full_punch_interval + for i = 0, step * shots, step do + minetest.after(i, function() + shooter:fire_weapon(user, pointed_thing, def.spec) + end) + end + else + shooter:fire_weapon(user, pointed_thing, def.spec) + end + itemstack:add_wear(wear) + else + local inv = user:get_inventory() + if inv then + local stack = "shooter:ammo 1" + if inv:contains_item("main", stack) then + minetest.sound_play("shooter_reload", {object=user}) + inv:remove_item("main", stack) + itemstack:replace(name.." 1 1") + else + minetest.sound_play("shooter_click", {object=user}) + end + end + end + return itemstack + end, + }) +end + +function shooter:fire_weapon(user, pointed_thing, def) + if shooter.shots[def.name] then + if shooter.time < shooter.shots[def.name] then + return + end + end + shooter.shots[def.name] = shooter.time + def.tool_caps.full_punch_interval + minetest.sound_play(def.sound, {object=user}) + local v1 = user:get_look_dir() + local p1 = user:getpos() + if not v1 or not p1 then + return + end + minetest.add_particle({x=p1.x, y=p1.y + 1.6, z=p1.z}, + vector.multiply(v1, {x=30, y=30, z=30}), + {x=0, y=0, z=0}, 0.5, 0.25, + false, def.particle + ) + if pointed_thing.type == "node" and SHOOTER_ALLOW_NODES == true then + local pos = minetest.get_pointed_thing_position(pointed_thing, false) + shooter:punch_node(pos, def) + elseif pointed_thing.type == "object" then + local object = pointed_thing.ref + if shooter:is_valid_object(object) == true then + object:punch(user, nil, def.tool_caps, v1) + local p2 = object:getpos() + local pp = get_particle_pos(p1, v1, vector.distance(p1, p2)) + pp.y = pp.y + 1.75 + shooter:spawn_particles(pp, SHOOTER_EXPLOSION_TEXTURE) + end + else + shooter:update_objects() + table.insert(shooter.rounds, { + name = def.name, + pos = vector.add(p1, {x=0, y=1.75, z=0}), + ray = v1, + dist = 0, + def = def, + }) + end +end + +function shooter:load_objects() + local objects = {} + if SHOOTER_ALLOW_PLAYERS == true then + local players = minetest.get_connected_players() + for _,player in ipairs(players) do + local pos = player:getpos() + local name = player:get_player_name() + local hp = player:get_hp() or 0 + if pos and name and hp > 0 then + table.insert(objects, { + name = name, + object = player, + pos = pos, + collisionbox = {-0.25,-1.0,-0.25, 0.25,0.8,0.25}, + offset = SHOOTER_PLAYER_OFFSET, + }) + end + end + end + if SHOOTER_ALLOW_ENTITIES == true then + for _,ref in pairs(minetest.luaentities) do + if ref.object and ref.name then + if allowed_entities[ref.name] then + local pos = ref.object:getpos() + local hp = ref.object:get_hp() or 0 + if pos and hp > 0 then + local def = minetest.registered_entities[ref.name] + table.insert(objects, { + name = ref.name, + object = ref.object, + pos = pos, + collisionbox = def.collisionbox, + offset = SHOOTER_ENTITY_OFFSET, + }) + end + end + end + end + end + shooter.reload_time = shooter.time + shooter.update_time = shooter.time + shooter.objects = {} + for _,v in ipairs(objects) do + table.insert(shooter.objects, v) + end +end + +function shooter:update_objects() + if shooter.time - shooter.reload_time > SHOOTER_OBJECT_RELOAD_TIME then + shooter:load_objects() + elseif shooter.time - shooter.update_time > SHOOTER_OBJECT_UPDATE_TIME then + for i, ref in ipairs(shooter.objects) do + if ref.object then + local pos = ref.object:getpos() + if pos then + shooter.objects[i].pos = pos + end + else + table.remove(shooter.objects, i) + end + end + shooter.update_time = shooter.time + end +end + +function shooter:blast(pos, radius, fleshy, distance, user) + if not user then + return + end + local name = user:get_player_name() + local pos = vector.round(pos) + local p1 = vector.subtract(pos, radius) + local p2 = vector.add(pos, radius) + minetest.sound_play("tnt_explode", {pos=pos, gain=1}) + if SHOOTER_ALLOW_NODES and SHOOTER_ENABLE_BLASTING then + if SHOOTER_ENABLE_PROTECTION then + if not minetest.is_protected(pos, name) then + minetest.set_node(pos, {name="tnt:boom"}) + end + else + minetest.set_node(pos, {name="tnt:boom"}) + end + end + if SHOOTER_ENABLE_PARTICLE_FX == true then + minetest.add_particlespawner(50, 0.1, + p1, p2, {x=-0, y=-0, z=-0}, {x=0, y=0, z=0}, + {x=-0.5, y=5, z=-0.5}, {x=0.5, y=5, z=0.5}, + 0.1, 1, 8, 15, false, "tnt_smoke.png" + ) + end + local objects = minetest.get_objects_inside_radius(pos, distance) + for _,obj in ipairs(objects) do + if (obj:is_player() and SHOOTER_ALLOW_PLAYERS == true) or + (obj:get_luaentity() and SHOOTER_ALLOW_ENTITIES == true and + obj:get_luaentity().name ~= "__builtin:item") then + local obj_pos = obj:getpos() + local dist = vector.distance(obj_pos, pos) + local damage = (fleshy * 0.5 ^ dist) * 2 + if dist ~= 0 then + obj_pos.y = obj_pos.y + 1.7 + blast_pos = {x=pos.x, y=pos.y + 4, z=pos.z} + if minetest.line_of_sight(obj_pos, blast_pos, 1) then + obj:punch(obj, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy=damage}, + }) + end + end + end + end + if SHOOTER_ALLOW_NODES and SHOOTER_ENABLE_BLASTING then + local pr = PseudoRandom(os.time()) + local vm = VoxelManip() + local min, max = vm:read_from_map(p1, p2) + local area = VoxelArea:new({MinEdge=min, MaxEdge=max}) + local data = vm:get_data() + local c_air = minetest.get_content_id("air") + for z = -radius, radius do + for y = -radius, radius do + local vp = {x=pos.x - radius, y=pos.y + y, z=pos.z + z} + local vi = area:index(vp.x, vp.y, vp.z) + for x = -radius, radius do + if (x * x) + (y * y) + (z * z) <= + (radius * radius) + pr:next(-radius, radius) then + if SHOOTER_ENABLE_PROTECTION then + if not minetest.is_protected(vp, name) then + data[vi] = c_air + end + else + data[vi] = c_air + end + end + vi = vi + 1 + end + end + end + vm:set_data(data) + vm:update_liquids() + vm:write_to_map() + vm:update_map() + end +end + diff --git a/mods/shooter/sounds/shooter_click.ogg b/mods/shooter/sounds/shooter_click.ogg new file mode 100644 index 0000000..8e60db8 Binary files /dev/null and b/mods/shooter/sounds/shooter_click.ogg differ diff --git a/mods/shooter/sounds/shooter_flare_burn.ogg b/mods/shooter/sounds/shooter_flare_burn.ogg new file mode 100644 index 0000000..68d6e10 Binary files /dev/null and b/mods/shooter/sounds/shooter_flare_burn.ogg differ diff --git a/mods/shooter/sounds/shooter_flare_fire.ogg b/mods/shooter/sounds/shooter_flare_fire.ogg new file mode 100644 index 0000000..e0c625b Binary files /dev/null and b/mods/shooter/sounds/shooter_flare_fire.ogg differ diff --git a/mods/shooter/sounds/shooter_pistol.ogg b/mods/shooter/sounds/shooter_pistol.ogg new file mode 100644 index 0000000..0d3f464 Binary files /dev/null and b/mods/shooter/sounds/shooter_pistol.ogg differ diff --git a/mods/shooter/sounds/shooter_reload.ogg b/mods/shooter/sounds/shooter_reload.ogg new file mode 100644 index 0000000..47f7245 Binary files /dev/null and b/mods/shooter/sounds/shooter_reload.ogg differ diff --git a/mods/shooter/sounds/shooter_rifle.ogg b/mods/shooter/sounds/shooter_rifle.ogg new file mode 100644 index 0000000..1ea68bf Binary files /dev/null and b/mods/shooter/sounds/shooter_rifle.ogg differ diff --git a/mods/shooter/sounds/shooter_rocket_fire.ogg b/mods/shooter/sounds/shooter_rocket_fire.ogg new file mode 100644 index 0000000..57252f3 Binary files /dev/null and b/mods/shooter/sounds/shooter_rocket_fire.ogg differ diff --git a/mods/shooter/sounds/shooter_shotgun.ogg b/mods/shooter/sounds/shooter_shotgun.ogg new file mode 100644 index 0000000..22aa8d4 Binary files /dev/null and b/mods/shooter/sounds/shooter_shotgun.ogg differ diff --git a/mods/shooter/sounds/shooter_throw.ogg b/mods/shooter/sounds/shooter_throw.ogg new file mode 100644 index 0000000..9ce9176 Binary files /dev/null and b/mods/shooter/sounds/shooter_throw.ogg differ diff --git a/mods/shooter/textures/crosshair.png b/mods/shooter/textures/crosshair.png new file mode 100644 index 0000000..30844f7 Binary files /dev/null and b/mods/shooter/textures/crosshair.png differ diff --git a/mods/shooter/textures/shooter_ammo.png b/mods/shooter/textures/shooter_ammo.png new file mode 100644 index 0000000..daa348e Binary files /dev/null and b/mods/shooter/textures/shooter_ammo.png differ diff --git a/mods/shooter/textures/shooter_arrow_inv.png b/mods/shooter/textures/shooter_arrow_inv.png new file mode 100644 index 0000000..7727c5f Binary files /dev/null and b/mods/shooter/textures/shooter_arrow_inv.png differ diff --git a/mods/shooter/textures/shooter_arrow_uv.png b/mods/shooter/textures/shooter_arrow_uv.png new file mode 100644 index 0000000..57017c8 Binary files /dev/null and b/mods/shooter/textures/shooter_arrow_uv.png differ diff --git a/mods/shooter/textures/shooter_bullet.png b/mods/shooter/textures/shooter_bullet.png new file mode 100644 index 0000000..c8b8e30 Binary files /dev/null and b/mods/shooter/textures/shooter_bullet.png differ diff --git a/mods/shooter/textures/shooter_cap.png b/mods/shooter/textures/shooter_cap.png new file mode 100644 index 0000000..692c1d5 Binary files /dev/null and b/mods/shooter/textures/shooter_cap.png differ diff --git a/mods/shooter/textures/shooter_crossbow.png b/mods/shooter/textures/shooter_crossbow.png new file mode 100644 index 0000000..f832c26 Binary files /dev/null and b/mods/shooter/textures/shooter_crossbow.png differ diff --git a/mods/shooter/textures/shooter_crossbow_loaded.png b/mods/shooter/textures/shooter_crossbow_loaded.png new file mode 100644 index 0000000..bd46531 Binary files /dev/null and b/mods/shooter/textures/shooter_crossbow_loaded.png differ diff --git a/mods/shooter/textures/shooter_flare.png b/mods/shooter/textures/shooter_flare.png new file mode 100644 index 0000000..98fd967 Binary files /dev/null and b/mods/shooter/textures/shooter_flare.png differ diff --git a/mods/shooter/textures/shooter_flare_inv.png b/mods/shooter/textures/shooter_flare_inv.png new file mode 100644 index 0000000..532a7df Binary files /dev/null and b/mods/shooter/textures/shooter_flare_inv.png differ diff --git a/mods/shooter/textures/shooter_flare_light.png b/mods/shooter/textures/shooter_flare_light.png new file mode 100644 index 0000000..afed6ba Binary files /dev/null and b/mods/shooter/textures/shooter_flare_light.png differ diff --git a/mods/shooter/textures/shooter_flare_particle.png b/mods/shooter/textures/shooter_flare_particle.png new file mode 100644 index 0000000..8e38165 Binary files /dev/null and b/mods/shooter/textures/shooter_flare_particle.png differ diff --git a/mods/shooter/textures/shooter_flaregun.png b/mods/shooter/textures/shooter_flaregun.png new file mode 100644 index 0000000..e654ab3 Binary files /dev/null and b/mods/shooter/textures/shooter_flaregun.png differ diff --git a/mods/shooter/textures/shooter_grenade.png b/mods/shooter/textures/shooter_grenade.png new file mode 100644 index 0000000..fd13447 Binary files /dev/null and b/mods/shooter/textures/shooter_grenade.png differ diff --git a/mods/shooter/textures/shooter_hand_grenade.png b/mods/shooter/textures/shooter_hand_grenade.png new file mode 100644 index 0000000..f0ade73 Binary files /dev/null and b/mods/shooter/textures/shooter_hand_grenade.png differ diff --git a/mods/shooter/textures/shooter_hit.png b/mods/shooter/textures/shooter_hit.png new file mode 100644 index 0000000..46d95b2 Binary files /dev/null and b/mods/shooter/textures/shooter_hit.png differ diff --git a/mods/shooter/textures/shooter_hook.png b/mods/shooter/textures/shooter_hook.png new file mode 100644 index 0000000..15311e5 Binary files /dev/null and b/mods/shooter/textures/shooter_hook.png differ diff --git a/mods/shooter/textures/shooter_hook_gun.png b/mods/shooter/textures/shooter_hook_gun.png new file mode 100644 index 0000000..3687ac4 Binary files /dev/null and b/mods/shooter/textures/shooter_hook_gun.png differ diff --git a/mods/shooter/textures/shooter_hook_gun_loaded.png b/mods/shooter/textures/shooter_hook_gun_loaded.png new file mode 100644 index 0000000..28cdb3b Binary files /dev/null and b/mods/shooter/textures/shooter_hook_gun_loaded.png differ diff --git a/mods/shooter/textures/shooter_pistol.png b/mods/shooter/textures/shooter_pistol.png new file mode 100644 index 0000000..56c821f Binary files /dev/null and b/mods/shooter/textures/shooter_pistol.png differ diff --git a/mods/shooter/textures/shooter_rifle.png b/mods/shooter/textures/shooter_rifle.png new file mode 100644 index 0000000..451ed5f Binary files /dev/null and b/mods/shooter/textures/shooter_rifle.png differ diff --git a/mods/shooter/textures/shooter_rocket_gun.png b/mods/shooter/textures/shooter_rocket_gun.png new file mode 100644 index 0000000..84738d4 Binary files /dev/null and b/mods/shooter/textures/shooter_rocket_gun.png differ diff --git a/mods/shooter/textures/shooter_rocket_gun_loaded.png b/mods/shooter/textures/shooter_rocket_gun_loaded.png new file mode 100644 index 0000000..3b2dc4d Binary files /dev/null and b/mods/shooter/textures/shooter_rocket_gun_loaded.png differ diff --git a/mods/shooter/textures/shooter_rocket_inv.png b/mods/shooter/textures/shooter_rocket_inv.png new file mode 100644 index 0000000..a96fa46 Binary files /dev/null and b/mods/shooter/textures/shooter_rocket_inv.png differ diff --git a/mods/shooter/textures/shooter_shotgun.png b/mods/shooter/textures/shooter_shotgun.png new file mode 100644 index 0000000..903223b Binary files /dev/null and b/mods/shooter/textures/shooter_shotgun.png differ diff --git a/mods/shooter/textures/shooter_smgun.png b/mods/shooter/textures/shooter_smgun.png new file mode 100644 index 0000000..98886e9 Binary files /dev/null and b/mods/shooter/textures/shooter_smgun.png differ diff --git a/mods/shooter/textures/shooter_turret_base.png b/mods/shooter/textures/shooter_turret_base.png new file mode 100644 index 0000000..fd13447 Binary files /dev/null and b/mods/shooter/textures/shooter_turret_base.png differ diff --git a/mods/shooter/textures/shooter_turret_gun.png b/mods/shooter/textures/shooter_turret_gun.png new file mode 100644 index 0000000..97e3e9f Binary files /dev/null and b/mods/shooter/textures/shooter_turret_gun.png differ diff --git a/mods/shooter/textures/shooter_turret_uv.png b/mods/shooter/textures/shooter_turret_uv.png new file mode 100644 index 0000000..c6bcde2 Binary files /dev/null and b/mods/shooter/textures/shooter_turret_uv.png differ diff --git a/mods/shooter/turret.lua b/mods/shooter/turret.lua new file mode 100644 index 0000000..6b52b2a --- /dev/null +++ b/mods/shooter/turret.lua @@ -0,0 +1,276 @@ +local function get_turret_entity(pos) + local entity = nil + local objects = minetest.get_objects_inside_radius(pos, 1) + for _, obj in ipairs(objects) do + local ent = obj:get_luaentity() + if ent then + if ent.name == "shooter:turret_entity" then + -- Remove duplicates + if entity then + obj:remove() + else + entity = ent + end + end + end + end + return entity +end + +minetest.register_entity("shooter:tnt_entity", { + physical = false, + timer = 0, + visual = "cube", + visual_size = {x=1/4, y=1/4}, + textures = { + "tnt_top.png", + "tnt_bottom.png", + "tnt_side.png", + "tnt_side.png", + "tnt_side.png", + "tnt_side.png", + }, + player = nil, + collisionbox = {0,0,0, 0,0,0}, + on_activate = function(self, staticdata) + if staticdata == "expired" then + self.object:remove() + end + end, + on_step = function(self, dtime) + self.timer = self.timer + dtime + if self.timer > 0.2 then + local pos = self.object:getpos() + if minetest.get_node(pos).name ~= "air" then + self.object:remove() + shooter:blast(pos, 4, 80, 10, self.player) + end + self.timer = 0 + end + end, + get_staticdata = function(self) + return "expired" + end, +}) + +minetest.register_entity("shooter:turret_entity", { + physical = true, + visual = "mesh", + mesh = "shooter_turret.b3d", + visual_size = {x=1, y=1}, + collisionbox = {-0.3, 0.5,-0.3, 0.3,1,0.3}, + textures = { + "shooter_turret_uv.png", + }, + timer = 0, + player = nil, + pitch = 40, + yaw = 0, + firing = false, + on_activate = function(self, staticdata) + self.pos = self.object:getpos() + self.yaw = self.object:getyaw() + if minetest.get_node(self.pos).name ~= "shooter:turret" then + self.object:remove() + return + end + self.object:set_animation({x=self.pitch, y=self.pitch}, 0) + self.object:set_armor_groups({fleshy=0}) + -- Remove duplicates + get_turret_entity(self.pos) + end, + on_rightclick = function(self, clicker) + if self.player == nil then + clicker:set_attach(self.object, "", {x=0,y=5,z=-8}, {x=0,y=0,z=0}) + self.player = clicker + else + self.player:set_detach() + local yaw = self.yaw + math.pi / 2 + local dir = vector.normalize({ + x = math.cos(yaw), + y = 0, + z = math.sin(yaw), + }) + local pos = vector.subtract(self.player:getpos(), dir) + minetest.after(0.2, function(player) + player:setpos(pos) + end, self.player) + self.player = nil + end + end, + on_step = function(self, dtime) + self.timer = self.timer + dtime + if self.timer < 0.1 then + return + end + if self.player then + local pitch = self.pitch + local yaw = self.object:getyaw() + local ctrl = self.player:get_player_control() + local step = 2 + if ctrl then + if ctrl.sneak then + step = 1 + if ctrl.jump then + if self.firing == false then + self:fire() + self.firing = true + end + else + self.firing = false + end + end + if ctrl.down then + pitch = pitch + 1 * step + elseif ctrl.up then + pitch = pitch - 1 * step + end + if ctrl.left then + yaw = yaw + 0.025 * step + elseif ctrl.right then + yaw = yaw - 0.025 * step + end + if pitch < 0 then + pitch = 0 + elseif pitch > 90 then + pitch = 90 + end + if self.pitch ~= pitch then + self.object:set_animation({x=pitch, y=pitch}, 0) + self.pitch = pitch + end + if self.yaw ~= yaw then + self.object:setyaw(yaw) + self.yaw = yaw + end + end + end + self.timer = 0 + end, + fire = function(self) + local meta = minetest.get_meta(self.pos) + local inv = meta:get_inventory() + if not inv then + return + end + -- if not inv:contains_item("main", "tnt:tnt") then + -- minetest.sound_play("shooter_click", {object=self.object}) + -- return + -- end + minetest.sound_play("shooter_shotgun", {object=self.object,max_hear_distance = 256,gain = 2.0}) + -- if not minetest.setting_getbool("creative_mode") then + -- inv:remove_item("main", "tnt:tnt") + -- end + local pitch = math.rad(self.pitch - 40) + local len = math.cos(pitch) + local dir = vector.normalize({ + x = len * math.sin(-self.yaw), + y = math.sin(pitch), + z = len * math.cos(self.yaw), + }) + local pos = {x=self.pos.x, y=self.pos.y + 0.87, z=self.pos.z} + pos = vector.add(pos, {x=dir.x * 1.5, y=dir.y * 1.5, z=dir.z * 1.5}) + local obj = minetest.add_entity(pos, "shooter:tnt_entity") + if obj then + local ent = obj:get_luaentity() + if ent then + minetest.sound_play("shooter_rocket_fire", {pos=pos,gain=1.0,max_hear_distance = 256,}) + ent.player = self.player + obj:setyaw(self.yaw) + obj:setvelocity({x=dir.x * 30, y=dir.y * 30, z=dir.z * 30}) + obj:setacceleration({x=dir.x * -3, y=-10, z=dir.z * -3}) + end + end + if SHOOTER_ENABLE_PARTICLE_FX == true then + minetest.add_particlespawner(10, 0.1, + {x=pos.x - 1, y=pos.y - 1, z=pos.z - 1}, + {x=pos.x + 1, y=pos.y + 1, z=pos.z + 1}, + {x=0, y=0, z=0}, {x=0, y=0, z=0}, + {x=-0.5, y=-0.5, z=-0.5}, {x=0.5, y=0.5, z=0.5}, + 0.1, 1, 8, 15, false, "tnt_smoke.png" + ) + end + end +}) + +minetest.register_node("shooter:turret", { + description = "Turret Gun", + tiles = {"shooter_turret_base.png"}, + inventory_image = "shooter_turret_gun.png", + wield_image = "shooter_turret_gun.png", + drawtype = "nodebox", + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3}, + node_box = { + type = "fixed", + fixed = { + {-1/8, 1/8, -1/8, 1/8, 1/2, 1/8}, + {-5/16, 0, -5/16, 5/16, 1/8, 5/16}, + {-3/8, -1/2, -3/8, -1/4, 0, -1/4}, + {1/4, -1/2, 1/4, 3/8, 0, 3/8}, + {1/4, -1/2, -3/8, 3/8, 0, -1/4}, + {-3/8, -1/2, 1/4, -1/4, 0, 3/8}, + }, + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", "size[8,9]".. + "list[current_name;main;2,0;4,4;]".. + "list[current_player;main;0,5;8,4;]" + ) + meta:set_string("infotext", "Turret Gun") + local inv = meta:get_inventory() + inv:set_size("main", 16) + end, + after_place_node = function(pos, placer) + local node = minetest.get_node({x=pos.x, y=pos.y + 1, z=pos.z}) + if node.name == "air" then + if not get_turret_entity(pos) then + minetest.add_entity(pos, "shooter:turret_entity") + end + end + end, + can_dig = function(pos, player) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + return inv:is_empty("main") + end, + after_destruct = function(pos, oldnode) + local ent = get_turret_entity(pos) + if ent then + ent.object:remove() + end + end, + mesecons = { + effector = { + action_on = function(pos, node) + local ent = get_turret_entity(pos) + if ent then + if ent.firing == false then + ent:fire() + ent.firing = true + end + end + end, + action_off = function(pos, node) + local ent = get_turret_entity(pos) + if ent then + ent.firing = false + end + end, + }, + }, +}) + +if SHOOTER_ENABLE_CRAFTING == true then + minetest.register_craft({ + output = "shooter:turret", + recipe = { + {"default:bronze_ingot", "default:bronze_ingot", "default:steel_ingot"}, + {"", "default:bronze_ingot", "default:steel_ingot"}, + {"", "default:diamond", ""}, + }, + }) +end + diff --git a/mods/signs_lib/LICENSE b/mods/signs_lib/LICENSE new file mode 100644 index 0000000..65c5ca8 --- /dev/null +++ b/mods/signs_lib/LICENSE @@ -0,0 +1,165 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. diff --git a/mods/signs_lib/copyright.txt b/mods/signs_lib/copyright.txt new file mode 100644 index 0000000..690bdc5 --- /dev/null +++ b/mods/signs_lib/copyright.txt @@ -0,0 +1,12 @@ +Most code and all textures by Vanessa Ezekowitz. + +Some code copied and modified from the game's default mods (especially +doors) and ironzorg's flowers mod. + +Licenses: +* For the lua code, LGPL. +* For the door open/close sound, CC-By-SA 3.0 by Slanesh on freesound.org + http://freesound.org/people/Slanesh/sounds/31768/ +* For the gate open/close sound, CC0, by j1987 on freesound.org + http://freesound.org/people/j1987/sounds/106116/ +* For all images and everything else, WTFPL. diff --git a/mods/signs_lib/depends.txt b/mods/signs_lib/depends.txt new file mode 100644 index 0000000..c48fe0d --- /dev/null +++ b/mods/signs_lib/depends.txt @@ -0,0 +1,3 @@ +default +intllib? + diff --git a/mods/signs_lib/extra_fonts/11px/hdf_20.png b/mods/signs_lib/extra_fonts/11px/hdf_20.png new file mode 100644 index 0000000..b904af9 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_20.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_21.png b/mods/signs_lib/extra_fonts/11px/hdf_21.png new file mode 100644 index 0000000..d7ec314 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_21.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_22.png b/mods/signs_lib/extra_fonts/11px/hdf_22.png new file mode 100644 index 0000000..452cba5 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_22.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_23.png b/mods/signs_lib/extra_fonts/11px/hdf_23.png new file mode 100644 index 0000000..5f6d8bd Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_23.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_24.png b/mods/signs_lib/extra_fonts/11px/hdf_24.png new file mode 100644 index 0000000..d994e14 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_24.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_25.png b/mods/signs_lib/extra_fonts/11px/hdf_25.png new file mode 100644 index 0000000..8136f8a Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_25.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_26.png b/mods/signs_lib/extra_fonts/11px/hdf_26.png new file mode 100644 index 0000000..50c8e75 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_26.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_27.png b/mods/signs_lib/extra_fonts/11px/hdf_27.png new file mode 100644 index 0000000..79a02b7 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_27.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_28.png b/mods/signs_lib/extra_fonts/11px/hdf_28.png new file mode 100644 index 0000000..db5a30c Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_28.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_29.png b/mods/signs_lib/extra_fonts/11px/hdf_29.png new file mode 100644 index 0000000..4c781af Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_29.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_2a.png b/mods/signs_lib/extra_fonts/11px/hdf_2a.png new file mode 100644 index 0000000..bb1eae9 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_2a.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_2b.png b/mods/signs_lib/extra_fonts/11px/hdf_2b.png new file mode 100644 index 0000000..4269e56 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_2b.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_2c.png b/mods/signs_lib/extra_fonts/11px/hdf_2c.png new file mode 100644 index 0000000..955d975 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_2c.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_2d.png b/mods/signs_lib/extra_fonts/11px/hdf_2d.png new file mode 100644 index 0000000..5a8899b Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_2d.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_2e.png b/mods/signs_lib/extra_fonts/11px/hdf_2e.png new file mode 100644 index 0000000..feb3140 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_2e.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_2f.png b/mods/signs_lib/extra_fonts/11px/hdf_2f.png new file mode 100644 index 0000000..e92eac6 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_2f.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_30.png b/mods/signs_lib/extra_fonts/11px/hdf_30.png new file mode 100644 index 0000000..1519018 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_30.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_31.png b/mods/signs_lib/extra_fonts/11px/hdf_31.png new file mode 100644 index 0000000..09f0f1a Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_31.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_32.png b/mods/signs_lib/extra_fonts/11px/hdf_32.png new file mode 100644 index 0000000..fb11456 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_32.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_33.png b/mods/signs_lib/extra_fonts/11px/hdf_33.png new file mode 100644 index 0000000..04921f7 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_33.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_34.png b/mods/signs_lib/extra_fonts/11px/hdf_34.png new file mode 100644 index 0000000..b927f08 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_34.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_35.png b/mods/signs_lib/extra_fonts/11px/hdf_35.png new file mode 100644 index 0000000..fbe7265 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_35.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_36.png b/mods/signs_lib/extra_fonts/11px/hdf_36.png new file mode 100644 index 0000000..56d7b58 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_36.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_37.png b/mods/signs_lib/extra_fonts/11px/hdf_37.png new file mode 100644 index 0000000..05c1793 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_37.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_38.png b/mods/signs_lib/extra_fonts/11px/hdf_38.png new file mode 100644 index 0000000..e8a9658 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_38.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_39.png b/mods/signs_lib/extra_fonts/11px/hdf_39.png new file mode 100644 index 0000000..1e33ac3 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_39.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_3a.png b/mods/signs_lib/extra_fonts/11px/hdf_3a.png new file mode 100644 index 0000000..ab2a3ce Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_3a.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_3b.png b/mods/signs_lib/extra_fonts/11px/hdf_3b.png new file mode 100644 index 0000000..2ecbcd5 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_3b.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_3c.png b/mods/signs_lib/extra_fonts/11px/hdf_3c.png new file mode 100644 index 0000000..c3712d4 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_3c.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_3d.png b/mods/signs_lib/extra_fonts/11px/hdf_3d.png new file mode 100644 index 0000000..a7fa62c Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_3d.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_3e.png b/mods/signs_lib/extra_fonts/11px/hdf_3e.png new file mode 100644 index 0000000..828bb4a Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_3e.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_3f.png b/mods/signs_lib/extra_fonts/11px/hdf_3f.png new file mode 100644 index 0000000..9ec78af Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_3f.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_40.png b/mods/signs_lib/extra_fonts/11px/hdf_40.png new file mode 100644 index 0000000..86e81a9 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_40.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_41.png b/mods/signs_lib/extra_fonts/11px/hdf_41.png new file mode 100644 index 0000000..79b1fa1 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_41.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_42.png b/mods/signs_lib/extra_fonts/11px/hdf_42.png new file mode 100644 index 0000000..28fdadc Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_42.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_43.png b/mods/signs_lib/extra_fonts/11px/hdf_43.png new file mode 100644 index 0000000..6dd5b4b Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_43.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_44.png b/mods/signs_lib/extra_fonts/11px/hdf_44.png new file mode 100644 index 0000000..d0707c6 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_44.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_45.png b/mods/signs_lib/extra_fonts/11px/hdf_45.png new file mode 100644 index 0000000..e9930a1 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_45.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_46.png b/mods/signs_lib/extra_fonts/11px/hdf_46.png new file mode 100644 index 0000000..6fb8f1f Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_46.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_47.png b/mods/signs_lib/extra_fonts/11px/hdf_47.png new file mode 100644 index 0000000..f54783d Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_47.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_48.png b/mods/signs_lib/extra_fonts/11px/hdf_48.png new file mode 100644 index 0000000..1fc082d Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_48.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_49.png b/mods/signs_lib/extra_fonts/11px/hdf_49.png new file mode 100644 index 0000000..af588ee Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_49.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_4a.png b/mods/signs_lib/extra_fonts/11px/hdf_4a.png new file mode 100644 index 0000000..9135cca Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_4a.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_4b.png b/mods/signs_lib/extra_fonts/11px/hdf_4b.png new file mode 100644 index 0000000..7831019 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_4b.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_4c.png b/mods/signs_lib/extra_fonts/11px/hdf_4c.png new file mode 100644 index 0000000..d717030 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_4c.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_4d.png b/mods/signs_lib/extra_fonts/11px/hdf_4d.png new file mode 100644 index 0000000..92fe7d4 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_4d.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_4e.png b/mods/signs_lib/extra_fonts/11px/hdf_4e.png new file mode 100644 index 0000000..cd3a3dd Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_4e.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_4f.png b/mods/signs_lib/extra_fonts/11px/hdf_4f.png new file mode 100644 index 0000000..b73b4d4 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_4f.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_50.png b/mods/signs_lib/extra_fonts/11px/hdf_50.png new file mode 100644 index 0000000..6647606 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_50.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_51.png b/mods/signs_lib/extra_fonts/11px/hdf_51.png new file mode 100644 index 0000000..c45c64a Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_51.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_52.png b/mods/signs_lib/extra_fonts/11px/hdf_52.png new file mode 100644 index 0000000..78efd10 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_52.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_53.png b/mods/signs_lib/extra_fonts/11px/hdf_53.png new file mode 100644 index 0000000..e576219 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_53.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_54.png b/mods/signs_lib/extra_fonts/11px/hdf_54.png new file mode 100644 index 0000000..17b556a Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_54.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_55.png b/mods/signs_lib/extra_fonts/11px/hdf_55.png new file mode 100644 index 0000000..60d9008 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_55.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_56.png b/mods/signs_lib/extra_fonts/11px/hdf_56.png new file mode 100644 index 0000000..a21378e Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_56.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_57.png b/mods/signs_lib/extra_fonts/11px/hdf_57.png new file mode 100644 index 0000000..92dedf7 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_57.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_58.png b/mods/signs_lib/extra_fonts/11px/hdf_58.png new file mode 100644 index 0000000..bce83e3 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_58.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_59.png b/mods/signs_lib/extra_fonts/11px/hdf_59.png new file mode 100644 index 0000000..248964d Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_59.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_5a.png b/mods/signs_lib/extra_fonts/11px/hdf_5a.png new file mode 100644 index 0000000..b4183f3 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_5a.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_5b.png b/mods/signs_lib/extra_fonts/11px/hdf_5b.png new file mode 100644 index 0000000..7161fd1 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_5b.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_5c.png b/mods/signs_lib/extra_fonts/11px/hdf_5c.png new file mode 100644 index 0000000..6ff667c Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_5c.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_5d.png b/mods/signs_lib/extra_fonts/11px/hdf_5d.png new file mode 100644 index 0000000..58aa3b4 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_5d.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_5e.png b/mods/signs_lib/extra_fonts/11px/hdf_5e.png new file mode 100644 index 0000000..f0b0f07 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_5e.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_5f.png b/mods/signs_lib/extra_fonts/11px/hdf_5f.png new file mode 100644 index 0000000..4765738 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_5f.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_60.png b/mods/signs_lib/extra_fonts/11px/hdf_60.png new file mode 100644 index 0000000..b9d7ef1 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_60.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_61.png b/mods/signs_lib/extra_fonts/11px/hdf_61.png new file mode 100644 index 0000000..4200cf8 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_61.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_62.png b/mods/signs_lib/extra_fonts/11px/hdf_62.png new file mode 100644 index 0000000..3665a5e Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_62.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_63.png b/mods/signs_lib/extra_fonts/11px/hdf_63.png new file mode 100644 index 0000000..d80bfd7 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_63.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_64.png b/mods/signs_lib/extra_fonts/11px/hdf_64.png new file mode 100644 index 0000000..4194720 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_64.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_65.png b/mods/signs_lib/extra_fonts/11px/hdf_65.png new file mode 100644 index 0000000..8a02a46 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_65.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_66.png b/mods/signs_lib/extra_fonts/11px/hdf_66.png new file mode 100644 index 0000000..20ddc9b Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_66.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_67.png b/mods/signs_lib/extra_fonts/11px/hdf_67.png new file mode 100644 index 0000000..9cd21cc Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_67.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_68.png b/mods/signs_lib/extra_fonts/11px/hdf_68.png new file mode 100644 index 0000000..be34c84 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_68.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_69.png b/mods/signs_lib/extra_fonts/11px/hdf_69.png new file mode 100644 index 0000000..b82d55c Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_69.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_6a.png b/mods/signs_lib/extra_fonts/11px/hdf_6a.png new file mode 100644 index 0000000..82d7431 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_6a.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_6b.png b/mods/signs_lib/extra_fonts/11px/hdf_6b.png new file mode 100644 index 0000000..28a0738 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_6b.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_6c.png b/mods/signs_lib/extra_fonts/11px/hdf_6c.png new file mode 100644 index 0000000..af588ee Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_6c.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_6d.png b/mods/signs_lib/extra_fonts/11px/hdf_6d.png new file mode 100644 index 0000000..f2a0f3d Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_6d.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_6e.png b/mods/signs_lib/extra_fonts/11px/hdf_6e.png new file mode 100644 index 0000000..722d89c Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_6e.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_6f.png b/mods/signs_lib/extra_fonts/11px/hdf_6f.png new file mode 100644 index 0000000..e9e6998 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_6f.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_70.png b/mods/signs_lib/extra_fonts/11px/hdf_70.png new file mode 100644 index 0000000..99b949c Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_70.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_71.png b/mods/signs_lib/extra_fonts/11px/hdf_71.png new file mode 100644 index 0000000..90076fc Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_71.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_72.png b/mods/signs_lib/extra_fonts/11px/hdf_72.png new file mode 100644 index 0000000..10a56c2 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_72.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_73.png b/mods/signs_lib/extra_fonts/11px/hdf_73.png new file mode 100644 index 0000000..9bb1bde Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_73.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_74.png b/mods/signs_lib/extra_fonts/11px/hdf_74.png new file mode 100644 index 0000000..734c6d4 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_74.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_75.png b/mods/signs_lib/extra_fonts/11px/hdf_75.png new file mode 100644 index 0000000..ef854b6 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_75.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_76.png b/mods/signs_lib/extra_fonts/11px/hdf_76.png new file mode 100644 index 0000000..6c11b75 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_76.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_77.png b/mods/signs_lib/extra_fonts/11px/hdf_77.png new file mode 100644 index 0000000..a4be8af Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_77.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_78.png b/mods/signs_lib/extra_fonts/11px/hdf_78.png new file mode 100644 index 0000000..74dfaab Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_78.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_79.png b/mods/signs_lib/extra_fonts/11px/hdf_79.png new file mode 100644 index 0000000..26839bf Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_79.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_7a.png b/mods/signs_lib/extra_fonts/11px/hdf_7a.png new file mode 100644 index 0000000..630c9ba Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_7a.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_7b.png b/mods/signs_lib/extra_fonts/11px/hdf_7b.png new file mode 100644 index 0000000..578ba74 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_7b.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_7c.png b/mods/signs_lib/extra_fonts/11px/hdf_7c.png new file mode 100644 index 0000000..80baa63 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_7c.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_7d.png b/mods/signs_lib/extra_fonts/11px/hdf_7d.png new file mode 100644 index 0000000..f3d6c1c Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_7d.png differ diff --git a/mods/signs_lib/extra_fonts/11px/hdf_7e.png b/mods/signs_lib/extra_fonts/11px/hdf_7e.png new file mode 100644 index 0000000..2c22355 Binary files /dev/null and b/mods/signs_lib/extra_fonts/11px/hdf_7e.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_20.png b/mods/signs_lib/extra_fonts/17px/hdf_20.png new file mode 100644 index 0000000..465982d Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_20.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_21.png b/mods/signs_lib/extra_fonts/17px/hdf_21.png new file mode 100644 index 0000000..01929d4 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_21.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_22.png b/mods/signs_lib/extra_fonts/17px/hdf_22.png new file mode 100644 index 0000000..2acde25 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_22.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_23.png b/mods/signs_lib/extra_fonts/17px/hdf_23.png new file mode 100644 index 0000000..ace1437 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_23.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_24.png b/mods/signs_lib/extra_fonts/17px/hdf_24.png new file mode 100644 index 0000000..909b015 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_24.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_25.png b/mods/signs_lib/extra_fonts/17px/hdf_25.png new file mode 100644 index 0000000..30a7829 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_25.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_26.png b/mods/signs_lib/extra_fonts/17px/hdf_26.png new file mode 100644 index 0000000..d29936c Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_26.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_27.png b/mods/signs_lib/extra_fonts/17px/hdf_27.png new file mode 100644 index 0000000..9844e92 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_27.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_28.png b/mods/signs_lib/extra_fonts/17px/hdf_28.png new file mode 100644 index 0000000..4810d75 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_28.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_29.png b/mods/signs_lib/extra_fonts/17px/hdf_29.png new file mode 100644 index 0000000..e5ff2b7 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_29.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_2a.png b/mods/signs_lib/extra_fonts/17px/hdf_2a.png new file mode 100644 index 0000000..5408897 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_2a.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_2b.png b/mods/signs_lib/extra_fonts/17px/hdf_2b.png new file mode 100644 index 0000000..9ad7d9e Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_2b.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_2c.png b/mods/signs_lib/extra_fonts/17px/hdf_2c.png new file mode 100644 index 0000000..cb3eae0 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_2c.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_2d.png b/mods/signs_lib/extra_fonts/17px/hdf_2d.png new file mode 100644 index 0000000..c252f37 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_2d.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_2e.png b/mods/signs_lib/extra_fonts/17px/hdf_2e.png new file mode 100644 index 0000000..d3aab5b Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_2e.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_2f.png b/mods/signs_lib/extra_fonts/17px/hdf_2f.png new file mode 100644 index 0000000..48c25f2 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_2f.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_30.png b/mods/signs_lib/extra_fonts/17px/hdf_30.png new file mode 100644 index 0000000..56ec3e7 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_30.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_31.png b/mods/signs_lib/extra_fonts/17px/hdf_31.png new file mode 100644 index 0000000..c526e86 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_31.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_32.png b/mods/signs_lib/extra_fonts/17px/hdf_32.png new file mode 100644 index 0000000..339d933 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_32.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_33.png b/mods/signs_lib/extra_fonts/17px/hdf_33.png new file mode 100644 index 0000000..aba5466 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_33.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_34.png b/mods/signs_lib/extra_fonts/17px/hdf_34.png new file mode 100644 index 0000000..9e71d10 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_34.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_35.png b/mods/signs_lib/extra_fonts/17px/hdf_35.png new file mode 100644 index 0000000..c12370f Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_35.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_36.png b/mods/signs_lib/extra_fonts/17px/hdf_36.png new file mode 100644 index 0000000..bebb32a Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_36.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_37.png b/mods/signs_lib/extra_fonts/17px/hdf_37.png new file mode 100644 index 0000000..73d9bb9 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_37.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_38.png b/mods/signs_lib/extra_fonts/17px/hdf_38.png new file mode 100644 index 0000000..baf7f6f Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_38.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_39.png b/mods/signs_lib/extra_fonts/17px/hdf_39.png new file mode 100644 index 0000000..9572947 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_39.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_3a.png b/mods/signs_lib/extra_fonts/17px/hdf_3a.png new file mode 100644 index 0000000..23ba0cd Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_3a.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_3b.png b/mods/signs_lib/extra_fonts/17px/hdf_3b.png new file mode 100644 index 0000000..c4b467f Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_3b.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_3c.png b/mods/signs_lib/extra_fonts/17px/hdf_3c.png new file mode 100644 index 0000000..566ba49 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_3c.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_3d.png b/mods/signs_lib/extra_fonts/17px/hdf_3d.png new file mode 100644 index 0000000..50e6c6f Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_3d.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_3e.png b/mods/signs_lib/extra_fonts/17px/hdf_3e.png new file mode 100644 index 0000000..090f8ca Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_3e.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_3f.png b/mods/signs_lib/extra_fonts/17px/hdf_3f.png new file mode 100644 index 0000000..dce4727 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_3f.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_40.png b/mods/signs_lib/extra_fonts/17px/hdf_40.png new file mode 100644 index 0000000..65533fd Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_40.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_41.png b/mods/signs_lib/extra_fonts/17px/hdf_41.png new file mode 100644 index 0000000..e30c27c Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_41.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_42.png b/mods/signs_lib/extra_fonts/17px/hdf_42.png new file mode 100644 index 0000000..28d480b Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_42.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_43.png b/mods/signs_lib/extra_fonts/17px/hdf_43.png new file mode 100644 index 0000000..db57d8d Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_43.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_44.png b/mods/signs_lib/extra_fonts/17px/hdf_44.png new file mode 100644 index 0000000..cca9575 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_44.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_45.png b/mods/signs_lib/extra_fonts/17px/hdf_45.png new file mode 100644 index 0000000..07e772b Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_45.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_46.png b/mods/signs_lib/extra_fonts/17px/hdf_46.png new file mode 100644 index 0000000..24de187 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_46.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_47.png b/mods/signs_lib/extra_fonts/17px/hdf_47.png new file mode 100644 index 0000000..0deef83 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_47.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_48.png b/mods/signs_lib/extra_fonts/17px/hdf_48.png new file mode 100644 index 0000000..f85b4ae Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_48.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_49.png b/mods/signs_lib/extra_fonts/17px/hdf_49.png new file mode 100644 index 0000000..1f02728 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_49.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_4a.png b/mods/signs_lib/extra_fonts/17px/hdf_4a.png new file mode 100644 index 0000000..b2f7bef Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_4a.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_4b.png b/mods/signs_lib/extra_fonts/17px/hdf_4b.png new file mode 100644 index 0000000..e8d52d6 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_4b.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_4c.png b/mods/signs_lib/extra_fonts/17px/hdf_4c.png new file mode 100644 index 0000000..94d7d48 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_4c.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_4d.png b/mods/signs_lib/extra_fonts/17px/hdf_4d.png new file mode 100644 index 0000000..0ee8eb4 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_4d.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_4e.png b/mods/signs_lib/extra_fonts/17px/hdf_4e.png new file mode 100644 index 0000000..8ff83d6 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_4e.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_4f.png b/mods/signs_lib/extra_fonts/17px/hdf_4f.png new file mode 100644 index 0000000..b278ccc Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_4f.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_50.png b/mods/signs_lib/extra_fonts/17px/hdf_50.png new file mode 100644 index 0000000..33b52fd Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_50.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_51.png b/mods/signs_lib/extra_fonts/17px/hdf_51.png new file mode 100644 index 0000000..892747c Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_51.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_52.png b/mods/signs_lib/extra_fonts/17px/hdf_52.png new file mode 100644 index 0000000..acb395e Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_52.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_53.png b/mods/signs_lib/extra_fonts/17px/hdf_53.png new file mode 100644 index 0000000..028f284 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_53.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_54.png b/mods/signs_lib/extra_fonts/17px/hdf_54.png new file mode 100644 index 0000000..3bd0a2b Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_54.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_55.png b/mods/signs_lib/extra_fonts/17px/hdf_55.png new file mode 100644 index 0000000..81643f9 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_55.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_56.png b/mods/signs_lib/extra_fonts/17px/hdf_56.png new file mode 100644 index 0000000..8726f5b Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_56.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_57.png b/mods/signs_lib/extra_fonts/17px/hdf_57.png new file mode 100644 index 0000000..5e8d9d0 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_57.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_58.png b/mods/signs_lib/extra_fonts/17px/hdf_58.png new file mode 100644 index 0000000..2abbda3 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_58.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_59.png b/mods/signs_lib/extra_fonts/17px/hdf_59.png new file mode 100644 index 0000000..ff45093 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_59.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_5a.png b/mods/signs_lib/extra_fonts/17px/hdf_5a.png new file mode 100644 index 0000000..5c706ce Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_5a.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_5b.png b/mods/signs_lib/extra_fonts/17px/hdf_5b.png new file mode 100644 index 0000000..2592f1f Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_5b.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_5c.png b/mods/signs_lib/extra_fonts/17px/hdf_5c.png new file mode 100644 index 0000000..406d634 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_5c.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_5d.png b/mods/signs_lib/extra_fonts/17px/hdf_5d.png new file mode 100644 index 0000000..a5efa37 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_5d.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_5e.png b/mods/signs_lib/extra_fonts/17px/hdf_5e.png new file mode 100644 index 0000000..7f610d8 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_5e.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_5f.png b/mods/signs_lib/extra_fonts/17px/hdf_5f.png new file mode 100644 index 0000000..07cce5a Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_5f.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_60.png b/mods/signs_lib/extra_fonts/17px/hdf_60.png new file mode 100644 index 0000000..cd4e0fb Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_60.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_61.png b/mods/signs_lib/extra_fonts/17px/hdf_61.png new file mode 100644 index 0000000..dc019ba Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_61.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_62.png b/mods/signs_lib/extra_fonts/17px/hdf_62.png new file mode 100644 index 0000000..285d0b2 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_62.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_63.png b/mods/signs_lib/extra_fonts/17px/hdf_63.png new file mode 100644 index 0000000..8781b8a Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_63.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_64.png b/mods/signs_lib/extra_fonts/17px/hdf_64.png new file mode 100644 index 0000000..16c9a28 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_64.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_65.png b/mods/signs_lib/extra_fonts/17px/hdf_65.png new file mode 100644 index 0000000..810d9c9 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_65.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_66.png b/mods/signs_lib/extra_fonts/17px/hdf_66.png new file mode 100644 index 0000000..411ca57 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_66.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_67.png b/mods/signs_lib/extra_fonts/17px/hdf_67.png new file mode 100644 index 0000000..d8820dd Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_67.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_68.png b/mods/signs_lib/extra_fonts/17px/hdf_68.png new file mode 100644 index 0000000..5b51d05 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_68.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_69.png b/mods/signs_lib/extra_fonts/17px/hdf_69.png new file mode 100644 index 0000000..55f1a22 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_69.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_6a.png b/mods/signs_lib/extra_fonts/17px/hdf_6a.png new file mode 100644 index 0000000..c20e222 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_6a.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_6b.png b/mods/signs_lib/extra_fonts/17px/hdf_6b.png new file mode 100644 index 0000000..fc34fc5 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_6b.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_6c.png b/mods/signs_lib/extra_fonts/17px/hdf_6c.png new file mode 100644 index 0000000..1f02728 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_6c.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_6d.png b/mods/signs_lib/extra_fonts/17px/hdf_6d.png new file mode 100644 index 0000000..6c0ae93 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_6d.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_6e.png b/mods/signs_lib/extra_fonts/17px/hdf_6e.png new file mode 100644 index 0000000..4f4dec7 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_6e.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_6f.png b/mods/signs_lib/extra_fonts/17px/hdf_6f.png new file mode 100644 index 0000000..921c611 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_6f.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_70.png b/mods/signs_lib/extra_fonts/17px/hdf_70.png new file mode 100644 index 0000000..8202199 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_70.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_71.png b/mods/signs_lib/extra_fonts/17px/hdf_71.png new file mode 100644 index 0000000..c02171f Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_71.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_72.png b/mods/signs_lib/extra_fonts/17px/hdf_72.png new file mode 100644 index 0000000..757b9c8 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_72.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_73.png b/mods/signs_lib/extra_fonts/17px/hdf_73.png new file mode 100644 index 0000000..e38497d Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_73.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_74.png b/mods/signs_lib/extra_fonts/17px/hdf_74.png new file mode 100644 index 0000000..10f9cfa Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_74.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_75.png b/mods/signs_lib/extra_fonts/17px/hdf_75.png new file mode 100644 index 0000000..377416b Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_75.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_76.png b/mods/signs_lib/extra_fonts/17px/hdf_76.png new file mode 100644 index 0000000..dc558d3 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_76.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_77.png b/mods/signs_lib/extra_fonts/17px/hdf_77.png new file mode 100644 index 0000000..6a14298 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_77.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_78.png b/mods/signs_lib/extra_fonts/17px/hdf_78.png new file mode 100644 index 0000000..38b4be0 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_78.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_79.png b/mods/signs_lib/extra_fonts/17px/hdf_79.png new file mode 100644 index 0000000..8859fb4 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_79.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_7a.png b/mods/signs_lib/extra_fonts/17px/hdf_7a.png new file mode 100644 index 0000000..c42c84a Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_7a.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_7b.png b/mods/signs_lib/extra_fonts/17px/hdf_7b.png new file mode 100644 index 0000000..c0ee072 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_7b.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_7c.png b/mods/signs_lib/extra_fonts/17px/hdf_7c.png new file mode 100644 index 0000000..6e9949d Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_7c.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_7d.png b/mods/signs_lib/extra_fonts/17px/hdf_7d.png new file mode 100644 index 0000000..6162caa Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_7d.png differ diff --git a/mods/signs_lib/extra_fonts/17px/hdf_7e.png b/mods/signs_lib/extra_fonts/17px/hdf_7e.png new file mode 100644 index 0000000..ec762d5 Binary files /dev/null and b/mods/signs_lib/extra_fonts/17px/hdf_7e.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_20.png b/mods/signs_lib/extra_fonts/25px/hdf_20.png new file mode 100644 index 0000000..d5bcc48 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_20.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_21.png b/mods/signs_lib/extra_fonts/25px/hdf_21.png new file mode 100644 index 0000000..7c8ec69 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_21.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_22.png b/mods/signs_lib/extra_fonts/25px/hdf_22.png new file mode 100644 index 0000000..fc86e14 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_22.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_23.png b/mods/signs_lib/extra_fonts/25px/hdf_23.png new file mode 100644 index 0000000..d3fcfe9 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_23.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_24.png b/mods/signs_lib/extra_fonts/25px/hdf_24.png new file mode 100644 index 0000000..d1ad143 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_24.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_25.png b/mods/signs_lib/extra_fonts/25px/hdf_25.png new file mode 100644 index 0000000..de7ed0b Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_25.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_26.png b/mods/signs_lib/extra_fonts/25px/hdf_26.png new file mode 100644 index 0000000..6352ba9 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_26.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_27.png b/mods/signs_lib/extra_fonts/25px/hdf_27.png new file mode 100644 index 0000000..60fb3a9 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_27.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_28.png b/mods/signs_lib/extra_fonts/25px/hdf_28.png new file mode 100644 index 0000000..995aab2 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_28.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_29.png b/mods/signs_lib/extra_fonts/25px/hdf_29.png new file mode 100644 index 0000000..4abbf25 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_29.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_2a.png b/mods/signs_lib/extra_fonts/25px/hdf_2a.png new file mode 100644 index 0000000..9735f5a Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_2a.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_2b.png b/mods/signs_lib/extra_fonts/25px/hdf_2b.png new file mode 100644 index 0000000..1b54174 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_2b.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_2c.png b/mods/signs_lib/extra_fonts/25px/hdf_2c.png new file mode 100644 index 0000000..20fca02 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_2c.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_2d.png b/mods/signs_lib/extra_fonts/25px/hdf_2d.png new file mode 100644 index 0000000..4eff010 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_2d.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_2e.png b/mods/signs_lib/extra_fonts/25px/hdf_2e.png new file mode 100644 index 0000000..14a9559 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_2e.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_2f.png b/mods/signs_lib/extra_fonts/25px/hdf_2f.png new file mode 100644 index 0000000..e5bfcd1 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_2f.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_30.png b/mods/signs_lib/extra_fonts/25px/hdf_30.png new file mode 100644 index 0000000..07e0b9c Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_30.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_31.png b/mods/signs_lib/extra_fonts/25px/hdf_31.png new file mode 100644 index 0000000..e728866 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_31.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_32.png b/mods/signs_lib/extra_fonts/25px/hdf_32.png new file mode 100644 index 0000000..473a5e7 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_32.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_33.png b/mods/signs_lib/extra_fonts/25px/hdf_33.png new file mode 100644 index 0000000..5e00f4a Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_33.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_34.png b/mods/signs_lib/extra_fonts/25px/hdf_34.png new file mode 100644 index 0000000..c457ccb Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_34.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_35.png b/mods/signs_lib/extra_fonts/25px/hdf_35.png new file mode 100644 index 0000000..d088a10 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_35.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_36.png b/mods/signs_lib/extra_fonts/25px/hdf_36.png new file mode 100644 index 0000000..f629536 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_36.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_37.png b/mods/signs_lib/extra_fonts/25px/hdf_37.png new file mode 100644 index 0000000..fe37648 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_37.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_38.png b/mods/signs_lib/extra_fonts/25px/hdf_38.png new file mode 100644 index 0000000..d5bfdbd Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_38.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_39.png b/mods/signs_lib/extra_fonts/25px/hdf_39.png new file mode 100644 index 0000000..a1fc0cf Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_39.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_3a.png b/mods/signs_lib/extra_fonts/25px/hdf_3a.png new file mode 100644 index 0000000..9a51d5f Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_3a.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_3b.png b/mods/signs_lib/extra_fonts/25px/hdf_3b.png new file mode 100644 index 0000000..9b193fa Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_3b.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_3c.png b/mods/signs_lib/extra_fonts/25px/hdf_3c.png new file mode 100644 index 0000000..3a7e93f Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_3c.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_3d.png b/mods/signs_lib/extra_fonts/25px/hdf_3d.png new file mode 100644 index 0000000..08311bb Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_3d.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_3e.png b/mods/signs_lib/extra_fonts/25px/hdf_3e.png new file mode 100644 index 0000000..dfab523 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_3e.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_3f.png b/mods/signs_lib/extra_fonts/25px/hdf_3f.png new file mode 100644 index 0000000..6a080da Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_3f.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_40.png b/mods/signs_lib/extra_fonts/25px/hdf_40.png new file mode 100644 index 0000000..d98ab16 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_40.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_41.png b/mods/signs_lib/extra_fonts/25px/hdf_41.png new file mode 100644 index 0000000..e486bff Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_41.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_42.png b/mods/signs_lib/extra_fonts/25px/hdf_42.png new file mode 100644 index 0000000..51b8721 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_42.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_43.png b/mods/signs_lib/extra_fonts/25px/hdf_43.png new file mode 100644 index 0000000..48d51b2 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_43.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_44.png b/mods/signs_lib/extra_fonts/25px/hdf_44.png new file mode 100644 index 0000000..3794698 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_44.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_45.png b/mods/signs_lib/extra_fonts/25px/hdf_45.png new file mode 100644 index 0000000..4b250d0 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_45.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_46.png b/mods/signs_lib/extra_fonts/25px/hdf_46.png new file mode 100644 index 0000000..10b750e Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_46.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_47.png b/mods/signs_lib/extra_fonts/25px/hdf_47.png new file mode 100644 index 0000000..90ea6aa Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_47.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_48.png b/mods/signs_lib/extra_fonts/25px/hdf_48.png new file mode 100644 index 0000000..587f7d5 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_48.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_49.png b/mods/signs_lib/extra_fonts/25px/hdf_49.png new file mode 100644 index 0000000..421dc2b Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_49.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_4a.png b/mods/signs_lib/extra_fonts/25px/hdf_4a.png new file mode 100644 index 0000000..12e27b9 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_4a.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_4b.png b/mods/signs_lib/extra_fonts/25px/hdf_4b.png new file mode 100644 index 0000000..81d7359 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_4b.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_4c.png b/mods/signs_lib/extra_fonts/25px/hdf_4c.png new file mode 100644 index 0000000..3825c6e Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_4c.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_4d.png b/mods/signs_lib/extra_fonts/25px/hdf_4d.png new file mode 100644 index 0000000..7b1cad0 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_4d.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_4e.png b/mods/signs_lib/extra_fonts/25px/hdf_4e.png new file mode 100644 index 0000000..1ab03a6 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_4e.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_4f.png b/mods/signs_lib/extra_fonts/25px/hdf_4f.png new file mode 100644 index 0000000..cecc6fe Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_4f.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_50.png b/mods/signs_lib/extra_fonts/25px/hdf_50.png new file mode 100644 index 0000000..2c5734b Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_50.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_51.png b/mods/signs_lib/extra_fonts/25px/hdf_51.png new file mode 100644 index 0000000..3ec6550 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_51.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_52.png b/mods/signs_lib/extra_fonts/25px/hdf_52.png new file mode 100644 index 0000000..9052cc7 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_52.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_53.png b/mods/signs_lib/extra_fonts/25px/hdf_53.png new file mode 100644 index 0000000..42f8e00 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_53.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_54.png b/mods/signs_lib/extra_fonts/25px/hdf_54.png new file mode 100644 index 0000000..db43559 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_54.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_55.png b/mods/signs_lib/extra_fonts/25px/hdf_55.png new file mode 100644 index 0000000..bbc0f57 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_55.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_56.png b/mods/signs_lib/extra_fonts/25px/hdf_56.png new file mode 100644 index 0000000..023fa9a Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_56.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_57.png b/mods/signs_lib/extra_fonts/25px/hdf_57.png new file mode 100644 index 0000000..af88629 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_57.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_58.png b/mods/signs_lib/extra_fonts/25px/hdf_58.png new file mode 100644 index 0000000..a786367 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_58.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_59.png b/mods/signs_lib/extra_fonts/25px/hdf_59.png new file mode 100644 index 0000000..74dc431 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_59.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_5a.png b/mods/signs_lib/extra_fonts/25px/hdf_5a.png new file mode 100644 index 0000000..107969f Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_5a.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_5b.png b/mods/signs_lib/extra_fonts/25px/hdf_5b.png new file mode 100644 index 0000000..e3d9e9d Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_5b.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_5c.png b/mods/signs_lib/extra_fonts/25px/hdf_5c.png new file mode 100644 index 0000000..328a04c Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_5c.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_5d.png b/mods/signs_lib/extra_fonts/25px/hdf_5d.png new file mode 100644 index 0000000..edd4b0d Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_5d.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_5e.png b/mods/signs_lib/extra_fonts/25px/hdf_5e.png new file mode 100644 index 0000000..ff943f1 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_5e.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_5f.png b/mods/signs_lib/extra_fonts/25px/hdf_5f.png new file mode 100644 index 0000000..fd7afcf Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_5f.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_60.png b/mods/signs_lib/extra_fonts/25px/hdf_60.png new file mode 100644 index 0000000..3eeb984 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_60.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_61.png b/mods/signs_lib/extra_fonts/25px/hdf_61.png new file mode 100644 index 0000000..95f4561 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_61.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_62.png b/mods/signs_lib/extra_fonts/25px/hdf_62.png new file mode 100644 index 0000000..4295068 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_62.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_63.png b/mods/signs_lib/extra_fonts/25px/hdf_63.png new file mode 100644 index 0000000..5c475c6 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_63.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_64.png b/mods/signs_lib/extra_fonts/25px/hdf_64.png new file mode 100644 index 0000000..b0f8d9f Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_64.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_65.png b/mods/signs_lib/extra_fonts/25px/hdf_65.png new file mode 100644 index 0000000..6359127 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_65.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_66.png b/mods/signs_lib/extra_fonts/25px/hdf_66.png new file mode 100644 index 0000000..f2f68b1 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_66.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_67.png b/mods/signs_lib/extra_fonts/25px/hdf_67.png new file mode 100644 index 0000000..e4c730f Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_67.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_68.png b/mods/signs_lib/extra_fonts/25px/hdf_68.png new file mode 100644 index 0000000..1345d20 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_68.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_69.png b/mods/signs_lib/extra_fonts/25px/hdf_69.png new file mode 100644 index 0000000..4c3ae09 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_69.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_6a.png b/mods/signs_lib/extra_fonts/25px/hdf_6a.png new file mode 100644 index 0000000..9841483 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_6a.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_6b.png b/mods/signs_lib/extra_fonts/25px/hdf_6b.png new file mode 100644 index 0000000..b38f7ec Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_6b.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_6c.png b/mods/signs_lib/extra_fonts/25px/hdf_6c.png new file mode 100644 index 0000000..421dc2b Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_6c.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_6d.png b/mods/signs_lib/extra_fonts/25px/hdf_6d.png new file mode 100644 index 0000000..add3840 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_6d.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_6e.png b/mods/signs_lib/extra_fonts/25px/hdf_6e.png new file mode 100644 index 0000000..a9c5d6c Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_6e.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_6f.png b/mods/signs_lib/extra_fonts/25px/hdf_6f.png new file mode 100644 index 0000000..9b501df Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_6f.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_70.png b/mods/signs_lib/extra_fonts/25px/hdf_70.png new file mode 100644 index 0000000..ac35aab Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_70.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_71.png b/mods/signs_lib/extra_fonts/25px/hdf_71.png new file mode 100644 index 0000000..8a20c6e Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_71.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_72.png b/mods/signs_lib/extra_fonts/25px/hdf_72.png new file mode 100644 index 0000000..f1e9993 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_72.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_73.png b/mods/signs_lib/extra_fonts/25px/hdf_73.png new file mode 100644 index 0000000..dfa98ec Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_73.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_74.png b/mods/signs_lib/extra_fonts/25px/hdf_74.png new file mode 100644 index 0000000..b8f6eb2 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_74.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_75.png b/mods/signs_lib/extra_fonts/25px/hdf_75.png new file mode 100644 index 0000000..4fd226b Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_75.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_76.png b/mods/signs_lib/extra_fonts/25px/hdf_76.png new file mode 100644 index 0000000..9e651e7 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_76.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_77.png b/mods/signs_lib/extra_fonts/25px/hdf_77.png new file mode 100644 index 0000000..1f85782 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_77.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_78.png b/mods/signs_lib/extra_fonts/25px/hdf_78.png new file mode 100644 index 0000000..322b871 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_78.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_79.png b/mods/signs_lib/extra_fonts/25px/hdf_79.png new file mode 100644 index 0000000..91ac78d Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_79.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_7a.png b/mods/signs_lib/extra_fonts/25px/hdf_7a.png new file mode 100644 index 0000000..65fdb73 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_7a.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_7b.png b/mods/signs_lib/extra_fonts/25px/hdf_7b.png new file mode 100644 index 0000000..96c8eae Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_7b.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_7c.png b/mods/signs_lib/extra_fonts/25px/hdf_7c.png new file mode 100644 index 0000000..aa8cace Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_7c.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_7d.png b/mods/signs_lib/extra_fonts/25px/hdf_7d.png new file mode 100644 index 0000000..c609507 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_7d.png differ diff --git a/mods/signs_lib/extra_fonts/25px/hdf_7e.png b/mods/signs_lib/extra_fonts/25px/hdf_7e.png new file mode 100644 index 0000000..b741ee0 Binary files /dev/null and b/mods/signs_lib/extra_fonts/25px/hdf_7e.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_20.png b/mods/signs_lib/extra_fonts/34px/hdf_20.png new file mode 100644 index 0000000..a83236d Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_20.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_21.png b/mods/signs_lib/extra_fonts/34px/hdf_21.png new file mode 100644 index 0000000..d3b9f61 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_21.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_22.png b/mods/signs_lib/extra_fonts/34px/hdf_22.png new file mode 100644 index 0000000..ea354d8 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_22.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_23.png b/mods/signs_lib/extra_fonts/34px/hdf_23.png new file mode 100644 index 0000000..eded520 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_23.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_24.png b/mods/signs_lib/extra_fonts/34px/hdf_24.png new file mode 100644 index 0000000..9225f94 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_24.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_25.png b/mods/signs_lib/extra_fonts/34px/hdf_25.png new file mode 100644 index 0000000..473590f Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_25.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_26.png b/mods/signs_lib/extra_fonts/34px/hdf_26.png new file mode 100644 index 0000000..b7a9778 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_26.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_27.png b/mods/signs_lib/extra_fonts/34px/hdf_27.png new file mode 100644 index 0000000..5185d81 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_27.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_28.png b/mods/signs_lib/extra_fonts/34px/hdf_28.png new file mode 100644 index 0000000..8641fe1 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_28.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_29.png b/mods/signs_lib/extra_fonts/34px/hdf_29.png new file mode 100644 index 0000000..044366c Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_29.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_2a.png b/mods/signs_lib/extra_fonts/34px/hdf_2a.png new file mode 100644 index 0000000..3da8dc4 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_2a.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_2b.png b/mods/signs_lib/extra_fonts/34px/hdf_2b.png new file mode 100644 index 0000000..1c5be46 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_2b.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_2c.png b/mods/signs_lib/extra_fonts/34px/hdf_2c.png new file mode 100644 index 0000000..dd8de22 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_2c.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_2d.png b/mods/signs_lib/extra_fonts/34px/hdf_2d.png new file mode 100644 index 0000000..3a8f62c Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_2d.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_2e.png b/mods/signs_lib/extra_fonts/34px/hdf_2e.png new file mode 100644 index 0000000..860df5d Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_2e.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_2f.png b/mods/signs_lib/extra_fonts/34px/hdf_2f.png new file mode 100644 index 0000000..91b0e1c Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_2f.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_30.png b/mods/signs_lib/extra_fonts/34px/hdf_30.png new file mode 100644 index 0000000..c34aaf8 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_30.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_31.png b/mods/signs_lib/extra_fonts/34px/hdf_31.png new file mode 100644 index 0000000..091e6c9 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_31.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_32.png b/mods/signs_lib/extra_fonts/34px/hdf_32.png new file mode 100644 index 0000000..e43a58f Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_32.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_33.png b/mods/signs_lib/extra_fonts/34px/hdf_33.png new file mode 100644 index 0000000..7a873cf Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_33.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_34.png b/mods/signs_lib/extra_fonts/34px/hdf_34.png new file mode 100644 index 0000000..952d474 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_34.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_35.png b/mods/signs_lib/extra_fonts/34px/hdf_35.png new file mode 100644 index 0000000..4297837 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_35.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_36.png b/mods/signs_lib/extra_fonts/34px/hdf_36.png new file mode 100644 index 0000000..71c6e4b Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_36.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_37.png b/mods/signs_lib/extra_fonts/34px/hdf_37.png new file mode 100644 index 0000000..c73dc10 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_37.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_38.png b/mods/signs_lib/extra_fonts/34px/hdf_38.png new file mode 100644 index 0000000..4028298 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_38.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_39.png b/mods/signs_lib/extra_fonts/34px/hdf_39.png new file mode 100644 index 0000000..a240984 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_39.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_3a.png b/mods/signs_lib/extra_fonts/34px/hdf_3a.png new file mode 100644 index 0000000..a3d967c Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_3a.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_3b.png b/mods/signs_lib/extra_fonts/34px/hdf_3b.png new file mode 100644 index 0000000..becc877 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_3b.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_3c.png b/mods/signs_lib/extra_fonts/34px/hdf_3c.png new file mode 100644 index 0000000..0d3d291 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_3c.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_3d.png b/mods/signs_lib/extra_fonts/34px/hdf_3d.png new file mode 100644 index 0000000..952ffca Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_3d.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_3e.png b/mods/signs_lib/extra_fonts/34px/hdf_3e.png new file mode 100644 index 0000000..4367ba0 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_3e.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_3f.png b/mods/signs_lib/extra_fonts/34px/hdf_3f.png new file mode 100644 index 0000000..d1d18fc Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_3f.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_40.png b/mods/signs_lib/extra_fonts/34px/hdf_40.png new file mode 100644 index 0000000..5003e81 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_40.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_41.png b/mods/signs_lib/extra_fonts/34px/hdf_41.png new file mode 100644 index 0000000..22542bf Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_41.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_42.png b/mods/signs_lib/extra_fonts/34px/hdf_42.png new file mode 100644 index 0000000..8250ba6 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_42.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_43.png b/mods/signs_lib/extra_fonts/34px/hdf_43.png new file mode 100644 index 0000000..60df4ce Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_43.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_44.png b/mods/signs_lib/extra_fonts/34px/hdf_44.png new file mode 100644 index 0000000..3efe851 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_44.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_45.png b/mods/signs_lib/extra_fonts/34px/hdf_45.png new file mode 100644 index 0000000..edc2321 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_45.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_46.png b/mods/signs_lib/extra_fonts/34px/hdf_46.png new file mode 100644 index 0000000..a6c1c44 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_46.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_47.png b/mods/signs_lib/extra_fonts/34px/hdf_47.png new file mode 100644 index 0000000..67772e6 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_47.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_48.png b/mods/signs_lib/extra_fonts/34px/hdf_48.png new file mode 100644 index 0000000..db78806 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_48.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_49.png b/mods/signs_lib/extra_fonts/34px/hdf_49.png new file mode 100644 index 0000000..a07c15a Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_49.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_4a.png b/mods/signs_lib/extra_fonts/34px/hdf_4a.png new file mode 100644 index 0000000..ae61bf1 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_4a.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_4b.png b/mods/signs_lib/extra_fonts/34px/hdf_4b.png new file mode 100644 index 0000000..87d9c78 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_4b.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_4c.png b/mods/signs_lib/extra_fonts/34px/hdf_4c.png new file mode 100644 index 0000000..bafd6d2 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_4c.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_4d.png b/mods/signs_lib/extra_fonts/34px/hdf_4d.png new file mode 100644 index 0000000..efc8814 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_4d.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_4e.png b/mods/signs_lib/extra_fonts/34px/hdf_4e.png new file mode 100644 index 0000000..10b7607 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_4e.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_4f.png b/mods/signs_lib/extra_fonts/34px/hdf_4f.png new file mode 100644 index 0000000..9698926 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_4f.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_50.png b/mods/signs_lib/extra_fonts/34px/hdf_50.png new file mode 100644 index 0000000..67ebc51 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_50.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_51.png b/mods/signs_lib/extra_fonts/34px/hdf_51.png new file mode 100644 index 0000000..83e28f0 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_51.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_52.png b/mods/signs_lib/extra_fonts/34px/hdf_52.png new file mode 100644 index 0000000..d651ab2 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_52.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_53.png b/mods/signs_lib/extra_fonts/34px/hdf_53.png new file mode 100644 index 0000000..896571d Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_53.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_54.png b/mods/signs_lib/extra_fonts/34px/hdf_54.png new file mode 100644 index 0000000..ad38df3 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_54.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_55.png b/mods/signs_lib/extra_fonts/34px/hdf_55.png new file mode 100644 index 0000000..80f1ba4 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_55.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_56.png b/mods/signs_lib/extra_fonts/34px/hdf_56.png new file mode 100644 index 0000000..4db8d12 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_56.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_57.png b/mods/signs_lib/extra_fonts/34px/hdf_57.png new file mode 100644 index 0000000..7b43529 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_57.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_58.png b/mods/signs_lib/extra_fonts/34px/hdf_58.png new file mode 100644 index 0000000..8a4e863 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_58.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_59.png b/mods/signs_lib/extra_fonts/34px/hdf_59.png new file mode 100644 index 0000000..647bdb8 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_59.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_5a.png b/mods/signs_lib/extra_fonts/34px/hdf_5a.png new file mode 100644 index 0000000..7b3ba63 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_5a.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_5b.png b/mods/signs_lib/extra_fonts/34px/hdf_5b.png new file mode 100644 index 0000000..2ba87b6 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_5b.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_5c.png b/mods/signs_lib/extra_fonts/34px/hdf_5c.png new file mode 100644 index 0000000..6c7e6bf Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_5c.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_5d.png b/mods/signs_lib/extra_fonts/34px/hdf_5d.png new file mode 100644 index 0000000..06575b7 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_5d.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_5e.png b/mods/signs_lib/extra_fonts/34px/hdf_5e.png new file mode 100644 index 0000000..5ac99a6 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_5e.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_5f.png b/mods/signs_lib/extra_fonts/34px/hdf_5f.png new file mode 100644 index 0000000..0841466 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_5f.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_60.png b/mods/signs_lib/extra_fonts/34px/hdf_60.png new file mode 100644 index 0000000..02e0761 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_60.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_61.png b/mods/signs_lib/extra_fonts/34px/hdf_61.png new file mode 100644 index 0000000..8591054 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_61.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_62.png b/mods/signs_lib/extra_fonts/34px/hdf_62.png new file mode 100644 index 0000000..63b6c29 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_62.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_63.png b/mods/signs_lib/extra_fonts/34px/hdf_63.png new file mode 100644 index 0000000..f0d6995 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_63.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_64.png b/mods/signs_lib/extra_fonts/34px/hdf_64.png new file mode 100644 index 0000000..f73979c Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_64.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_65.png b/mods/signs_lib/extra_fonts/34px/hdf_65.png new file mode 100644 index 0000000..6bbd2ee Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_65.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_66.png b/mods/signs_lib/extra_fonts/34px/hdf_66.png new file mode 100644 index 0000000..8d23c9c Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_66.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_67.png b/mods/signs_lib/extra_fonts/34px/hdf_67.png new file mode 100644 index 0000000..5bc9e83 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_67.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_68.png b/mods/signs_lib/extra_fonts/34px/hdf_68.png new file mode 100644 index 0000000..726598b Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_68.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_69.png b/mods/signs_lib/extra_fonts/34px/hdf_69.png new file mode 100644 index 0000000..b790d77 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_69.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_6a.png b/mods/signs_lib/extra_fonts/34px/hdf_6a.png new file mode 100644 index 0000000..3e735fe Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_6a.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_6b.png b/mods/signs_lib/extra_fonts/34px/hdf_6b.png new file mode 100644 index 0000000..d03c199 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_6b.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_6c.png b/mods/signs_lib/extra_fonts/34px/hdf_6c.png new file mode 100644 index 0000000..836db1a Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_6c.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_6d.png b/mods/signs_lib/extra_fonts/34px/hdf_6d.png new file mode 100644 index 0000000..96387f1 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_6d.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_6e.png b/mods/signs_lib/extra_fonts/34px/hdf_6e.png new file mode 100644 index 0000000..f8a8dc6 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_6e.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_6f.png b/mods/signs_lib/extra_fonts/34px/hdf_6f.png new file mode 100644 index 0000000..8982e75 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_6f.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_70.png b/mods/signs_lib/extra_fonts/34px/hdf_70.png new file mode 100644 index 0000000..60caef9 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_70.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_71.png b/mods/signs_lib/extra_fonts/34px/hdf_71.png new file mode 100644 index 0000000..390d463 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_71.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_72.png b/mods/signs_lib/extra_fonts/34px/hdf_72.png new file mode 100644 index 0000000..c2a6b4d Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_72.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_73.png b/mods/signs_lib/extra_fonts/34px/hdf_73.png new file mode 100644 index 0000000..43ec451 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_73.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_74.png b/mods/signs_lib/extra_fonts/34px/hdf_74.png new file mode 100644 index 0000000..b4f222d Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_74.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_75.png b/mods/signs_lib/extra_fonts/34px/hdf_75.png new file mode 100644 index 0000000..54696ef Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_75.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_76.png b/mods/signs_lib/extra_fonts/34px/hdf_76.png new file mode 100644 index 0000000..3cc3dc9 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_76.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_77.png b/mods/signs_lib/extra_fonts/34px/hdf_77.png new file mode 100644 index 0000000..948ae21 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_77.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_78.png b/mods/signs_lib/extra_fonts/34px/hdf_78.png new file mode 100644 index 0000000..78a6259 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_78.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_79.png b/mods/signs_lib/extra_fonts/34px/hdf_79.png new file mode 100644 index 0000000..dbab511 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_79.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_7a.png b/mods/signs_lib/extra_fonts/34px/hdf_7a.png new file mode 100644 index 0000000..2d12719 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_7a.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_7b.png b/mods/signs_lib/extra_fonts/34px/hdf_7b.png new file mode 100644 index 0000000..81cb103 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_7b.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_7c.png b/mods/signs_lib/extra_fonts/34px/hdf_7c.png new file mode 100644 index 0000000..fc6a626 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_7c.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_7d.png b/mods/signs_lib/extra_fonts/34px/hdf_7d.png new file mode 100644 index 0000000..70e8f75 Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_7d.png differ diff --git a/mods/signs_lib/extra_fonts/34px/hdf_7e.png b/mods/signs_lib/extra_fonts/34px/hdf_7e.png new file mode 100644 index 0000000..cf63d5d Binary files /dev/null and b/mods/signs_lib/extra_fonts/34px/hdf_7e.png differ diff --git a/mods/signs_lib/init.lua b/mods/signs_lib/init.lua new file mode 100644 index 0000000..ba01d80 --- /dev/null +++ b/mods/signs_lib/init.lua @@ -0,0 +1,1075 @@ +-- This mod provides the visible text on signs library used by Home Decor +-- and perhaps other mods at some point in the future. Forked from thexyz's/ +-- PilzAdam's original text-on-signs mod and rewritten by Vanessa Ezekowitz +-- and Diego Martinez + +signs_lib = {} + +signs_lib.modpath = minetest.get_modpath("signs_lib") +signs_lib.intllib_modpath = minetest.get_modpath("intllib") + +signs_lib.wall_sign_model = { + nodebox = { + type = "fixed", + fixed = {-0.4375, -0.25, 0.4375, 0.4375, 0.375, 0.5} + }, + textpos = { + {delta = {x = 0, y = 0.07, z = 0.43 }, yaw = 0}, + {delta = {x = 0.43, y = 0.07, z = 0 }, yaw = math.pi / -2}, + {delta = {x = 0, y = 0.07, z = -0.43 }, yaw = math.pi}, + {delta = {x = -0.43, y = 0.07, z = 0 }, yaw = math.pi / 2}, + } +} + +signs_lib.yard_sign_model = { + nodebox = { + type = "fixed", + fixed = { + {-0.4375, -0.25, -0.0625, 0.4375, 0.375, 0}, + {-0.0625, -0.5, -0.0625, 0.0625, -0.1875, 0}, + } + }, + textpos = { + {delta = {x = 0, y = 0.07, z = -0.063}, yaw = 0}, + {delta = {x = -0.063, y = 0.07, z = 0 }, yaw = math.pi / -2}, + {delta = {x = 0, y = 0.07, z = 0.063}, yaw = math.pi}, + {delta = {x = 0.063, y = 0.07, z = 0 }, yaw = math.pi / 2}, + } +} + +signs_lib.hanging_sign_model = { + nodebox = { + type = "fixed", + fixed = { + {-0.4375, -0.3125, -0.0625, 0.4375, 0.3125, 0}, + {-0.4375, 0.25, -0.03125, 0.4375, 0.5, -0.03125}, + } + }, + textpos = { + {delta = {x = 0, y = -0.02, z = -0.063}, yaw = 0}, + {delta = {x = -0.063, y = -0.02, z = 0 }, yaw = math.pi / -2}, + {delta = {x = 0, y = -0.02, z = 0.063}, yaw = math.pi}, + {delta = {x = 0.063, y = -0.02, z = 0 }, yaw = math.pi / 2}, + } +} + +signs_lib.sign_post_model = { + nodebox = { + type = "fixed", + fixed = { + {-0.4375, -0.25, -0.1875, 0.4375, 0.375, -0.125}, + {-0.125, -0.5, -0.125, 0.125, 0.5, 0.125}, + } + }, + textpos = { + {delta = {x = 0, y = 0.07, z = -0.188}, yaw = 0}, + {delta = {x = -0.188, y = 0.07, z = 0 }, yaw = math.pi / -2}, + {delta = {x = 0, y = 0.07, z = 0.188 }, yaw = math.pi}, + {delta = {x = 0.188, y = 0.07, z = 0 }, yaw = math.pi / 2}, + } +} + +-- Boilerplate to support localized strings if intllib mod is installed. +local S +if minetest.get_modpath("intllib") then + S = intllib.Getter() +else + S = function(s) return s end +end +signs_lib.gettext = S + +-- the list of standard sign nodes + +signs_lib.sign_node_list = { + "default:sign_wall", + "signs:sign_yard", + "signs:sign_hanging", + "signs:sign_wall_green", + "signs:sign_wall_yellow", + "signs:sign_wall_red", + "signs:sign_wall_white_red", + "signs:sign_wall_white_black", + "locked_sign:sign_wall_locked" +} + +--table copy + +function signs_lib.table_copy(t) + local nt = { }; + for k, v in pairs(t) do + if type(v) == "table" then + nt[k] = signs_lib.table_copy(v) + else + nt[k] = v + end + end + return nt +end + +-- infinite stacks + +if minetest.get_modpath("unified_inventory") or not minetest.setting_getbool("creative_mode") then + signs_lib.expect_infinite_stacks = false +else + signs_lib.expect_infinite_stacks = true +end + +-- CONSTANTS + +local MP = minetest.get_modpath("signs_lib") + +-- Used by `build_char_db' to locate the file. +local FONT_FMT = "%s/hdf_%02x.png" + +-- Simple texture name for building text texture. +local FONT_FMT_SIMPLE = "hdf_%02x.png" + +-- Path to the textures. +local TP = MP.."/textures" + +local TEXT_SCALE = {x=0.8, y=0.5} + +-- Lots of overkill here. KISS advocates, go away, shoo! ;) -- kaeza + +local PNG_HDR = string.char(0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A) + +-- Read the image size from a PNG file. +-- Returns image_w, image_h. +-- Only the LSB is read from each field! +local function read_char_size(c) + local filename = FONT_FMT:format(TP, c) + local f = io.open(filename, "rb") + f:seek("set", 0x0) + local hdr = f:read(8) + if hdr ~= PNG_HDR then + f:close() + return + end + f:seek("set", 0x13) + local ws = f:read(1) + f:seek("set", 0x17) + local hs = f:read(1) + f:close() + return ws:byte(), hs:byte() +end + +-- Set by build_char_db() +local LINE_HEIGHT +local SIGN_WIDTH + +-- Size of the canvas, in characters. +-- Please note that CHARS_PER_LINE is multiplied by the average character +-- width to get the total width of the canvas, so for proportional fonts, +-- either more or fewer characters may fit on a line. +local CHARS_PER_LINE = 30 +local NUMBER_OF_LINES = 6 + +-- 6 rows, max 80 chars per, plus a bit of fudge to +-- avoid excess trimming (e.g. due to color codes) + +local MAX_INPUT_CHARS = 600 + +-- This holds the individual character widths. +-- Indexed by the actual character (e.g. charwidth["A"]) +local charwidth = { } + +-- File to cache the font size to. +local CHARDB_FILE = minetest.get_worldpath().."/signs_lib_chardb" + +-- helper functions to trim sign text input/output + +local function trim_input(text) + return text:sub(1, math.min(MAX_INPUT_CHARS, text:len())) +end + +-- Returns true if any file differs from cached one. +local function check_random_chars() + for i = 1, 5 do + local c = math.random(32, 126) + local w, h = read_char_size(c) + + -- File is not a PNG... wut? + if not (w and h) then return true end + + local ch = string.char(c) + if (not charwidth[ch]) -- Char is not cached. + or (charwidth[ch] ~= w) -- Width differs. + or (LINE_HEIGHT and (LINE_HEIGHT ~= h)) -- Height differs + then + -- In any case, file is different; rebuild cache. + return true + end + end + -- OK, our superficial check passed. If the textures are messed up, + -- it's not our problem. + return false +end + +local function build_char_db() + + LINE_HEIGHT = nil + SIGN_WIDTH = nil + + -- To calculate average char width. + local total_width = 0 + local char_count = 0 + + -- Try to load cached data to avoid heavy disk I/O. + + local cdbf = io.open(CHARDB_FILE, "rt") + + if cdbf then + minetest.log("info", "[signs_lib] "..S("Reading cached character database.")) + for line in cdbf:lines() do + local ch, w = line:match("(0x[0-9A-Fa-f]+)%s+([0-9][0-9]*)") + if ch and w then + local c = tonumber(ch) + w = tonumber(w) + if c and w then + if c == 0 then + LINE_HEIGHT = w + elseif (c >= 32) and (c < 127) then + charwidth[string.char(c)] = w + total_width = total_width + w + char_count = char_count + 1 + end + end + end + end + cdbf:close() + if LINE_HEIGHT then + -- Check some random characters to see if the file on disk differs + -- from the cached one. If so, then ditch cached data and rebuild + -- (font probably was changed). + if check_random_chars() then + LINE_HEIGHT = nil + minetest.log("info", "[signs_lib] " + ..S("Font seems to have changed. Rebuilding cache.") + ) + end + else + minetest.log("warning", "[signs_lib] " + ..S("Could not find font line height in cached DB. Trying brute force.") + ) + end + end + + if not LINE_HEIGHT then + -- OK, something went wrong... try brute force loading from texture files. + + charwidth = { } + + total_width = 0 + char_count = 0 + + for c = 32, 126 do + local w, h = read_char_size(c) + if w and h then + local ch = string.char(c) + charwidth[ch] = w + total_width = total_width + w + char_count = char_count + 1 + if not LINE_HEIGHT then LINE_HEIGHT = h end + end + end + + if not LINE_HEIGHT then + error("Could not find font line height.") + end + + end + + -- XXX: Is there a better way to calc this? + SIGN_WIDTH = math.floor((total_width / char_count) * CHARS_PER_LINE) + + -- Try to save cached list back to disk. + + local e -- Note: `cdbf' is already declared local above. + cdbf, e = io.open(CHARDB_FILE, "wt") + if not cdbf then + minetest.log("warning", "[signs_lib] Could not save cached char DB: "..(e or "")) + return + end + + cdbf:write(("0x00 %d\n"):format(LINE_HEIGHT)) + for c = 32, 126 do + local w = charwidth[string.char(c)] + if w then + cdbf:write(("0x%02X %d\n"):format(c, w)) + end + end + cdbf:close() + +end + +local sign_groups = {choppy=2, dig_immediate=2} + +local fences_with_sign = { } + +-- some local helper functions + +local function split_lines_and_words_old(text) + local lines = { } + local line = { } + if not text then return end + for word in text:gmatch("%S+") do + if word == "|" then + table.insert(lines, line) + if #lines >= NUMBER_OF_LINES then break end + line = { } + elseif word == "\\|" then + table.insert(line, "|") + else + table.insert(line, word) + end + end + table.insert(lines, line) + return lines +end + +local function split_lines_and_words(text) + if not text then return end + local lines = { } + for _, line in ipairs(text:split("\n")) do + table.insert(lines, line:split(" ")) + end + return lines +end + +local math_max = math.max + +local function fill_line(x, y, w, c) + c = c or "0" + local tex = { } + for xx = 0, math.max(0, w-16), 16 do + table.insert(tex, (":%d,%d=slc_%s.png"):format(x + xx, y, c)) + end + if ((w % 16) > 0) and (w > 16) then + table.insert(tex, (":%d,%d=slc_%s.png"):format(x + w - 16, y, c)) + end + return table.concat(tex) +end + +local function make_line_texture(line, lineno) + + local width = 0 + local maxw = 0 + + local words = { } + + local cur_color = 0 + + -- We check which chars are available here. + for word_i, word in ipairs(line) do + local chars = { } + local ch_offs = 0 + local word_l = #word + local i = 1 + while i <= word_l do + local c = word:sub(i, i) + if c == "#" then + local cc = tonumber(word:sub(i+1, i+1), 16) + if cc then + i = i + 1 + cur_color = cc + end + else + local w = charwidth[c] + if w then + width = width + w + 1 + if width >= (SIGN_WIDTH - charwidth[" "]) then + width = 0 + else + maxw = math_max(width, maxw) + end + if #chars < MAX_INPUT_CHARS then + table.insert(chars, { + off=ch_offs, + tex=FONT_FMT_SIMPLE:format(c:byte()), + col=("%X"):format(cur_color), + }) + end + ch_offs = ch_offs + w + end + end + i = i + 1 + end + width = width + charwidth[" "] + 1 + maxw = math_max(width, maxw) + table.insert(words, { chars=chars, w=ch_offs }) + end + + -- Okay, we actually build the "line texture" here. + + local texture = { } + + local start_xpos = math.floor((SIGN_WIDTH - maxw) / 2) + + local xpos = start_xpos + local ypos = (LINE_HEIGHT * lineno) + + cur_color = nil + + for word_i, word in ipairs(words) do + local xoffs = (xpos - start_xpos) + if (xoffs > 0) and ((xoffs + word.w) > maxw) then + table.insert(texture, fill_line(xpos, ypos, maxw, "n")) + xpos = start_xpos + ypos = ypos + LINE_HEIGHT + lineno = lineno + 1 + if lineno >= NUMBER_OF_LINES then break end + table.insert(texture, fill_line(xpos, ypos, maxw, cur_color)) + end + for ch_i, ch in ipairs(word.chars) do + if ch.col ~= cur_color then + cur_color = ch.col + table.insert(texture, fill_line(xpos + ch.off, ypos, maxw, cur_color)) + end + table.insert(texture, (":%d,%d=%s"):format(xpos + ch.off, ypos, ch.tex)) + end + table.insert(texture, (":%d,%d=hdf_20.png"):format(xpos + word.w, ypos)) + xpos = xpos + word.w + charwidth[" "] + if xpos >= (SIGN_WIDTH + charwidth[" "]) then break end + end + + table.insert(texture, fill_line(xpos, ypos, maxw, "n")) + table.insert(texture, fill_line(start_xpos, ypos + LINE_HEIGHT, maxw, "n")) + + return table.concat(texture), lineno +end + +local function make_sign_texture(lines) + local texture = { ("[combine:%dx%d"):format(SIGN_WIDTH, LINE_HEIGHT * NUMBER_OF_LINES) } + local lineno = 0 + for i = 1, #lines do + if lineno >= NUMBER_OF_LINES then break end + local linetex, ln = make_line_texture(lines[i], lineno) + table.insert(texture, linetex) + lineno = ln + 1 + end + table.insert(texture, "^[makealpha:0,0,0") + return table.concat(texture, "") +end + +local function set_obj_text(obj, text, new) + local split = new and split_lines_and_words or split_lines_and_words_old + obj:set_properties({ + textures={make_sign_texture(split(text))}, + visual_size = TEXT_SCALE, + }) +end + +signs_lib.construct_sign = function(pos, locked) + local meta = minetest.get_meta(pos) + meta:set_string( + "formspec", + "size[6,4]".. + "textarea[0,-0.3;6.5,3;text;;${text}]".. + "button_exit[2,3.4;2,1;ok;Write]".. + "background[-0.5,-0.5;7,5;bg_signs_lib.jpg]") + meta:set_string("infotext", "") +end + +signs_lib.destruct_sign = function(pos) + local objects = minetest.get_objects_inside_radius(pos, 0.5) + for _, v in ipairs(objects) do + local e = v:get_luaentity() + if e and e.name == "signs:text" then + v:remove() + end + end +end + +local function make_infotext(text) + text = trim_input(text) + local lines = split_lines_and_words(text) or {} + local lines2 = { } + for _, line in ipairs(lines) do + table.insert(lines2, (table.concat(line, " "):gsub("#[0-9a-fA-F]", ""):gsub("##", "#"))) + end + return table.concat(lines2, "\n") +end + +signs_lib.update_sign = function(pos, fields, owner) + local meta = minetest.get_meta(pos) + + local new + if fields then + + fields.text = trim_input(fields.text) + + local ownstr = "" + if owner then ownstr = "Locked sign, owned by "..owner.."\n" end + + meta:set_string("infotext", ownstr..make_infotext(fields.text).." ") + meta:set_string("text", fields.text) + meta:set_int("__signslib_new_format", 1) + new = true + else + new = (meta:get_int("__signslib_new_format") ~= 0) + end + local text = meta:get_string("text") + if text == nil then return end + local objects = minetest.get_objects_inside_radius(pos, 0.5) + local found + for _, v in ipairs(objects) do + local e = v:get_luaentity() + if e and e.name == "signs:text" then + if found then + v:remove() + else + set_obj_text(v, text, new) + found = true + end + end + end + if found then + return + end + + -- if there is no entity + local sign_info + local signnode = minetest.get_node(pos) + if signnode.name == "signs:sign_yard" then + sign_info = signs_lib.yard_sign_model.textpos[minetest.get_node(pos).param2 + 1] + elseif signnode.name == "signs:sign_hanging" then + sign_info = signs_lib.hanging_sign_model.textpos[minetest.get_node(pos).param2 + 1] + elseif string.find(signnode.name, "sign_wall") then + sign_info = signs_lib.wall_sign_model.textpos[minetest.get_node(pos).param2 + 1] + else -- ...it must be a sign on a fence post. + sign_info = signs_lib.sign_post_model.textpos[minetest.get_node(pos).param2 + 1] + end + if sign_info == nil then + return + end + local text = minetest.add_entity({x = pos.x + sign_info.delta.x, + y = pos.y + sign_info.delta.y, + z = pos.z + sign_info.delta.z}, "signs:text") + text:setyaw(sign_info.yaw) +end + +-- What kind of sign do we need to place, anyway? + +function signs_lib.determine_sign_type(itemstack, placer, pointed_thing, locked) + local name + name = minetest.get_node(pointed_thing.under).name + if fences_with_sign[name] then + if minetest.is_protected(pointed_thing.under, placer:get_player_name()) then + minetest.record_protection_violation(pointed_thing.under, + placer:get_player_name()) + return itemstack + end + else + name = minetest.get_node(pointed_thing.above).name + local def = minetest.registered_nodes[name] + if not def.buildable_to then + return itemstack + end + if minetest.is_protected(pointed_thing.above, placer:get_player_name()) then + minetest.record_protection_violation(pointed_thing.above, + placer:get_player_name()) + return itemstack + end + end + + local node=minetest.get_node(pointed_thing.under) + + if minetest.registered_nodes[node.name] and minetest.registered_nodes[node.name].on_rightclick then + return minetest.registered_nodes[node.name].on_rightclick(pointed_thing.under, node, placer, itemstack) + else + local above = pointed_thing.above + local under = pointed_thing.under + local dir = {x = under.x - above.x, + y = under.y - above.y, + z = under.z - above.z} + + local wdir = minetest.dir_to_wallmounted(dir) + + local placer_pos = placer:getpos() + if placer_pos then + dir = { + x = above.x - placer_pos.x, + y = above.y - placer_pos.y, + z = above.z - placer_pos.z + } + end + + local fdir = minetest.dir_to_facedir(dir) + + local pt_name = minetest.get_node(under).name + print(dump(pt_name)) + local signname = itemstack:get_name() + + if fences_with_sign[pt_name] and signname == "default:sign_wall" then + minetest.add_node(under, {name = fences_with_sign[pt_name], param2 = fdir}) + elseif wdir == 0 and signname == "default:sign_wall" then + minetest.add_node(above, {name = "signs:sign_hanging", param2 = fdir}) + elseif wdir == 1 and signname == "default:sign_wall" then + minetest.add_node(above, {name = "signs:sign_yard", param2 = fdir}) + else -- it must be a wooden or metal wall sign. + minetest.add_node(above, {name = signname, param2 = fdir}) + if locked or true then -- RND : all signs locked + local meta = minetest.get_meta(above) + local owner = placer:get_player_name() + meta:set_string("owner", owner) + end + end + + if not signs_lib.expect_infinite_stacks then + itemstack:take_item() + end + return itemstack + end +end + +function signs_lib.receive_fields(pos, formname, fields, sender, lock) + if minetest.is_protected(pos, sender:get_player_name()) then + minetest.record_protection_violation(pos, + sender:get_player_name()) + return + end + local lockstr = lock and "locked " or "" + if fields and fields.text and fields.ok then + minetest.log("action", S("%s wrote \"%s\" to "..lockstr.."sign at %s"):format( + (sender:get_player_name() or ""), + fields.text, + minetest.pos_to_string(pos) + )) + if lock then + signs_lib.update_sign(pos, fields, sender:get_player_name()) + else + signs_lib.update_sign(pos, fields) + end + end +end + +minetest.register_node(":default:sign_wall", { + description = S("Sign"), + inventory_image = "default_sign_wall.png", + wield_image = "default_sign_wall.png", + node_placement_prediction = "", + paramtype = "light", + sunlight_propagates = true, + paramtype2 = "facedir", + drawtype = "nodebox", + node_box = signs_lib.wall_sign_model.nodebox, + tiles = {"signs_top.png", "signs_bottom.png", "signs_side.png", "signs_side.png", "signs_back.png", "signs_front.png"}, + groups = sign_groups, + + on_place = function(itemstack, placer, pointed_thing) + return signs_lib.determine_sign_type(itemstack, placer, pointed_thing) + end, + on_construct = function(pos) + signs_lib.construct_sign(pos) + end, + on_destruct = function(pos) + signs_lib.destruct_sign(pos) + end, + on_receive_fields = function(pos, formname, fields, sender) + signs_lib.receive_fields(pos, formname, fields, sender) + end, + on_punch = function(pos, node, puncher) + signs_lib.update_sign(pos) + end, +}) + +minetest.register_node(":signs:sign_yard", { + paramtype = "light", + sunlight_propagates = true, + paramtype2 = "facedir", + drawtype = "nodebox", + node_box = signs_lib.yard_sign_model.nodebox, + selection_box = { + type = "fixed", + fixed = {-0.4375, -0.5, -0.0625, 0.4375, 0.375, 0} + }, + tiles = {"signs_top.png", "signs_bottom.png", "signs_side.png", "signs_side.png", "signs_back.png", "signs_front.png"}, + groups = {choppy=2, dig_immediate=2}, + drop = "default:sign_wall", + + on_construct = function(pos) + signs_lib.construct_sign(pos) + end, + on_destruct = function(pos) + signs_lib.destruct_sign(pos) + end, + on_receive_fields = function(pos, formname, fields, sender) + signs_lib.receive_fields(pos, formname, fields, sender) + end, + on_punch = function(pos, node, puncher) + signs_lib.update_sign(pos) + end, +}) + +minetest.register_node(":signs:sign_hanging", { + paramtype = "light", + sunlight_propagates = true, + paramtype2 = "facedir", + drawtype = "nodebox", + node_box = signs_lib.hanging_sign_model.nodebox, + selection_box = { + type = "fixed", + fixed = {-0.45, -0.275, -0.049, 0.45, 0.5, 0.049} + }, + tiles = { + "signs_hanging_top.png", + "signs_hanging_bottom.png", + "signs_hanging_side.png", + "signs_hanging_side.png", + "signs_hanging_back.png", + "signs_hanging_front.png" + }, + groups = {choppy=2, dig_immediate=2}, + drop = "default:sign_wall", + + on_construct = function(pos) + signs_lib.construct_sign(pos) + end, + on_destruct = function(pos) + signs_lib.destruct_sign(pos) + end, + on_receive_fields = function(pos, formname, fields, sender) + signs_lib.receive_fields(pos, formname, fields, sender) + end, + on_punch = function(pos, node, puncher) + signs_lib.update_sign(pos) + end, +}) + +minetest.register_node(":signs:sign_post", { + paramtype = "light", + sunlight_propagates = true, + paramtype2 = "facedir", + drawtype = "nodebox", + node_box = signs_lib.sign_post_model.nodebox, + tiles = { + "signs_post_top.png", + "signs_post_bottom.png", + "signs_post_side.png", + "signs_post_side.png", + "signs_post_back.png", + "signs_post_front.png", + }, + groups = {choppy=2, dig_immediate=2}, + drop = { + max_items = 2, + items = { + { items = { "default:sign_wall" }}, + { items = { "default:fence_wood" }}, + }, + }, +}) + +-- Locked wall sign + +minetest.register_privilege("sign_editor", "Can edit all locked signs") + +minetest.register_node(":locked_sign:sign_wall_locked", { + description = S("Sign"), + inventory_image = "signs_locked_inv.png", + wield_image = "signs_locked_inv.png", + node_placement_prediction = "", + paramtype = "light", + sunlight_propagates = true, + paramtype2 = "facedir", + drawtype = "nodebox", + node_box = signs_lib.wall_sign_model.nodebox, + tiles = { + "signs_top_locked.png", + "signs_bottom_locked.png", + "signs_side_locked.png", + "signs_side.png", + "signs_back.png", + "signs_front_locked.png" + }, + groups = sign_groups, + on_place = function(itemstack, placer, pointed_thing) + return signs_lib.determine_sign_type(itemstack, placer, pointed_thing, true) + end, + on_construct = function(pos) + signs_lib.construct_sign(pos, true) + end, + on_destruct = function(pos) + signs_lib.destruct_sign(pos) + end, + on_receive_fields = function(pos, formname, fields, sender) + local meta = minetest.get_meta(pos) + local owner = meta:get_string("owner") + local pname = sender:get_player_name() or "" + if pname ~= owner and pname ~= minetest.setting_get("name") + and not minetest.check_player_privs(pname, {sign_editor=true}) then + return + end + signs_lib.receive_fields(pos, formname, fields, sender, true) + end, + on_punch = function(pos, node, puncher) + signs_lib.update_sign(pos) + end, + can_dig = function(pos, player) + local meta = minetest.get_meta(pos) + local owner = meta:get_string("owner") + local pname = player:get_player_name() + return pname == owner or pname == minetest.setting_get("name") + or minetest.check_player_privs(pname, {sign_editor=true}) + end, +}) + +-- metal, colored signs + +local sign_colors = { "green", "yellow", "red", "white_red", "white_black" } + +for _, color in ipairs(sign_colors) do + minetest.register_node(":signs:sign_wall_"..color, { + description = S("Sign ("..color..", metal)"), + inventory_image = "signs_"..color.."_inv.png", + wield_image = "signs_"..color.."_inv.png", + node_placement_prediction = "", + paramtype = "light", + sunlight_propagates = true, + paramtype2 = "facedir", + drawtype = "nodebox", + node_box = signs_lib.wall_sign_model.nodebox, + tiles = { + "signs_metal_tb.png", + "signs_metal_tb.png", + "signs_metal_sides.png", + "signs_metal_sides.png", + "signs_metal_back.png", + "signs_"..color.."_front.png" + }, + groups = sign_groups, + on_place = function(itemstack, placer, pointed_thing) + return signs_lib.determine_sign_type(itemstack, placer, pointed_thing) + end, + on_construct = function(pos) + signs_lib.construct_sign(pos) + end, + on_destruct = function(pos) + signs_lib.destruct_sign(pos) + end, + on_receive_fields = function(pos, formname, fields, sender) + signs_lib.receive_fields(pos, formname, fields, sender) + end, + on_punch = function(pos, node, puncher) + signs_lib.update_sign(pos) + end, + }) +end + +local signs_text_on_activate + +signs_text_on_activate = function(self) + local meta = minetest.get_meta(self.object:getpos()) + local text = meta:get_string("text") + local new = (meta:get_int("__signslib_new_format") ~= 0) + if text then + text = trim_input(text) + set_obj_text(self.object, text, new) + end +end + +minetest.register_entity(":signs:text", { + collisionbox = { 0, 0, 0, 0, 0, 0 }, + visual = "upright_sprite", + textures = {}, + + on_activate = signs_text_on_activate, +}) + +-- And the good stuff here! :-) + +function signs_lib.register_fence_with_sign(fencename, fencewithsignname) + local def = minetest.registered_nodes[fencename] + local def_sign = minetest.registered_nodes[fencewithsignname] + if not (def and def_sign) then + minetest.log("warning", "[signs_lib] Attempt to register unknown node as fence") + return + end + def = signs_lib.table_copy(def) + def_sign = signs_lib.table_copy(def_sign) + fences_with_sign[fencename] = fencewithsignname + + def.on_place = function(itemstack, placer, pointed_thing, ...) + local node_above = minetest.get_node(pointed_thing.above) + local node_under = minetest.get_node(pointed_thing.under) + local def_above = minetest.registered_nodes[node_above.name] + local def_under = minetest.registered_nodes[node_under.name] + local fdir = minetest.dir_to_facedir(placer:get_look_dir()) + local playername = placer:get_player_name() + + if minetest.is_protected(pointed_thing.under, playername) then + minetest.record_protection_violation(pointed_thing.under, playername) + return + end + + if minetest.is_protected(pointed_thing.above, playername) then + minetest.record_protection_violation(pointed_thing.above, playername) + return + end + + if def_under and def_under.on_rightclick then + return def_under.on_rightclick(pointed_thing.under, node_under, placer, itemstack) or itemstack + elseif def_under and def_under.buildable_to then + minetest.add_node(pointed_thing.under, {name = fencename, param2 = fdir}) + if not signs_lib.expect_infinite_stacks then + itemstack:take_item() + end + placer:set_wielded_item(itemstack) + return itemstack + elseif not def_above or def_above.buildable_to then + minetest.add_node(pointed_thing.above, {name = fencename, param2 = fdir}) + if not signs_lib.expect_infinite_stacks then + itemstack:take_item() + end + placer:set_wielded_item(itemstack) + return itemstack + end + end + def_sign.on_construct = function(pos, ...) + signs_lib.construct_sign(pos) + end + def_sign.on_destruct = function(pos, ...) + signs_lib.destruct_sign(pos) + end + def_sign.on_receive_fields = function(pos, formname, fields, sender) + signs_lib.receive_fields(pos, formname, fields, sender) + end + def_sign.on_punch = function(pos, node, puncher, ...) + signs_lib.update_sign(pos) + end + local fencename = fencename + def_sign.after_dig_node = function(pos, node, ...) + node.name = fencename + minetest.add_node(pos, node) + end + def_sign.drop = "default:sign_wall" + minetest.register_node(":"..fencename, def) + minetest.register_node(":"..fencewithsignname, def_sign) + table.insert(signs_lib.sign_node_list, fencewithsignname) + print(S("Registered %s and %s"):format(fencename, fencewithsignname)) +end + +build_char_db() + +minetest.register_alias("homedecor:fence_wood_with_sign", "signs:sign_post") +minetest.register_alias("sign_wall_locked", "locked_sign:sign_wall_locked") + +signs_lib.register_fence_with_sign("default:fence_wood", "signs:sign_post") + +-- restore signs' text after /clearobjects and the like + +minetest.register_abm({ + nodenames = signs_lib.sign_node_list, + interval = 15, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + signs_lib.update_sign(pos) + end +}) + +-- locked sign + +minetest.register_craft({ + output = "locked_sign:sign_wall_locked", + recipe = { + {"group:wood", "group:wood", "group:wood"}, + {"group:wood", "group:wood", "default:steel_ingot"}, + {"", "group:stick", ""}, + } +}) + +--Alternate recipe. + +minetest.register_craft({ + output = "locked_sign:sign_wall_locked", + recipe = { + {"default:sign_wall"}, + {"default:steel_ingot"}, + }, +}) + +-- craft recipes for the metal signs + +minetest.register_craft( { + output = "signs:sign_wall_green 4", + recipe = { + { "dye:dark_green", "dye:white", "dye:dark_green" }, + { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" } + }, +}) + +minetest.register_craft( { + output = "signs:sign_wall_green 2", + recipe = { + { "dye:dark_green", "dye:white", "dye:dark_green" }, + { "steel:sheet_metal", "steel:sheet_metal", "steel:sheet_metal" } + }, +}) + +minetest.register_craft( { + output = "signs:sign_wall_yellow 4", + recipe = { + { "dye:yellow", "dye:black", "dye:yellow" }, + { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" } + }, +}) + +minetest.register_craft( { + output = "signs:sign_wall_yellow 2", + recipe = { + { "dye:yellow", "dye:black", "dye:yellow" }, + { "steel:sheet_metal", "steel:sheet_metal", "steel:sheet_metal" } + }, +}) + +minetest.register_craft( { + output = "signs:sign_wall_red 4", + recipe = { + { "dye:red", "dye:white", "dye:red" }, + { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" } + }, +}) + +minetest.register_craft( { + output = "signs:sign_wall_red 2", + recipe = { + { "dye:red", "dye:white", "dye:red" }, + { "steel:sheet_metal", "steel:sheet_metal", "steel:sheet_metal" } + }, +}) + +minetest.register_craft( { + output = "signs:sign_wall_white_red 4", + recipe = { + { "dye:white", "dye:red", "dye:white" }, + { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" } + }, +}) + +minetest.register_craft( { + output = "signs:sign_wall_white_red 2", + recipe = { + { "dye:white", "dye:red", "dye:white" }, + { "steel:sheet_metal", "steel:sheet_metal", "steel:sheet_metal" } + }, +}) + +minetest.register_craft( { + output = "signs:sign_wall_white_black 4", + recipe = { + { "dye:white", "dye:black", "dye:white" }, + { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" } + }, +}) + +minetest.register_craft( { + output = "signs:sign_wall_white_black 2", + recipe = { + { "dye:white", "dye:black", "dye:white" }, + { "steel:sheet_metal", "steel:sheet_metal", "steel:sheet_metal" } + }, +}) + +if minetest.setting_get("log_mods") then + minetest.log("action", S("signs loaded")) +end diff --git a/mods/signs_lib/locale/de.txt b/mods/signs_lib/locale/de.txt new file mode 100644 index 0000000..8d43f77 --- /dev/null +++ b/mods/signs_lib/locale/de.txt @@ -0,0 +1,9 @@ +# Translation by Xanthin + +Reading cached character database. = Lese zwischengespeicherte Buchstabendatenbank. +Font seems to have changed. Rebuilding cache. = Schriftart scheint sich geaendert zu haben. Wiederaufbau des Zwischenspeichers. +Could not find font line height in cached DB. Trying brute force. = Konnte die Schriftzeilenhoehe nicht in der zwischengespeicherten DB finden. Versuche Brute-Force. +Sign = Schild +%s wrote "%s" to sign at %s = %s schrieb "%s" auf das Schild bei %s +Registered %s and %s = Registrierte %s und %s +signs loaded = signs geladen diff --git a/mods/signs_lib/locale/template.txt b/mods/signs_lib/locale/template.txt new file mode 100644 index 0000000..c1851a8 --- /dev/null +++ b/mods/signs_lib/locale/template.txt @@ -0,0 +1,9 @@ +#Template + +Reading cached character database. = +Font seems to have changed. Rebuilding cache. = +Could not find font line height in cached DB. Trying brute force. = +Sign = +%s wrote "%s" to sign at %s = +Registered %s and %s = +signs loaded = diff --git a/mods/signs_lib/textures/bg_signs_lib.jpg b/mods/signs_lib/textures/bg_signs_lib.jpg new file mode 100644 index 0000000..4b72268 Binary files /dev/null and b/mods/signs_lib/textures/bg_signs_lib.jpg differ diff --git a/mods/signs_lib/textures/hdf_20.png b/mods/signs_lib/textures/hdf_20.png new file mode 100644 index 0000000..465982d Binary files /dev/null and b/mods/signs_lib/textures/hdf_20.png differ diff --git a/mods/signs_lib/textures/hdf_21.png b/mods/signs_lib/textures/hdf_21.png new file mode 100644 index 0000000..01929d4 Binary files /dev/null and b/mods/signs_lib/textures/hdf_21.png differ diff --git a/mods/signs_lib/textures/hdf_22.png b/mods/signs_lib/textures/hdf_22.png new file mode 100644 index 0000000..2acde25 Binary files /dev/null and b/mods/signs_lib/textures/hdf_22.png differ diff --git a/mods/signs_lib/textures/hdf_23.png b/mods/signs_lib/textures/hdf_23.png new file mode 100644 index 0000000..ace1437 Binary files /dev/null and b/mods/signs_lib/textures/hdf_23.png differ diff --git a/mods/signs_lib/textures/hdf_24.png b/mods/signs_lib/textures/hdf_24.png new file mode 100644 index 0000000..909b015 Binary files /dev/null and b/mods/signs_lib/textures/hdf_24.png differ diff --git a/mods/signs_lib/textures/hdf_25.png b/mods/signs_lib/textures/hdf_25.png new file mode 100644 index 0000000..30a7829 Binary files /dev/null and b/mods/signs_lib/textures/hdf_25.png differ diff --git a/mods/signs_lib/textures/hdf_26.png b/mods/signs_lib/textures/hdf_26.png new file mode 100644 index 0000000..d29936c Binary files /dev/null and b/mods/signs_lib/textures/hdf_26.png differ diff --git a/mods/signs_lib/textures/hdf_27.png b/mods/signs_lib/textures/hdf_27.png new file mode 100644 index 0000000..9844e92 Binary files /dev/null and b/mods/signs_lib/textures/hdf_27.png differ diff --git a/mods/signs_lib/textures/hdf_28.png b/mods/signs_lib/textures/hdf_28.png new file mode 100644 index 0000000..4810d75 Binary files /dev/null and b/mods/signs_lib/textures/hdf_28.png differ diff --git a/mods/signs_lib/textures/hdf_29.png b/mods/signs_lib/textures/hdf_29.png new file mode 100644 index 0000000..e5ff2b7 Binary files /dev/null and b/mods/signs_lib/textures/hdf_29.png differ diff --git a/mods/signs_lib/textures/hdf_2a.png b/mods/signs_lib/textures/hdf_2a.png new file mode 100644 index 0000000..5408897 Binary files /dev/null and b/mods/signs_lib/textures/hdf_2a.png differ diff --git a/mods/signs_lib/textures/hdf_2b.png b/mods/signs_lib/textures/hdf_2b.png new file mode 100644 index 0000000..9ad7d9e Binary files /dev/null and b/mods/signs_lib/textures/hdf_2b.png differ diff --git a/mods/signs_lib/textures/hdf_2c.png b/mods/signs_lib/textures/hdf_2c.png new file mode 100644 index 0000000..cb3eae0 Binary files /dev/null and b/mods/signs_lib/textures/hdf_2c.png differ diff --git a/mods/signs_lib/textures/hdf_2d.png b/mods/signs_lib/textures/hdf_2d.png new file mode 100644 index 0000000..c252f37 Binary files /dev/null and b/mods/signs_lib/textures/hdf_2d.png differ diff --git a/mods/signs_lib/textures/hdf_2e.png b/mods/signs_lib/textures/hdf_2e.png new file mode 100644 index 0000000..d3aab5b Binary files /dev/null and b/mods/signs_lib/textures/hdf_2e.png differ diff --git a/mods/signs_lib/textures/hdf_2f.png b/mods/signs_lib/textures/hdf_2f.png new file mode 100644 index 0000000..48c25f2 Binary files /dev/null and b/mods/signs_lib/textures/hdf_2f.png differ diff --git a/mods/signs_lib/textures/hdf_30.png b/mods/signs_lib/textures/hdf_30.png new file mode 100644 index 0000000..56ec3e7 Binary files /dev/null and b/mods/signs_lib/textures/hdf_30.png differ diff --git a/mods/signs_lib/textures/hdf_31.png b/mods/signs_lib/textures/hdf_31.png new file mode 100644 index 0000000..c526e86 Binary files /dev/null and b/mods/signs_lib/textures/hdf_31.png differ diff --git a/mods/signs_lib/textures/hdf_32.png b/mods/signs_lib/textures/hdf_32.png new file mode 100644 index 0000000..339d933 Binary files /dev/null and b/mods/signs_lib/textures/hdf_32.png differ diff --git a/mods/signs_lib/textures/hdf_33.png b/mods/signs_lib/textures/hdf_33.png new file mode 100644 index 0000000..aba5466 Binary files /dev/null and b/mods/signs_lib/textures/hdf_33.png differ diff --git a/mods/signs_lib/textures/hdf_34.png b/mods/signs_lib/textures/hdf_34.png new file mode 100644 index 0000000..9e71d10 Binary files /dev/null and b/mods/signs_lib/textures/hdf_34.png differ diff --git a/mods/signs_lib/textures/hdf_35.png b/mods/signs_lib/textures/hdf_35.png new file mode 100644 index 0000000..c12370f Binary files /dev/null and b/mods/signs_lib/textures/hdf_35.png differ diff --git a/mods/signs_lib/textures/hdf_36.png b/mods/signs_lib/textures/hdf_36.png new file mode 100644 index 0000000..bebb32a Binary files /dev/null and b/mods/signs_lib/textures/hdf_36.png differ diff --git a/mods/signs_lib/textures/hdf_37.png b/mods/signs_lib/textures/hdf_37.png new file mode 100644 index 0000000..73d9bb9 Binary files /dev/null and b/mods/signs_lib/textures/hdf_37.png differ diff --git a/mods/signs_lib/textures/hdf_38.png b/mods/signs_lib/textures/hdf_38.png new file mode 100644 index 0000000..baf7f6f Binary files /dev/null and b/mods/signs_lib/textures/hdf_38.png differ diff --git a/mods/signs_lib/textures/hdf_39.png b/mods/signs_lib/textures/hdf_39.png new file mode 100644 index 0000000..9572947 Binary files /dev/null and b/mods/signs_lib/textures/hdf_39.png differ diff --git a/mods/signs_lib/textures/hdf_3a.png b/mods/signs_lib/textures/hdf_3a.png new file mode 100644 index 0000000..23ba0cd Binary files /dev/null and b/mods/signs_lib/textures/hdf_3a.png differ diff --git a/mods/signs_lib/textures/hdf_3b.png b/mods/signs_lib/textures/hdf_3b.png new file mode 100644 index 0000000..c4b467f Binary files /dev/null and b/mods/signs_lib/textures/hdf_3b.png differ diff --git a/mods/signs_lib/textures/hdf_3c.png b/mods/signs_lib/textures/hdf_3c.png new file mode 100644 index 0000000..566ba49 Binary files /dev/null and b/mods/signs_lib/textures/hdf_3c.png differ diff --git a/mods/signs_lib/textures/hdf_3d.png b/mods/signs_lib/textures/hdf_3d.png new file mode 100644 index 0000000..50e6c6f Binary files /dev/null and b/mods/signs_lib/textures/hdf_3d.png differ diff --git a/mods/signs_lib/textures/hdf_3e.png b/mods/signs_lib/textures/hdf_3e.png new file mode 100644 index 0000000..090f8ca Binary files /dev/null and b/mods/signs_lib/textures/hdf_3e.png differ diff --git a/mods/signs_lib/textures/hdf_3f.png b/mods/signs_lib/textures/hdf_3f.png new file mode 100644 index 0000000..dce4727 Binary files /dev/null and b/mods/signs_lib/textures/hdf_3f.png differ diff --git a/mods/signs_lib/textures/hdf_40.png b/mods/signs_lib/textures/hdf_40.png new file mode 100644 index 0000000..65533fd Binary files /dev/null and b/mods/signs_lib/textures/hdf_40.png differ diff --git a/mods/signs_lib/textures/hdf_41.png b/mods/signs_lib/textures/hdf_41.png new file mode 100644 index 0000000..e30c27c Binary files /dev/null and b/mods/signs_lib/textures/hdf_41.png differ diff --git a/mods/signs_lib/textures/hdf_42.png b/mods/signs_lib/textures/hdf_42.png new file mode 100644 index 0000000..28d480b Binary files /dev/null and b/mods/signs_lib/textures/hdf_42.png differ diff --git a/mods/signs_lib/textures/hdf_43.png b/mods/signs_lib/textures/hdf_43.png new file mode 100644 index 0000000..db57d8d Binary files /dev/null and b/mods/signs_lib/textures/hdf_43.png differ diff --git a/mods/signs_lib/textures/hdf_44.png b/mods/signs_lib/textures/hdf_44.png new file mode 100644 index 0000000..cca9575 Binary files /dev/null and b/mods/signs_lib/textures/hdf_44.png differ diff --git a/mods/signs_lib/textures/hdf_45.png b/mods/signs_lib/textures/hdf_45.png new file mode 100644 index 0000000..07e772b Binary files /dev/null and b/mods/signs_lib/textures/hdf_45.png differ diff --git a/mods/signs_lib/textures/hdf_46.png b/mods/signs_lib/textures/hdf_46.png new file mode 100644 index 0000000..24de187 Binary files /dev/null and b/mods/signs_lib/textures/hdf_46.png differ diff --git a/mods/signs_lib/textures/hdf_47.png b/mods/signs_lib/textures/hdf_47.png new file mode 100644 index 0000000..0deef83 Binary files /dev/null and b/mods/signs_lib/textures/hdf_47.png differ diff --git a/mods/signs_lib/textures/hdf_48.png b/mods/signs_lib/textures/hdf_48.png new file mode 100644 index 0000000..f85b4ae Binary files /dev/null and b/mods/signs_lib/textures/hdf_48.png differ diff --git a/mods/signs_lib/textures/hdf_49.png b/mods/signs_lib/textures/hdf_49.png new file mode 100644 index 0000000..1f02728 Binary files /dev/null and b/mods/signs_lib/textures/hdf_49.png differ diff --git a/mods/signs_lib/textures/hdf_4a.png b/mods/signs_lib/textures/hdf_4a.png new file mode 100644 index 0000000..b2f7bef Binary files /dev/null and b/mods/signs_lib/textures/hdf_4a.png differ diff --git a/mods/signs_lib/textures/hdf_4b.png b/mods/signs_lib/textures/hdf_4b.png new file mode 100644 index 0000000..e8d52d6 Binary files /dev/null and b/mods/signs_lib/textures/hdf_4b.png differ diff --git a/mods/signs_lib/textures/hdf_4c.png b/mods/signs_lib/textures/hdf_4c.png new file mode 100644 index 0000000..94d7d48 Binary files /dev/null and b/mods/signs_lib/textures/hdf_4c.png differ diff --git a/mods/signs_lib/textures/hdf_4d.png b/mods/signs_lib/textures/hdf_4d.png new file mode 100644 index 0000000..0ee8eb4 Binary files /dev/null and b/mods/signs_lib/textures/hdf_4d.png differ diff --git a/mods/signs_lib/textures/hdf_4e.png b/mods/signs_lib/textures/hdf_4e.png new file mode 100644 index 0000000..8ff83d6 Binary files /dev/null and b/mods/signs_lib/textures/hdf_4e.png differ diff --git a/mods/signs_lib/textures/hdf_4f.png b/mods/signs_lib/textures/hdf_4f.png new file mode 100644 index 0000000..b278ccc Binary files /dev/null and b/mods/signs_lib/textures/hdf_4f.png differ diff --git a/mods/signs_lib/textures/hdf_50.png b/mods/signs_lib/textures/hdf_50.png new file mode 100644 index 0000000..33b52fd Binary files /dev/null and b/mods/signs_lib/textures/hdf_50.png differ diff --git a/mods/signs_lib/textures/hdf_51.png b/mods/signs_lib/textures/hdf_51.png new file mode 100644 index 0000000..892747c Binary files /dev/null and b/mods/signs_lib/textures/hdf_51.png differ diff --git a/mods/signs_lib/textures/hdf_52.png b/mods/signs_lib/textures/hdf_52.png new file mode 100644 index 0000000..acb395e Binary files /dev/null and b/mods/signs_lib/textures/hdf_52.png differ diff --git a/mods/signs_lib/textures/hdf_53.png b/mods/signs_lib/textures/hdf_53.png new file mode 100644 index 0000000..028f284 Binary files /dev/null and b/mods/signs_lib/textures/hdf_53.png differ diff --git a/mods/signs_lib/textures/hdf_54.png b/mods/signs_lib/textures/hdf_54.png new file mode 100644 index 0000000..3bd0a2b Binary files /dev/null and b/mods/signs_lib/textures/hdf_54.png differ diff --git a/mods/signs_lib/textures/hdf_55.png b/mods/signs_lib/textures/hdf_55.png new file mode 100644 index 0000000..81643f9 Binary files /dev/null and b/mods/signs_lib/textures/hdf_55.png differ diff --git a/mods/signs_lib/textures/hdf_56.png b/mods/signs_lib/textures/hdf_56.png new file mode 100644 index 0000000..8726f5b Binary files /dev/null and b/mods/signs_lib/textures/hdf_56.png differ diff --git a/mods/signs_lib/textures/hdf_57.png b/mods/signs_lib/textures/hdf_57.png new file mode 100644 index 0000000..5e8d9d0 Binary files /dev/null and b/mods/signs_lib/textures/hdf_57.png differ diff --git a/mods/signs_lib/textures/hdf_58.png b/mods/signs_lib/textures/hdf_58.png new file mode 100644 index 0000000..2abbda3 Binary files /dev/null and b/mods/signs_lib/textures/hdf_58.png differ diff --git a/mods/signs_lib/textures/hdf_59.png b/mods/signs_lib/textures/hdf_59.png new file mode 100644 index 0000000..ff45093 Binary files /dev/null and b/mods/signs_lib/textures/hdf_59.png differ diff --git a/mods/signs_lib/textures/hdf_5a.png b/mods/signs_lib/textures/hdf_5a.png new file mode 100644 index 0000000..5c706ce Binary files /dev/null and b/mods/signs_lib/textures/hdf_5a.png differ diff --git a/mods/signs_lib/textures/hdf_5b.png b/mods/signs_lib/textures/hdf_5b.png new file mode 100644 index 0000000..2592f1f Binary files /dev/null and b/mods/signs_lib/textures/hdf_5b.png differ diff --git a/mods/signs_lib/textures/hdf_5c.png b/mods/signs_lib/textures/hdf_5c.png new file mode 100644 index 0000000..406d634 Binary files /dev/null and b/mods/signs_lib/textures/hdf_5c.png differ diff --git a/mods/signs_lib/textures/hdf_5d.png b/mods/signs_lib/textures/hdf_5d.png new file mode 100644 index 0000000..a5efa37 Binary files /dev/null and b/mods/signs_lib/textures/hdf_5d.png differ diff --git a/mods/signs_lib/textures/hdf_5e.png b/mods/signs_lib/textures/hdf_5e.png new file mode 100644 index 0000000..7f610d8 Binary files /dev/null and b/mods/signs_lib/textures/hdf_5e.png differ diff --git a/mods/signs_lib/textures/hdf_5f.png b/mods/signs_lib/textures/hdf_5f.png new file mode 100644 index 0000000..07cce5a Binary files /dev/null and b/mods/signs_lib/textures/hdf_5f.png differ diff --git a/mods/signs_lib/textures/hdf_60.png b/mods/signs_lib/textures/hdf_60.png new file mode 100644 index 0000000..cd4e0fb Binary files /dev/null and b/mods/signs_lib/textures/hdf_60.png differ diff --git a/mods/signs_lib/textures/hdf_61.png b/mods/signs_lib/textures/hdf_61.png new file mode 100644 index 0000000..dc019ba Binary files /dev/null and b/mods/signs_lib/textures/hdf_61.png differ diff --git a/mods/signs_lib/textures/hdf_62.png b/mods/signs_lib/textures/hdf_62.png new file mode 100644 index 0000000..285d0b2 Binary files /dev/null and b/mods/signs_lib/textures/hdf_62.png differ diff --git a/mods/signs_lib/textures/hdf_63.png b/mods/signs_lib/textures/hdf_63.png new file mode 100644 index 0000000..8781b8a Binary files /dev/null and b/mods/signs_lib/textures/hdf_63.png differ diff --git a/mods/signs_lib/textures/hdf_64.png b/mods/signs_lib/textures/hdf_64.png new file mode 100644 index 0000000..16c9a28 Binary files /dev/null and b/mods/signs_lib/textures/hdf_64.png differ diff --git a/mods/signs_lib/textures/hdf_65.png b/mods/signs_lib/textures/hdf_65.png new file mode 100644 index 0000000..810d9c9 Binary files /dev/null and b/mods/signs_lib/textures/hdf_65.png differ diff --git a/mods/signs_lib/textures/hdf_66.png b/mods/signs_lib/textures/hdf_66.png new file mode 100644 index 0000000..411ca57 Binary files /dev/null and b/mods/signs_lib/textures/hdf_66.png differ diff --git a/mods/signs_lib/textures/hdf_67.png b/mods/signs_lib/textures/hdf_67.png new file mode 100644 index 0000000..d8820dd Binary files /dev/null and b/mods/signs_lib/textures/hdf_67.png differ diff --git a/mods/signs_lib/textures/hdf_68.png b/mods/signs_lib/textures/hdf_68.png new file mode 100644 index 0000000..5b51d05 Binary files /dev/null and b/mods/signs_lib/textures/hdf_68.png differ diff --git a/mods/signs_lib/textures/hdf_69.png b/mods/signs_lib/textures/hdf_69.png new file mode 100644 index 0000000..55f1a22 Binary files /dev/null and b/mods/signs_lib/textures/hdf_69.png differ diff --git a/mods/signs_lib/textures/hdf_6a.png b/mods/signs_lib/textures/hdf_6a.png new file mode 100644 index 0000000..c20e222 Binary files /dev/null and b/mods/signs_lib/textures/hdf_6a.png differ diff --git a/mods/signs_lib/textures/hdf_6b.png b/mods/signs_lib/textures/hdf_6b.png new file mode 100644 index 0000000..fc34fc5 Binary files /dev/null and b/mods/signs_lib/textures/hdf_6b.png differ diff --git a/mods/signs_lib/textures/hdf_6c.png b/mods/signs_lib/textures/hdf_6c.png new file mode 100644 index 0000000..1f02728 Binary files /dev/null and b/mods/signs_lib/textures/hdf_6c.png differ diff --git a/mods/signs_lib/textures/hdf_6d.png b/mods/signs_lib/textures/hdf_6d.png new file mode 100644 index 0000000..6c0ae93 Binary files /dev/null and b/mods/signs_lib/textures/hdf_6d.png differ diff --git a/mods/signs_lib/textures/hdf_6e.png b/mods/signs_lib/textures/hdf_6e.png new file mode 100644 index 0000000..4f4dec7 Binary files /dev/null and b/mods/signs_lib/textures/hdf_6e.png differ diff --git a/mods/signs_lib/textures/hdf_6f.png b/mods/signs_lib/textures/hdf_6f.png new file mode 100644 index 0000000..921c611 Binary files /dev/null and b/mods/signs_lib/textures/hdf_6f.png differ diff --git a/mods/signs_lib/textures/hdf_70.png b/mods/signs_lib/textures/hdf_70.png new file mode 100644 index 0000000..8202199 Binary files /dev/null and b/mods/signs_lib/textures/hdf_70.png differ diff --git a/mods/signs_lib/textures/hdf_71.png b/mods/signs_lib/textures/hdf_71.png new file mode 100644 index 0000000..c02171f Binary files /dev/null and b/mods/signs_lib/textures/hdf_71.png differ diff --git a/mods/signs_lib/textures/hdf_72.png b/mods/signs_lib/textures/hdf_72.png new file mode 100644 index 0000000..757b9c8 Binary files /dev/null and b/mods/signs_lib/textures/hdf_72.png differ diff --git a/mods/signs_lib/textures/hdf_73.png b/mods/signs_lib/textures/hdf_73.png new file mode 100644 index 0000000..e38497d Binary files /dev/null and b/mods/signs_lib/textures/hdf_73.png differ diff --git a/mods/signs_lib/textures/hdf_74.png b/mods/signs_lib/textures/hdf_74.png new file mode 100644 index 0000000..10f9cfa Binary files /dev/null and b/mods/signs_lib/textures/hdf_74.png differ diff --git a/mods/signs_lib/textures/hdf_75.png b/mods/signs_lib/textures/hdf_75.png new file mode 100644 index 0000000..377416b Binary files /dev/null and b/mods/signs_lib/textures/hdf_75.png differ diff --git a/mods/signs_lib/textures/hdf_76.png b/mods/signs_lib/textures/hdf_76.png new file mode 100644 index 0000000..dc558d3 Binary files /dev/null and b/mods/signs_lib/textures/hdf_76.png differ diff --git a/mods/signs_lib/textures/hdf_77.png b/mods/signs_lib/textures/hdf_77.png new file mode 100644 index 0000000..6a14298 Binary files /dev/null and b/mods/signs_lib/textures/hdf_77.png differ diff --git a/mods/signs_lib/textures/hdf_78.png b/mods/signs_lib/textures/hdf_78.png new file mode 100644 index 0000000..38b4be0 Binary files /dev/null and b/mods/signs_lib/textures/hdf_78.png differ diff --git a/mods/signs_lib/textures/hdf_79.png b/mods/signs_lib/textures/hdf_79.png new file mode 100644 index 0000000..8859fb4 Binary files /dev/null and b/mods/signs_lib/textures/hdf_79.png differ diff --git a/mods/signs_lib/textures/hdf_7a.png b/mods/signs_lib/textures/hdf_7a.png new file mode 100644 index 0000000..c42c84a Binary files /dev/null and b/mods/signs_lib/textures/hdf_7a.png differ diff --git a/mods/signs_lib/textures/hdf_7b.png b/mods/signs_lib/textures/hdf_7b.png new file mode 100644 index 0000000..c0ee072 Binary files /dev/null and b/mods/signs_lib/textures/hdf_7b.png differ diff --git a/mods/signs_lib/textures/hdf_7c.png b/mods/signs_lib/textures/hdf_7c.png new file mode 100644 index 0000000..6e9949d Binary files /dev/null and b/mods/signs_lib/textures/hdf_7c.png differ diff --git a/mods/signs_lib/textures/hdf_7d.png b/mods/signs_lib/textures/hdf_7d.png new file mode 100644 index 0000000..6162caa Binary files /dev/null and b/mods/signs_lib/textures/hdf_7d.png differ diff --git a/mods/signs_lib/textures/hdf_7e.png b/mods/signs_lib/textures/hdf_7e.png new file mode 100644 index 0000000..ec762d5 Binary files /dev/null and b/mods/signs_lib/textures/hdf_7e.png differ diff --git a/mods/signs_lib/textures/signs_back.png b/mods/signs_lib/textures/signs_back.png new file mode 100644 index 0000000..db33dee Binary files /dev/null and b/mods/signs_lib/textures/signs_back.png differ diff --git a/mods/signs_lib/textures/signs_bottom.png b/mods/signs_lib/textures/signs_bottom.png new file mode 100644 index 0000000..38961f0 Binary files /dev/null and b/mods/signs_lib/textures/signs_bottom.png differ diff --git a/mods/signs_lib/textures/signs_bottom_locked.png b/mods/signs_lib/textures/signs_bottom_locked.png new file mode 100644 index 0000000..f90a9d8 Binary files /dev/null and b/mods/signs_lib/textures/signs_bottom_locked.png differ diff --git a/mods/signs_lib/textures/signs_front.png b/mods/signs_lib/textures/signs_front.png new file mode 100644 index 0000000..2e61435 Binary files /dev/null and b/mods/signs_lib/textures/signs_front.png differ diff --git a/mods/signs_lib/textures/signs_front_locked.png b/mods/signs_lib/textures/signs_front_locked.png new file mode 100644 index 0000000..c638e5c Binary files /dev/null and b/mods/signs_lib/textures/signs_front_locked.png differ diff --git a/mods/signs_lib/textures/signs_green_front.png b/mods/signs_lib/textures/signs_green_front.png new file mode 100644 index 0000000..45c6e0f Binary files /dev/null and b/mods/signs_lib/textures/signs_green_front.png differ diff --git a/mods/signs_lib/textures/signs_green_inv.png b/mods/signs_lib/textures/signs_green_inv.png new file mode 100644 index 0000000..24ca5a8 Binary files /dev/null and b/mods/signs_lib/textures/signs_green_inv.png differ diff --git a/mods/signs_lib/textures/signs_hanging_back.png b/mods/signs_lib/textures/signs_hanging_back.png new file mode 100644 index 0000000..7cf39a2 Binary files /dev/null and b/mods/signs_lib/textures/signs_hanging_back.png differ diff --git a/mods/signs_lib/textures/signs_hanging_bottom.png b/mods/signs_lib/textures/signs_hanging_bottom.png new file mode 100644 index 0000000..7b2af4d Binary files /dev/null and b/mods/signs_lib/textures/signs_hanging_bottom.png differ diff --git a/mods/signs_lib/textures/signs_hanging_front.png b/mods/signs_lib/textures/signs_hanging_front.png new file mode 100644 index 0000000..bdc745e Binary files /dev/null and b/mods/signs_lib/textures/signs_hanging_front.png differ diff --git a/mods/signs_lib/textures/signs_hanging_side.png b/mods/signs_lib/textures/signs_hanging_side.png new file mode 100644 index 0000000..8498d67 Binary files /dev/null and b/mods/signs_lib/textures/signs_hanging_side.png differ diff --git a/mods/signs_lib/textures/signs_hanging_top.png b/mods/signs_lib/textures/signs_hanging_top.png new file mode 100644 index 0000000..1c08f91 Binary files /dev/null and b/mods/signs_lib/textures/signs_hanging_top.png differ diff --git a/mods/signs_lib/textures/signs_locked_inv.png b/mods/signs_lib/textures/signs_locked_inv.png new file mode 100644 index 0000000..3c0554a Binary files /dev/null and b/mods/signs_lib/textures/signs_locked_inv.png differ diff --git a/mods/signs_lib/textures/signs_metal_back.png b/mods/signs_lib/textures/signs_metal_back.png new file mode 100644 index 0000000..48420b2 Binary files /dev/null and b/mods/signs_lib/textures/signs_metal_back.png differ diff --git a/mods/signs_lib/textures/signs_metal_sides.png b/mods/signs_lib/textures/signs_metal_sides.png new file mode 100644 index 0000000..b7b4526 Binary files /dev/null and b/mods/signs_lib/textures/signs_metal_sides.png differ diff --git a/mods/signs_lib/textures/signs_metal_tb.png b/mods/signs_lib/textures/signs_metal_tb.png new file mode 100644 index 0000000..9a264f0 Binary files /dev/null and b/mods/signs_lib/textures/signs_metal_tb.png differ diff --git a/mods/signs_lib/textures/signs_post_back.png b/mods/signs_lib/textures/signs_post_back.png new file mode 100644 index 0000000..829b844 Binary files /dev/null and b/mods/signs_lib/textures/signs_post_back.png differ diff --git a/mods/signs_lib/textures/signs_post_bottom.png b/mods/signs_lib/textures/signs_post_bottom.png new file mode 100644 index 0000000..bea83e3 Binary files /dev/null and b/mods/signs_lib/textures/signs_post_bottom.png differ diff --git a/mods/signs_lib/textures/signs_post_front.png b/mods/signs_lib/textures/signs_post_front.png new file mode 100644 index 0000000..02a0e59 Binary files /dev/null and b/mods/signs_lib/textures/signs_post_front.png differ diff --git a/mods/signs_lib/textures/signs_post_side.png b/mods/signs_lib/textures/signs_post_side.png new file mode 100644 index 0000000..95d7a69 Binary files /dev/null and b/mods/signs_lib/textures/signs_post_side.png differ diff --git a/mods/signs_lib/textures/signs_post_top.png b/mods/signs_lib/textures/signs_post_top.png new file mode 100644 index 0000000..6b251f6 Binary files /dev/null and b/mods/signs_lib/textures/signs_post_top.png differ diff --git a/mods/signs_lib/textures/signs_red_front.png b/mods/signs_lib/textures/signs_red_front.png new file mode 100644 index 0000000..f111a64 Binary files /dev/null and b/mods/signs_lib/textures/signs_red_front.png differ diff --git a/mods/signs_lib/textures/signs_red_inv.png b/mods/signs_lib/textures/signs_red_inv.png new file mode 100644 index 0000000..af4597d Binary files /dev/null and b/mods/signs_lib/textures/signs_red_inv.png differ diff --git a/mods/signs_lib/textures/signs_side.png b/mods/signs_lib/textures/signs_side.png new file mode 100644 index 0000000..ab6db9e Binary files /dev/null and b/mods/signs_lib/textures/signs_side.png differ diff --git a/mods/signs_lib/textures/signs_side_locked.png b/mods/signs_lib/textures/signs_side_locked.png new file mode 100644 index 0000000..8025a83 Binary files /dev/null and b/mods/signs_lib/textures/signs_side_locked.png differ diff --git a/mods/signs_lib/textures/signs_top.png b/mods/signs_lib/textures/signs_top.png new file mode 100644 index 0000000..aa86aa8 Binary files /dev/null and b/mods/signs_lib/textures/signs_top.png differ diff --git a/mods/signs_lib/textures/signs_top_locked.png b/mods/signs_lib/textures/signs_top_locked.png new file mode 100644 index 0000000..c96c550 Binary files /dev/null and b/mods/signs_lib/textures/signs_top_locked.png differ diff --git a/mods/signs_lib/textures/signs_white_black_front.png b/mods/signs_lib/textures/signs_white_black_front.png new file mode 100644 index 0000000..f4163f1 Binary files /dev/null and b/mods/signs_lib/textures/signs_white_black_front.png differ diff --git a/mods/signs_lib/textures/signs_white_black_inv.png b/mods/signs_lib/textures/signs_white_black_inv.png new file mode 100644 index 0000000..42bb014 Binary files /dev/null and b/mods/signs_lib/textures/signs_white_black_inv.png differ diff --git a/mods/signs_lib/textures/signs_white_red_front.png b/mods/signs_lib/textures/signs_white_red_front.png new file mode 100644 index 0000000..dae00ff Binary files /dev/null and b/mods/signs_lib/textures/signs_white_red_front.png differ diff --git a/mods/signs_lib/textures/signs_white_red_inv.png b/mods/signs_lib/textures/signs_white_red_inv.png new file mode 100644 index 0000000..52ac3c8 Binary files /dev/null and b/mods/signs_lib/textures/signs_white_red_inv.png differ diff --git a/mods/signs_lib/textures/signs_yellow_front.png b/mods/signs_lib/textures/signs_yellow_front.png new file mode 100644 index 0000000..4ce9082 Binary files /dev/null and b/mods/signs_lib/textures/signs_yellow_front.png differ diff --git a/mods/signs_lib/textures/signs_yellow_inv.png b/mods/signs_lib/textures/signs_yellow_inv.png new file mode 100644 index 0000000..86af53d Binary files /dev/null and b/mods/signs_lib/textures/signs_yellow_inv.png differ diff --git a/mods/signs_lib/textures/slc_0.png b/mods/signs_lib/textures/slc_0.png new file mode 100644 index 0000000..385ed40 Binary files /dev/null and b/mods/signs_lib/textures/slc_0.png differ diff --git a/mods/signs_lib/textures/slc_1.png b/mods/signs_lib/textures/slc_1.png new file mode 100644 index 0000000..19abd17 Binary files /dev/null and b/mods/signs_lib/textures/slc_1.png differ diff --git a/mods/signs_lib/textures/slc_2.png b/mods/signs_lib/textures/slc_2.png new file mode 100644 index 0000000..eaed359 Binary files /dev/null and b/mods/signs_lib/textures/slc_2.png differ diff --git a/mods/signs_lib/textures/slc_3.png b/mods/signs_lib/textures/slc_3.png new file mode 100644 index 0000000..62bee4b Binary files /dev/null and b/mods/signs_lib/textures/slc_3.png differ diff --git a/mods/signs_lib/textures/slc_4.png b/mods/signs_lib/textures/slc_4.png new file mode 100644 index 0000000..22250a4 Binary files /dev/null and b/mods/signs_lib/textures/slc_4.png differ diff --git a/mods/signs_lib/textures/slc_5.png b/mods/signs_lib/textures/slc_5.png new file mode 100644 index 0000000..b227c84 Binary files /dev/null and b/mods/signs_lib/textures/slc_5.png differ diff --git a/mods/signs_lib/textures/slc_6.png b/mods/signs_lib/textures/slc_6.png new file mode 100644 index 0000000..359d52c Binary files /dev/null and b/mods/signs_lib/textures/slc_6.png differ diff --git a/mods/signs_lib/textures/slc_7.png b/mods/signs_lib/textures/slc_7.png new file mode 100644 index 0000000..115b246 Binary files /dev/null and b/mods/signs_lib/textures/slc_7.png differ diff --git a/mods/signs_lib/textures/slc_8.png b/mods/signs_lib/textures/slc_8.png new file mode 100644 index 0000000..bad5177 Binary files /dev/null and b/mods/signs_lib/textures/slc_8.png differ diff --git a/mods/signs_lib/textures/slc_9.png b/mods/signs_lib/textures/slc_9.png new file mode 100644 index 0000000..69d41e4 Binary files /dev/null and b/mods/signs_lib/textures/slc_9.png differ diff --git a/mods/signs_lib/textures/slc_A.png b/mods/signs_lib/textures/slc_A.png new file mode 100644 index 0000000..3ff5d7e Binary files /dev/null and b/mods/signs_lib/textures/slc_A.png differ diff --git a/mods/signs_lib/textures/slc_B.png b/mods/signs_lib/textures/slc_B.png new file mode 100644 index 0000000..5ee2f1d Binary files /dev/null and b/mods/signs_lib/textures/slc_B.png differ diff --git a/mods/signs_lib/textures/slc_C.png b/mods/signs_lib/textures/slc_C.png new file mode 100644 index 0000000..bd59f28 Binary files /dev/null and b/mods/signs_lib/textures/slc_C.png differ diff --git a/mods/signs_lib/textures/slc_D.png b/mods/signs_lib/textures/slc_D.png new file mode 100644 index 0000000..66ac755 Binary files /dev/null and b/mods/signs_lib/textures/slc_D.png differ diff --git a/mods/signs_lib/textures/slc_E.png b/mods/signs_lib/textures/slc_E.png new file mode 100644 index 0000000..0e2363c Binary files /dev/null and b/mods/signs_lib/textures/slc_E.png differ diff --git a/mods/signs_lib/textures/slc_F.png b/mods/signs_lib/textures/slc_F.png new file mode 100644 index 0000000..edcd74a Binary files /dev/null and b/mods/signs_lib/textures/slc_F.png differ diff --git a/mods/signs_lib/textures/slc_n.png b/mods/signs_lib/textures/slc_n.png new file mode 100644 index 0000000..733a43a Binary files /dev/null and b/mods/signs_lib/textures/slc_n.png differ diff --git a/mods/simple_skins/depends.txt b/mods/simple_skins/depends.txt new file mode 100644 index 0000000..331d858 --- /dev/null +++ b/mods/simple_skins/depends.txt @@ -0,0 +1 @@ +default \ No newline at end of file diff --git a/mods/simple_skins/init.lua b/mods/simple_skins/init.lua new file mode 100644 index 0000000..9dee309 --- /dev/null +++ b/mods/simple_skins/init.lua @@ -0,0 +1,188 @@ +-- Simple Skins mod for minetest +-- Adds a skin gallery to the inventory, using inventory_plus +-- Released by TenPlus1 and based on Zeg9's code under WTFPL + +skins = {} +skins.skins = {} +skins.modpath = minetest.get_modpath("simple_skins") + +-- Load Skins List + +skins.list = {} +skins.add = function(skin) + table.insert(skins.list,skin) +end + +local id = 1 +while true do + local f = io.open(skins.modpath.."/textures/character_"..id..".png") + if (not f) then break end + f:close() + skins.add("character_"..id) + id = id +1 +end + +-- Load Metadata + +skins.meta = {} +for _, i in ipairs(skins.list) do + skins.meta[i] = {} + local f = io.open(skins.modpath.."/meta/"..i..".txt") + local data = nil + if f then + data = minetest.deserialize("return {"..f:read('*all').."}") + f:close() + end + data = data or {} + skins.meta[i].name = data.name or "" + skins.meta[i].author = data.author or "" +end + +-- Player Load/Save Routines + +skins.file = minetest.get_worldpath() .. "/simple_skins.mt" + +skins.load = function() -- RND: BUG HERE SOMEWHERE + local input = io.open(skins.file, "r") + local data = nil + local linez -- rnd fix? + if input then + data = input:read('*all') + else minetest.log("action", " error loading simple_skins.mt") + end + if data and data ~= "" then + linez = string.split(data,"\n") + for _, line in ipairs(linez) do + data = string.split(line, ' ',false, 2) + skins.skins[data[1]] = data[2] + end + io.close(input) + end +end + +skins.load() + +skins.save = function() + local output = io.open(skins.file,'w') + for name, skin in pairs(skins.skins) do + if name and skin then + output:write(name .. " " .. skin .. "\n") + end + end + io.close(output) +end + + + +minetest.register_chatcommand("setrace", { -- RND + params = "", + description = "pick your race", + privs = {}, + func = function(name, param) + if param == "" then + return false, "Invalid usage, use setrace 1 or 2. then reconnect server" + end + + local player = minetest.env:get_player_by_name(name) + if player == nil then + -- just a check to prevent the server crashing + return false + end + + if param == "2" then + skins.skins[player:get_player_name()] = "character_2" + else + skins.skins[player:get_player_name()] = "character_1" + end + + skins.update_player_skin(player) + end +}) + + + + +-- Skins Selection Page + +skins.formspec = {} +skins.formspec.main = function(name) + +local selected = 1; --just to set the default + +local formspec = "size[7,7]" + .. "button[0,.75;2,.5;main;Back]" + .. "label[.5,2;Select Player Skin:]" + .. "textlist[.5,2.5;5.8,4;skins_set;" + +for i, v in ipairs(skins.list) do + formspec = formspec .. skins.meta[v].name .. "," + if skins.skins[name] == skins.list[i] then -- if the current skin of the player the skin of the loop then + selected = i; --save the index + end +end + +formspec = formspec ..";"..selected..";true]";--so it can be used here to highlight the selected skin. + + local meta = skins.meta[skins.skins[name]] + if meta then + if meta.name then + formspec = formspec .. "label[2,.5;Name: "..meta.name.."]" + end + if meta.author then + formspec = formspec .. "label[2,1;Author: "..meta.author.."]" + end + end + + return formspec +end + +-- Update Player Skin + +skins.update_player_skin = function(player) + local name = player:get_player_name() + player:set_properties({ + visual = "mesh", + textures = {skins.skins[name]..".png"}, + visual_size = {x=1, y=1}, + }) + skins.save() +end + +-- Load Skin on Join + +minetest.register_on_joinplayer(function(player) + if not skins.skins[player:get_player_name()] then + skins.skins[player:get_player_name()] = "character_new" + end + skins.update_player_skin(player) + --inventory_plus.register_button(player,"skins","Skin") +end) + +minetest.register_on_player_receive_fields(function(player,formname,fields) + if fields.skins then + --inventory_plus.set_inventory_formspec(player,skins.formspec.main(player:get_player_name())) + end + +--if formname ~= "skins" then return end + local event = minetest.explode_textlist_event(fields["skins_set"]) + + if event.type == "CHG" then + + local index = event.index + + if skins.list[index] then + skins.skins[player:get_player_name()] = skins.list[index] + skins.update_player_skin(player) + --inventory_plus.set_inventory_formspec(player,skins.formspec.main(player:get_player_name())) + + if minetest.get_modpath("3d_armor") then + armor.textures[player:get_player_name()].skin = skins.list[index]..".png" + minetest.after(0, function(player) + local skin = armor:get_player_skin(name) + armor.textures[name].skin = skin..".png" + armor:set_player_armor(player) + end, player) + end + end + end +end) \ No newline at end of file diff --git a/mods/simple_skins/license.txt b/mods/simple_skins/license.txt new file mode 100644 index 0000000..5d30c14 --- /dev/null +++ b/mods/simple_skins/license.txt @@ -0,0 +1,14 @@ + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. \ No newline at end of file diff --git a/mods/simple_skins/meta/character_1.txt b/mods/simple_skins/meta/character_1.txt new file mode 100644 index 0000000..ff278e4 --- /dev/null +++ b/mods/simple_skins/meta/character_1.txt @@ -0,0 +1,4 @@ +name = "Sam", +author = "Jordach", +description = "The default skin.", +comment = "Sam Ain't Minecraft", diff --git a/mods/simple_skins/meta/character_10.txt b/mods/simple_skins/meta/character_10.txt new file mode 100644 index 0000000..44dee64 --- /dev/null +++ b/mods/simple_skins/meta/character_10.txt @@ -0,0 +1,2 @@ +name = "Assassin", +author = "jmf", diff --git a/mods/simple_skins/meta/character_11.txt b/mods/simple_skins/meta/character_11.txt new file mode 100644 index 0000000..61660ae --- /dev/null +++ b/mods/simple_skins/meta/character_11.txt @@ -0,0 +1,2 @@ +name = "Harry", +author = "jmf", diff --git a/mods/simple_skins/meta/character_12.txt b/mods/simple_skins/meta/character_12.txt new file mode 100644 index 0000000..324072c --- /dev/null +++ b/mods/simple_skins/meta/character_12.txt @@ -0,0 +1,2 @@ +name = "Bob", +author = "Chinchow", diff --git a/mods/simple_skins/meta/character_13.txt b/mods/simple_skins/meta/character_13.txt new file mode 100644 index 0000000..eed33f6 --- /dev/null +++ b/mods/simple_skins/meta/character_13.txt @@ -0,0 +1,2 @@ +name = "Jannette", +author = "Chinchow", diff --git a/mods/simple_skins/meta/character_14.txt b/mods/simple_skins/meta/character_14.txt new file mode 100644 index 0000000..75fa68d --- /dev/null +++ b/mods/simple_skins/meta/character_14.txt @@ -0,0 +1,2 @@ +name = "Sheriff", +author = "Chinchow", diff --git a/mods/simple_skins/meta/character_15.txt b/mods/simple_skins/meta/character_15.txt new file mode 100644 index 0000000..c1616af --- /dev/null +++ b/mods/simple_skins/meta/character_15.txt @@ -0,0 +1,2 @@ +name = "Sepia Sam", +author = "Hybrid Dog", diff --git a/mods/simple_skins/meta/character_16.txt b/mods/simple_skins/meta/character_16.txt new file mode 100644 index 0000000..e2cbcec --- /dev/null +++ b/mods/simple_skins/meta/character_16.txt @@ -0,0 +1,2 @@ +name = "Hybrid Sam", +author = "Hybrid Dog", diff --git a/mods/simple_skins/meta/character_17.txt b/mods/simple_skins/meta/character_17.txt new file mode 100644 index 0000000..c884353 --- /dev/null +++ b/mods/simple_skins/meta/character_17.txt @@ -0,0 +1,2 @@ +name = "Original Sam", +author = "Jordach", diff --git a/mods/simple_skins/meta/character_18.txt b/mods/simple_skins/meta/character_18.txt new file mode 100644 index 0000000..47c8923 --- /dev/null +++ b/mods/simple_skins/meta/character_18.txt @@ -0,0 +1,2 @@ +name = "Unnamed", +author = "Hybrid Dog", diff --git a/mods/simple_skins/meta/character_19.txt b/mods/simple_skins/meta/character_19.txt new file mode 100644 index 0000000..4b35517 --- /dev/null +++ b/mods/simple_skins/meta/character_19.txt @@ -0,0 +1,3 @@ +name = "VanessaE", +author = "Jordach", +comment = "Actually based from an old picture", diff --git a/mods/simple_skins/meta/character_2.txt b/mods/simple_skins/meta/character_2.txt new file mode 100644 index 0000000..fcde2a7 --- /dev/null +++ b/mods/simple_skins/meta/character_2.txt @@ -0,0 +1,3 @@ +name = "Zeg9", +author = "Zeg9", +description = "My own skin.", diff --git a/mods/simple_skins/meta/character_20.txt b/mods/simple_skins/meta/character_20.txt new file mode 100644 index 0000000..ab4faa2 --- /dev/null +++ b/mods/simple_skins/meta/character_20.txt @@ -0,0 +1,2 @@ +name = "Female Sam", +author = "Jordach", diff --git a/mods/simple_skins/meta/character_21.txt b/mods/simple_skins/meta/character_21.txt new file mode 100644 index 0000000..6992215 --- /dev/null +++ b/mods/simple_skins/meta/character_21.txt @@ -0,0 +1,2 @@ +name = "Battlefield 3 Soldier", +author = "Jordach", diff --git a/mods/simple_skins/meta/character_22.txt b/mods/simple_skins/meta/character_22.txt new file mode 100644 index 0000000..8ecc100 --- /dev/null +++ b/mods/simple_skins/meta/character_22.txt @@ -0,0 +1,2 @@ +name = "Smooth Sam", +author = "Jordach", diff --git a/mods/simple_skins/meta/character_23.txt b/mods/simple_skins/meta/character_23.txt new file mode 100644 index 0000000..b79ca20 --- /dev/null +++ b/mods/simple_skins/meta/character_23.txt @@ -0,0 +1,3 @@ +name = "Celeron55", +author = "Jordach", +comment = "Based on a picture from the wiki.", diff --git a/mods/simple_skins/meta/character_24.txt b/mods/simple_skins/meta/character_24.txt new file mode 100644 index 0000000..9696100 --- /dev/null +++ b/mods/simple_skins/meta/character_24.txt @@ -0,0 +1,2 @@ +name = "Tuxedo Sam", +author = "Jordach", diff --git a/mods/simple_skins/meta/character_25.txt b/mods/simple_skins/meta/character_25.txt new file mode 100644 index 0000000..e35a38e --- /dev/null +++ b/mods/simple_skins/meta/character_25.txt @@ -0,0 +1,2 @@ +name = "Iron Man MK. 7", +author = "Jordach", diff --git a/mods/simple_skins/meta/character_26.txt b/mods/simple_skins/meta/character_26.txt new file mode 100644 index 0000000..533000c --- /dev/null +++ b/mods/simple_skins/meta/character_26.txt @@ -0,0 +1,2 @@ +name = "Jordach", +author = "Jordach", diff --git a/mods/simple_skins/meta/character_27.txt b/mods/simple_skins/meta/character_27.txt new file mode 100644 index 0000000..0b85b91 --- /dev/null +++ b/mods/simple_skins/meta/character_27.txt @@ -0,0 +1,2 @@ +name = "Max", +author = "Stuart Jones", diff --git a/mods/simple_skins/meta/character_28.txt b/mods/simple_skins/meta/character_28.txt new file mode 100644 index 0000000..8704f06 --- /dev/null +++ b/mods/simple_skins/meta/character_28.txt @@ -0,0 +1,2 @@ +name = "Slenderman", +author = "prof_turbo", diff --git a/mods/simple_skins/meta/character_29.txt b/mods/simple_skins/meta/character_29.txt new file mode 100644 index 0000000..07b2b27 --- /dev/null +++ b/mods/simple_skins/meta/character_29.txt @@ -0,0 +1,2 @@ +name = "Strange Killer", +author = "prof_turbo", diff --git a/mods/simple_skins/meta/character_3.txt b/mods/simple_skins/meta/character_3.txt new file mode 100644 index 0000000..844d789 --- /dev/null +++ b/mods/simple_skins/meta/character_3.txt @@ -0,0 +1,2 @@ +name = "Alien", +author = "jmf", diff --git a/mods/simple_skins/meta/character_30.txt b/mods/simple_skins/meta/character_30.txt new file mode 100644 index 0000000..b70b2a7 --- /dev/null +++ b/mods/simple_skins/meta/character_30.txt @@ -0,0 +1,2 @@ +name = "jojoa1997", +author = "jojoa1997", diff --git a/mods/simple_skins/meta/character_4.txt b/mods/simple_skins/meta/character_4.txt new file mode 100644 index 0000000..c49e171 --- /dev/null +++ b/mods/simple_skins/meta/character_4.txt @@ -0,0 +1,2 @@ +name = "Soldier", +author = "jmf", diff --git a/mods/simple_skins/meta/character_5.txt b/mods/simple_skins/meta/character_5.txt new file mode 100644 index 0000000..d97ac65 --- /dev/null +++ b/mods/simple_skins/meta/character_5.txt @@ -0,0 +1,2 @@ +name = "John", +author = "jmf", diff --git a/mods/simple_skins/meta/character_6.txt b/mods/simple_skins/meta/character_6.txt new file mode 100644 index 0000000..556d19e --- /dev/null +++ b/mods/simple_skins/meta/character_6.txt @@ -0,0 +1,2 @@ +name = "Ninja", +author = "jmf", diff --git a/mods/simple_skins/meta/character_7.txt b/mods/simple_skins/meta/character_7.txt new file mode 100644 index 0000000..b04689b --- /dev/null +++ b/mods/simple_skins/meta/character_7.txt @@ -0,0 +1,2 @@ +name = "Oerkki", +author = "jmf", diff --git a/mods/simple_skins/meta/character_8.txt b/mods/simple_skins/meta/character_8.txt new file mode 100644 index 0000000..92e21f0 --- /dev/null +++ b/mods/simple_skins/meta/character_8.txt @@ -0,0 +1,2 @@ +name = "Tux", +author = "jmf", diff --git a/mods/simple_skins/meta/character_9.txt b/mods/simple_skins/meta/character_9.txt new file mode 100644 index 0000000..a0b0a2d --- /dev/null +++ b/mods/simple_skins/meta/character_9.txt @@ -0,0 +1,2 @@ +name = "Black belt", +author = "jmf", diff --git a/mods/simple_skins/simple_skins.mt b/mods/simple_skins/simple_skins.mt new file mode 100644 index 0000000..f29832e --- /dev/null +++ b/mods/simple_skins/simple_skins.mt @@ -0,0 +1,2 @@ +rnd character_1 +Jason character_2 \ No newline at end of file diff --git a/mods/simple_skins/textures/character_1.png b/mods/simple_skins/textures/character_1.png new file mode 100644 index 0000000..05628df Binary files /dev/null and b/mods/simple_skins/textures/character_1.png differ diff --git a/mods/simple_skins/textures/character_2.png b/mods/simple_skins/textures/character_2.png new file mode 100644 index 0000000..903efc3 Binary files /dev/null and b/mods/simple_skins/textures/character_2.png differ diff --git a/mods/simple_skins/textures/character_new.png b/mods/simple_skins/textures/character_new.png new file mode 100644 index 0000000..95c3c16 Binary files /dev/null and b/mods/simple_skins/textures/character_new.png differ diff --git a/mods/simple_skins/textures/inventory_plus_skins.png b/mods/simple_skins/textures/inventory_plus_skins.png new file mode 100644 index 0000000..dbfe579 Binary files /dev/null and b/mods/simple_skins/textures/inventory_plus_skins.png differ diff --git a/mods/simple_skins/textures/wardrobe_wardrobe_front.png b/mods/simple_skins/textures/wardrobe_wardrobe_front.png new file mode 100644 index 0000000..110dbd9 Binary files /dev/null and b/mods/simple_skins/textures/wardrobe_wardrobe_front.png differ diff --git a/mods/simple_skins/textures/wardrobe_wardrobe_sides.png b/mods/simple_skins/textures/wardrobe_wardrobe_sides.png new file mode 100644 index 0000000..b438a92 Binary files /dev/null and b/mods/simple_skins/textures/wardrobe_wardrobe_sides.png differ diff --git a/mods/simple_skins/textures/wardrobe_wardrobe_topbottom.png b/mods/simple_skins/textures/wardrobe_wardrobe_topbottom.png new file mode 100644 index 0000000..9508c4e Binary files /dev/null and b/mods/simple_skins/textures/wardrobe_wardrobe_topbottom.png differ diff --git a/mods/travelnet/README.md b/mods/travelnet/README.md new file mode 100644 index 0000000..d9bd775 --- /dev/null +++ b/mods/travelnet/README.md @@ -0,0 +1,11 @@ + +How this works: + +- craft it by filling the right and left row with glass; place in the middle row (from top to bottom): steel, mese, steel +- place the travelnet box somewhere +- right-click on it; enter name of the station (e.g. "my house", "center of desert city") and name of the network (e.g. "intresting towns","my buildings") +- punch it to update the list of stations on that network +- right-click to use the travelbox + +An unconfigured travelnet box can be configured by anyone. If it is misconfigured, just dig it and place it anew. +All stations that have the same network name set and are owned by the same user connect to the same network. diff --git a/mods/travelnet/config.lua b/mods/travelnet/config.lua new file mode 100644 index 0000000..7673833 --- /dev/null +++ b/mods/travelnet/config.lua @@ -0,0 +1,67 @@ + +travelnet.MAX_STATIONS_PER_NETWORK = 24; + +-- set this to true if you want a simulated beam effect +travelnet.travelnet_effect_enabled = false; +-- set this to true if you want a sound to be played when the travelnet is used +travelnet.travelnet_sound_enabled = false; + +-- if you set this to false, travelnets cannot be created +-- (this may be useful if you want nothing but the elevators on your server) +travelnet.travelnet_enabled = true; +-- if you set travelnet.elevator_enabled to false, you will not be able to +-- craft, place or use elevators +travelnet.elevator_enabled = true; +-- if you set this to false, doors will be disabled +travelnet.doors_enabled = true; + +-- starts an abm which re-adds travelnet stations to networks in case the savefile got lost +travelnet.abm_enabled = false; + +-- change these if you want other receipes for travelnet or elevator +travelnet.travelnet_recipe = { + {"default:glass", "default:steel_ingot", "default:glass", }, + {"default:glass", "default:mese", "default:glass", }, + {"default:glass", "default:steel_ingot", "default:glass", } +} +travelnet.elevator_recipe = { + {"default:steel_ingot", "default:glass", "default:steel_ingot", }, + {"default:steel_ingot", "", "default:steel_ingot", }, + {"default:steel_ingot", "default:glass", "default:steel_ingot", } +} + +-- if this function returns true, the player with the name player_name is +-- allowed to add a box to the network named network_name, which is owned +-- by the player owner_name; +-- if you want to allow *everybody* to attach stations to all nets, let the +-- function always return true; +-- if the function returns false, players with the travelnet_attach priv +-- can still add stations to that network + +travelnet.allow_attach = function( player_name, owner_name, network_name ) + return false; +end + + +-- if this returns true, a player named player_name can remove a travelnet station +-- from network_name (owned by owner_name) even though he is neither the owner nor +-- has the travelnet_remove priv +travelnet.allow_dig = function( player_name, owner_name, network_name ) + return false; +end + + +-- if this function returns false, then player player_name will not be allowed to use +-- the travelnet station_name_start on networ network_name owned by owner_name to travel to +-- the station station_name_target on the same network; +-- if this function returns true, the player will be transfered to the target station; +-- you can use this code to i.e. charge the player money for the transfer or to limit +-- usage of stations to players in the same fraction on PvP servers +travelnet.allow_travel = function( player_name, owner_name, network_name, station_name_start, station_name_target ) + + --minetest.chat_send_player( player_name, "Player "..tostring( player_name ).." tries to use station "..tostring( station_name_start ).. + -- " on network "..tostring( network_name ).." owned by "..tostring( owner_name ).." in order to travel to ".. + -- tostring( station_name_target ).."."); + + return true; +end diff --git a/mods/travelnet/doors.lua b/mods/travelnet/doors.lua new file mode 100644 index 0000000..24c3c6a --- /dev/null +++ b/mods/travelnet/doors.lua @@ -0,0 +1,142 @@ +-- Doors that are especially useful for travelnet elevators but can also be used in other situations. +-- All doors (not only these here) in front of a travelnet or elevator are opened automaticly when a player arrives +-- and are closed when a player departs from the travelnet or elevator. +-- Autor: Sokomine + +minetest.register_node("travelnet:elevator_door_steel_open", { + description = "elevator door (open)", + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"default_stone.png"}, + paramtype = "light", + paramtype2 = "facedir", + is_ground_content = true, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2,not_in_creative_inventory=1}, + -- larger than one node but slightly smaller than a half node so that wallmounted torches pose no problem + node_box = { + type = "fixed", + fixed = { + {-0.90, -0.5, 0.4, -0.49, 1.5, 0.5}, + { 0.49, -0.5, 0.4, 0.9, 1.5, 0.5}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + {-0.9, -0.5, 0.4, 0.9, 1.5, 0.5}, + }, + }, + drop = "travelnet:elevator_door_steel_closed", + on_rightclick = function(pos, node, puncher) + minetest.env:add_node(pos, {name = "travelnet:elevator_door_steel_closed", param2 = node.param2}) + end, +}) + +minetest.register_node("travelnet:elevator_door_steel_closed", { + description = "elevator door (closed)", + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"default_stone.png"}, + paramtype = "light", + paramtype2 = "facedir", + is_ground_content = true, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, 0.4, -0.01, 1.5, 0.5}, + { 0.01, -0.5, 0.4, 0.5, 1.5, 0.5}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, 0.4, 0.5, 1.5, 0.5}, + }, + }, + on_rightclick = function(pos, node, puncher) + minetest.env:add_node(pos, {name = "travelnet:elevator_door_steel_open", param2 = node.param2}) + end, +}) + + + + +minetest.register_node("travelnet:elevator_door_glass_open", { + description = "elevator door (open)", + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"travelnet_elevator_door_glass.png"}, + paramtype = "light", + paramtype2 = "facedir", + is_ground_content = true, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2,not_in_creative_inventory=1}, + -- larger than one node but slightly smaller than a half node so that wallmounted torches pose no problem + node_box = { + type = "fixed", + fixed = { + {-0.99, -0.5, 0.4, -0.49, 1.5, 0.5}, + { 0.49, -0.5, 0.4, 0.99, 1.5, 0.5}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + {-0.9, -0.5, 0.4, 0.9, 1.5, 0.5}, + }, + }, + drop = "travelnet:elevator_door_glass_closed", + on_rightclick = function(pos, node, puncher) + minetest.env:add_node(pos, {name = "travelnet:elevator_door_glass_closed", param2 = node.param2}) + end, +}) + +minetest.register_node("travelnet:elevator_door_glass_closed", { + description = "elevator door (closed)", + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"travelnet_elevator_door_glass.png"}, + paramtype = "light", + paramtype2 = "facedir", + is_ground_content = true, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, 0.4, -0.01, 1.5, 0.5}, + { 0.01, -0.5, 0.4, 0.5, 1.5, 0.5}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, 0.4, 0.5, 1.5, 0.5}, + }, + }, + on_rightclick = function(pos, node, puncher) + minetest.env:add_node(pos, {name = "travelnet:elevator_door_glass_open", param2 = node.param2}) + end, +}) + +minetest.register_craft({ + output = "travelnet:elevator_door_glass_closed", + recipe = { + {"default:glass", "", "default:glass", }, + {"default:glass", "", "default:glass", }, + {"default:glass", "", "default:glass", } + } + }) + +minetest.register_craft({ + output = "travelnet:elevator_door_steel_closed", + recipe = { + {"default:steel_ingot", "", "default:steel_ingot", }, + {"default:steel_ingot", "", "default:steel_ingot", }, + {"default:steel_ingot", "", "default:steel_ingot", } + } + }) +-- local old_node = minetest.env:get_node( pos ); +-- minetest.env:add_node(pos, {name = "travelnet:elevator_door_glass_closed", param2 = old_node.param2}) + + + diff --git a/mods/travelnet/elevator.lua b/mods/travelnet/elevator.lua new file mode 100644 index 0000000..75e5458 --- /dev/null +++ b/mods/travelnet/elevator.lua @@ -0,0 +1,159 @@ +-- This version of the travelnet box allows to move up or down only. +-- The network name is determined automaticly from the position (x/z coordinates). +-- >utor: Sokomine + +minetest.register_node("travelnet:elevator", { + description = "Elevator", + + drawtype = "nodebox", + sunlight_propagates = true, + paramtype = 'light', + paramtype2 = "facedir", + + selection_box = { + type = "fixed", + fixed = { -0.5, -0.5, -0.5, 0.5, 1.5, 0.5 } + }, + + node_box = { + type = "fixed", + fixed = { + + { 0.48, -0.5,-0.5, 0.5, 0.5, 0.5}, + {-0.5 , -0.5, 0.48, 0.48, 0.5, 0.5}, + {-0.5, -0.5,-0.5 ,-0.48, 0.5, 0.5}, + + --groundplate to stand on + { -0.5,-0.5,-0.5,0.5,-0.48, 0.5}, + }, + }, + + + tiles = { + + "travelnet_elevator_inside_floor.png", -- view from top + "default_stone.png", -- view from bottom + "travelnet_elevator_inside_bottom.png", -- left side + "travelnet_elevator_inside_bottom.png", -- right side + "travelnet_elevator_inside_bottom.png", -- front view + "travelnet_elevator_inside_bottom.png", -- backward view + }, + inventory_image = "travelnet_elevator_inv.png", + wield_image = "travelnet_elevator_wield.png", + + groups = {cracky=1,choppy=1,snappy=1}, + + + light_source = 10, + + after_place_node = function(pos, placer, itemstack) + local meta = minetest.env:get_meta(pos); + meta:set_string("infotext", "Elevator (unconfigured)"); + meta:set_string("station_name", ""); + meta:set_string("station_network",""); + meta:set_string("owner", placer:get_player_name() ); + -- request initinal data + meta:set_string("formspec", + "size[12,10]".. + "field[0.3,5.6;6,0.7;station_name;Name of this station:;]".. +-- "field[0.3,6.6;6,0.7;station_network;Assign to Network:;]".. +-- "field[0.3,7.6;6,0.7;owner_name;(optional) owned by:;]".. + "button_exit[6.3,6.2;1.7,0.7;station_set;Store]" ); + + local p = {x=pos.x, y=pos.y+1, z=pos.z} + local p2 = minetest.dir_to_facedir(placer:get_look_dir()) + minetest.env:add_node(p, {name="travelnet:elevator_top", paramtype2="facedir", param2=p2}) + end, + + on_receive_fields = travelnet.on_receive_fields, + on_punch = function(pos, node, puncher) + travelnet.update_formspec(pos, puncher:get_player_name()) + end, + + can_dig = function( pos, player ) + return travelnet.can_dig( pos, player, 'elevator' ) + end, + + after_dig_node = function(pos, oldnode, oldmetadata, digger) + travelnet.remove_box( pos, oldnode, oldmetadata, digger ) + end, + + -- taken from VanessaEs homedecor fridge + on_place = function(itemstack, placer, pointed_thing) + local pos = pointed_thing.above; + local node = minetest.env:get_node({x=pos.x, y=pos.y+1, z=pos.z}); + -- leftover elevator_top nodes can be removed by placing a new elevator underneath + if( node ~= nil and node.name ~= "air" and node.name ~= 'travelnet:elevator_top') then + minetest.chat_send_player( placer:get_player_name(), 'Not enough vertical space to place the travelnet box!' ) + return; + end + return minetest.item_place(itemstack, placer, pointed_thing); + end, + + on_destruct = function(pos) + local p = {x=pos.x, y=pos.y+1, z=pos.z} + minetest.env:remove_node(p) + end +}) + +minetest.register_node("travelnet:elevator_top", { + description = "Elevator Top", + + drawtype = "nodebox", + sunlight_propagates = true, + paramtype = 'light', + paramtype2 = "facedir", + + selection_box = { + type = "fixed", + fixed = { 0, 0, 0, 0, 0, 0 } +-- fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 } + }, + + node_box = { + type = "fixed", + fixed = { + + { 0.48, -0.5,-0.5, 0.5, 0.5, 0.5}, + {-0.5 , -0.5, 0.48, 0.48, 0.5, 0.5}, + {-0.5, -0.5,-0.5 ,-0.48, 0.5, 0.5}, + + --top ceiling + { -0.5, 0.48,-0.5,0.5, 0.5, 0.5}, + }, + }, + + + tiles = { + + "default_stone.png", -- view from top + "travelnet_elevator_inside_ceiling.png", -- view from bottom + "travelnet_elevator_inside_top_control.png", -- left side + "travelnet_elevator_inside_top.png", -- right side + "travelnet_elevator_inside_top.png", -- front view + "travelnet_elevator_inside_top.png", -- backward view + }, + inventory_image = "travelnet_elevator_inv.png", + wield_image = "travelnet_elevator_wield.png", + + light_source = 10, + + groups = {cracky=1,choppy=1,snappy=1,not_in_creative_inventory=1}, +}) + +--if( minetest.get_modpath("technic") ~= nil ) then +-- minetest.register_craft({ +-- output = "travelnet:elevator", +-- recipe = { +-- {"default:steel_ingot", "technic:motor", "default:steel_ingot", }, +-- {"default:steel_ingot", "technic:control_logic_unit", "default:steel_ingot", }, +-- {"default:steel_ingot", "moreores:copper_ingot", "default:steel_ingot", } +-- } +-- }) +--else + minetest.register_craft({ + output = "travelnet:elevator", + recipe = travelnet.elevator_recipe, + }) +--end + diff --git a/mods/travelnet/init.lua b/mods/travelnet/init.lua new file mode 100644 index 0000000..d591dde --- /dev/null +++ b/mods/travelnet/init.lua @@ -0,0 +1,683 @@ + + +--[[ + Teleporter networks that allow players to choose a destination out of a list + Copyright (C) 2013 Sokomine + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + Version: 2.2 (with optional abm for self-healing) + + Please configure this mod in config.lua + + Changelog: + 05.10.14 - Added an optional abm so that the travelnet network can heal itshelf in case of loss of the savefile. + If you want to use this, set + travelnet.enable_abm = true + in config.lua and edit the interval in the abm to suit your needs. + 19.11.13 - moved doors and travelnet definition into an extra file + - moved configuration to config.lua + 05.08.13 - fixed possible crash when the node in front of the travelnet is unknown + 26.06.13 - added inventory image for elevator (created by VanessaE) + 21.06.13 - bugfix: wielding an elevator while digging a door caused the elevator_top to be placed + - leftover floating elevator_top nodes can be removed by placing a new travelnet:elevator underneath them and removing that afterwards + - homedecor-doors are now opened and closed correctly as well + - removed nodes that are not intended for manual use from creative inventory + - improved naming of station levels for the elevator + 21.06.13 - elevator stations are sorted by height instead of date of creation as is the case with travelnet boxes + - elevator stations are named automaticly + 20.06.13 - doors can be opened and closed from inside the travelnet box/elevator + - the elevator can only move vertically; the network name is defined by its x and z coordinate + 13.06.13 - bugfix + - elevator added (written by kpoppel) and placed into extra file + - elevator doors added + - groups changed to avoid accidental dig/drop on dig of node beneath + - added new priv travelnet_remove for digging of boxes owned by other players + - only the owner of a box or players with the travelnet_remove priv can now dig it + - entering your own name as owner_name does no longer abort setup + 22.03.13 - added automatic detection if yaw can be set + - beam effect is disabled by default + 20.03.13 - added inventory image provided by VanessaE + - fixed bug that made it impossible to remove stations from the net + - if the station a player beamed to no longer exists, the station will be removed automaticly + - with the travelnet_attach priv, you can now attach your box to the nets of other players + - in newer versions of Minetest, the players yaw is set so that he/she looks out of the receiving box + - target list is now centered if there are less than 9 targets +--]] + + +minetest.register_privilege("travelnet_attach", { description = "allows to attach travelnet boxes to travelnets of other players", give_to_singleplayer = false}); +minetest.register_privilege("travelnet_remove", { description = "allows to dig travelnet boxes which belog to nets of other players", give_to_singleplayer = false}); + +travelnet = {}; + +travelnet.targets = {}; + + +-- read the configuration +dofile(minetest.get_modpath("travelnet").."/config.lua"); -- the normal, default travelnet + + + +-- TODO: save and restore ought to be library functions and not implemented in each individual mod! +-- called whenever a station is added or removed +travelnet.save_data = function() + + local data = minetest.serialize( travelnet.targets ); + local path = minetest.get_worldpath().."/mod_travelnet.data"; + + local file = io.open( path, "w" ); + if( file ) then + file:write( data ); + file:close(); + else + print("[Mod travelnet] Error: Savefile '"..tostring( path ).."' could not be written."); + end +end + + +travelnet.restore_data = function() + + local path = minetest.get_worldpath().."/mod_travelnet.data"; + + local file = io.open( path, "r" ); + if( file ) then + local data = file:read("*all"); + travelnet.targets = minetest.deserialize( data ); + file:close(); + else + print("[Mod travelnet] Error: Savefile '"..tostring( path ).."' not found."); + end +end + + + + +travelnet.update_formspec = function( pos, puncher_name ) + + local meta = minetest.env:get_meta(pos); + + local this_node = minetest.env:get_node( pos ); + local is_elevator = false; + + if( this_node ~= nil and this_node.name == 'travelnet:elevator' ) then + is_elevator = true; + end + + if( not( meta )) then + return; + end + + local owner_name = meta:get_string( "owner" ); + local station_name = meta:get_string( "station_name" ); + local station_network = meta:get_string( "station_network" ); + + if( not( owner_name ) + or not( station_name ) or station_network == '' + or not( station_network )) then + + + if( is_elevator == true ) then + travelnet.add_target( nil, nil, pos, puncher_name, meta, owner_name ); + return; + end + +-- minetest.chat_send_player(puncher_name, "DEBUG DATA: owner: "..(owner_name or "?").. +-- " station_name: "..(station_name or "?").. +-- " station_network: "..(station_network or "?").."."); +-- minetest.chat_send_player(puncher_name, "data: "..minetest.serialize( travelnet.targets )); + + + meta:set_string("infotext", "Travelnet-box (unconfigured)"); + meta:set_string("station_name", ""); + meta:set_string("station_network",""); + meta:set_string("owner", ""); + -- request initinal data + meta:set_string("formspec", + "size[12,10]".. + "field[0.3,7.6;9,0.9;station_name;Name of this station:;"..(station_name or "?").."]".. + "field[0.3,8.6;9,0.9;station_network;Assign to Network:;"..(station_network or "?").."]".. + "field[0.3,9.6;9,0.9;owner;Owned by:;"..(owner_name or "?").."]".. + "button_exit[6.3,8.2;1.7,0.7;station_set;Store]" ); + + minetest.chat_send_player(puncher_name, "Error: Update failed! Resetting this box on the travelnet."); + return; + end + + -- if the station got lost from the network for some reason (savefile corrupted?) then add it again + if( not( travelnet.targets[ owner_name ] ) + or not( travelnet.targets[ owner_name ][ station_network ] ) + or not( travelnet.targets[ owner_name ][ station_network ][ station_name ] )) then + + -- first one by this player? + if( not( travelnet.targets[ owner_name ] )) then + travelnet.targets[ owner_name ] = {}; + end + + -- first station on this network? + if( not( travelnet.targets[ owner_name ][ station_network ] )) then + travelnet.targets[ owner_name ][ station_network ] = {}; + end + + + local zeit = meta:get_int("timestamp"); + if( not( zeit) or zeit<100000 ) then + zeit = os.time(); + end + + -- add this station + travelnet.targets[ owner_name ][ station_network ][ station_name ] = {pos=pos, timestamp=zeit }; + + minetest.chat_send_player(owner_name, "Station '"..station_name.."' has been reattached to the network '"..station_network.."'."); + + end + + + -- add name of station + network + owner + update-button + local formspec = "size[12,10]".. + "label[3.3,0.0;Travelnet-Box:]".."label[6.3,0.0;Punch box to update target list.]".. + "label[0.3,0.4;Name of this station:]".."label[6.3,0.4;"..(station_name or "?").."]".. + "label[0.3,0.8;Assigned to Network:]" .."label[6.3,0.8;"..(station_network or "?").."]".. + "label[0.3,1.2;Owned by:]" .."label[6.3,1.2;"..(owner_name or "?").."]".. + "label[3.3,1.6;Click on target to travel there:]"; +-- "button_exit[5.3,0.3;8,0.8;do_update;Punch box to update destination list. Click on target to travel there.]".. + local x = 0; + local y = 0; + local i = 0; + + + -- collect all station names in a table + local stations = {}; + + for k,v in pairs( travelnet.targets[ owner_name ][ station_network ] ) do + table.insert( stations, k ); + end + -- minetest.chat_send_player(puncher_name, "stations: "..minetest.serialize( stations )); + + local ground_level = 1; + if( is_elevator ) then + table.sort( stations, function(a,b) return travelnet.targets[ owner_name ][ station_network ][ a ].pos.y > + travelnet.targets[ owner_name ][ station_network ][ b ].pos.y end); + -- find ground level + local vgl_timestamp = 999999999999; + for index,k in ipairs( stations ) do + if( travelnet.targets[ owner_name ][ station_network ][ k ].timestamp < vgl_timestamp ) then + vgl_timestamp = travelnet.targets[ owner_name ][ station_network ][ k ].timestamp; + ground_level = index; + end + end + for index,k in ipairs( stations ) do + if( index == ground_level ) then + travelnet.targets[ owner_name ][ station_network ][ k ].nr = 'G'; + else + travelnet.targets[ owner_name ][ station_network ][ k ].nr = tostring( ground_level - index ); + end + end + + else + -- sort the table according to the timestamp (=time the station was configured) + table.sort( stations, function(a,b) return travelnet.targets[ owner_name ][ station_network ][ a ].timestamp < + travelnet.targets[ owner_name ][ station_network ][ b ].timestamp end); + end + + -- if there are only 8 stations (plus this one), center them in the formspec + if( #stations < 10 ) then + x = 4; + end + + for index,k in ipairs( stations ) do + + -- check if there is an elevator door in front that needs to be opened + local open_door_cmd = false; + if( k==station_name ) then + open_door_cmd = true; + end + + if( k ~= station_name or open_door_cmd) then + i = i+1; + + -- new column + if( y==8 ) then + x = x+4; + y = 0; + end + + if( open_door_cmd ) then + formspec = formspec .."button_exit["..(x)..","..(y+2.5)..";1,0.5;open_door;<>]".. + "label["..(x+0.9)..","..(y+2.35)..";"..tostring( k ).."]"; + elseif( is_elevator ) then + formspec = formspec .."button_exit["..(x)..","..(y+2.5)..";1,0.5;target;"..tostring( travelnet.targets[ owner_name ][ station_network ][ k ].nr ).."]".. + "label["..(x+0.9)..","..(y+2.35)..";"..tostring( k ).."]"; + else + formspec = formspec .."button_exit["..(x)..","..(y+2.5)..";4,0.5;target;"..k.."]"; + end + +-- if( is_elevator ) then +-- formspec = formspec ..' ('..tostring( travelnet.targets[ owner_name ][ station_network ][ k ].pos.y )..'m)'; +-- end +-- formspec = formspec .. ']'; + + y = y+1; + --x = x+4; + end + end + + meta:set_string( "formspec", formspec ); + + meta:set_string( "infotext", "Station '"..tostring( station_name ).."' on travelnet '"..tostring( station_network ).. + "' (owned by "..tostring( owner_name )..") ready for usage. Right-click to travel, punch to update."); + + minetest.chat_send_player(puncher_name, "The target list of this box on the travelnet has been updated."); +end + + + +-- add a new target; meta is optional +travelnet.add_target = function( station_name, network_name, pos, player_name, meta, owner_name ) + + -- if it is an elevator, determine the network name through x and z coordinates + local this_node = minetest.env:get_node( pos ); + local is_elevator = false; + + if( this_node.name == 'travelnet:elevator' ) then +-- owner_name = '*'; -- the owner name is not relevant here + is_elevator = true; + network_name = tostring( pos.x )..','..tostring( pos.z ); + if( not( station_name ) or station_name == '' ) then + station_name = 'at '..tostring( pos.y )..'m'; + end + end + + if( station_name == "" or not(station_name )) then + minetest.chat_send_player(player_name, "Please provide a name for this station."); + return; + end + + if( network_name == "" or not( network_name )) then + minetest.chat_send_player(player_name, "Please provide the name of the network this station ought to be connected to."); + return; + end + + if( owner_name == nil or owner_name == '' or owner_name == player_name) then + owner_name = player_name; + + elseif( is_elevator ) then -- elevator networks + owner_name = player_name; + + elseif( not( travelnet.targets[ owner_name ] ) + or not( travelnet.targets[ owner_name ][ network_name ] )) then + + minetest.chat_send_player(player_name, "There is no network named "..tostring( network_name ).." owned by "..tostring( owner_name )..". Aborting."); + return; + + elseif( not( minetest.check_player_privs(player_name, {travelnet_attach=true})) + and not( travelnet.allow_attach( player_name, owner_name, network_name ))) then + + minetest.chat_send_player(player_name, "You do not have the travelnet_attach priv which is required to attach your box to the network of someone else. Aborting."); + return; + end + + -- first one by this player? + if( not( travelnet.targets[ owner_name ] )) then + travelnet.targets[ owner_name ] = {}; + end + + -- first station on this network? + if( not( travelnet.targets[ owner_name ][ network_name ] )) then + travelnet.targets[ owner_name ][ network_name ] = {}; + end + + -- lua doesn't allow efficient counting here + local anz = 0; + for k,v in pairs( travelnet.targets[ owner_name ][ network_name ] ) do + + if( k == station_name ) then + minetest.chat_send_player(player_name, "Error: A station named '"..station_name.."' already exists on this network. Please choose a diffrent name!"); + return; + end + + anz = anz + 1; + end + + -- we don't want too many stations in the same network because that would get confusing when displaying the targets + if( anz+1 > travelnet.MAX_STATIONS_PER_NETWORK ) then + minetest.chat_send_player(player_name, "Error: Network '"..network_name.."' already contains the maximum number (=" + ..(travelnet.MAX_STATIONS_PER_NETWORK)..") of allowed stations per network. Please choose a diffrent/new network name."); + return; + end + + -- add this station + travelnet.targets[ owner_name ][ network_name ][ station_name ] = {pos=pos, timestamp=os.time() }; + + -- do we have a new node to set up? (and are not just reading from a safefile?) + if( meta ) then + + minetest.chat_send_player(player_name, "Station '"..station_name.."' has been added to the network '" + ..network_name.."', which now consists of "..( anz+1 ).." station(s)."); + + meta:set_string( "station_name", station_name ); + meta:set_string( "station_network", network_name ); + meta:set_string( "owner", owner_name ); + meta:set_int( "timestamp", travelnet.targets[ owner_name ][ network_name ][ station_name ].timestamp); + + meta:set_string("formspec", + "size[12,10]".. + "field[0.3,0.6;6,0.7;station_name;Station:;".. meta:get_string("station_name").."]".. + "field[0.3,3.6;6,0.7;station_network;Network:;"..meta:get_string("station_network").."]" ); + + -- display a list of all stations that can be reached from here + travelnet.update_formspec( pos, player_name ); + + -- save the updated network data in a savefile over server restart + travelnet.save_data(); + end +end + + + +-- allow doors to open +travelnet.open_close_door = function( pos, player, mode ) + + local this_node = minetest.env:get_node( pos ); + local pos2 = {x=pos.x,y=pos.y,z=pos.z}; + + if( this_node.param2 == 0 ) then pos2 = {x=pos.x,y=pos.y,z=(pos.z-1)}; + elseif( this_node.param2 == 1 ) then pos2 = {x=(pos.x-1),y=pos.y,z=pos.z}; + elseif( this_node.param2 == 2 ) then pos2 = {x=pos.x,y=pos.y,z=(pos.z+1)}; + elseif( this_node.param2 == 3 ) then pos2 = {x=(pos.x+1),y=pos.y,z=pos.z}; + end + + local door_node = minetest.env:get_node( pos2 ); + if( door_node ~= nil and door_node.name ~= 'ignore' and door_node.name ~= 'air' and minetest.registered_nodes[ door_node.name ] ~= nil and minetest.registered_nodes[ door_node.name ].on_rightclick ~= nil) then + + -- at least for homedecor, same facedir would mean "door closed" + + -- do not close the elevator door if it is already closed + if( mode==1 and ( door_node.name == 'travelnet:elevator_door_glass_closed' + or door_node.name == 'travelnet:elevator_door_steel_closed' + -- handle doors that change their facedir + or ( door_node.param2 == this_node.param2 + and door_node.name ~= 'travelnet:elevator_door_glass_open' + and door_node.name ~= 'travelnet:elevator_door_steel_open'))) then + return; + end + -- do not open the doors if they are already open (works only on elevator-doors; not on doors in general) + if( mode==2 and ( door_node.name == 'travelnet:elevator_door_glass_open' + or door_node.name == 'travelnet:elevator_door_steel_open' + -- handle doors that change their facedir + or ( door_node.param2 ~= this_node.param2 + and door_node.name ~= 'travelnet:elevator_door_glass_closed' + and door_node.name ~= 'travelnet:elevator_door_steel_closed'))) then + return; + end + + if( mode==2 ) then + minetest.after( 1, minetest.registered_nodes[ door_node.name ].on_rightclick, pos2, door_node, player ); + else + minetest.registered_nodes[ door_node.name ].on_rightclick(pos2, door_node, player); + end + end +end + + +travelnet.on_receive_fields = function(pos, formname, fields, player) + local meta = minetest.env:get_meta(pos); + + local name = player:get_player_name(); + + -- if the box has not been configured yet + if( meta:get_string("station_network")=="" ) then + + travelnet.add_target( fields.station_name, fields.station_network, pos, name, meta, fields.owner_name ); + return; + end + + if( fields.open_door ) then + travelnet.open_close_door( pos, player, 0 ); + return; + end + + + if( not( fields.target )) then + minetest.chat_send_player(name, "Please click on the target you want to travel to."); + return; + end + + + -- if there is something wrong with the data + local owner_name = meta:get_string( "owner" ); + local station_name = meta:get_string( "station_name" ); + local station_network = meta:get_string( "station_network" ); + + if( not( owner_name ) + or not( station_name ) + or not( station_network ) + or not( travelnet.targets[ owner_name ] ) + or not( travelnet.targets[ owner_name ][ station_network ] )) then + + + if( owner_name + and station_name + and station_network ) then + travelnet.add_target( station_name, station_network, pos, owner_name, meta, owner_name ); + else + minetest.chat_send_player(name, "Error: There is something wrong with the configuration of this station. ".. + " DEBUG DATA: owner: "..( owner_name or "?").. + " station_name: "..(station_name or "?").. + " station_network: "..(station_network or "?").."."); + return + end + end + + local this_node = minetest.env:get_node( pos ); + if( this_node ~= nil and this_node.name == 'travelnet:elevator' ) then + for k,v in pairs( travelnet.targets[ owner_name ][ station_network ] ) do + if( travelnet.targets[ owner_name ][ station_network ][ k ].nr --..' ('..tostring( travelnet.targets[ owner_name ][ station_network ][ k ].pos.y )..'m)' + == fields.target) then + fields.target = k; + end + end + end + + + -- if the target station is gone + if( not( travelnet.targets[ owner_name ][ station_network ][ fields.target ] )) then + + minetest.chat_send_player(name, "Station '"..( fields.target or "?").." does not exist (anymore?) on this network."); + travelnet.update_formspec( pos, name ); + return; + end + + + if( not( travelnet.allow_travel( name, owner_name, station_network, station_name, fields.target ))) then + return; + end + minetest.chat_send_player(name, "Initiating transfer to station '"..( fields.target or "?").."'.'"); + + + + if( travelnet.travelnet_sound_enabled ) then + minetest.sound_play("128590_7037-lq.mp3", {pos = pos, gain = 1.0, max_hear_distance = 10,}) + end + if( travelnet.travelnet_effect_enabled ) then + minetest.env:add_entity( {x=pos.x,y=pos.y+0.5,z=pos.z}, "travelnet:effect"); -- it self-destructs after 20 turns + end + + -- close the doors at the sending station + travelnet.open_close_door( pos, player, 1 ); + + -- transport the player to the target location + local target_pos = travelnet.targets[ owner_name ][ station_network ][ fields.target ].pos; + player:moveto( target_pos, false); + + if( travelnet.travelnet_sound_enabled ) then + minetest.sound_play("travelnet_travel.wav", {pos = target_pos, gain = 1.0, max_hear_distance = 10,}) + end + if( travelnet.travelnet_effect_enabled ) then + minetest.env:add_entity( {x=target_pos.x,y=target_pos.y+0.5,z=target_pos.z}, "travelnet:effect"); -- it self-destructs after 20 turns + end + + + -- check if the box has at the other end has been removed. + local node2 = minetest.env:get_node( target_pos ); + if( node2 ~= nil and node2.name ~= 'ignore' and node2.name ~= 'travelnet:travelnet' and node2.name ~= 'travelnet:elevator') then + + -- provide information necessary to identify the removed box + local oldmetadata = { fields = { owner = owner_name, + station_name = fields.target, + station_network = station_network }}; + + travelnet.remove_box( target_pos, nil, oldmetadata, player ); + + -- do this only on servers where the function exists + elseif( player.set_look_yaw ) then + + -- rotate the player so that he/she can walk straight out of the box + local yaw = 0; + local param2 = node2.param2; + if( param2==0 ) then + yaw = 180; + elseif( param2==1 ) then + yaw = 90; + elseif( param2==2 ) then + yaw = 0; + elseif( param2==3 ) then + yaw = 270; + end + + player:set_look_yaw( math.rad( yaw )); -- this is only supported in recent versions of MT + player:set_look_pitch( math.rad( 0 )); -- this is only supported in recent versions of MT + end + + travelnet.open_close_door( target_pos, player, 2 ); +end + + +travelnet.remove_box = function( pos, oldnode, oldmetadata, digger ) + + if( not( oldmetadata ) or oldmetadata=="nil" or not(oldmetadata.fields)) then + minetest.chat_send_player( digger:get_player_name(), "Error: Could not find information about the station that is to be removed."); + return; + end + + local owner_name = oldmetadata.fields[ "owner" ]; + local station_name = oldmetadata.fields[ "station_name" ]; + local station_network = oldmetadata.fields[ "station_network" ]; + + -- station is not known? then just remove it + if( not( owner_name ) + or not( station_name ) + or not( station_network ) + or not( travelnet.targets[ owner_name ] ) + or not( travelnet.targets[ owner_name ][ station_network ] )) then + + minetest.chat_send_player( digger:get_player_name(), "Error: Could not find the station that is to be removed."); + return; + end + + travelnet.targets[ owner_name ][ station_network ][ station_name ] = nil; + + -- inform the owner + minetest.chat_send_player( owner_name, "Station '"..station_name.."' has been REMOVED from the network '"..station_network.."'."); + if( digger ~= nil and owner_name ~= digger:get_player_name() ) then + minetest.chat_send_player( digger:get_player_name(), "Station '"..station_name.."' has been REMOVED from the network '"..station_network.."'."); + end + + -- save the updated network data in a savefile over server restart + travelnet.save_data(); +end + + + +travelnet.can_dig = function( pos, player, description ) + + if( not( player )) then + return false; + end + local name = player:get_player_name(); + + -- players with that priv can dig regardless of owner + if( minetest.check_player_privs(name, {travelnet_remove=true}) + or travelnet.allow_dig( player_name, owner_name, network_name )) then + return true; + end + + local meta = minetest.env:get_meta( pos ); + local owner = meta:get_string('owner'); + + if( not( meta ) or not( owner) or owner=='') then + minetest.chat_send_player(name, "This "..description.." has not been configured yet. Please set it up first to claim it. Afterwards you can remove it because you are then the owner."); + return false; + + elseif( owner ~= name ) then + minetest.chat_send_player(name, "This "..description.." belongs to "..tostring( meta:get_string('owner'))..". You can't remove it."); + return false; + end + return true; +end + + + + + +if( travelnet.travelnet_effect_enabled ) then + minetest.register_entity( 'travelnet:effect', { + + hp_max = 1, + physical = false, + weight = 5, + collisionbox = {-0.4,-0.5,-0.4, 0.4,1.5,0.4}, + visual = "upright_sprite", + visual_size = {x=1, y=2}, +-- mesh = "model", + textures = { "travelnet_flash.png" }, -- number of required textures depends on visual +-- colors = {}, -- number of required colors depends on visual + spritediv = {x=1, y=1}, + initial_sprite_basepos = {x=0, y=0}, + is_visible = true, + makes_footstep_sound = false, + automatic_rotate = true, + + anz_rotations = 0, + + on_step = function( self, dtime ) + -- this is supposed to be more flickering than smooth animation + self.object:setyaw( self.object:getyaw()+1); + self.anz_rotations = self.anz_rotations + 1; + -- eventually self-destruct + if( self.anz_rotations > 15 ) then + self.object:remove(); + end + end + }) +end + + +if( travelnet.travelnet_enabled ) then + dofile(minetest.get_modpath("travelnet").."/travelnet.lua"); -- the travelnet node definition +end +if( travelnet.elevator_enabled ) then + dofile(minetest.get_modpath("travelnet").."/elevator.lua"); -- allows up/down transfers only +end +if( travelnet.doors_enabled ) then + dofile(minetest.get_modpath("travelnet").."/doors.lua"); -- doors that open and close automaticly when the travelnet or elevator is used +end + +if( travelnet.abm_enabled ) then + dofile(minetest.get_modpath("travelnet").."/restore_network_via_abm.lua"); -- restore travelnet data when players pass by broken networks +end + +-- upon server start, read the savefile +travelnet.restore_data(); + diff --git a/mods/travelnet/restore_network_via_abm.lua b/mods/travelnet/restore_network_via_abm.lua new file mode 100644 index 0000000..3bd1dda --- /dev/null +++ b/mods/travelnet/restore_network_via_abm.lua @@ -0,0 +1,24 @@ + +minetest.register_abm({ + nodenames = {"travelnet:travelnet"}, + interval = 20, + chance = 1, + action = function(pos, node) + local meta = minetest.get_meta( pos ); + + local owner_name = meta:get_string( "owner" ); + local station_name = meta:get_string( "station_name" ); + local station_network = meta:get_string( "station_network" ); + + if( owner_name and station_name and station_network + and ( not( travelnet.targets ) + or not( travelnet.targets[ owner_name ] ) + or not( travelnet.targets[ owner_name ][ station_network ] ) + or not( travelnet.targets[ owner_name ][ station_network ][ station_name ] ))) then + + travelnet.add_target( station_name, station_network, pos, owner_name, meta, owner_name ); + print( 'TRAVELNET: re-adding '..tostring( station_name )..' to '..tostring( station_network )..' owned by '..tostring( owner_name )); + end + end +}) + diff --git a/mods/travelnet/textures/travelnet_elevator_door_glass.png b/mods/travelnet/textures/travelnet_elevator_door_glass.png new file mode 100644 index 0000000..ae775c4 Binary files /dev/null and b/mods/travelnet/textures/travelnet_elevator_door_glass.png differ diff --git a/mods/travelnet/textures/travelnet_elevator_inside_bottom.png b/mods/travelnet/textures/travelnet_elevator_inside_bottom.png new file mode 100644 index 0000000..920496e Binary files /dev/null and b/mods/travelnet/textures/travelnet_elevator_inside_bottom.png differ diff --git a/mods/travelnet/textures/travelnet_elevator_inside_ceiling.png b/mods/travelnet/textures/travelnet_elevator_inside_ceiling.png new file mode 100644 index 0000000..12dfb8c Binary files /dev/null and b/mods/travelnet/textures/travelnet_elevator_inside_ceiling.png differ diff --git a/mods/travelnet/textures/travelnet_elevator_inside_floor.png b/mods/travelnet/textures/travelnet_elevator_inside_floor.png new file mode 100644 index 0000000..7c4a731 Binary files /dev/null and b/mods/travelnet/textures/travelnet_elevator_inside_floor.png differ diff --git a/mods/travelnet/textures/travelnet_elevator_inside_top.png b/mods/travelnet/textures/travelnet_elevator_inside_top.png new file mode 100644 index 0000000..a29cfa1 Binary files /dev/null and b/mods/travelnet/textures/travelnet_elevator_inside_top.png differ diff --git a/mods/travelnet/textures/travelnet_elevator_inside_top_control.png b/mods/travelnet/textures/travelnet_elevator_inside_top_control.png new file mode 100644 index 0000000..ed92b3a Binary files /dev/null and b/mods/travelnet/textures/travelnet_elevator_inside_top_control.png differ diff --git a/mods/travelnet/textures/travelnet_elevator_inv.png b/mods/travelnet/textures/travelnet_elevator_inv.png new file mode 100644 index 0000000..6eaefc9 Binary files /dev/null and b/mods/travelnet/textures/travelnet_elevator_inv.png differ diff --git a/mods/travelnet/textures/travelnet_elevator_wield.png b/mods/travelnet/textures/travelnet_elevator_wield.png new file mode 100644 index 0000000..6eaefc9 Binary files /dev/null and b/mods/travelnet/textures/travelnet_elevator_wield.png differ diff --git a/mods/travelnet/textures/travelnet_flash.png b/mods/travelnet/textures/travelnet_flash.png new file mode 100644 index 0000000..47a6365 Binary files /dev/null and b/mods/travelnet/textures/travelnet_flash.png differ diff --git a/mods/travelnet/textures/travelnet_inv.png b/mods/travelnet/textures/travelnet_inv.png new file mode 100644 index 0000000..764e883 Binary files /dev/null and b/mods/travelnet/textures/travelnet_inv.png differ diff --git a/mods/travelnet/textures/travelnet_travelnet_back.png b/mods/travelnet/textures/travelnet_travelnet_back.png new file mode 100644 index 0000000..c1aa17d Binary files /dev/null and b/mods/travelnet/textures/travelnet_travelnet_back.png differ diff --git a/mods/travelnet/textures/travelnet_travelnet_front.png b/mods/travelnet/textures/travelnet_travelnet_front.png new file mode 100644 index 0000000..95fe8bd Binary files /dev/null and b/mods/travelnet/textures/travelnet_travelnet_front.png differ diff --git a/mods/travelnet/textures/travelnet_travelnet_side.png b/mods/travelnet/textures/travelnet_travelnet_side.png new file mode 100644 index 0000000..0656646 Binary files /dev/null and b/mods/travelnet/textures/travelnet_travelnet_side.png differ diff --git a/mods/travelnet/textures512/travelnet_elevator_inside_bottom.png b/mods/travelnet/textures512/travelnet_elevator_inside_bottom.png new file mode 100644 index 0000000..2ffb79d Binary files /dev/null and b/mods/travelnet/textures512/travelnet_elevator_inside_bottom.png differ diff --git a/mods/travelnet/textures512/travelnet_elevator_inside_ceiling.png b/mods/travelnet/textures512/travelnet_elevator_inside_ceiling.png new file mode 100644 index 0000000..14f96c6 Binary files /dev/null and b/mods/travelnet/textures512/travelnet_elevator_inside_ceiling.png differ diff --git a/mods/travelnet/textures512/travelnet_elevator_inside_floor.png b/mods/travelnet/textures512/travelnet_elevator_inside_floor.png new file mode 100644 index 0000000..4de5ddd Binary files /dev/null and b/mods/travelnet/textures512/travelnet_elevator_inside_floor.png differ diff --git a/mods/travelnet/textures512/travelnet_elevator_inside_top.png b/mods/travelnet/textures512/travelnet_elevator_inside_top.png new file mode 100644 index 0000000..b1ff3a2 Binary files /dev/null and b/mods/travelnet/textures512/travelnet_elevator_inside_top.png differ diff --git a/mods/travelnet/textures512/travelnet_elevator_inside_top_control.png b/mods/travelnet/textures512/travelnet_elevator_inside_top_control.png new file mode 100644 index 0000000..00519b4 Binary files /dev/null and b/mods/travelnet/textures512/travelnet_elevator_inside_top_control.png differ diff --git a/mods/travelnet/travelnet.lua b/mods/travelnet/travelnet.lua new file mode 100644 index 0000000..54c8d68 --- /dev/null +++ b/mods/travelnet/travelnet.lua @@ -0,0 +1,101 @@ +-- contains the node definition for a general travelnet that can be used by anyone +-- further travelnets can only be installed by the owner or by people with the travelnet_attach priv +-- digging of such a travelnet is limited to the owner and to people with the travelnet_remove priv (useful for admins to clean up) +-- (this can be overrided in config.lua) +-- Autor: Sokomine +minetest.register_node("travelnet:travelnet", { + + description = "Travelnet box", + + drawtype = "nodebox", + sunlight_propagates = true, + paramtype = 'light', + paramtype2 = "facedir", + + selection_box = { + type = "fixed", + fixed = { -0.5, -0.5, -0.5, 0.5, 1.5, 0.5 } + }, + + node_box = { + type = "fixed", + fixed = { + + { 0.45, -0.5,-0.5, 0.5, 1.45, 0.5}, + {-0.5 , -0.5, 0.45, 0.45, 1.45, 0.5}, + {-0.5, -0.5,-0.5 ,-0.45, 1.45, 0.5}, + + --groundplate to stand on + { -0.5,-0.5,-0.5,0.5,-0.45, 0.5}, + --roof + { -0.5, 1.45,-0.5,0.5, 1.5, 0.5}, + + -- control panel +-- { -0.2, 0.6, 0.3, 0.2, 1.1, 0.5}, + + }, + }, + + + tiles = { + + "default_clay.png", -- view from top + "default_clay.png", -- view from bottom + "travelnet_travelnet_side.png", -- left side + "travelnet_travelnet_side.png", -- right side + "travelnet_travelnet_back.png", -- front view + "travelnet_travelnet_front.png", -- backward view + }, + inventory_image = "travelnet_inv.png", + + groups = {cracky=1,choppy=1,snappy=1}, + + light_source = 10, + + after_place_node = function(pos, placer, itemstack) + local meta = minetest.env:get_meta(pos); + meta:set_string("infotext", "Travelnet-box (unconfigured)"); + meta:set_string("station_name", ""); + meta:set_string("station_network",""); + meta:set_string("owner", placer:get_player_name() ); + -- request initinal data + meta:set_string("formspec", + "size[12,10]".. + "field[0.3,5.6;6,0.7;station_name;Name of this station:;]".. + "field[0.3,6.6;6,0.7;station_network;Assign to Network:;]".. + "field[0.3,7.6;6,0.7;owner_name;(optional) owned by:;]".. + "button_exit[6.3,6.2;1.7,0.7;station_set;Store]" ); + end, + + on_receive_fields = travelnet.on_receive_fields, + on_punch = function(pos, node, puncher) + travelnet.update_formspec(pos, puncher:get_player_name()) + end, + + can_dig = function( pos, player ) + return travelnet.can_dig( pos, player, 'travelnet box' ) + end, + + after_dig_node = function(pos, oldnode, oldmetadata, digger) + travelnet.remove_box( pos, oldnode, oldmetadata, digger ) + end, + + -- taken from VanessaEs homedecor fridge + on_place = function(itemstack, placer, pointed_thing) + + local pos = pointed_thing.above; + if( minetest.env:get_node({x=pos.x, y=pos.y+1, z=pos.z}).name ~= "air" ) then + + minetest.chat_send_player( placer:get_player_name(), 'Not enough vertical space to place the travelnet box!' ) + return; + end + return minetest.item_place(itemstack, placer, pointed_thing); + end, + +}) + +--[ +minetest.register_craft({ + output = "travelnet:travelnet", + recipe = travelnet.travelnet_recipe, +})